-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
88 lines (76 loc) · 1.94 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name" : "fastybird/datetime-factory",
"type" : "library",
"description" : "Date & time service factory with timezones support",
"keywords" : [
"fastybird",
"fb",
"libs",
"date",
"time",
"library"
],
"homepage" : "https://www.fastybird.com",
"license" : "Apache-2.0",
"authors" : [
{
"name" : "FastyBird s.r.o.",
"email" : "[email protected]",
"homepage" : "https://www.fastybird.com"
},
{
"name" : "Adam Kadlec",
"email" : "[email protected]"
}
],
"support" : {
"email" : "[email protected]",
"issues" : "https://github.com/FastyBird/datetime-factory/issues",
"source" : "https://github.com/FastyBird/datetime-factory"
},
"prefer-stable" : true,
"minimum-stability" : "stable",
"require" : {
"php" : ">=8.1.0",
"nette/bootstrap" : "^3.2",
"nette/di" : "^3.0",
"nette/utils" : "^3.2||^4.0"
},
"require-dev" : {
"mockery/mockery" : "^1.4",
"ninjify/nunjuck" : "^0.3",
"orisai/coding-standard" : "^3.2",
"pds/skeleton" : "^1.0",
"php-parallel-lint/php-parallel-lint" : "^1.3",
"phpstan/extension-installer" : "^1.1",
"phpstan/phpstan" : "^1.3",
"phpstan/phpstan-deprecation-rules" : "^1.0",
"phpstan/phpstan-nette" : "^1.0",
"phpstan/phpstan-strict-rules" : "^1.1",
"tracy/tracy" : "^2.9"
},
"autoload" : {
"psr-4" : {
"FastyBird\\DateTimeFactory\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"Tests\\Cases\\Unit\\" : "tests/cases/unit"
}
},
"config" : {
"sort-packages" : true,
"allow-plugins" : {
"dealerdirect/phpcodesniffer-composer-installer" : true,
"phpstan/extension-installer" : true
}
},
"extra" : {
"patches" : {
"nette/utils" : {
"Bug: Offset check with null support" : "https://raw.githubusercontent.com/FastyBird/libraries-patches/master/nette.array.offsetCheck.diff"
}
}
}
}