-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
56 lines (56 loc) · 1.67 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
53
54
55
56
{
"name": "paysera/lib-arcanist-php-cs-extension",
"description": "Php Cs Fixer arcanist extension",
"type": "library",
"repositories": [
{
"type": "package",
"package": {
"name": "phacility/arcanist",
"version": "master",
"source": {
"url": "https://github.com/phacility/arcanist.git",
"type": "git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "phacility/libphutil",
"version": "master",
"source": {
"url": "https://github.com/phacility/libphutil.git",
"type": "git",
"reference": "master"
}
}
}
],
"require": {
"php": "^5.5 || ^7.0",
"ptlis/diff-parser": "^0.6.0"
},
"require-dev": {
"phacility/arcanist": "dev-master#5eda40337bb4135ca4929617602686302edc7cc0",
"composer/composer": "^1.4",
"phpunit/phpunit": "^5.0",
"phacility/libphutil": "dev-master#276f6d304b69767d48f88f65484ce310ee2cf3af",
"friendsofphp/php-cs-fixer": "^2.2"
},
"autoload": {
"psr-4": {
"Paysera\\Composer\\": "composer/"
},
"classmap": ["src/"]
},
"autoload-dev": {
"Paysera\\Tests": "tests/",
"classmap": ["vendor/phacility/arcanist/src/", "vendor/phacility/libphutil/src/"],
"files": ["vendor/phacility/libphutil/src/utils/utils.php"]
},
"config": {
"bin-dir": "bin"
}
}