-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
52 lines (52 loc) · 1.57 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "qafoo/changetrack",
"description": "ChangeTrack allows you to track changes in classes and methods throughout the history of a PHP project.",
"homepage": "https://github.com/Qafoo/changetrack",
"licence": "MIT",
"repositories": [
{
"type": "package",
"package": {
"name": "manuelpichler/staticreflection",
"version": "@dev",
"source": {
"url": "https://github.com/manuelpichler/staticReflection.git",
"type": "git",
"reference": "master"
},
"autoload": {
"psr-0": {
"pdepend": "src/main/php"
}
}
}
}
],
"require": {
"php": ">=5.5",
"manuelpichler/staticreflection": "@dev",
"arbit/vcs-wrapper": "@dev",
"jms/serializer": "@stable",
"symfony/dependency-injection": "@stable",
"symfony/console": "@stable",
"symfony/finder": "@stable",
"symfony/config": "@stable",
"symfony/yaml": "@stable",
"guzzle/guzzle": "@stable"
},
"require-dev": {
"behat/behat": "2.4.*@stable",
"phpunit/phpunit": "3.7.*@stable",
"mikey179/vfsStream": "1.2.*@stable",
"symfony/process": "@stable"
},
"autoload": {
"psr-0": {
"Qafoo\\ChangeTrack": ["src/main", "test/phpunit"]
}
},
"bin": ["src/bin/track"],
"config": {
"bin-dir": "vendor/bin/"
}
}