-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 889 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
{
"name": "jangolle/slim-symfony-container",
"description": "Simple SlimPHP container integration with Symfony dependency injection container",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/JanGolle/slim-symfony-container",
"keywords": ["slim", "symfony", "container", "di container"],
"authors": [
{
"name": "Elijah Zakirov",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.1",
"slim/slim": "^3.0",
"symfony/dependency-injection": "^4.0",
"symfony/config": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^7"
},
"autoload": {
"psr-4": {
"JanGolle\\SlimSymfonyContainer\\": "src/",
"JanGolle\\SlimSymfonyContainer\\Test\\": "tests/"
}
}
}