forked from KnpLabs/KnpTimeBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (42 loc) · 1.29 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
45
46
47
48
49
{
"name": "knplabs/knp-time-bundle",
"type": "symfony-bundle",
"description": "Knplabs time bundle makes your dates look sensible and descriptive",
"keywords": ["time", "date", "descriptive time", "knplabs", "knp", "bundle"],
"homepage": "http://github.com/KnpLabs/KnpTimeBundle",
"license": "MIT",
"authors": [
{
"name": "KnpLabs Team",
"homepage": "http://knplabs.com"
},
{
"name": "Symfony Community",
"homepage": "http://github.com/KnpLabs/KnpTimeBundle/contributors"
}
],
"require": {
"php": ">=5.5",
"symfony/dependency-injection": "~2.3|~3.0|~4.0",
"symfony/templating": "~2.3|~3.0|~4.0",
"symfony/translation": "~2.3|~3.0|~4.0",
"symfony/config": "~2.3|~3.0|~4.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.0"
},
"suggest": {
"symfony/twig-bundle": "to use the Twig time_diff function"
},
"autoload": {
"psr-0": {
"Knp\\Bundle\\TimeBundle": ""
}
},
"target-dir": "Knp/Bundle/TimeBundle",
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}