-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.18 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
{
"name": "stuartcusackie/statamic-cache-requester",
"license": "MIT",
"description": "Artisan commands that queue up entry and glide urls for retrieval, which engages the caches and makes first time loads much quicker.",
"minimum-stability": "dev",
"require": {
"php": "^8.0",
"laravel/framework": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"statamic/cms": "^3.0|^4.0|^5.0",
"simplehtmldom/simplehtmldom": "^2.0@RC"
},
"autoload": {
"psr-4": {
"stuartcusackie\\StatamicCacheRequester\\": "src"
}
},
"authors": [
{
"name": "Stuart Cusack",
"email": "stuart@stuartcusack.ie",
"homepage": "https://stuartcusack.ie",
"role": "President"
}
],
"extra": {
"statamic": {
"name": "Statamic Cache Requester",
"description": "Artisan commands that queue up entry and glide urls for retrieval, which engages the caches and makes first time loads much quicker."
},
"laravel": {
"providers": [
"stuartcusackie\\StatamicCacheRequester\\ServiceProvider"
]
}
}
}