-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.54 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.54 KB
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
{
"name": "morethingsdigital/statamic-nextjs",
"description": "Manage On-demand revalidation for next.js",
"keywords": [
"statamic",
"deployment",
"next.js"
],
"require": {
"php": ">=8.1",
"statamic/cms": "^4 || ^5"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Morethingsdigital\\StatamicNextjs\\": "src/"
}
},
"authors": [
{
"name": "morethingsdigital GmbH",
"email": "hi@morethings.digital",
"role": "Maintainer"
},
{
"name": "Christoph Stockinger",
"email": "christoph@morethings.digital",
"role": "Developer"
}
],
"support": {
"email": "vercel-statamic@morethings.digital"
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan vendor:publish --tag=statamic-nextjs-config --force",
"@php artisan vendor:publish --tag=statamic-nextjs --force"
]
},
"extra": {
"statamic": {
"name": "Statamic x Next.js",
"description": "Morethings.digital Statamic Next.js addon"
},
"laravel": {
"providers": [
"Morethingsdigital\\StatamicNextjs\\ServiceProvider"
]
}
}
}