forked from christophlehmann/imageoptimizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.32 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
{
"name": "christophlehmann/imageoptimizer",
"type": "typo3-cms-extension",
"description": "Optimize uploaded/processed images with binaries of your choice",
"license": "GPL-2.0-or-later",
"keywords": [
"TYPO3",
"extension",
"optipng",
"jpegoptim",
"lossless",
"progressive"
],
"require": {
"typo3/cms-core": "^10.4 || ^11.5"
},
"extra": {
"typo3/cms": {
"extension-key": "imageoptimizer",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".Build",
"web-dir": ".Build/public"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"autoload": {
"psr-4": {
"Lemming\\Imageoptimizer\\": "Classes/"
}
},
"scripts": {
"run-tests":[
".Build/bin/phpstan analyse"
],
"lint-php": "find *.php Classes Configuration -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"prepare-release": [
"rm -rf .github",
"rm -rf .gitignore",
"rm -rf Documentation",
"rm -rf phpstan.neon"
]
},
"replace": {
"typo3-ter/imageoptimizer": "self.version"
},
"require-dev": {
"friendsoftypo3/phpstan-typo3": "^0.8.1",
"typo3/cms-reports": "^10.4 || ^11.5"
}
}