forked from nWidart/laravel-modules
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
68 lines (68 loc) · 1.52 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
{
"name": "nwidart/laravel-modules",
"description": "Laravel Module management",
"keywords": [
"modules",
"laravel",
"nwidart",
"module",
"rad"
],
"license": "MIT",
"authors": [
{
"name": "Nicolas Widart",
"email": "[email protected]",
"homepage": "https://nicolaswidart.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"mockery/mockery": "^1.5",
"orchestra/testbench": "^8.0",
"friendsofphp/php-cs-fixer": "^3.6",
"laravel/framework": "^10.0",
"spatie/phpunit-snapshot-assertions": "^5.0",
"phpstan/phpstan": "^1.4"
},
"autoload": {
"psr-4": {
"Nwidart\\Modules\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Nwidart\\Modules\\Tests\\": "tests",
"Modules\\Recipe\\": "tests/stubs/valid/Recipe"
}
},
"extra": {
"laravel": {
"providers": [
"Nwidart\\Modules\\LaravelModulesServiceProvider"
],
"aliases": {
"Module": "Nwidart\\Modules\\Facades\\Module"
}
},
"branch-alias": {
"dev-master": "10.0-dev"
}
},
"scripts": {
"update-snapshots": "./vendor/bin/phpunit --no-coverage -d --update-snapshots",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"pcf": "vendor/bin/php-cs-fixer fix --verbose"
},
"minimum-stability": "dev",
"prefer-stable": true
}