-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
36 lines (36 loc) · 959 Bytes
/
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
{
"name": "robertboes/sidecar-inertia-vite",
"description": "A Sidecar function to run Inertia server-side rendering with Vite on Lambda.",
"type": "library",
"require": {
"hammerstone/sidecar": "^0.4",
"inertiajs/inertia-laravel": "^0.6",
"php": "^8.0",
"illuminate/support": "^9|^10"
},
"require-dev": {
"orchestra/testbench": "^7.15|^8.0",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.5|^10.0",
"laravel/pint": "^1.2"
},
"license": "MIT",
"autoload": {
"psr-4": {
"RobertBoes\\SidecarInertiaVite\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"RobertBoes\\SidecarInertiaVite\\ServiceProvider"
]
}
},
"authors": [
{
"name": "Robert Boes",
"email": "2871897+RobertBoes@users.noreply.github.com"
}
]
}