forked from QafooLabs/php-refactoring-browser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (32 loc) · 984 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
35
36
37
{
"name": "qafoolabs/php-refactoring-browser",
"description": "Refactoring Browser for PHP",
"license": "Apache2",
"authors": [
{"name": "Benjamin Eberlei", "email": "[email protected]"}
],
"require": {
"nikic/php-parser": "@stable",
"beberlei/assert": "@stable",
"andrewsville/php-token-reflection": "@stable",
"symfony/finder": "~2.4@stable",
"symfony/console": "~2.4@stable",
"tomphp/patch-builder": "~0.1"
},
"require-dev": {
"php": ">=5.4",
"behat/behat": "~2.5@stable",
"mikey179/vfsStream": "@stable",
"phake/phake": "@stable",
"symfony/process": "@stable",
"phpunit/phpunit": "~4.6@stable"
},
"autoload": {
"psr-0": {
"QafooLabs\\Refactoring": "src/main/",
"QafooLabs\\Patches": "src/main/",
"QafooLabs\\Collections": "src/main/"
}
},
"bin": ["src/bin/refactor"]
}