-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.57 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.57 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "move-elevator/me-backend-security",
"description": "Advanced security for the TYPO3 backend",
"type": "typo3-cms-extension",
"license": [
"GPL-2.0-or-later"
],
"require": {
"php": "^8.0",
"typo3/cms-core": "^11.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"mockery/mockery": "^1.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^8.0",
"typo3/minimal": "^11.5"
},
"scripts": {
"phpcs": [
"@phpcs:main",
"@phpcs:test"
],
"phpcs:main": "@php ./vendor/bin/php-cs-fixer fix -v --dry-run --rules=@PSR12 ./Classes/",
"phpcs:test": "@php ./vendor/bin/php-cs-fixer fix -v --dry-run --rules=@PSR12 ./Tests/",
"phpcs:fix": [
"@phpcs:fix:main",
"@phpcs:fix:test"
],
"phpcs:fix:main": "@php ./vendor/bin/php-cs-fixer fix --rules=@PSR12 ./Classes/",
"phpcs:fix:test": "@php ./vendor/bin/php-cs-fixer fix --rules=@PSR12 ./Tests/",
"phpstan": "@php ./vendor/bin/phpstan analyse ./Classes/",
"phpunit": "@php ./vendor/bin/phpunit -c ./Build/phpunit.xml --debug --verbose",
"php:validate": [
"@phpcs",
"@phpstan",
"@phpunit"
]
},
"extra": {
"typo3/cms": {
"extension-key": "me_backend_security"
}
},
"autoload": {
"psr-4": {
"MoveElevator\\MeBackendSecurity\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"MoveElevator\\MeBackendSecurity\\Tests\\": "Tests"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
}
}