-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.08 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
{
"name": "voidtek/generator-awesome-list",
"description": "Generator for GitHub awesome lists using compose.",
"type": "project",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1",
"composer/installers": "^1.5",
"cweagans/composer-patches": "^1.0",
"webmozart/path-util": "^2.3"
},
"scripts": {
"post-root-package-install": [
"GeneratorAwesomeList\\composer\\GeneratorWizard::run"
],
"post-create-project-cmd": [
"GeneratorAwesomeList\\composer\\CheckGeneratorWizard::run",
"GeneratorAwesomeList\\composer\\GeneratorWizard::cleanup"
]
},
"extra": {
"composer-exit-on-patch-failure": true,
"enable-patching": true
},
"autoload": {
"classmap": [
"scripts/composer/GeneratorWizard.php",
"scripts/composer/CheckGeneratorWizard.php"
]
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.1.9"
}
}
}