-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 1 KB
/
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
38
{
"name": "hyde/framework",
"description": "The HydePHP Framework",
"license": "MIT",
"autoload": {
"psr-4": {
"Hyde\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Hyde\\Framework\\Testing\\": "tests/"
}
},
"authors": [
{
"name": "Caen De Silva",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0",
"illuminate/view": "^10.0",
"symfony/yaml": "^6.0",
"league/commonmark": "^2.2",
"spatie/yaml-front-matter": "^2.0.9",
"torchlight/torchlight-commonmark": "^0.5.5"
},
"suggest": {
"hyde/hyde" : "The Framework package contains the Hyde Core. To create your site you should use the Hyde/Hyde project.",
"ext-simplexml": "Required to generate sitemaps and RSS feeds.",
"laravel-zero/framework": "^10.0"
}
}