-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·42 lines (42 loc) · 1.09 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
{
"name": "sectheater/laravel-jarvis",
"description": "Achieve Your Ambition with me",
"type": "library",
"license": "MIT",
"keywords": ["laravel", "admin", "Roles","Authentication","Authorization","CMS","Advanced Blogger"],
"authors": [
{
"name": "Mohammed Osama",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0.0",
"sectheater/artify" : "@dev"
},
"require-dev": {
"phpunit/phpunit": "~5.7.14|~6.1|~7.0",
"laravel/framework": "~5.4.36|~5.5.0|~5.6.0"
},
"autoload": {
"psr-4": {
"SecTheater\\Jarvis\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"SecTheater\\Jarvis\\Tests\\": "src/tests/"
}
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"SecTheater\\Jarvis\\Providers\\JarvisServiceProvider"
],
"aliases": {
"Jarvis": "SecTheater\\Jarvis\\Facades\\Jarvis"
}
}
}
}