-
Notifications
You must be signed in to change notification settings - Fork 105
/
composer.json
62 lines (54 loc) · 1.61 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "knplabs/knp-time-bundle",
"type": "symfony-bundle",
"description": "Making your dates and durations look sensible and descriptive",
"keywords": ["time", "date", "descriptive time", "knplabs", "knp", "bundle", "duration"],
"homepage": "https://github.com/KnpLabs/KnpTimeBundle",
"license": "MIT",
"authors": [
{
"name": "KnpLabs Team",
"homepage": "https://knplabs.com"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/KnpLabs/KnpTimeBundle/contributors"
}
],
"require": {
"php": ">=8.1",
"symfony/dependency-injection": "^5.4|^6.0|^7.0",
"symfony/translation": "^5.4|^6.0|^7.0",
"symfony/config": "^5.4|^6.0|^7.0"
},
"require-dev": {
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
"symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
"symfony/twig-bundle": "^5.4|^6.0|^7.0",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^9.6"
},
"suggest": {
"symfony/twig-bundle": "to use the Twig `time_diff()` function and `|time_diff`/`|duration` filter"
},
"conflict": {
"phpunit/phpunit": "<8.0"
},
"autoload": {
"psr-4": {
"Knp\\Bundle\\TimeBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Knp\\Bundle\\TimeBundle\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}