forked from lochmueller/staticfilecache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·85 lines (85 loc) · 2.06 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
{
"name": "lochmueller/staticfilecache",
"type": "typo3-cms-extension",
"description": "Transparent StaticFileCache 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": "^7.3||^7.4",
"ext-pdo": "*",
"ext-zlib": "*",
"typo3/cms-core": "^10.4.6",
"typo3/cms-extensionmanager": "^10.4.6"
},
"replace": {
"typo3-ter/staticfilecache": "self.version"
},
"homepage": "https://github.com/lochmueller/staticfilecache",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/lochmueller/staticfilecache/issues"
},
"require-dev": {
"typo3/testing-framework": "^6.1",
"friendsofphp/php-cs-fixer": "^2.16",
"phpmetrics/phpmetrics": "^2.5"
},
"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"
},
"extra": {
"typo3/cms": {
"extension-key": "staticfilecache",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"scripts": {
"code": [
"@code:php-cs-fixer",
"@code:metrics"
],
"code:metrics": [
"phpmetrics --report-html=.Build/PhpMetrics . --exclude='.Build,Tests'"
],
"code:phpdoc": [
"docker run --rm -v $(pwd):/data phpdoc/phpdoc -d Classes -t .Build/phpdoc"
],
"code:php-cs-fixer": [
"php-cs-fixer fix --config Resources/Private/Build/PhpCsFixer.php --cache-file=.Build/phpcs.cache"
],
"test": [
"phpunit -c Tests/UnitTests.xml"
]
}
}