-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
54 lines (54 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
{
"name": "emargareten/inertia-modal",
"description": "Inertia Modal is a Laravel package that lets you implement backend-driven modal dialogs for Inertia apps.",
"keywords": [
"laravel",
"inertia",
"modal"
],
"homepage": "https://github.com/emargareten/inertia-modal",
"license": "MIT",
"require": {
"php": "^8.0",
"illuminate/support": "^8.24|^9.0|^10.0|^11.0",
"inertiajs/inertia-laravel": "^0.6.9|^1.0.0|^2.0"
},
"require-dev": {
"larastan/larastan": "^2.9.2",
"laravel/pint": "^1.14.0",
"orchestra/testbench": "^v8.21|^9.0",
"phpunit/phpunit": "^10.5.13"
},
"autoload": {
"psr-4": {
"Emargareten\\InertiaModal\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Emargareten\\InertiaModal\\Tests\\": "tests"
}
},
"scripts": {
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Emargareten\\InertiaModal\\InertiaModalServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}