-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 775 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 775 Bytes
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
{
"name": "hassanzohdy/mongez",
"description": "A Robust application handler for building neat laravel application(s).",
"keywords": [
"laravel",
"mongez",
"module",
"builder"
],
"license": "MIT",
"version": "3.0.1",
"require": {
"php": ">=8.2",
"cocur/slugify": "^4.0",
"illuminate/support": "5.6.x|5.7.x|5.8.x|6.x.x|7.x.x|8.x.x|9.x.x|10.x.x|11.x.x"
},
"authors": [
{
"name": "Hasan Zohdy",
"email": "hassanzohdy@gmail.com"
}
],
"autoload": {
"psr-4": {
"HZ\\Illuminate\\Mongez\\": "src/"
},
"files": [
"src/Helpers/functions.php"
]
},
"extra": {
"laravel": {
"providers": [
"HZ\\Illuminate\\Mongez\\Providers\\MongezServiceProvider"
]
}
}
}