-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.01 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": "hds-solutions/bancard-sdk",
"description": "Bancard SDK library",
"type": "library",
"license": "GPL-3.0",
"authors": [
{
"name": "Hermann D. Schimpf",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"guzzlehttp/guzzle": "^7.5",
"guzzlehttp/psr7": "^2.4"
},
"autoload": {
"psr-4": {
"HDSSolutions\\Bancard\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"vlucas/phpdotenv": "^5.5"
},
"autoload-dev": {
"psr-4": {
"HDSSolutions\\Bancard\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"vendor/bin/phpunit --coverage-html tests/coverage"
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}