-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
63 lines (63 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "tomzx/php-semver-checker-git",
"description": "PHP Semantic Versioning Checker for GIT",
"type": "library",
"keywords": [
"semantic versioning",
"semver",
"checker",
"git"
],
"homepage": "https://github.com/tomzx/php-semver-checker-git",
"license": "MIT",
"authors": [
{
"name": "Tom Rochette",
"email": "[email protected]",
"homepage": "https://www.tomrochette.com"
}
],
"support": {
"issues": "https://github.com/tomzx/php-semver-checker-git/issues"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/tomzx/gitter"
}
],
"require": {
"php": ">=7.3",
"klaussilveira/gitter": "dev-php-semver-checker",
"symfony/console": "^4.4|^5.1",
"tomzx/php-semver-checker": "^0.15.1",
"vierbergenlars/php-semver": "^3.0.2"
},
"require-dev": {
"mockery/mockery": "^1.4.4",
"phpunit/phpunit": "^9.5.10"
},
"bin": [
"bin/php-semver-checker-git"
],
"autoload": {
"psr-4": {
"PHPSemVerCheckerGit\\": "src/PHPSemVerCheckerGit"
}
},
"autoload-dev": {
"psr-4": {
"PHPSemVerCheckerGit\\Tests\\": "tests/PHPSemVerCheckerGit"
}
},
"config": {
"platform": {
"php": "7.3.0"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.9-dev"
}
}
}