-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.37 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
{
"name": "avolle/fotballdata",
"description": "A package for fetching data from Norwegian Football API service Fotballdata",
"type": "library",
"require": {
"cakephp/http": "^4.4",
"ext-json": "*",
"php": "^7.4|^8.0"
},
"require-dev": {
"phpstan/phpstan": "^1.7",
"phpunit/phpunit": "^9.5",
"slevomat/coding-standard": "^8.1",
"squizlabs/php_codesniffer": "^3.7",
"symfony/var-dumper": "^5.4"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Avolle\\Fotballdata\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Avolle\\Fotballdata\\": "src/",
"Avolle\\Fotballdata\\Test\\": "tests/"
}
},
"authors": [
{
"name": "Alexander Volle",
"email": "alexander@avolle.com"
}
],
"scripts": {
"cs-check": "vendor/bin/phpcs -p src/ tests/",
"cs-fix": "vendor/bin/phpcbf -p src/ tests/",
"stan": "phpstan analyze",
"test": "phpunit --colors=always",
"testCoverage": "phpunit --coverage-html coverage/",
"analyze": [
"@cs-check",
"@stan"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}