-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
37 lines (37 loc) · 973 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
{
"name": "hakito/cakephp-sofortcom-plugin",
"description": "CakePHP Sofort.com payment plugin",
"keywords": ["cakephp", "payment", "sofortcom"],
"type": "cakephp-plugin",
"license": "GPL-2.0",
"homepage": "https://github.com/hakito/CakePHP-SofortCom-Plugin",
"authors": [
{
"name": "Gerd Katzenbeisser",
"homepage": "https://github.com/hakito/CakePHP-SofortCom-Plugin"
}
],
"autoload": {
"psr-4": {
"SofortCom\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SofortCom\\Test\\": "tests/"
}
},
"require": {
"cakephp/cakephp": "^4.0",
"spomky-labs/base64url": "^2.0",
"sofort/sofortlib-php": "^3.3",
"cakephp/migrations": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"hakito/publisher": "^1.2.0"
},
"extra": {
"installer-name": "SofortCom"
}
}