forked from TYPO3/CmsComposerInstallers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
73 lines (73 loc) · 1.91 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
{
"name": "gstypo3/cms-composer-installers",
"type": "composer-plugin",
"description": "TYPO3 CMS Installers",
"keywords": [
"installer", "typo3", "cms", "core", "extension"
],
"homepage": "https://github.com/TYPO3/CmsComposerInstallers",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "TYPO3 CMS Core Team",
"role": "Developer",
"homepage": "https://forge.typo3.org/projects/typo3cms-core"
},
{
"name": "The TYPO3 Community",
"role": "Contributor",
"homepage": "https://typo3.org/community/"
}
],
"support": {
"general": "https://typo3.org/support/",
"issues": "https://github.com/TYPO3/CmsComposerInstallers/issues"
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\Composer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TYPO3\\CMS\\ComposerTest\\": "tests/"
}
},
"replace": {
"lw/typo3cms-installers": "*",
"netresearch/composer-installers": "*",
"typo3/cms-composer-installers": "3.1.1"
},
"require": {
"php": "^7.4 || ^8.0",
"composer-plugin-api": "^2.1.0"
},
"require-dev": {
"composer/composer": "^2.1",
"overtrue/phplint": "^2.0",
"phpunit/phpunit": "^8.5",
"friendsofphp/php-cs-fixer": "^2.18"
},
"conflict": {
"composer/installers": "<2.0.0"
},
"scripts": {
"test:php:lint": [
"phplint"
],
"test:php:unit": [
"Composer\\Config::disableProcessTimeout",
"phpunit"
],
"test": [
"@test:php:lint",
"@test:php:unit"
]
},
"extra": {
"class": "TYPO3\\CMS\\Composer\\Installer\\Plugin",
"branch-alias": {
"dev-master": "4.0.x-dev"
}
}
}