-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
34 lines (34 loc) · 952 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": "symplify/action-autowire",
"description": "Adds support to autowire controller action.",
"license": "MIT",
"require": {
"php": "~7.0",
"symfony/dependency-injection": "^3.1",
"symfony/http-kernel": "^3.1",
"symfony/yaml": "^3.1",
"symfony/property-access": "^3.1"
},
"require-dev": {
"nette/utils": "^2.4",
"nette/finder": "^2.4",
"phpunit/phpunit": "^5.7",
"symfony/framework-bundle": "^3.1",
"symplify/coding-standard": "~1.2",
"doctrine/annotations": "^1.3"
},
"autoload": {
"psr-4": {
"Symplify\\ActionAutowire\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Symplify\\ActionAutowire\\Tests\\": "tests"
}
},
"scripts": {
"check-cs": "vendor/bin/symplify-cs check src tests",
"fix-cs": "vendor/bin/symplify-cs fix src tests"
}
}