-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
58 lines (57 loc) · 1.05 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
{
"name": "tomzx/php-semver-checker",
"description": "PHP Semantic Versioning Checker",
"type": "library",
"keywords": [
"semantic versioning",
"semver",
"checker"
],
"homepage": "https://github.com/tomzx/php-semver-checker",
"license": "MIT",
"authors": [
{
"name": "Tom Rochette",
"email": "[email protected]",
"homepage": "https://www.tomrochette.com"
}
],
"support": {
"issues": "https://github.com/tomzx/php-semver-checker/issues"
},
"require": {
"php": "^8.0",
"hassankhan/config": "^3.0",
"nikic/php-parser": "^4.0",
"symfony/console": "^6.0",
"symfony/yaml": "^6.0",
"tomzx/finder": "^0.2"
},
"require-dev": {
"mockery/mockery": "^1.4.4",
"phpunit/phpunit": "^9.5.10"
},
"bin": [
"bin/php-semver-checker"
],
"autoload": {
"psr-4": {
"PHPSemVerChecker\\": "src/PHPSemVerChecker"
}
},
"autoload-dev": {
"psr-4": {
"PHPSemVerChecker\\Test\\": "tests/PHPSemVerChecker"
}
},
"config": {
"platform": {
"php": "8.0.2"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.17-dev"
}
}
}