-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·40 lines (40 loc) · 1.11 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
{
"name": "comodojo/exceptions",
"description": "Common exceptions for comodojo libs and frameworks",
"license": "MIT",
"type": "library",
"keywords": [
"exception",
"comodojo"
],
"homepage": "https://comodojo.org",
"support": {
"issues": "https://github.com/comodojo/exceptions/issues"
},
"authors": [
{
"name": "Marco Giovinazzi",
"email": "[email protected]",
"homepage": "http://jme.altervista.org"
}
],
"autoload": {
"psr-4": {
"Comodojo\\Exception\\": "src/Comodojo/Exception"
}
},
"require": {
"php": ">=7.4",
"psr/cache": "^1.0",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"scrutinizer/ocular": "^1.8"
},
"scripts": {
"test": "vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover",
"test-multi": "/usr/bin/bash .docker/test.sh",
"scrutinizer": "vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover"
}
}