forked from mollie/Shopware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.13 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
{
"name": "mollie/shopware",
"description": "Mollie Shopware 5 Plugin",
"keywords": [
"mollie",
"payment",
"payment platform"
],
"homepage": "https://www.mollie.com",
"require": {
},
"require-dev": {
"phpunit/phpunit": "*",
"phpstan/phpstan": "^0.12",
"friendsofphp/php-cs-fixer": "^2.18",
"phpmetrics/phpmetrics": "^2.7",
"doctrine/collections": "1.6.4",
"monolog/monolog": "1.25.3",
"shopware/shopware": "~5.6.9",
"phpcompatibility/php-compatibility": "^9.3",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload-dev": {
"psr-4": {
"MollieShopware\\": "./",
"MollieShopware\\Tests\\": "./Tests/PHPUnit/"
}
},
"scripts": {
"post-install-cmd": [
"[ ! -f vendor/bin/phpcs ] || vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility"
],
"post-update-cmd": [
"[ ! -f vendor/bin/phpcs ] || vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility"
]
}
}