forked from InterNACHI/modular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.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
{
"name": "internachi/modular",
"description": "Modularize your Laravel apps",
"keywords": [
"laravel",
"modules",
"modular",
"module"
],
"authors": [
{
"name": "Chris Morrell",
"homepage": "https://www.cmorrell.com"
}
],
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.0",
"ext-simplexml": "*",
"ext-dom": "*",
"composer/composer": "^2.1",
"illuminate/support": "^9|^10|10.x-dev|11.x-dev|dev-master"
},
"require-dev": {
"orchestra/testbench": "^7.10|^8|8.x-dev|9.x-dev|dev-master",
"friendsofphp/php-cs-fixer": "^3.14",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.5",
"ext-json": "*",
"livewire/livewire": "^2.5"
},
"autoload": {
"psr-4": {
"InterNACHI\\Modular\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"InterNACHI\\Modular\\Tests\\": "tests/"
}
},
"scripts": {
"fix-style": "vendor/bin/php-cs-fixer fix",
"check-style": "vendor/bin/php-cs-fixer fix --diff --dry-run"
},
"extra": {
"laravel": {
"providers": [
"InterNACHI\\Modular\\Support\\ModularServiceProvider",
"InterNACHI\\Modular\\Support\\ModularizedCommandsServiceProvider",
"InterNACHI\\Modular\\Support\\ModularEventServiceProvider"
],
"aliases": {
"Modules": "InterNACHI\\Modular\\Support\\Facades\\Modules"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}