-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
53 lines (53 loc) · 1.19 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
{
"name": "whitecube/laravel-timezones",
"description": "Store UTC dates in the database and work with custom timezones in the application.",
"keywords": [
"whitecube",
"laravel",
"utc",
"local",
"time",
"conversion"
],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Whitecube\\LaravelTimezones\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Whitecube\\LaravelTimezones\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Toon Van den Bos",
"email": "toon@whitecube.be"
}
],
"require": {
"php": ">=8.1",
"laravel/framework": "^9|^10|^11",
"nesbot/carbon": "^2.64|^3.0"
},
"require-dev": {
"mockery/mockery": "^1.6",
"pestphp/pest": "^2.34"
},
"extra": {
"laravel": {
"providers": [
"Whitecube\\LaravelTimezones\\ServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}