-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
39 lines (39 loc) · 950 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
37
38
39
{
"name": "hammerstone/sidecar-inertia",
"description": "A Laravel package to render Inertia apps on AWS Lambda.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Aaron Francis",
"email": "aaron@hammerstone.dev"
}
],
"require": {
"php": "^7.2|^8.0",
"hammerstone/sidecar": "^0.3.9",
"inertiajs/inertia-laravel": "^0.5.1|^0.6.0",
"illuminate/support": "^8.0|^9.0"
},
"require-dev": {
"orchestra/testbench": "^5.0|^6.0",
"mockery/mockery": "^1.3.3",
"phpunit/phpunit": "^8.4"
},
"autoload": {
"psr-4": {
"Hammerstone\\Sidecar\\Inertia\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hammerstone\\Sidecar\\Inertia\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
]
}
}
}