-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 959 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "hyde/framework",
"description": "The HydePHP Framework",
"license": "MIT",
"autoload": {
"psr-4": {
"Hyde\\Framework\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Caen De Silva",
"email": "caen@desilva.se"
}
],
"require": {
"php": "^8.0",
"illuminate/support": "^9.5",
"symfony/yaml": "^6.0",
"laravel-zero/framework": "^9.1",
"league/commonmark": "^2.2",
"spatie/yaml-front-matter": "^2.0.7",
"torchlight/torchlight-commonmark": "^0.5.5",
"ext-simplexml": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0"
},
"suggest": {
"hyde/hyde" : "The Framework package contains the Hyde Core. To create your site you should use the Hyde/Hyde project."
}
}