forked from lochmueller/staticfilecache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·87 lines (87 loc) · 2.1 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
{
"name": "lochmueller/staticfilecache",
"version": "5.3.3",
"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.1.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": "~2.0.4",
"squizlabs/php_codesniffer": "^2.6",
"phpmd/phpmd": "^2.4",
"scrutinizer/ocular": "^1.3.0",
"friendsofphp/php-cs-fixer": "^2.7",
"phpmetrics/phpmetrics": "^2.3"
},
"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
}
}
},
"scripts": {
"phpmetrics": [
"phpmetrics --report-html=.Build/Report Classes/"
],
"phpmd": [
"phpmd Classes/ text cleancode,codesize,controversial,design,naming,unusedcode"
],
"php-cs-fixer": [
"php-cs-fixer fix --config .php_cs"
],
"phpcs": [
"phpcs --runtime-set ignore_warnings_on_exit true --standard=PSR2 Classes/"
],
"phpunit": [
"phpunit -c Tests/UnitTests.xml"
]
}
}