forked from lochmueller/staticfilecache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 1.63 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
{
"name": "lochmueller/staticfilecache",
"version": "5.2.0",
"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"
}
},
"repositories": [
{
"type": "composer",
"url": "https://composer.typo3.org/"
}
],
"autoload-dev": {
"psr-4": {
"SFC\\Staticfilecache\\Tests\\": "Tests"
}
},
"keywords": [
"TYPO3 CMS",
"Static file cache",
"Speed",
"Magic"
],
"authors": [
{
"name": "Tim Lochmüller",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://github.com/lochmueller"
}
],
"require": {
"php": ">=7.0.0",
"typo3/cms-core": "~8.7.0||9.0.0||dev-master"
},
"replace": {
"staticfilecache": "self.version",
"typo3-ter/staticfilecache": "self.version"
},
"homepage": "https://github.com/lochmueller/staticfilecache",
"license": "GPL-2.0+",
"support": {
"issues": "https://github.com/lochmueller/staticfilecache/issues"
},
"require-dev": {
"typo3/testing-framework": "~1.1.5",
"squizlabs/php_codesniffer": "^2.6",
"phpmd/phpmd": "^2.4",
"scrutinizer/ocular": "^1.3.0",
"friendsofphp/php-cs-fixer": "^2.7"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"Package": {
"partOfMinimalUsableSystem": true
}
}
}
}