-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
composer.json
executable file
·94 lines (94 loc) · 2.51 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
88
89
90
91
92
93
94
{
"name": "lochmueller/staticfilecache",
"type": "typo3-cms-extension",
"description": "Transparent static file cache solution using mod_rewrite and mod_expires. Increase performance for static pages by a factor of 230!!",
"autoload": {
"psr-4": {
"SFC\\Staticfilecache\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"SFC\\Staticfilecache\\Tests\\": "Tests"
}
},
"keywords": [
"TYPO3 CMS",
"StaticFileCache",
"Static",
"File",
"Cache",
"Speed",
"Magic"
],
"authors": [
{
"name": "Tim Lochmüller",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://github.com/lochmueller"
}
],
"require": {
"php": "^8.1",
"ext-pdo": "*",
"ext-zlib": "*",
"typo3/cms-core": "^12.4||^13.4",
"typo3/cms-backend": "^12.4||^13.4",
"typo3/cms-extensionmanager": "^12.4||^13.4"
},
"license": "GPL-2.0-or-later",
"homepage": "https://extensions.typo3.org/extension/staticfilecache",
"support": {
"docs": "https://docs.typo3.org/p/lochmueller/staticfilecache/main/en-us/",
"issues": "https://github.com/lochmueller/staticfilecache/issues",
"source": "https://github.com/lochmueller/staticfilecache"
},
"require-dev": {
"typo3/testing-framework": "^8.0",
"friendsofphp/php-cs-fixer": "^3.30",
"ssch/typo3-rector": "^2.2",
"phpstan/phpstan": "^1.10",
"saschaegerer/phpstan-typo3": "^1.8",
"andersundsehr/phpstan-git-files": "^1.0",
"phpstan/extension-installer": "^1.3"
},
"suggest": {
"lochmueller/seocli": "Scan websites against SEO criteria and/or trigger the indexing process and cache warming in deployment scripts",
"friendsofsymfony/http-cache": "For HTTP proxy cache services like Varnish"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"phpstan/extension-installer": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "staticfilecache",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"scripts": {
"code-fix": [
"PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --config Resources/Private/Build/PhpCsFixer.php --cache-file=.Build/phpcs.cache"
],
"code-check": [
"PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --config Resources/Private/Build/PhpCsFixer.php --cache-file=.Build/phpcs.cache --dry-run",
"phpstan --memory-limit=1024M"
],
"test": [
"phpunit -c Tests/UnitTests.xml"
],
"phpstan": [
"phpstan --memory-limit=1024M"
],
"rector": [
"rector"
]
}
}