-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
58 lines (58 loc) · 1.27 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
{
"name": "langleyfoxall/modules-laravel",
"description": "Package for building modular laravel applications",
"minimum-stability": "dev",
"type": "library",
"license": "LGPL-3.0-only",
"keywords": [
"modules",
"php",
"laravel"
],
"homepage": "https://github.com/LFSoftware/modules-laravel",
"support": {
"issues": "https://github.com/LFSoftware/modules-laravel/issues",
"source": "https://github.com/LFSoftware/modules-laravel"
},
"authors": [
{
"name": "Dexter Marks-Barber",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Alex Catchpole",
"email": "[email protected]",
"role": "Reviewer"
},
{
"name": "Jared Wheatley",
"email": "[email protected]",
"role": "Reviewer"
}
],
"require": {
"php": "^7.1.3"
},
"require-dev": {
"laravel/framework": "5.6.*"
},
"autoload": {
"psr-4": {
"LangleyFoxall\\Modules\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
},
"laravel": {
"providers": [
"LangleyFoxall\\Modules\\LaravelModuleServiceProvider"
],
"aliases": {
"Modules": "LangleyFoxall\\Modules\\Facade\\Modules"
}
}
}
}