-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.17 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
{
"name": "diablomedia/arcanist-extensions",
"description": "Collection of Arcanist extensions use for linting/testing code with Arcanist and Phabricator/Phorge",
"license": "MIT",
"authors": [
{
"name": "Jay Klehr",
"email": "jay@diablomedia.com"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "phorgeit/arcanist",
"version": "1.0.0",
"dist": {
"url": "https://github.com/phorgeit/arcanist/archive/master.zip",
"type": "zip"
},
"source": {
"url": "https://github.com/phorgeit/arcanist.git",
"type": "git",
"reference": "master"
}
}
}
],
"require": {
"ptlis/diff-parser": "^0.6.0"
},
"require-dev": {
"diablomedia/php-cs-fixer-config": "^2.1.0",
"friendsofphp/php-cs-fixer": "3.6.0",
"phorgeit/arcanist": "1.0.0",
"phpstan/phpstan": "1.12.1"
},
"autoload-dev": {
"classmap": [
"extensions/",
"vendor/phorgeit/arcanist/src/"
]
},
"scripts": {
"phpstan": "phpstan analyze -c phpstan.neon --memory-limit=768M",
"php-cs-fixer": "php-cs-fixer fix --verbose"
}
}