-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
80 lines (80 loc) · 2.25 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
{
"name": "inertiaui/modal",
"description": "Inertia Modal",
"homepage": "https://github.com/inertiaui/modal",
"license": "MIT",
"require": {
"php": "^8.2",
"illuminate/contracts": "^10.48||^11.11||^12.0",
"inertiajs/inertia-laravel": "^1.3|^2.0"
},
"require-dev": {
"larastan/larastan": "^2.9",
"laravel/dusk": "^8.3",
"laravel/pint": "^1.14",
"orchestra/testbench": "^8.23||^9.1||^10.0",
"rector/rector": "^1.0.3"
},
"autoload": {
"psr-4": {
"InertiaUI\\Modal\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --memory-limit=512M",
"format": "vendor/bin/pint",
"refactor": "vendor/bin/rector",
"eslint-react": "cd react && npm run eslint",
"eslint-vue": "cd vue && npm run eslint",
"build-react": "cd react && npm run build",
"build-vue": "cd vue && npm run build",
"all": [
"@analyse",
"@refactor",
"@format",
"@eslint-react",
"@eslint-vue"
],
"build": [
"@all",
"@build-react",
"@build-vue"
],
"version": [
"cd react && npm version ${VERSION}",
"@update-react",
"@build-react",
"cd vue && npm version ${VERSION}",
"@update-vue",
"@build-vue"
],
"update-react": "cd react && npm upgrade",
"update-vue": "cd vue && npm upgrade",
"update-demo-app": "cd demo-app && composer update && npm upgrade && php artisan dusk:chrome-driver --detect",
"update-all": [
"composer update",
"@update-react",
"@update-vue",
"@update-demo-app"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"pestphp/pest-plugin": false
}
},
"extra": {
"laravel": {
"providers": [
"InertiaUI\\Modal\\ModalServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}