-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.24 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
{
"name": "rafadiot/kathus",
"description": "A Laravel package to create multi modules.",
"keywords": [
"rafadiot",
"kathus",
"kathus package",
"modules",
"laravel-modules"
],
"license": "MIT",
"authors": [
{
"name": "Tuan Le Minh",
"email": "minhtuanchannhan@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1.3",
"illuminate/support": "5.8.*"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "~7.0",
"orchestra/testbench": "^3.8",
"spatie/phpunit-snapshot-assertions": "^2.0"
},
"autoload": {
"files": [
"src/Support/helpers.php"
],
"psr-4": {
"Rafadiot\\Kathus\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rafadiot\\Kathus\\Tests\\": "tests"
}
},
"suggest": {
},
"extra": {
"laravel": {
"providers": [
"Rafadiot\\Kathus\\KathusServiceProvider"
],
"aliases": {
"Kathus": "Rafadiot\\Kathus\\Facades\\Kathus"
}
}
}
}