-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.49 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
{
"name": "d1s1g4codelovers/php-codesniffer",
"description": "CodeSniffer helps to check coding convention.",
"keywords": ["d1s1g4codelovers", "codesniffer", "php-codesniffer"],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/D1S1G4CodeLovers/codesniffer",
"support": {
"issues": "https://github.com/D1S1G4CodeLovers/codesniffer/issues",
"source": "https://github.com/D1S1G4CodeLovers/codesniffer"
},
"authors": [
{
"name": "Nguyen Xuan Quynh",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"composer/composer": "^1.8",
"wataridori/framgia-php-codesniffer": "^0.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
"D1S1G4CodeLovers\\CodeSniffer\\": "src/"
}
},
"scripts": {
"post-autoload-dump": [
"@php vendor/bin/phpcs --config-set installed_paths src/Standards"
],
"fix": "@php vendor/bin/php-cs-fixer fix",
"test": "@php vendor/bin/phpunit"
},
"scripts-descriptions": {
"fix": "Fix coding convention.",
"test": "Run the tests."
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}