-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 1.48 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
49
50
51
{
"name": "lukeyouell/craft-gtmetrix",
"description": "GTmetrix gives you insight on how well your entries load and provides actionable recommendations on how to optimise them.",
"type": "craft-plugin",
"version": "1.1.4",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"gtmetrix"
],
"support": {
"docs": "https://github.com/lukeyouell/craft-gtmetrix/blob/v1/README.md",
"issues": "https://github.com/lukeyouell/craft-gtmetrix/issues"
},
"license": "MIT",
"authors": [
{
"name": "Luke Youell",
"homepage": "https://github.com/lukeyouell"
}
],
"require": {
"craftcms/cms": "^3.0.0"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"lukeyouell\\gtmetrix\\": "src/"
}
},
"extra": {
"name": "GTmetrix",
"handle": "gtmetrix",
"schemaVersion": "1.0.0",
"hasCpSettings": false,
"hasCpSection": true,
"documentationUrl": "https://github.com/lukeyouell/craft-gtmetrix/blob/v1/README.md",
"changelogUrl": "https://raw.githubusercontent.com/lukeyouell/craft-gtmetrix/v1/CHANGELOG.md",
"components": {
"gTmetrixService": "lukeyouell\\gtmetrix\\services\\GTmetrixService"
},
"class": "lukeyouell\\gtmetrix\\GTmetrix"
}
}