-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 908 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
36
37
38
39
40
41
42
43
{
"name": "zeeproject/errors-notification",
"description": "Errors Notification",
"license": "BSD-2-Clause",
"keywords": ["errors", "notification"],
"authors": [
{
"name": "Veaceslav Medvedev",
"email": "slavcopost@gmail.com"
}
],
"require": {
"php": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"scrutinizer/ocular": "^1.5"
},
"autoload": {
"psr-4": {
"Zee\\Errors\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"Zee\\Errors\\Tests\\": ["tests/"]
}
},
"scripts": {
"check": [
"@test"
],
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover build/logs/clover.xml",
"show-coverage": "phpunit --coverage-text=php://stdout",
"report-coverage": "phpunit --coverage-html build/logs/report"
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}