-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
34 lines (34 loc) · 945 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
{
"name": "bestit/kitchensink-bundle",
"description": "Helps you create a kitchensink incl. route, template and services.",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Björn Lange",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"BestIt\\KitchensinkBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BestIt\\KitchensinkBundle\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.0",
"symfony/http-kernel": "^3.1 || ^4.0 || ^5.0",
"symfony/dependency-injection": "^3.1 || ^4.0 || ^5.0",
"symfony/config": "^3.1 || ^4.0 || ^5.0",
"symfony/yaml": "^3.1 || ^4.0 || ^5.0",
"twig/twig": "^2.12 || ^3.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.7",
"phpunit/phpunit": "^5.5"
}
}