-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 870 Bytes
/
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
{
"name": "aaronmacaron/reaction",
"description": "Library for dealing with reactions of actions",
"type": "library",
"authors": [
{
"name": "Aaron Ebnöther",
"email": "aaron.ebnoether@gmail.com"
}
],
"autoload": {
"psr-4": {
"Aaronmacaron\\Reaction\\": "src/"
}
},
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "^7.1",
"phpmd/phpmd": "^2.6",
"squizlabs/php_codesniffer": "^3.2"
},
"scripts": {
"test": "./vendor/bin/phpunit",
"phpmd": "./vendor/bin/phpmd ./src text codesize,design,naming,unusedcode",
"phpcs": "./vendor/bin/phpcs",
"phpcbf": "./vendor/bin/phpcbf",
"check": [
"@test",
"@phpmd",
"@phpcs"
]
}
}