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