-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
45 lines (45 loc) · 1.23 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
{
"name": "enomotodev/gitlabci-composer-update-mr",
"description": "Create MergeRequest of composer update in GitLabCI",
"keywords": ["composer", "gitlabci", "gitlab"],
"license": "MIT",
"type": "library",
"homepage": "https://enomotodev.hatenablog.com/",
"support": {
"issues": "https://github.com/enomotodev/gitlabci-composer-update-mr/issues",
"source": "https://github.com/enomotodev/gitlabci-composer-update-mr"
},
"authors": [
{
"name": "enomotodev",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6 || ^7.0",
"enomotodev/composer-lock-diff": "^1.0",
"m4tthumphrey/php-gitlab-api": "^9.11",
"php-http/guzzle6-adapter": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"bin": [
"gitlabci-composer-update-mr"
],
"autoload": {
"psr-4": {
"Enomotodev\\GitLabCIComposerUpdateMr\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Enomotodev\\GitLabCIComposerUpdateMr\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}