-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
52 lines (52 loc) · 1.4 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
46
47
48
49
50
51
52
{
"name": "adyen/adyen-shopware5",
"description": "Adyen plugin Shopware 5",
"type": "shopware-plugin",
"keywords": [
"adyen",
"payment",
"payment platform"
],
"homepage": "https://adyen.com",
"license": "MIT",
"extra": {
"installer-name": "AdyenPayment"
},
"authors": [
{
"name": "Adyen",
"email": "[email protected]",
"homepage": "https://adyen.com",
"role": "Developer"
}
],
"autoload-dev": {
"psr-4": {
"AdyenPayment\\": "./",
"AdyenPayment\\Tests\\": "tests/",
"Adyen\\Core\\Tests\\Infrastructure\\": "vendor/adyen/integration-core/tests/Infrastructure",
"Adyen\\Core\\Tests\\BusinessLogic\\": "vendor/adyen/integration-core/tests/BusinessLogic"
}
},
"require": {
"php": "^7.2|^7.4|^8.0",
"ext-json": "*",
"ext-zip": "*",
"adyen/integration-core": "1.2.0",
"ext-simplexml": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"no-api": true,
"url": "[email protected]:logeecom/adyen-php-webhook-module.git"
},
{
"type": "vcs",
"no-api": true,
"url": "[email protected]:Adyen/adyen-php-plugin-core.git"
}
]
}