-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
58 lines (58 loc) · 1.75 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
{
"name": "kdyby/datetime-provider-bundle",
"type": "symfony-bundle",
"description": "Time provider, providing consistent current date, time, datetime and timezone across the request.",
"keywords": ["kdyby", "date", "time", "datetime", "microseconds", "clock", "provider", "symfony", "bundle"],
"homepage": "https://kdyby.org",
"license": ["BSD-3-Clause", "GPL-2.0-only", "GPL-3.0-only"],
"authors": [
{
"name": "Michael Moravec"
},
{
"name": "Richard Ejem"
},
{
"name": "Filip Procházka",
"homepage": "https://filip-prochazka.com"
},
{
"name": "Kdyby Community",
"homepage": "https://github.com/Kdyby/DateTimeProviderBundle/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/Kdyby/DateTimeProviderBundle/issues"
},
"require": {
"php": "^7.1",
"kdyby/datetime-provider": "^1.0",
"kdyby/strict-objects": "^1.0",
"symfony/config": "^3.3|^4.0|^5.0",
"symfony/expression-language": "^3.3|^4.0|^5.0",
"symfony/dependency-injection": "^3.3|^4.0|^5.0",
"symfony/http-kernel": "^3.3|^4.0|^5.0"
},
"require-dev": {
"doctrine/coding-standard": "^3.0",
"phpstan/phpstan-shim": "^0.7",
"phpunit/phpunit": "~6.2",
"symfony/yaml": "^3.3|^4.0|^5.0",
"jakub-onderka/php-parallel-lint": "^0.9.2"
},
"autoload": {
"psr-4": {
"Kdyby\\DateTimeProviderBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KdybyTests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}