-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
87 lines (87 loc) · 2.02 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
{
"name": "sitegeist/image-jack",
"type": "typo3-cms-extension",
"homepage": "https://github.com/sitegeist/image-jack",
"version": "0.11.0",
"license": [
"GPL-2.0-or-later"
],
"keywords": [
"typo3",
"typo3-extension",
"image",
"optimization"
],
"description": "Jack of all trades concerning image optimization. Also introduces the usage of next-gen-image-formats",
"authors": [
{
"name": "Benjamin Tammling",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.sitegeist.de"
},
{
"name": "Thorsten Schramm",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.sitegeist.de"
}
],
"support": {
"issues": "https://github.com/sitegeist/image-jack/issues"
},
"require": {
"php": ">=8.1.0",
"typo3/cms-core": "^12.4 || ^13.2"
},
"require-dev": {
"editorconfig-checker/editorconfig-checker": "*",
"phpstan/phpstan": "^1.10",
"saschaegerer/phpstan-typo3": "^1.9",
"squizlabs/php_codesniffer": "*",
"friendsofphp/php-cs-fixer": "^3.62"
},
"autoload": {
"psr-4": {
"Sitegeist\\ImageJack\\": "Classes"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "image_jack"
}
},
"scripts": {
"prepare-release": [
"rm -r .github .ecrc .editorconfig .gitattributes .gitignore Build Tests"
],
"lint": [
"@lint:php",
"@lint:editorconfig"
],
"lint:php": [
"php -d memory_limit=-1 ./vendor/bin/phpstan analyse --configuration=./Build/Testing/phpstan.neon .",
"phpcs --standard=PSR2 --extensions=php --warning-severity=6 --ignore=/vendor/ ."
],
"lint:editorconfig": [
"ec ."
],
"fix": [
"@fix:php",
"@fix:editorconfig"
],
"fix:php": [
"php-cs-fixer fix --diff --config ./Build/Testing/.php_cs.php"
],
"fix:editorconfig": [
"ec --auto-fix --exclude 'Resources\\/Public\\/|package-lock.json|mask.json|LICENSE' ."
]
}
}