-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 1.07 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
{
"name": "ryssbowh/craft-prefetch",
"description": "Prefetch, Preconnect, DNS Prefetch, Preload, Prerender and Subresource helper",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"preload",
"prefetch",
"preconnect",
"subresource",
"asynchronous"
],
"authors": [
{
"name": "The Web Puzzlers",
"homepage": "https://github.com/ryssbowh"
}
],
"require": {
"craftcms/cms": "^5.0"
},
"autoload": {
"psr-4": {
"Ryssbowh\\CraftPrefetch\\": "src/"
}
},
"extra": {
"name": "Prefetch",
"handle": "prefetch",
"developer": "The Web Puzzlers",
"developerUrl": "https://www.webpuzzlers.co.uk",
"documentationUrl": "https://www.webpuzzlers.co.uk/plugins/prefetch/all",
"components": {
"prefetch": "Ryssbowh\\CraftPrefetch\\services\\PrefetchService"
},
"class": "Ryssbowh\\CraftPrefetch\\Prefetch"
}
}