-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.24 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
{
"name": "ycs77/inertia-laravel-ssr-head",
"description": "Simple SSR Head for Inertia Laravel",
"keywords": ["laravel", "inertia", "ssr", "seo", "head", "meta", "metatags", "opengraph", "open graph"],
"homepage": "https://github.com/ycs77/inertia-laravel-ssr-head",
"license": "MIT",
"authors": [
{
"name": "Lucas Yang",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"laravel/framework": ">=11.0",
"inertiajs/inertia-laravel": ">=1.0.0"
},
"require-dev": {
"orchestra/testbench": ">=9.0",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-laravel": "^2.4"
},
"autoload": {
"psr-4": {
"Inertia\\SSRHead\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Inertia\\SSRHead\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Inertia\\SSRHead\\InertiaSSRHeadServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}