-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.08 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
{
"name": "nicklasw/bankid-sdk",
"license": "MIT",
"description": "BankID SDK API client",
"require": {
"php": "^7.1",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3",
"doctrine/annotations": "^1.6",
"tebru/gson-php": "^0.6.2"
},
"require-dev": {
"phpunit/phpunit": "^7.3",
"phan/phan": "dev-master",
"squizlabs/php_codesniffer": "^3.3",
"symfony/validator": "^4.1",
"symfony/intl": "^4.1"
},
"autoload": {
"psr-4": {
"BankID\\SDK\\": "src"
},
"files": [
"src/definitions.php"
]
},
"autoload-dev": {
"psr-4": {
"BankID\\SDK\\Tests\\": "tests"
},
"classmap": [
"tests/"
],
"files": [
]
},
"scripts": {
"test": "vendor/bin/phpunit --verbose && vendor/bin/phpspec run --verbose",
"lint": "vendor/bin/phpcs --standard=ruleset.xml ./src",
"lint-fix": "vendor/bin/phpcbf --standard=ruleset.xml ./src",
"analyze": "vendor/bin/phan --color",
"analyze-report": "mkdir -p build/ && vendor/bin/phan -m checkstyle -o build/phan-report.cs || true"
}
}