-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
33 lines (33 loc) · 929 Bytes
/
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
{
"name": "z4kn4fein/php-semver",
"type": "library",
"description": "Semantic Versioning library for PHP. It implements the full semantic version 2.0.0 specification and provides ability to parse, compare, and increment semantic versions along with validation against constraints.",
"minimum-stability": "stable",
"keywords": ["semantic", "versioning", "semver", "version", "validation", "comparison"],
"homepage": "https://github.com/z4kn4fein/php-semver",
"license": "MIT",
"authors": [
{
"name": "Peter Csajtai",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "^10",
"phpstan/phpstan": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"z4kn4fein\\SemVer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"z4kn4fein\\SemVer\\Tests\\": "tests/"
}
}
}