-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1006 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
36
37
38
39
40
{
"name": "darsyn/datetime",
"description": "Utility to work with consistent dates, forcing the UTC timezone.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Zan Baldwin",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Darsyn\\DateTime\\": "src/"
}
},
"require-dev": {
"doctrine/dbal": "^2.3",
"sensio/framework-extra-bundle": "^5.0",
"phpunit/phpunit": "^7.0"
},
"autoload-dev": {
"psr-4": {
"Darsyn\\DateTime\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"suggest": {
"doctrine/dbal": "to use UtcDateTime as a column type",
"sensio/framework-extra-bundle": "to use parameter converters in controller arguments"
}
}