-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·41 lines (41 loc) · 1.04 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
{
"name": "astronati/world-cups-data-response-parser",
"description": "Allows to map responses provided by the World Cups Data Data API (stroccoli).",
"type": "library",
"license": "MIT",
"version": "1.0.1",
"authors": [
{
"name": "Andrea Stronati",
"email": "astronati@vendini.com"
}
],
"minimum-stability": "stable",
"require-dev": {
"codacy/coverage": "^1.4",
"phpunit/phpunit": "^6.5",
"phpunit/php-code-coverage": "^5.3",
"phpstan/phpstan": "^0.9.1"
},
"require": {
"php": ">=7.1.0",
"astronati/world-cups-data-response-parser": "^1.0"
},
"autoload": {
"psr-4": {
"WCDRP\\": "src"
},
"classmap": [
"src/"
],
"exclude-from-classmap": [
"/tests/**/*.php"
]
},
"scripts": {
"analysis": "./vendor/bin/phpstan analyse src --level=7",
"coverage": "open coverage/html/index.html",
"coverage:send": "./vendor/bin/codacycoverage clover coverage/xml",
"test": "./vendor/bin/phpunit tests --coverage-html coverage/html --whitelist ./src"
}
}