-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 964 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
38
39
40
{
"name": "misantron/silex-config-provider",
"description": "Config service provider for Silex PHP framework with multiple types support",
"keywords": ["php", "silex", "config", "provider"],
"homepage": "https://github.com/misantron/silex-config-provider",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Aleksandr Ivanov",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"composer-runtime-api": "^2.0",
"silex/silex": "^2.3"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6",
"symfony/yaml": "^5.0 || ^6.0",
"yosymfony/toml": "^1.0"
},
"autoload": {
"psr-4": {
"Misantron\\Silex\\Provider\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Misantron\\Silex\\Provider\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
}
}