-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathcomposer.json
61 lines (61 loc) · 1.57 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
{
"name": "devshop/yaml-tasks",
"type": "composer-plugin",
"description": "Plugin to run commands from a YML file and pass to GitHub commit status API.",
"keywords": [],
"homepage": "https://getdevshop.com",
"license": "MIT",
"authors": [
{
"name": "Jon Pugh",
"email": "[email protected]"
},
{
"name": "DevShop Community",
"homepage": "https://github.com/opendevshop/devshop/graphs/contributors"
}
],
"require": {
"ext-json": "*",
"composer-plugin-api": "^1.0 || ^2.0",
"consolidation/robo": "^2",
"devshop/power-process": "@dev",
"guzzlehttp/guzzle": "^6",
"guzzlehttp/psr7": "^1.9",
"http-interop/http-factory-guzzle": "^1.2",
"knplabs/github-api": "^3.9||^1.0",
"php-http/guzzle6-adapter": "2.x-dev",
"teqneers/php-stream-wrapper-for-git": "^2.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5"
},
"repositories": [
{
"type": "path",
"url": "../PowerProcess"
}
],
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"class": "DevShop\\Component\\YamlTasks\\Composer\\Plugin"
},
"autoload": {
"psr-4": {
"DevShop\\Component\\YamlTasks\\": ""
}
},
"bin": [
"yaml-tasks"
],
"config": {
"bin-dir": "bin",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "dev"
}