-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.48 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.48 KB
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
{
"name": "wr2net/lm-create",
"description": "To create the suggested structures, the execution options are shown below. To create a \"Project\", it will be created within the default \"app\" directory with the name of your project where all the modules will be located.\n\nTo create the modules or the complete skeleton of the module, you must also inform your project, as shown in each command.",
"version": "1.2.01",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"development",
"modules",
"operations"
],
"autoload": {
"psr-4": {
"Src\\LaravelModuleCreate\\": "src/"
}
},
"authors": [
{
"name": "Wagner Rigoli da Rosa",
"email": "wagnerr2@gmail.com",
"homepage": "https://wagner.fawacom.com.br",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"illuminate/support": "^10.0 || ^11.0 || ^12.0",
"fakerphp/faker": "^1.24"
},
"require-dev": {
"spatie/laravel-package-tools": "^1.16",
"symfony/console": "^7.2",
"phpunit/phpunit": "^12.4"
},
"extra": {
"laravel": {
"providers": [
"Src\\LaravelModuleCreate\\Providers\\ModulesServiceProvider"
]
}
},
"scripts": {
"lm-create": "./artisan lm-create",
"test": "vendor/bin/phpunit --testdox tests/"
}
}