-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
49 lines (49 loc) · 1.43 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
{
"name": "in2code/in2frontendauthentication",
"description": "Simulate fe_groups login by IP address",
"keywords": ["typo3", "ip", "felogin"],
"homepage": "https://github.com/in2code-de/in2frontendauthentication",
"authors": [
{
"name": "Alex Kellner",
"email": "[email protected]"
}
],
"type": "typo3-cms-extension",
"license": "GPL-3.0",
"require": {
"php": "^7.4 || ^8.0",
"typo3/cms-core": "^11.5 || ^12.4",
"s1lentium/iptools": "^1.1 || dev-master#88be1aaaab3c50fc131ebe778e246215ff006d8e"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd": "^2.8",
"friendsofphp/php-cs-fixer": "^3.10",
"helmich/typo3-typoscript-lint": "^2.5"
},
"replace": {
"typo3-ter/in2frontendauthentication": "self.version"
},
"autoload": {
"psr-4": {
"In2code\\In2frontendauthentication\\": "Classes"
}
},
"scripts": {
"test:php:cs": "php-cs-fixer fix --dry-run --config=.project/tests/.php-cs-fixer.php --diff",
"test:php:lint": "find *.php Classes Configuration -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"test:ts:lint": "typoscript-lint -c .project/tests/typoscript-lint.yml --fail-on-warnings"
},
"extra": {
"typo3/cms": {
"extension-key": "in2frontendauthentication"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
}
}