-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
35 lines (35 loc) · 1.65 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
{
"name": "fdmind/ignore-query-strings",
"description": "If your website has static caching on, and you drive traffic to it from social media, Google Ads and other sources that add query string parameters to the URL, there is a chance that each time new user visits a page, it will not be served from cache, but will be generated from scratch. This is because the URL with query string parameters is treated as a different URL from the one without query string parameters.",
"keywords": [
"statamic",
"4dmind",
"static caching"
],
"require": {
"php": "^8.0",
"statamic/cms": "^3.2|^4.0|^5.0"
},
"homepage": "https://github.com/4dmind/ignore-query-strings.git",
"license": "MIT",
"authors": [{
"name": "4DMIND.COM",
"email": "[email protected]"
}],
"autoload": {
"psr-4": {
"Fdmind\\IgnoreQueryStrings\\": "src"
}
},
"extra": {
"statamic": {
"name": "Allow/deny Query Strings",
"description": "If your website has static caching on, and you drive traffic to it from social media, Google Ads and other sources that add query string parameters to the URL, there is a chance that each time new user visits a page, it will not be served from cache, but will be generated from scratch. This is because the URL with query string parameters is treated as a different URL from the one without query string parameters. With this Statamic addon you can allow or deny query strings."
},
"laravel": {
"providers": [
"Fdmind\\IgnoreQueryStrings\\ServiceProvider"
]
}
}
}