generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
77 lines (77 loc) · 2.22 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
{
"name": "flavorly/inertia-flash",
"description": "A Quick way to flash & share InertiaJS Variables from anywhere, persisting on session.",
"keywords": [
"flavorly",
"laravel",
"inertia-flash"
],
"homepage": "https://github.com/flavorly/inertia-flash",
"license": "MIT",
"authors": [
{
"name": "jon",
"email": "support@indigit.pt",
"role": "Developer"
}
],
"require": {
"php": "^8.3",
"laravel/framework": "^v11.0.0",
"illuminate/contracts": "^11.8.0",
"spatie/laravel-data": "^4.5",
"spatie/laravel-package-tools": "^1.16"
},
"suggest": {
"inertiajs/inertia-laravel": "Allows you to flash and share InertiaJS variables (0.5.4|^0.6.2|^1.0.0)",
"inertiajs-revamped/laravel": "A fork of Official Inertia with some upstream bugfixes"
},
"require-dev": {
"larastan/larastan": "^v2.9.6",
"laravel/pint": "^1.15",
"nunomaduro/collision": "^v8.1.1",
"orchestra/testbench": "^9.1.0",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-arch": "^2.7",
"pestphp/pest-plugin-laravel": "^2.4",
"spatie/laravel-ray": "^1.36",
"inertiajs-revamped/laravel": "^0.0.4"
},
"autoload": {
"psr-4": {
"Flavorly\\InertiaFlash\\": "src"
},
"files": [
"src/Helpers/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Flavorly\\InertiaFlash\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Flavorly\\InertiaFlash\\InertiaFlashServiceProvider"
],
"aliases": {
"InertiaFlash": "Flavorly\\InertiaFlash\\Facades\\InertiaFlash"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}