This repository has been archived by the owner on Apr 3, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.72 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
{
"name": "andrey-helldar/package-wizard-template",
"description": "Basic template for the Package Wizard extension.",
"license": "MIT",
"type": "library",
"keywords": [
"composer",
"init",
"initializer",
"package",
"packages",
"plugin",
"wizard",
"template",
"preset"
],
"authors": [
{
"name": "Andrey Helldar",
"email": "[email protected]",
"homepage": "https://github.com/andrey-helldar"
}
],
"support": {
"issues": "https://github.com/andrey-helldar/package-wizard/issues",
"source": "https://github.com/andrey-helldar/package-wizard"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/TheDragonCode"
},
{
"type": "open_collective",
"url": "https://opencollective.com/dragon-code"
},
{
"type": "boosty",
"url": "https://boosty.to/dragon-code"
},
{
"type": "yoomoney",
"url": "https://yoomoney.ru/to/410012608840929"
}
],
"require-dev": {
"andrey-helldar/package-wizard": "^1.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Helldar\\PackageWizardTemplate\\": "src"
}
},
"config": {
"allow-plugins": {
"dragon-code/codestyler": true,
"ergebnis/composer-normalize": true,
"friendsofphp/php-cs-fixer": true,
"andrey-helldar/package-wizard": true
},
"preferred-install": "dist",
"sort-packages": true
}
}