-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 877 Bytes
/
Copy pathcomposer.json
File metadata and controls
35 lines (35 loc) · 877 Bytes
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
{
"name": "umpirsky/symfony-upgrade-fixer",
"type": "application",
"description": "Analyzes your Symfony project and tries to make it compatible with the new version of Symfony framework.",
"license": "MIT",
"authors": [
{
"name": "Saša Stamenković",
"email": "umpirsky@gmail.com"
}
],
"require": {
"php": ">=5.4",
"fabpot/php-cs-fixer": "^1.11"
},
"require-dev": {
"phpunit/phpunit": "^5.0"
},
"autoload": {
"psr-4": {
"Symfony\\Upgrade\\": "src/Symfony/Upgrade/"
}
},
"autoload-dev": {
"psr-4": {
"Symfony\\Upgrade\\Test\\": "tests/Symfony/Upgrade/Test/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
},
"bin": ["bin/symfony-upgrade-fixer"]
}