-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.09 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
{
"name": "filipsedivy/cnb-api",
"description": "💸 Powerful PHP library for CNB exchange rates",
"homepage": "https://github.com/filipsedivy/cnb-api",
"license": [
"MIT"
],
"keywords": [],
"type": "library",
"authors": [
{
"name": "Filip Sedivy",
"email": "mail@filipsedivy.cz"
}
],
"autoload": {
"classmap": [
"src/"
]
},
"require": {
"php": ">= 7.1",
"ext-mbstring": "*",
"ext-iconv": "*"
},
"require-dev": {
"ninjify/nunjuck": "^0.3",
"phpstan/phpstan": "^0.8",
"slevomat/coding-standard": "^5.0",
"squizlabs/php_codesniffer": "^3.4"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"scripts": {
"full": [
"@cs",
"@phpstan",
"@tester"
],
"phpstan": "phpstan analyse --level 7 --configuration tests/phpstan.neon src/",
"cs": "phpcs --standard=phpcs.xml --encoding=utf-8 -sp src/ tests/cases",
"cbf": "phpcbf --standard=phpcs.xml --colors --encoding=utf-8 -nsp src/ tests/",
"tester": "nunjuck -s -c ./tests/php.ini ./tests",
"coverage": "nunjuck -p phpdbg tests -s --coverage ./coverage.xml --coverage-src ./src"
}
}