-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
42 lines (42 loc) · 1.05 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
{
"name": "tinect/redirects",
"description": "Redirect plugin for Shopware 6",
"version": "2.6.0",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "Tinect"
}
],
"require": {
"shopware/core": "~6.6.0"
},
"extra": {
"shopware-plugin-class": "Tinect\\Redirects\\TinectRedirects",
"label": {
"de-DE": "Redirect Plugin",
"en-GB": "Redirect plugin"
}
},
"autoload": {
"psr-4": {
"Tinect\\Redirects\\": "src/"
}
},
"scripts": {
"init-ci": "composer install --working-dir=.ci",
"phpcs-check": [
"@init-ci",
"@php-cs-fixer --dry-run"
],
"phpcs": [
"@init-ci",
"@php-cs-fixer"
],
"php-cs-fixer": [
".ci/vendor/bin/php-cs-fixer fix --diff --config=.ci/.php-cs-fixer.dist.php"
],
"phpstan": "docker run --rm -v $(pwd):/app aragon999/phpstan-shopware:v6.6.0 analyse ."
}
}