-
Notifications
You must be signed in to change notification settings - Fork 34
/
composer.json
104 lines (104 loc) · 4.25 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "swag/paypal",
"description": "PayPal integration for Shopware 6",
"version": "9.6.4",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "Shopware"
}
],
"require": {
"shopware/core": "~6.6.0@dev"
},
"require-dev": {
"rector/rector": "^0.18.3"
},
"extra": {
"shopware-plugin-class": "Swag\\PayPal\\SwagPayPal",
"copyright": "(c) by shopware AG",
"label": {
"de-DE": "PayPal-Produkte für Shopware 6",
"en-GB": "PayPal Products for Shopware 6"
},
"description": {
"de-DE": "Bieten Sie Ihren Kunden Deutschlands beliebteste Bezahlmöglichkeiten mit nur einer Integration: Das PayPal-Plugin bietet PayPal Checkout, den Expressbutton, Zettle und vieles mehr",
"en-GB": "Get access to over 100 currencies and 200 markets worldwide with the payment module PayPal for your Shopware shop. Experience an easy and comfortable way of payment."
},
"manufacturerLink": {
"de-DE": "https://store.shopware.com/shopware-ag.html",
"en-GB": "https://store.shopware.com/en/shopware-ag.html"
},
"supportLink": {
"de-DE": "https://issues.shopware.com/",
"en-GB": "https://issues.shopware.com/"
}
},
"scripts": {
"jest": [
"npm run unit-setup --prefix ../../../src/Administration/Resources/app/administration",
"npm run unit --prefix src/Resources/app/administration"
],
"jest:watch": [
"npm run unit-setup --prefix ../../../src/Administration/Resources/app/administration",
"npm run unit-watch --prefix src/Resources/app/administration"
],
"lint": [
"@ecs-fix",
"@phpstan",
"@phpunit"
],
"ecs": "../../../vendor/bin/php-cs-fixer fix --dry-run",
"ecs-fix": "../../../vendor/bin/php-cs-fixer fix",
"init:admin": "npm ci --no-audit --prefer-offline --prefix src/Resources/app/administration",
"lint:admin": "npm run lint-fix --prefix src/Resources/app/administration",
"lint:admin:ci": "npm run lint --prefix src/Resources/app/administration",
"init:storefront": "npm ci --no-audit --prefer-offline --prefix src/Resources/app/storefront",
"lint:storefront": "@lint:storefront:ci --fix",
"lint:storefront:ci": [
"cd src/Resources/app/storefront && ../../../../../../../src/Storefront/Resources/app/storefront/node_modules/.bin/eslint --config ../../../../../../../src/Storefront/Resources/app/storefront/.eslintrc.js ./src",
"cd src/Resources/app/storefront && ../../../../../../../src/Storefront/Resources/app/storefront/node_modules/.bin/stylelint --config ../../../../../../../src/Storefront/Resources/app/storefront/stylelint.config.js ./src"
],
"phpunit": "../../../vendor/bin/phpunit",
"phpstan": [
"php ../../../src/Core/DevOps/StaticAnalyze/phpstan-bootstrap.php",
"php bin/phpstan-config-generator.php",
"../../../vendor/bin/phpstan analyze"
],
"rector": "../../../vendor/bin/rector process",
"rector-dry": "../../../vendor/bin/rector process --dry-run",
"openapi:generate": [
"../../../bin/console swag:paypal:openapi:generate",
"npm run openapi-types --prefix src/Resources/app/administration"
]
},
"autoload": {
"psr-4": {
"Swag\\PayPal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Swag\\PayPal\\Test\\": "tests/"
}
},
"repositories": {
"platform-packages": {
"type": "path",
"url": "../../../src/*",
"canonical": true
}
},
"suggest": {
"shopware/storefront": "Require '*'. Enables special payment features like 'Smart Payment Buttons' or 'Express Checkout'",
"shopware/administration": "Require '*'. Allows you to to set up the plugin easily"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true,
"symfony/runtime": true
}
}
}