-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.65 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.65 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
{
"name": "pluswerk/minify",
"description": "Pluswerk: Minify - Minifies your html",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"homepage": "https://www.pluswerk.ag",
"support": {
"source": "https://github.com/pluswerk/minify"
},
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"composer-runtime-api": "^2",
"typo3/cms-core": "^12.4 || ^13.4",
"voku/html-min": "^5.0.0"
},
"require-dev": {
"andersundsehr/ssi-include": "^1.1.0 || ^2.2.0",
"pluswerk/grumphp-config": "^7 || ^10",
"saschaegerer/phpstan-typo3": "^1.10.2 || ^2.1.1",
"ssch/typo3-rector": "^2.15.2 || ^3.14.1",
"typo3/testing-framework": "^8.2 || ^9.4"
},
"autoload": {
"psr-4": {
"Pluswerk\\PlusMinify\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Pluswerk\\PlusMinify\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"pluswerk/grumphp-config": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"sort-packages": true
},
"extra": {
"typo3/cms": {
"extension-key": "minify"
}
},
"scripts": {
"switchto12": [
"rm -rf composer.lock vendor/composer/installed.json",
"@composer req typo3/minimal:^12 --dev --no-interaction --no-progress"
],
"switchto13": [
"rm -rf composer.lock vendor/composer/installed.json",
"@composer req typo3/minimal:^13 --dev --no-interaction --no-progress"
],
"test": "@php ./vendor/bin/phpunit --testdox --stderr"
}
}