-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
88 lines (88 loc) · 2.46 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
{
"name": "mozex/laravel-modules",
"description": "Module Management For Laravel",
"keywords": [
"mozex",
"laravel",
"laravel-modules"
],
"homepage": "https://github.com/mozex/laravel-modules",
"license": "MIT",
"authors": [
{
"name": "Mozex",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^10.0|^11.0",
"spatie/laravel-package-tools": "^1.14.0",
"spatie/php-structure-discoverer": "^2.1",
"spatie/regex": "^3.1"
},
"require-dev": {
"filament/filament": "^3.2.39",
"larastan/larastan": "^2.9",
"laravel/pint": "^1.16.1",
"livewire/livewire": "^3.4",
"nunomaduro/collision": "^7.8|^8.1",
"orchestra/testbench": "^8.21|^9.0",
"pestphp/pest": "^2.34.7",
"pestphp/pest-plugin-laravel": "^2.0",
"pestphp/pest-plugin-type-coverage": "^2.8.2",
"phpstan/extension-installer": "^1.1",
"rector/rector": "^1.1.0",
"spatie/ray": "^1.41"
},
"autoload": {
"psr-4": {
"Mozex\\Modules\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mozex\\Modules\\Tests\\": "tests/",
"App\\": "workbench/app/",
"Modules\\": "workbench/Modules/",
"Database\\Factories\\": "workbench/database/factories/"
}
},
"scripts": {
"lint": "pint",
"refactor": "rector",
"test:lint": "pint --test",
"test:refactor": "rector --dry-run",
"test:types": "phpstan analyse --ansi",
"test:type-coverage": "pest --type-coverage --min=100",
"test:unit": "pest --colors=always",
"test": [
"@test:lint",
"@test:refactor",
"@test:types",
"@test:type-coverage",
"@test:unit"
]
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Mozex\\Modules\\ModulesServiceProvider"
],
"aliases": {
"Modules": "Mozex\\Modules\\Facades\\Modules"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}