-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1 KB
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": "Emma De Silva",
"email": "emma@desilva.se"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^11.0",
"illuminate/view": "^11.0",
"symfony/yaml": "^7.0",
"league/commonmark": "^2.2",
"spatie/yaml-front-matter": "^2.0.9",
"hydephp/torchlight-commonmark": "^1.0"
},
"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": "^11.0"
}
}