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