-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 845 Bytes
/
Copy pathcomposer.json
File metadata and controls
39 lines (39 loc) · 845 Bytes
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
{
"name": "unzerdev/shopware5",
"type": "shopware-plugin",
"description": "Unzer payment integration for Shopware 5",
"license": "Apache-2.0",
"authors": [
{
"name": "Unzer GmbH",
"email": "support@unzer.com",
"homepage": "https://www.unzer.com/de/support/"
}
],
"autoload": {
"psr-4": {
"UnzerPayment\\": "."
}
},
"require": {
"composer/installers": "^1.5",
"unzerdev/php-sdk": "~3.11.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"k10r/codestyle": "^1.0",
"phpstan/phpstan": "0.12.*"
},
"extra": {
"installer-name": "UnzerPayment"
},
"scripts": {
"phpstan": "./vendor/bin/phpstan analyse .",
"phpcs": "./vendor/bin/php-cs-fixer fix"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}