forked from kherge-archive/php-version
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.01 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.01 KB
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
{
"name": "herrera-io/version",
"description": "A library for creating, editing, and comparing semantic versioning numbers.",
"keywords": ["semantic", "version"],
"homepage": "http://github.com/herrera-io/php-version",
"license": "MIT",
"authors": [
{
"name": "Kevin Herrera",
"email": "kevin@herrera.io",
"homepage": "http://kevin.herrera.io"
}
],
"support": {
"forum": "https://groups.google.com/d/forum/herrera-io-users",
"issues": "https://github.com/herrera-io/php-version/issues"
},
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"herrera-io/phpunit-test-case": "1.*",
"phpunit/phpunit": "3.7.*"
},
"autoload": {
"psr-0": {
"Herrera\\Version": "src/lib"
}
},
"config": {
"bin-dir": "bin",
"vendor-dir": "src/vendors"
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
}
}
}