-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.27 KB
/
Copy pathcomposer.json
File metadata and controls
49 lines (49 loc) · 1.27 KB
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": "skeuper/backend-ip-login",
"description": "Remember the login based on the network mask or ip. Only for development, unsafe for live environments!",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Steffen Keuper",
"role": "Developer"
}
],
"require": {
"php": "^7.4 || ^8.0",
"typo3/cms-core": "^11.5 || ^12.4 || ^13.4 || ^14.3"
},
"require-dev": {
"phpunit/phpunit": "^9.6 || ^10.5 || ^11.5",
"phpstan/phpstan": "^1.11 || ^2.0",
"saschaegerer/phpstan-typo3": "^1.10 || ^2.0 || ^3.0",
"typo3/testing-framework": "^7.0 || ^8.0 || ^9.0"
},
"autoload": {
"psr-4": {
"SKeuper\\BackendIpLogin\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"SKeuper\\BackendIpLogin\\Tests\\": "Tests/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "backend_ip_login"
}
},
"scripts": {
"test:unit": "phpunit",
"test:functional": "phpunit -c Build/FunctionalTests.xml",
"analyse": "phpstan analyse --memory-limit=512M",
"lint": "find Classes Tests -name '*.php' -print0 | xargs -0 -n1 -P4 php -l"
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
}
}