-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
62 lines (62 loc) · 1.93 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
{
"name": "helhum/typo3-config-handling",
"description" : "Simple but powerful configuration handling for TYPO3 CMS",
"license": "GPL-2.0-or-later",
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"helhum/config-loader": ">=0.12.5 <0.13",
"helhum/typo3-console": "^8.1.1",
"symfony/console": "^5.4 || ^6.4 || ^7.0",
"symfony/yaml": "^5.4 || ^6.4 || ^7.0",
"typo3/cms-composer-installers": "^4.0@rc || >=5.0",
"typo3/cms-core": "^11.5.20 || ^12.4",
"composer-runtime-api": "^2.2",
"symfony/polyfill-php80": "^1.23.1"
},
"require-dev": {
"phpunit/phpunit": "^8.5.36",
"composer/composer": "^2.2",
"php-parallel-lint/php-parallel-lint": "^1.2",
"mikey179/vfsstream": "^1.6.10"
},
"conflict": {
"typo3-console/composer-auto-commands": "< 0.3.0",
"helhum/typo3-console-plugin": "< 2.0.7"
},
"suggest": {
"typo3/cms-install": "If you want to update distribution configuration with Extension Manager or Install Tool UI",
"defuse/php-encryption": "For having the encrypt/decrypt feature of settings"
},
"autoload": {
"psr-4": {
"Helhum\\TYPO3\\ConfigHandling\\": "src/"
},
"files": [
"res/php/autoload-include.php"
]
},
"autoload-dev": {
"psr-4": {
"Helhum\\TYPO3\\ConfigHandling\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
},
"typo3/cms": {
"Package": {
"serviceProvider": "Helhum\\TYPO3\\ConfigHandling\\ServiceProvider",
"protected": true,
"partOfMinimalUsableSystem": true
}
}
}
}