-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
28 lines (28 loc) · 827 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
{
"name": "hakito/php-stuzza-eps-banktransfer",
"description": "Stuzza e-payment standard implementation for PHP",
"keywords": ["eps", "payments", "stuzza", "bank transfer"],
"type": "library",
"license": "GPL-2.0",
"homepage": "https://github.com/hakito/PHP-Stuzza-EPS-BankTransfer",
"authors": [
{
"name": "Hakito",
"homepage": "https://github.com/hakito/PHP-Stuzza-EPS-BankTransfer/graphs/contributors"
}
],
"require": {
"php": ">=7.3.0",
"rmccue/requests": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "9.*",
"php-coveralls/php-coveralls": "^2.7"
},
"autoload": {
"files": [ "src/functions.php"],
"psr-4": {
"at\\externet\\eps_bank_transfer\\": "src/"
}
}
}