generated from glhd/laravel-package-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·46 lines (46 loc) · 1.01 KB
/
composer.json
File metadata and controls
executable file
·46 lines (46 loc) · 1.01 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
{
"name": "internachi/modularize",
"description": "",
"keywords": [
"laravel",
"modular",
"InterNACHI"
],
"authors": [
{
"name": "Chris Morrell",
"homepage": "https://www.cmorrell.com"
}
],
"type": "library",
"license": "MIT",
"require": {
"illuminate/support": "^10|^11|^12|^13|dev-main|dev-master",
"ext-json": "*"
},
"require-dev": {
"orchestra/testbench": "^8.34.0|^9.12.0|^10.1.0|^11.0.0|12.x-dev|dev-main|dev-master",
"internachi/modular": "*",
"friendsofphp/php-cs-fixer": "^3.71",
"phpunit/phpunit": "^10.5|^11.5|^12.5"
},
"autoload": {
"psr-4": {
"InterNACHI\\Modularize\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"InterNACHI\\Modularize\\Tests\\": "tests/"
}
},
"scripts": {
"fix-style": "vendor/bin/php-cs-fixer fix",
"check-style": "vendor/bin/php-cs-fixer fix --diff --dry-run"
},
"minimum-stability": "dev",
"prefer-stable": true
}