-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 926 Bytes
/
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": "pavelmaca/open-banking",
"description": "OpenBanking Connector",
"type": "library",
"require": {
"php": ">=7.2",
"guzzlehttp/guzzle": "^6.2",
"composer/ca-bundle": "^1.1",
"nette/utils": "^2.5",
"doctrine/annotations": "^1.4",
"ext-json": "*"
},
"license": "MIT",
"authors": [
{
"name": "Pavel Máca",
"email": "maca.pavel@gmail.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"PavelMaca\\OpenBanking\\": "src/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.11",
"phpstan/phpstan": "^0.11.5",
"phpunit/phpunit": "^8"
},
"autoload-dev": {
"psr-4": {
"PavelMaca\\OpenBanking\\Test\\": "tests/"
}
},
"scripts": {
"cs-fixer": "php-cs-fixer fix --config=.php_cs.dist",
"phpstan": "phpstan analyse src",
"test": "phpunit --bootstrap vendor/autoload.php tests"
}
}