forked from L5Modular/L5Modular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.35 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
{
"name": "duncte123/l5-modular",
"description": "Modular pattern generator for Laravel with some tweaks",
"keywords": [
"laravel",
"modular",
"modules",
"module",
"structure",
"pattern",
"Artem",
"Schander",
"l5modular",
"artisan",
"generator"
],
"homepage": "https://l5modular.github.io/",
"license": "MIT",
"version": "2.2.0",
"authors": [
{
"name": "duncte123",
"homepage": "https://duncte123.me"
}
],
"require": {
"php": ">=7.2",
"laravel/framework": "^5|^6|^7|^8|^9|^10"
},
"autoload": {
"psr-4": {
"ArtemSchander\\L5Modular\\": "src"
}
},
"scripts": {
"test": "phpunit"
},
"autoload-dev": {
"psr-4": {
"ArtemSchander\\L5Modular\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"ArtemSchander\\L5Modular\\ModuleServiceProvider"
],
"aliases": {
"L5Modular": "ArtemSchander\\L5Modular\\Facades\\L5Modular"
}
}
},
"minimum-stability": "dev",
"require-dev": {
"phpunit/phpunit": "^7|^8",
"orchestra/testbench": "^3|^4|^5",
"mockery/mockery": "~1.3"
}
}