-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 2.24 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
{
"type": "composer-plugin",
"name": "sweetchuck/composer-suite",
"description": "Generates multiple variations of the original composer.json",
"keywords": [],
"authors": [
{
"name": "Andor",
"role": "Maintainer",
"homepage": "https://github.com/Sweetchuck"
}
],
"homepage": "https://github.com/Sweetchuck/composer-suite",
"support": {
"source": "https://github.com/Sweetchuck/composer-suite",
"issues": "https://github.com/Sweetchuck/composer-suite/issues"
},
"license": "GPL-3.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"sweetchuck/git-hooks": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"repositories": {},
"require": {
"php": ">=7.4",
"ext-json": "*",
"composer-plugin-api": "^2.0",
"sweetchuck/composer-suite-handler": "^1.0",
"symfony/filesystem": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/finder": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"codeception/codeception": "^4.0",
"codeception/module-asserts": "^2.0",
"codeception/module-cli": "^2.0",
"codeception/module-filesystem": "^2.0",
"composer/composer": "^2.0",
"mikey179/vfsstream": "^1.6",
"nuvoleweb/robo-config": "2.x-dev",
"squizlabs/php_codesniffer": "^3.5",
"stecman/symfony-console-completion": "^0.11",
"sweetchuck/git-hooks": "2.x-dev",
"sweetchuck/robo-git": "2.x-dev",
"sweetchuck/robo-phpcs": "2.x-dev",
"sweetchuck/robo-phpmd": "2.x-dev",
"symfony/error-handler": "^5.0 || ^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"Sweetchuck\\ComposerSuite\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sweetchuck\\ComposerSuite\\Test\\Acceptance\\": "tests/acceptance/",
"Sweetchuck\\ComposerSuite\\Test\\Unit\\": "tests/unit/",
"Sweetchuck\\ComposerSuite\\Test\\": "tests/_support/"
}
},
"extra": {
"class": "\\Sweetchuck\\ComposerSuite\\Composer\\Plugin"
}
}