forked from Adyen/adyen-shopware5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.17 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
{
"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"
}
],
"require": {
"php": "^7.0",
"ext-json": "*",
"adyen/php-api-library": "^10.0"
},
"require-dev": {
"shopware/shopware": "^5.6",
"phpro/grumphp": "^0.16.1",
"phpcompatibility/php-compatibility": "^9.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"friendsofphp/php-cs-fixer": "^2.16",
"squizlabs/php_codesniffer": "3.*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"format": "vendor/bin/php-cs-fixer fix",
"test-php-compatibility" : "vendor/bin/phpcs -p . --standard=PHPCompatibility --runtime-set testVersion 7.0- --extensions=php --ignore=*/vendor/*"
}
}