forked from opendevshop/devshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
100 lines (100 loc) · 3.28 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "devshop/devshop",
"type": "library",
"description": "The DevShop DevOps Framework",
"keywords": ["framework", "devops", "platform", "hosting", "drupal", "web"],
"homepage": "https://getdevshop.com",
"license": "MIT",
"authors": [
{
"name": "Jon Pugh",
"email": "[email protected]",
"role": "Author"
},
{
"name": "DevShop Community",
"homepage": "https://github.com/opendevshop/devshop/graphs/contributors"
}
],
"require": {
"php": "^7.1",
"knplabs/github-api": "^1.4",
"drush/drush": "^8",
"ext-json": "*",
"devshop/git-split": "self.version",
"devshop/github-api-cli": "self.version",
"devshop/power-process": "self.version"
},
"replace": {
"devshop/yaml-tasks": "self.version"
},
"require-dev": {
"composer/composer": "^1.9"
},
"suggest": {
"mouf/nodejs-installer": "Use to install nodejs into the devshop bin dir using composer."
},
"autoload": {
"psr-4": {
"DevShop\\": "src/DevShop/"
}
},
"repositories": [
{
"type": "path",
"url": "src/DevShop/Component/ComposerCommon"
},
{
"type": "path",
"url": "src/DevShop/Component/GitSplit"
},
{
"type": "path",
"url": "src/DevShop/Component/GitHubApiCli"
},
{
"type": "path",
"url": "src/DevShop/Component/PowerProcess"
}
],
"bin": [
"scripts/devshop",
"scripts/branch-or-tag"
],
"config": {
"bin-dir": "bin",
"platform": {
"php": "7.1.3"
},
"sort-packages:": "true"
},
"extra": {
"git-split": {
"repos": {
"docs": "https://github.com/opendevshop/documentation.git",
"tests/test-repo": "https://github.com/devshop-packages/test-repo.git",
"devmaster": "https://github.com/opendevshop/devmaster.git",
"roles/opendevshop.apache": "https://github.com/opendevshop/ansible-role-apache.git",
"roles/opendevshop.devmaster": "https://github.com/opendevshop/ansible-role-devmaster.git",
"roles/opendevshop.users": "https://github.com/opendevshop/ansible-role-user.git",
"src/DevShop/Component/ComposerCommon": "https://github.com/devshop-packages/composer-common.git",
"src/DevShop/Component/GitHubApiCli": "https://github.com/devshop-packages/github-api-cli.git",
"src/DevShop/Component/GitSplit": "https://github.com/devshop-packages/git-split.git",
"src/DevShop/Component/PowerProcess": "https://github.com/devshop-packages/power-process.git",
"src/DevShop/Component/YamlTasks": "https://github.com/devshop-packages/yaml-tasks.git",
"install": "https://github.com/opendevshop/devshop-install.git"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-install-cmd": [
],
"pre-update-cmd": [
],
"update-roles": [
"DevShop\\Composer::updateRoles"
]
}
}