-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.36 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
{
"name": "intera-typo3-extension/cacheopt",
"type": "typo3-cms-extension",
"description": "Optimizes automatic cache clearing.",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Alexander Stehlik",
"email": "astehlik.deleteme@intera.de",
"role": "Developer",
"homepage": "http://www.intera.de"
}
],
"require": {
"php": "^7.2",
"typo3/cms-core": "^10.0"
},
"require-dev": {
"typo3/cms-fluid-styled-content": "*",
"de-swebhosting/typo3-extension-buildtools": "dev-master"
},
"replace": {
"typo3-ter/cacheopt": "self.version"
},
"autoload": {
"psr-4": {
"Tx\\Cacheopt\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"TYPO3\\JsonResponse\\": ".Build/vendor/typo3/testing-framework/Resources/Core/Functional/Extensions/json_response/Classes",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/Web/typo3/sysext/core/Tests/",
"Tx\\Cacheopt\\Tests\\": "Tests/",
"Tx\\CacheoptTest\\": "Tests/Functional/Fixtures/Extensions/cacheopt_test/Classes/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare",
"De\\SWebhosting\\Buildtools\\ExtensionTestEnvironment::prepare"
]
},
"extra": {
"typo3/cms": {
"app-dir": ".Build",
"web-dir": ".Build/Web",
"extension-key": "cacheopt"
}
}
}