-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 852 Bytes
/
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
{
"name": "simonschaufi/typo3-installer",
"description": "TYPO3 CMS installer",
"keywords": [
"typo3",
"installer"
],
"license": "MIT",
"authors": [],
"require": {
"php": "^8.1",
"symfony/console": "^5.4 || ^6.4",
"symfony/process": "^5.4 || ^6.4"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"bin": [
"bin/typo3"
],
"autoload": {
"psr-4": {
"TYPO3\\Installer\\Console\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TYPO3\\Installer\\Console\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}