-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
97 lines (97 loc) · 3.42 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
87
88
89
90
91
92
93
94
95
96
97
{
"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": "dev@Leuchtfeuer.com",
"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": "dev@Leuchtfeuer.com",
"role": "Developer",
"homepage": "https://www.Leuchtfeuer.com"
}
],
"require": {
"php": ">=8.3",
"typo3/cms-backend": "^13.4",
"typo3/cms-core": "^13.4",
"typo3/cms-extbase": "^13.4",
"typo3/cms-frontend": "^13.4",
"symfony/console": "^7.1",
"doctrine/dbal": "^4.2",
"jaybizzle/crawler-detect": "^1.3",
"ext-intl": "*",
"ext-zip": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"typo3/testing-framework": "^8.0",
"friendsofphp/php-cs-fixer": "^3.0",
"saschaegerer/phpstan-typo3": "^1.10",
"phpstan/phpstan": "^1.11",
"ssch/typo3-rector": "^2.5",
"a9f/typo3-fractor": "^0.4"
},
"suggest": {
"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,
"a9f/fractor-extension-installer": 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"
],
"check:cs": "./.Build/bin/php-cs-fixer fix --dry-run --config ./php-cs-fixer.php --using-cache no --show-progress dots -v --diff --format=txt",
"fix:cs": "./.Build/bin/php-cs-fixer fix --config ./php-cs-fixer.php --using-cache no --show-progress dots -v --diff --format=txt",
"check:phpstan": "./.Build/bin/phpstan analyse -c ./phpstan.neon",
"tests:unit": "./.Build/bin/phpunit -c ./Tests/Build/UnitTests.xml",
"tests:functional": "./.Build/bin/phpunit -c ./Tests/Build/FunctionalTests.xml --bootstrap ./.Build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTestsBootstrap.php",
"tests:functional:ddev": "./.Build/bin/phpunit -c ./Tests/Build/FunctionalTestsDdev.xml --bootstrap ./.Build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTestsBootstrap.php"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/public",
"extension-key": "locate"
}
}
}