-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
77 lines (76 loc) · 1.98 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
{
"name": "omaralalwi/laravel-time-craft",
"description": "Laravel Time Craft is a powerful package for handling date and time scopes in your Laravel applications. It provides a set of convenient traits and helper functions to simplify date and time operations.",
"keywords": [
"omaralalwi",
"laravel-time-craft",
"laravel",
"scopes",
"filters",
"mutators",
"casting",
"queries",
"laravel queries",
"laravel scopes",
"laravel time scopes",
"laravel date scopes",
"common laravel scopes",
"datetime",
"eloquent",
"trait",
"carbon",
"query",
"date-scopes",
"laravel-package",
"orm"
],
"homepage": "https://github.com/omaralalwi/laravel-time-craft",
"license": "MIT",
"type": "library",
"version": "1.0.2",
"authors": [
{
"name": "omar alalwi",
"email": "omaralwi2010@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"orchestra/testbench": "^8.21.1",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"Omaralalwi\\LaravelTimeCraft\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Omaralalwi\\LaravelTimeCraft\\Test\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Omaralalwi\\LaravelTimeCraft\\LaravelTimeCraftServiceProvider"
],
"aliases": {
"LaravelTimeCraft": "Omaralalwi\\LaravelTimeCraft\\LaravelTimeCraftFacade"
}
}
}
}