-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
77 lines (77 loc) · 2.51 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
{
"name": "sbuerk/typo3-ensure-admin",
"description": "Provides a TYPO3 cli command to create or update admin user",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Stefan Bürk",
"email": "[email protected]",
"role": "Maintainer"
}
],
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": true
},
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"repositories": {
"packages": {
"type": "path",
"url": "packages/*"
}
},
"require": {
"php": "^7.4 || ^8.0 || ^8.1 || ^8.2",
"typo3/cms-core": "~11.5@dev || ~12.4@dev"
},
"require-dev": {
"bnf/phpstan-psr-container": "^1.0.1",
"friendsoftypo3/phpstan-typo3": "^0.9.0",
"phpstan/phpstan": "^1.8.4",
"phpstan/phpstan-phpunit": "^1.1.1",
"phpstan/phpstan-strict-rules": "^1.4.3",
"phpunit/phpunit": "^9.6.7 || ^10.1",
"typo3/cms-backend": "^11.5 || ^12.3 || ~12.4@dev",
"typo3/cms-composer-installers": "^3 || ^5",
"typo3/coding-standards": "^0.5.0",
"typo3/testing-framework": "7.*.*@dev"
},
"autoload": {
"psr-4": {
"SBUERK\\CliEnsureAdmin\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"SBUERK\\CliEnsureAdmin\\Tests\\": "Tests/"
}
},
"scripts": {
"cgl:check": [
"@php -dxdebug.mode=off .Build/bin/php-cs-fixer fix --config=.Build/vendor/typo3/coding-standards/templates/extension_php-cs-fixer.dist.php --dry-run --diff --using-cache=no"
],
"cgl:fix": [
"@php -dxdebug.mode=off .Build/bin/php-cs-fixer fix --config=.Build/vendor/typo3/coding-standards/templates/extension_php-cs-fixer.dist.php --using-cache=no"
]
},
"scripts-descriptions": {
"cgl:check": "Checks all php source files for coding standard compliance.",
"cgl:fix": "Checks all php source files for coding standard compliance and fixes them."
},
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
},
"typo3/cms": {
"app-dir": ".Build",
"web-dir": ".Build/Web",
"extension-key": "cli_ensure_admin"
}
}
}