-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
44 lines (44 loc) · 1.47 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
{
"name": "shivas/versioning-bundle",
"type": "symfony-bundle",
"keywords": ["semantic", "version", "versioning", "semver"],
"description": "Symfony application versioning, simple console command to manage version (with providers e.g. git tag) of your application using Semantic Versioning 2.0.0 recommendations",
"homepage": "https://github.com/shivas/versioning-bundle",
"license": "MIT",
"authors": [
{
"name": "Audrius Karabanovas",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/shivas/versioning-bundle/issues",
"wiki": "https://github.com/shivas/versioning-bundle/wiki"
},
"require": {
"php": "^7.2.5 || ^8",
"nikolaposa/version": "^4",
"symfony/console": "^5.4 || ^6 || ^7",
"symfony/framework-bundle": "^5.4 || ^6 || ^7",
"symfony/process": "^5.4 || ^6 || ^7"
},
"require-dev": {
"mikey179/vfsstream": "^2",
"nyholm/symfony-bundle-test": "^3.0",
"phpunit/phpunit": "^8.5.27",
"symfony/phpunit-bridge": "^5.4 || ^6 || ^7",
"twig/twig": "^2 || ^3"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": { "Shivas\\VersioningBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "Shivas\\VersioningBundle\\Tests\\": "tests" }
},
"minimum-stability": "dev",
"prefer-stable": true
}