forked from shivas/versioning-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.21 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
{
"name": "20steps/versioning-bundle",
"type": "symfony-bundle",
"keywords": ["semantic", "version", "versioning", "semver"],
"description": "Symfony3 application versioning, simple console command to manage version (with handlers e.g. git tag) of your application using Semantic Versioning 2.0.0 recomendations",
"homepage": "https://github.com/20steps/versioning-bundle",
"license": "MIT",
"authors": [
{
"name": "Audrius Karabanovas",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Helmut Hoffer von Ankershoffen",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/20steps/versioning-bundle/issues",
"wiki": "https://github.com/20steps/versioning-bundle/wiki"
},
"require": {
"php": ">=7.0",
"herrera-io/version": "~1.0",
"symfony/symfony": "~3.0",
"symfony/process": "~3.0"
},
"require-dev": {
"composer/composer": "^1.0@dev"
},
"autoload": {
"psr-4": { "Shivas\\VersioningBundle\\": "src/" }
},
"minimum-stability": "dev"
}