forked from b13/http2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.19 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
{
"name": "b13/http2",
"type": "typo3-cms-extension",
"description": "Speed up TYPO3 rendering via HTTP/2 Server Push",
"require": {
"php": "^7.4 || ^8.0",
"psr/http-server-middleware": "^1.0",
"typo3/cms-core": "^10.0 || ^11.0 || ^12.0",
"typo3/cms-frontend": "^10.0 || ^11.0 || ^12.0"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"squizlabs/php_codesniffer": "^2.3",
"typo3/tailor": "^1.4.0"
},
"homepage": "https://b13.com",
"license": ["GPL-2.0-or-later"],
"authors": [{
"name": "Benni Mack",
"email": "[email protected]",
"role": "Maintainer"
}],
"extra": {
"typo3/cms": {
"extension-key": "http2"
}
},
"autoload": {
"psr-4": {
"B13\\Http2\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"B13\\Http2\\Tests\\": "Tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 Classes Tests",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 Classes Tests"
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
}
}