forked from Leuchtfeuer/locate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
86 lines (86 loc) · 2.61 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "leuchtfeuer/locate",
"description": "The users country, preferred language and other facts will be detected. Depending on configurable rules the user can be redirected to other languages or pages. Locate also provides geo blocking for configurable pages in configurable countries.",
"keywords": [
"TYPO3",
"extension",
"language",
"locate",
"IP2Country",
"Geo blocking"
],
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"homepage": "https://www.Leuchtfeuer.com",
"support": {
"email": "[email protected]",
"issues": "https://github.com/Leuchtfeuer/locate/issues",
"source": "https://github.com/Leuchtfeuer/locate/",
"docs": "https://docs.typo3.org/p/leuchtfeuer/locate/master/en-us/"
},
"authors": [
{
"name": "Dev",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.Leuchtfeuer.com"
}
],
"require": {
"php": ">=8.1",
"typo3/cms-backend": "^12.4",
"typo3/cms-core": "^12.4",
"typo3/cms-extbase": "^12.4",
"typo3/cms-frontend": "^12.4",
"symfony/console": "^6.3",
"doctrine/dbal": "^3.6"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"typo3/testing-framework": "^8.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"suggest": {
"jaybizzle/crawler-detect": "If you do not want to redirect bots.",
"sjbr/static-info-tables": "If you want to use IP based data.",
"ext-gmp": "Recommended for an accurate IPv6 calculation.",
"ext-bcmath": "Alternative for an accurate IPv6 calculation. Not needed if you have gmp installed."
},
"replace": {
"typo3-ter/locate": "self.version",
"bitmotion/locate": "self.version"
},
"autoload": {
"psr-4": {
"Leuchtfeuer\\Locate\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Leuchtfeuer\\Locate\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare",
"mkdir -p .Build/public/typo3conf/ext/",
"[ -L .Build/public/typo3conf/ext/locate ] || ln -snvf ../../../../. .Build/public/typo3conf/ext/locate"
],
"cs-fix": ".Build/bin/php-cs-fixer fix --config php-cs-fixer.php --using-cache no --show-progress dots -v"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/public",
"extension-key": "locate"
}
}
}