-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
33 lines (33 loc) · 914 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
{
"name": "flexsounds/slim-symfony-di-container",
"description": "The bridge to use the Symfony Dependency Injection Container to use in Slim Framework 3",
"type": "library",
"require": {
"php": "^7.1",
"slim/slim": "^3.1",
"symfony/dependency-injection": "^3.2 || ^4.0",
"symfony/config": "^3.2 || ^4.0"
},
"require-dev": {
"symfony/yaml": "^3.2 || ^4.0",
"phpunit/phpunit": "^7.0"
},
"license": "MIT",
"authors": [
{
"name": "Leroy Baeyens",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Flexsounds\\Component\\SymfonyContainerSlimBridge\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Flexsounds\\Component\\SymfonyContainerSlimBridge\\Tests\\": "tests/"
}
},
"minimum-stability": "stable"
}