forked from AOEpeople/Tagging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.27 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
{
"name": "aoe/tagging",
"description": "Build-Tool to automatic increase the version and create a tag in the remote VCS repository.",
"homepage": "https://github.com/AOEpeople/tagging",
"license": "GPL-3.0",
"support": {
"email": "[email protected]",
"issues": "https://github.com/AOEpeople/tagging/issues",
"source": "https://github.com/AOEpeople/tagging"
},
"authors": [
{
"name": "AOE GmbH",
"email": "[email protected]",
"homepage": "http://www.aoe.com"
}
],
"require": {
"php": ">=5.6.0",
"symfony/console": "2.7.*",
"webcreate/vcs": "1.2.*",
"vierbergenlars/php-semver": "4.0.0"
},
"require-dev": {
"phpunit/phpunit": "4.7.*",
"squizlabs/php_codesniffer": "2.3.*"
},
"autoload": {
"psr-4": {
"AOE\\Tagging\\": "src/",
"AOE\\Tagging\\Tests\\": "test/"
}
},
"bin": [
"bin/tagging"
],
"keywords": [
"GIT",
"Subversion",
"VCS",
"Tag",
"Tagging",
"automatic",
"build"
],
"repositories": [
{
"type": "git",
"url": "https://github.com/AOEpeople/php-semver.git"
}
]
}