-
Notifications
You must be signed in to change notification settings - Fork 47
/
composer.json
47 lines (47 loc) · 1.25 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
{
"name": "liip/rmt",
"description": "Release Management Tool: a handy tool to help releasing new version of your software",
"keywords": ["release", "version", "semantic versioning", "vcs tag", "pre-release", "post-release"],
"homepage": "http://github.com/liip/RMT",
"license": "MIT",
"authors": [
{
"name": "Jonathan Macheret",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "David Jeanmonod",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "http://github.com/liip/RMT/issues"
},
"require": {
"ext-json": "*",
"php": "^7.1|^8.0",
"symfony/console": "^3.4|^4.0|^5.0|^6.0|^7.0",
"symfony/yaml": "^3.4|^4.0|^5.0|^6.0|^7.0",
"symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
"composer/semver": "^3.4"
},
"autoload": {
"psr-0": {
"Liip": "src"
}
},
"bin": ["RMT"],
"config" : {
"bin-dir" : "bin",
"allow-plugins": {
"symfony/flex": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
}
}
}