forked from haassie/ext-page-speed-insights
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 920 Bytes
/
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
{
"name": "haassie/page-speed-insights",
"type": "typo3-cms-extension",
"description": "PageSpeed Insights extension for TYPO3",
"homepage": "https://www.richardhaeser.com",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Richard Haeser",
"role": "Developer"
}
],
"config": {
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin"
},
"require": {
"typo3/cms-core": "^9.5 || ^10.4 || ^11.1",
"ext-curl": "*",
"ext-json": "*"
},
"extra": {
"typo3/cms": {
"extension-key": "page_speed_insights"
}
},
"autoload": {
"psr-4": {
"Haassie\\PageSpeedInsights\\": "Classes/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15"
},
"scripts": {
"cgl": [
"php-cs-fixer fix -v --dry-run --using-cache false"
],
"cgl-fix": [
"php-cs-fixer fix -v --using-cache false"
]
}
}