-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
159 lines (159 loc) · 4.66 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "laravel/emcms",
"type": "project",
"description": "Laravel modular starter for any project, Big or Small.",
"homepage": "https://github.com/erlandmuchasaj/laravel-modular-starter",
"keywords": [
"framework",
"laravel",
"starter",
"cms",
"dashboard",
"project",
"module"
],
"license": "MIT",
"authors": [
{
"name": "Erland Muchasaj",
"email": "[email protected]",
"homepage": "https://erlandmuchasaj.tech",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/erlandmuchasaj/laravel-modular-starter/issues",
"source": "https://github.com/erlandmuchasaj/laravel-modular-starter",
"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": "Buy me a Coffe",
"url": "https://www.buymeacoffee.com/erland"
},
{
"type": "PayPal",
"url": "https://paypal.me/emcms?country.x=AL&locale.x=en_US"
}
],
"require": {
"php": "^8.1",
"erlandmuchasaj/laravel-modules": "^1.0",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^10.0",
"laravel/sanctum": "^3.2",
"laravel/tinker": "^2.8",
"modules/core": "^1.0",
"modules/user": "^1.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.8",
"barryvdh/laravel-ide-helper": "^2.13",
"fakerphp/faker": "^1.9.1",
"laravel/pint": "^1.0",
"laravel/sail": "^1.18",
"laravel/telescope": "^4.13",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^7.0",
"nunomaduro/larastan": "^2.4",
"phpunit/phpunit": "^10.0",
"rector/rector": "^0.15.17",
"roave/security-advisories": "dev-latest",
"spatie/laravel-ignition": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"clear-all": [
"composer dumpautoload -o",
"@php artisan clear-compiled",
"@php artisan cache:clear",
"@php artisan route:clear",
"@php artisan view:clear",
"@php artisan config:clear",
"@php artisan event:clear"
],
"cache-all": [
"@php artisan config:cache",
"@php artisan route:cache",
"@php artisan view:cache",
"@php artisan event:cache"
],
"reset": [
"composer clear-all",
"composer cache-all"
],
"phpstan": [
"./vendor/bin/phpstan analyse --memory-limit=2G"
],
"pint": [
"./vendor/bin/pint modules"
],
"rector": [
"./vendor/bin/rector --memory-limit=2G"
]
},
"scripts-descriptions": {
"phpstan": "Run PHPStan static analysis against your application.",
"pint": "Run Laravel pint to do Code style and minimalistic fixes for laravel.",
"rector": "Run rector to upgrade old PHP code and handle automated refactorings."
},
"extra": {
"laravel": {
"dont-discover": [
"barryvdh/laravel-debugbar",
"barryvdh/laravel-ide-helper",
"laravel/telescope"
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"repositories": [
{
"type": "path",
"url": "./modules/*",
"options": {
"symlink": true
}
}
]
}