-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.08 KB
/
Copy pathcomposer.json
File metadata and controls
41 lines (41 loc) · 1.08 KB
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
{
"name": "abdelilah-ezzouini/db-macros",
"description": "A Laravel package that extends the DB facade with powerful macros to enhance database query building and manipulation in your Laravel applications",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Abdelilah Ezzouini",
"email": "abdelilah.ezzouini@gmail.com"
}
],
"autoload": {
"psr-4": {
"AbdelilahEzzouini\\DbMacros\\": "src/"
},
"files": []
},
"autoload-dev": {
"psr-4": {
"AbdelilahEzzouini\\DbMacros\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1|^8.2",
"illuminate/support": "^10.0",
"illuminate/database": "^10.0"
},
"require-dev": {
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^10.0"
},
"extra": {
"laravel": {
"providers": [
"AbdelilahEzzouini\\DbMacros\\DbMacrosServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}