-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
90 lines (90 loc) · 2.99 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
{
"name": "endereco/endereco-shopware6-client",
"description": "Checks customers' addresses in real time. In case of errors, the customer is prompted to correct his address before sending via warning windows and error messages.",
"version": "6.5.3",
"type": "shopware-platform-plugin",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "(c) Endereco UG (haftungsbeschränkt)",
"email": "[email protected]",
"role": "Manufacturer"
}
],
"require": {
"ext-curl": "*",
"ext-json": "*",
"shopware/core": "6.6.*",
"shopware/storefront": "6.6.*"
},
"extra": {
"shopware-plugin-class": "Endereco\\Shopware6Client\\EnderecoShopware6Client",
"label": {
"de-DE": "Endereco Address-Management Services für Shopware (Download)",
"en-GB": "Endereco Address-Management Services for Shopware (Download)"
},
"hooks": {
"pre-commit": [
"composer qa"
]
}
},
"autoload": {
"psr-4": {
"Endereco\\Shopware6Client\\": "src/"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"phpunit/phpunit": "9.5.*",
"phpstan/phpstan": "^1.10",
"phpmd/phpmd": "^2.10"
},
"scripts": {
"qa": [
"@phpcs",
"@phpmd",
"@phpstan",
"@phpcompat",
"@phpcheckimports"
],
"phpcbf": "phpcbf --standard=PSR12 --ignore=vendor/*,shops/*,node_modules/* ./src/**/*.php",
"phpcs": "phpcs --standard=PSR12 --ignore=vendor/*,shops/*,node_modules/* ./src/**/*.php",
"phpstan": [
"phpstan analyse -c phpstan.6.6.0.0.neon",
"phpstan analyse -c phpstan.6.6.1.2.neon",
"phpstan analyse -c phpstan.6.6.3.1.neon",
"phpstan analyse -c phpstan.6.6.4.1.neon",
"phpstan analyse -c phpstan.6.6.5.1.neon",
"phpstan analyse -c phpstan.6.6.6.1.neon",
"phpstan analyse -c phpstan.6.6.7.1.neon",
"phpstan analyse -c phpstan.6.6.8.2.neon"
],
"build-admin": "./build_admin.sh",
"phpmd": "./check_phpmd.sh",
"phpcompat": "./test_php_versions.sh",
"phpcheckimports": "php check_imports.php",
"serve": "./playground.sh",
"post-install-cmd": [
"chmod +x test_php_versions.sh",
"chmod +x fetch_shops.sh",
"chmod +x build.sh",
"chmod +x build_admin.sh",
"chmod +x check_phpmd.sh",
"chmod +x playground.sh"
],
"post-update-cmd": [
"chmod +x test_php_versions.sh",
"chmod +x fetch_shops.sh",
"chmod +x build.sh",
"chmod +x build_admin.sh",
"chmod +x check_phpmd.sh",
"chmod +x playground.sh"
]
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}