forked from jalendport/craft-fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.19 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
{
"name": "jalendport/craft-fetch",
"description": "Utilise the Guzzle HTTP client from within your Craft templates.",
"type": "craft-plugin",
"version": "1.3.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"guzzle",
"fetch"
],
"support": {
"docs": "https://github.com/jalendport/craft-fetch/blob/v1/README.md",
"issues": "https://github.com/jalendport/craft-fetch/issues"
},
"license": "MIT",
"authors": [
{
"name": "Jalen Davenport",
"homepage": "https://jalendport.com"
},
{
"name": "Luke Youell",
"homepage": "https://github.com/lukeyouell"
}
],
"require": {
"craftcms/cms": "^3.0.0"
},
"autoload": {
"psr-4": {
"jalendport\\fetch\\": "src/"
}
},
"extra": {
"name": "Fetch",
"handle": "fetch",
"schemaVersion": "1.0.0",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/jalendport/craft-fetch/v1/CHANGELOG.md",
"class": "jalendport\\fetch\\Fetch"
}
}