-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (41 loc) · 1.1 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
{
"name": "magic3w/ping",
"description": "Micro service social network and notification manager",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "cesar",
"email": "[email protected]"
}
],
"scripts": {
"test" : [
"./vendor/bin/phpstan analyse bin/ --level 5"
],
"sniff" : [
"#cp ./vendor/magic3w/php-coding-standard/.phpcs.xml ./.phpcs.xml",
"./vendor/bin/phpcs -s --encoding=utf-8 -p $(git diff master --diff-filter=d --cached --name-only | grep -E '\\.php$')"
],
"style" : [
"#cp ./vendor/magic3w/php-coding-standard/.phpcs.xml ./.phpcs.xml",
"./vendor/bin/phpcbf --encoding=utf-8 -n -p $(git diff master --diff-filter=d --cached --name-only | grep -E '\\.php$')"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"commishes/figure-sdk": "^0.1.4"
},
"require-dev": {
"phpstan/phpstan": "^0.12.82",
"magic3w/php-coding-standard": "^1.0"
},
"repositories":
[
{
"type": "vcs",
"url": "https://github.com/Csardelacal/PHP_Codesniffer"
}
]
}