-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
43 lines (43 loc) · 1.07 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
39
40
41
42
43
{
"name": "rocknroot/stray-fw",
"type": "library",
"description": "A PHP web framework for rock 'n' rollers.",
"keywords": [ "framework", "strayFw" ],
"homepage": "http://github.com/RocknRoot/strayFw",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Nekith",
"email": "[email protected]",
"homepage": "http://nekith.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"psr/log": "~3.0",
"symfony/http-foundation": "^6.2",
"symfony/yaml": "^6.0",
"wp-cli/php-cli-tools": "^0.11"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9",
"symfony/error-handler": "^6.2",
"twig/twig": "^3.4"
},
"suggest": {
"twig/twig": "For the Twig renderer"
},
"autoload": {
"psr-4": {
"RocknRoot\\StrayFw\\": "src/RocknRoot/StrayFw/"
}
},
"archive": {
"exclude": [
"/.github",
"/docs"
]
}
}