-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
60 lines (60 loc) · 1.58 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
{
"name": "crater-invoice/modules",
"description": "Crater Module Management Package",
"keywords": [
"modules",
"laravel",
"module",
"rad",
"crater"
],
"license": "MIT",
"require": {
"php": ">=7.3",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"mockery/mockery": "~1.0",
"orchestra/testbench": "^6.2",
"friendsofphp/php-cs-fixer": "^2.16",
"laravel/framework": "^8.0",
"spatie/phpunit-snapshot-assertions": "^2.1.0|^4.2",
"phpstan/phpstan": "^0.12.14"
},
"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": "8.0-dev"
}
},
"scripts": {
"update-snapshots": "./vendor/bin/phpunit --no-coverage -d --update-snapshots",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --debug --coverage-html coverage",
"pcf": "vendor/bin/php-cs-fixer fix --verbose"
},
"minimum-stability": "dev",
"prefer-stable": true
}