-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 883 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 883 Bytes
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
{
"name": "b13/http2",
"type": "typo3-cms-extension",
"description": "Speed up TYPO3 rendering via HTTP/2 Server Push",
"require": {
"typo3/cms-core": "^14.1",
"typo3/cms-frontend": "^14.1"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"friendsofphp/php-cs-fixer": "^3.94",
"phpstan/phpstan": "^2.1",
"typo3/testing-framework": "^9.1",
"typo3/coding-standards": "^0.8.0"
},
"homepage": "https://b13.com",
"license": ["GPL-2.0-or-later"],
"authors": [{
"name": "Benni Mack",
"email": "benni@b13.com",
"role": "Maintainer"
}],
"extra": {
"typo3/cms": {
"extension-key": "http2"
}
},
"autoload": {
"psr-4": {
"B13\\Http2\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"B13\\Http2\\Tests\\": "Tests"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
}
}