-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (38 loc) · 1.16 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
{
"name" : "xpl/datetime",
"description" : "Enhancements to Date and Time Extension shipped with PHP",
"keywords" : [ "calendar", "clock", "date", "datetime", "time" ],
"homepage" : "http://github.com/ocubom/xpl-datetime",
"license" : "MIT",
"authors" : [{
"name" : "Oscar Cubo Medina",
"homepage" : "http://ocubom.github.io"
}],
"support" : {
"issues" : "http://github.com/ocubom/xpl-datetime/issues",
"wiki" : "http://github.com/ocubom/xpl-datetime/wiki",
"source" : "http://github.com/ocubom/xpl-datetime"
},
"require": {
"php": ">=7.1.0"
},
"require-dev": {
"doctrine/dbal": ">=2.2",
"phpunit/phpunit": "~4.0"
},
"suggest": {
"doctrine/dbal": "Enable the use of DateTimes as doctrine field type."
},
"autoload": {
"psr-0": {
"DateTimeInterface": "src/",
"Xpl\\DateTime": "src/"
}
},
"extra": {
"branch-alias": { "dev-master": "1.0.x-dev" }
},
"archive": {
"exclude": [ "tests", "*phpunit.xml*", "composer.phar" ]
}
}