-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
84 lines (84 loc) · 2.18 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "erlandmuchasaj/laravel-modules",
"type": "library",
"description": "Laravel modules management.",
"minimum-stability": "dev",
"prefer-stable": true,
"homepage": "https://github.com/erlandmuchasaj/laravel-modules",
"license": "MIT",
"keywords": [
"modules",
"module",
"modular",
"hmvc",
"ddd",
"package",
"erland",
"laravel"
],
"autoload": {
"psr-4": {
"ErlandMuchasaj\\Modules\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"ErlandMuchasaj\\Modules\\ModulesServiceProvider"
],
"aliases": {
"Module": "ErlandMuchasaj\\Modules\\Facades\\Module"
}
}
},
"authors": [
{
"name": "Erland Muchasaj",
"email": "[email protected]",
"homepage": "https://erlandmuchasaj.tech/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/erlandmuchasaj/laravel-modules/issues",
"source": "https://github.com/erlandmuchasaj/laravel-modules",
"email": "[email protected]",
"irc": "irc://irc.freenode.org/composer"
},
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/erlandmuchasaj"
},
{
"type": "Ko-fi",
"url": "https://ko-fi.com/erlandmuchasaj"
},
{
"type": "PayPal",
"url": "https://paypal.me/emcms?country.x=AL&locale.x=en_US"
},
{
"type": "GitHub",
"url": "https://github.com/sponsors/erlandmuchasaj"
}
],
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
},
"require": {
"php": "^8.0|^8.1|^8.2",
"ext-json": "*"
},
"require-dev": {
"laravel/framework": "^8.0|^9.0|^10.0|^11.0",
"phpunit/phpunit": "^10.0",
"orchestra/testbench": "^8.0",
"phpstan/phpstan": "^1.10"
}
}