-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 861 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
{
"name": "ardabeyazoglu/datetime",
"type": "library",
"description": "Extends the native DateTime class adding useful features, shorthand methods and locale support",
"keywords": ["datetime", "time", "date", "timezone", "locale"],
"homepage": "http://icanboogie.org/",
"license": "MIT",
"authors": [
{
"name": "Arda Beyazoglu",
"email": "[email protected]",
"role" : "Developer"
}
],
"support": {
"source": "https://github.com/ardabeyazoglu/php-datetime",
"issues": "https://github.com/ardabeyazoglu/php-datetime/issues"
},
"require": {
"php": ">=5.5.0",
"ext-intl": "*",
"ext-json": "*",
"ext-calendar": "*"
},
"require-dev": {
"victorjonsson/markdowndocs": "^1.3",
"phpunit/phpunit": "4.*"
},
"autoload": {
"psr-4": {
"DateTimeImproved\\": "src/"
}
}
}