generated from AlexisVS/multipass-module-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·109 lines (109 loc) · 3.83 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "alexisvs/multipass-testing-module",
"description": "This is my package for testing in one place all of multipass module features",
"version": "1.0.5",
"keywords": [
"AlexisVS",
"laravel",
"testing"
],
"homepage": "https://github.com/AlexisVS/multipass-testing-module",
"license": "MIT",
"authors": [
{
"name": "VAN SAN Alexis",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"illuminate/contracts": "^10.0",
"inertiajs/inertia-laravel": "^0.6.5",
"laravel/horizon": "^5.10",
"laravel/sanctum": "^v3.2",
"laravel/telescope": "^4.14",
"lorisleiva/laravel-actions": "^2.4",
"spatie/enum": "^3.13",
"spatie/laravel-data": "^2.0",
"spatie/laravel-medialibrary": "^10.6",
"spatie/laravel-permission": "^5.5",
"spatie/laravel-typescript-transformer": "^2.1",
"tightenco/ziggy": "^1.0"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.12",
"laravel/dusk": "^7.7",
"laravel/pint": "^1.0",
"nunomaduro/collision": "^7.9",
"nunomaduro/larastan": "^2.0.1",
"orchestra/testbench": "^8.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-arch": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"spatie/laravel-ray": "^1.26"
},
"autoload": {
"psr-4": {
"App\\": "../../../app/",
"Database\\Factories\\": "../../../database/factories/",
"Database\\Migrations\\": "../../../database/migrations/",
"Database\\Seeders\\": "../../../database/seeders/",
"AlexisVS\\MultipassTestingModule\\": "src/",
"AlexisVS\\MultipassTestingModule\\Http\\": "src/Http/",
"AlexisVS\\MultipassTestingModule\\Http\\Controllers\\": "src/Http/Controllers/",
"AlexisVS\\MultipassTestingModule\\Database\\Factories\\": "database/factories/",
"AlexisVS\\MultipassTestingModule\\Database\\Migrations\\": "database/migrations/",
"AlexisVS\\MultipassTestingModule\\Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"AlexisVS\\MultipassTestingModule\\Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
],
"analyse": "vendor/bin/phpstan analyse",
"test": [
"@php ./vendor/bin/testbench route:clear --ansi",
"@php ./vendor/bin/testbench config:clear --ansi",
"@php ../../../artisan optimize:clear --ansi",
"@php ../../../artisan config:cache --ansi",
"@php ./vendor/bin/pest"
],
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
},
"github-oauth": {
}
},
"extra": {
"laravel": {
"dont-discover": [
"spatie/laravel-medialibrary",
"barryvdh/laravel-ide-helper",
"barryvdh/laravel-debugbar"
],
"providers": [
"AlexisVS\\MultipassTestingModule\\MultipassTestingModuleServiceProvider"
],
"aliases": {
"MultipassTestingModule": "AlexisVS\\MultipassTestingModule\\Facades\\MultipassTestingModule"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}