-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
116 lines (116 loc) · 3.23 KB
/
Copy pathcomposer.json
File metadata and controls
116 lines (116 loc) · 3.23 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "move-elevator/typo3-image-compression",
"description": "Automatically compress images using TinyPNG API, local tools (jpegoptim, optipng, etc.), or ImageMagick/GraphicsMagick",
"license": [
"GPL-2.0-or-later"
],
"type": "typo3-cms-extension",
"keywords": [
"typo3",
"typo3-extension",
"image",
"compression",
"optimization",
"tinypng",
"jpegoptim",
"imagemagick"
],
"authors": [
{
"name": "Konrad Michalik",
"email": "km@move-elevator.de",
"role": "Maintainer"
},
{
"name": "Ronny Hauptvogel",
"email": "rh@move-elevator.de",
"role": "Maintainer"
}
],
"homepage": "https://github.com/move-elevator/typo3-image-compression",
"support": {
"issues": "https://github.com/move-elevator/typo3-image-compression/issues",
"source": "https://github.com/move-elevator/typo3-image-compression"
},
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"ext-fileinfo": "*",
"doctrine/dbal": "^3.8 || ^4.0",
"psr/container": "^1.1 || ^2.0",
"psr/log": "^2.0 || ^3.0",
"symfony/console": "^6.4 || ^7.0 || ^8.0",
"tinify/tinify": "^1.6",
"typo3/cms-backend": "^12.4 || ^13.4 || ^14.3",
"typo3/cms-core": "^12.4 || ^13.4 || ^14.3",
"typo3/cms-extbase": "^12.4 || ^13.4 || ^14.3",
"typo3/cms-filelist": "^12.4 || ^13.4 || ^14.3",
"typo3/cms-fluid": "^12.4 || ^13.4 || ^14.3",
"typo3/cms-frontend": "^12.4 || ^13.4 || ^14.3",
"typo3/cms-reports": "^12.4 || ^13.4 || ^14.3"
},
"require-dev": {
"composer/class-map-generator": "^1.7 || ^2.0",
"eliashaeussler/version-bumper": "^2.4 || ^3.0 || ^4.0",
"konradmichalik/ttt": "^0.4.0",
"phpunit/phpcov": "^9.0 || ^10.0 || ^11.0 || ^12.0",
"phpunit/phpunit": "^10.5 || ^11.0 || ^12.0 || ^13.0",
"typo3/cms-install": "^12.4 || ^13.4 || ^14.3",
"typo3/cms-lowlevel": "^12.4 || ^13.4 || ^14.3",
"typo3/testing-framework": "^8.3 || ^9.5"
},
"autoload": {
"psr-4": {
"MoveElevator\\Typo3ImageCompression\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"MoveElevator\\Typo3ImageCompression\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"eliashaeussler/version-bumper": true,
"helhum/dotenv-connector": true,
"php-http/discovery": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"audit": {
"block-insecure": false
},
"sort-packages": true
},
"extra": {
"konradmichalik/php-cs-fixer-preset": {
"copyright": 2025
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "typo3_image_compression",
"web-dir": "public"
},
"unused": [
"typo3/cms-frontend"
]
},
"scripts": {
"post-install-cmd": [
"@cgl install"
],
"cgl": "@composer -d Tests/CGL --",
"test": [
"@test:unit",
"@test:functional"
],
"test:coverage": [
"rm -rf .Build/coverage/cov",
"phpunit -c phpunit.xml --coverage-php=.Build/coverage/cov/unit.cov",
"phpunit -c FunctionalTests.xml --coverage-php=.Build/coverage/cov/functional.cov",
"phpcov merge --clover=.Build/coverage/clover.xml --html=.Build/coverage/html --text=php://stdout .Build/coverage/cov"
],
"test:coverage:unit": "phpunit -c phpunit.xml",
"test:functional": "phpunit -c FunctionalTests.xml",
"test:unit": "phpunit -c phpunit.xml --no-coverage"
}
}