-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·60 lines (60 loc) · 1.34 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
{
"name": "hdnet/cdn-fastly",
"type": "typo3-cms-extension",
"description": "Extension for handling TYPO3 requests for better CDN integration in fastly.",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Pavel Musitschenko",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2||^7.3||^7.4||^8.0||8.1",
"typo3/cms-core": "^11.5",
"typo3/cms-backend": "^11.5",
"typo3/cms-extbase": "^11.5"
},
"autoload": {
"psr-4": {
"HDNET\\CdnFastly\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"HDNET\\CdnFastly\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "cdn_fastly",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"require-dev": {
"nimut/testing-framework": "^6.0",
"typo3/coding-standards": "^0.5.2",
"friendsofphp/php-cs-fixer": "^3.1"
},
"scripts": {
"test": [
"phpunit -c .Build/vendor/nimut/testing-framework/res/Configuration/UnitTests.xml Tests/Unit"
],
"code": [
"@tool:php-cs-fixer",
"@tool:psalm"
],
"tool:php-cs-fixer": [
"php-cs-fixer fix --config Resources/Private/Build/PhpCsFixer.php --cache-file var/php_cs.cache"
]
}
}