-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
59 lines (59 loc) · 1.6 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
{
"name": "andersundsehr/geo_redirect",
"description": "Redirect users based on browser language and ip country to the right language version of the website",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"homepage": "https://github.com/andersundsehr/geo_redirect",
"require": {
"php": "~8.2.0 || ~8.3.0",
"ext-json": "*",
"composer-runtime-api": "^2",
"codezero/browser-locale": "^3.3",
"geoip2/geoip2": "^2",
"typo3/cms-backend": "^11.5.0 || ^12.4.0",
"typo3/cms-core": "^11.5.0 || ^12.4.0",
"typo3/cms-redirects": "^11.5.0 || ^12.4.0"
},
"require-dev": {
"andersundsehr/resource-watcher": "dev-master",
"phpunit/phpunit": "^10.5.25",
"pluswerk/grumphp-config": "^7.0.3",
"saschaegerer/phpstan-typo3": "^1.10.1",
"spatie/phpunit-watcher": "^1.23.6",
"ssch/typo3-rector": "^2.6.2",
"typo3/cms-reports": "*"
},
"autoload": {
"psr-4": {
"AUS\\GeoRedirect\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"AUS\\GeoRedirect\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"pluswerk/grumphp-config": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"sort-packages": true
},
"extra": {
"typo3/cms": {
"extension-key": "geo_redirect"
}
},
"scripts": {
"test": "phpunit Tests",
"test:watch": [
"Composer\\Config::disableProcessTimeout",
"phpunit-watcher watch < /dev/tty"
]
}
}