-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
87 lines (87 loc) · 2.49 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
{
"name": "laraneat/modules",
"description": "Laraneat modules.",
"homepage": "https://github.com/laraneat/core/",
"support": {
"issues": "https://github.com/laraneat/core/issues",
"source": "https://github.com/laraneat/core"
},
"authors": [
{
"name": "Salakhutdinov Salavat",
"email": "[email protected]"
}
],
"keywords": [
"laraneat",
"modules",
"core",
"laraneat modules",
"laraneat-modules",
"laravel",
"Porto",
"Porto SAP"
],
"license": "MIT",
"require": {
"php": "^8.0",
"ext-json": "*",
"laravel/framework": "^10.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.48",
"mockery/mockery": "~1.0",
"orchestra/testbench": "^8.2",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5",
"roave/security-advisories": "dev-latest",
"spatie/phpunit-snapshot-assertions": "^5.1"
},
"autoload": {
"psr-4": {
"Laraneat\\Modules\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Laraneat\\Modules\\Tests\\": "tests",
"App\\": "tests/laravel/app",
"App\\Modules\\Article\\": "tests/fixtures/stubs/valid/Article"
}
},
"suggest": {
"wikimedia/composer-merge-plugin": "Allows the ability to create and merge composer.json files for your individual modules for module-specific dependency management."
},
"extra": {
"laravel": {
"providers": [
"Laraneat\\Modules\\ModulesServiceProvider"
],
"aliases": {
"Modules": "Laraneat\\Modules\\Facades\\Modules"
}
}
},
"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",
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}