-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.92 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
57
58
59
60
61
62
63
64
65
{
"name": "vallbo/slack-incoming-web-hooks",
"description": "Slack Incoming WebHooks PHP vendor",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Vladimir Bosiak",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Vallbo\\SlackNotification\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"VallboTest\\SlackNotification\\": "./test"
}
},
"require": {
"php": "^7.0",
"guzzlehttp/guzzle": "~6.0",
"psr/log": "^1.0",
"phpunit/phpunit": "^6.5"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^0.9.2",
"jakub-onderka/php-console-highlighter": "^0.3.2",
"phpmd/phpmd": "^2.6",
"phpstan/phpstan": "^0.8.5",
"squizlabs/php_codesniffer": "^3.1",
"slevomat/coding-standard": "^4.0",
"sebastian/phpcpd": "^3.0",
"povils/phpmnd": "^1.1"
},
"scripts": {
"lint": "vendor/bin/parallel-lint src",
"stan": "vendor/bin/phpstan analyse -l 5 -c phpstan.neon src",
"md": "vendor/bin/phpmd src text rulesetMD.xml",
"cs": "vendor/bin/phpcs --standard=rulesetCS.xml",
"csf": "vendor/bin/phpcbf --standard=rulesetCS.xml",
"cpd": "vendor/bin/phpcpd src",
"mnd": "vendor/bin/phpmnd src",
"test": "vendor/bin/phpunit ./test",
"check": [
"@lint",
"@stan",
"@cs",
"@md",
"@cpd",
"@mnd",
"@test"
],
"wcheck": [
"vendor\\bin\\parallel-lint src tests",
"vendor\\bin\\phpstan analyse -l 5 -c phpstan.neon src",
"vendor\\bin\\phpmd src,tests text rulesetMD.xml",
"vendor\\bin\\phpcs --standard=rulesetCS.xml",
"vendor\\bin\\phpcpd src",
"vendor\\bin\\phpmnd src"
]
}
}