-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
35 lines (35 loc) · 935 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
34
35
{
"name": "alroniks/dtms",
"type": "library",
"description": "Classes for manipulate dates and intervals with microseconds precision",
"keywords": ["date", "time", "datetime", "ms", "microseconds", "milliseconds", "interval", "ISO8601", "fractions"],
"license": "MIT",
"homepage": "http://alroniks.github.io/dtms",
"authors": [
{
"name": "Ivan Klimchuk",
"email": "[email protected]",
"homepage" : "http://klimchuk.com",
"role" : "Developer"
}
],
"support": {
"issues": "https://github.com/alroniks/dtms/issues"
},
"require": {
"php" : ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit" : "4.*"
},
"autoload": {
"psr-4": {
"alroniks\\dtms\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"alroniks\\dtms\\Test\\": "test"
}
}
}