-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 879 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 879 Bytes
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
{
"name": "staffim/datetime-bundle",
"description": "Bundle for Symfony2 with improvements for DateTime",
"keywords": ["timestamp", "mongodb", "datetime", "serializer", "symfony", "bundle"],
"license": "MIT",
"type": "bundle",
"authors": [{"name": "Vyacheslav Salakhutdinov", "email": "megazoll@gmail.com"}],
"require": {
"staffim/datetime": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"symfony/framework-bundle": "~2.6|~3.0",
"symfony/security-bundle": "~2.6|~3.0"
},
"suggest": {
"jms/serializer-bundle": "Provides handler for DateTime",
"doctrine/mongodb-odm-bundle": "Allows storing dates with milliseconds in MongoDB"
},
"autoload": {
"psr-4": {
"Staffim\\DateTimeBundle\\": ""
}
},
"config": {
"bin-dir": "bin"
}
}