forked from Dolphiq/craft3-jsonclient
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.46 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
{
"name": "dolphiq/jsonclient",
"description": "Simple Json client plugin for Craft3 CMS. The plugin provides a simple Twig extension which allows you to fetch a Json url and return it to your Twig template.",
"type": "craft-plugin",
"version": "1.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"json",
"jsonclient",
"twig",
"craft3"
],
"license": "MIT",
"authors": [
{
"name": "Johan Zandstra",
"email": "[email protected]",
"homepage": "https://dolphiq.nl/"
}
],
"require": {
"craftcms/cms": "~3.0.0-beta.1"
},
"autoload": {
"psr-4": {
"dolphiq\\jsonclient\\": "src/"
}
},
"extra": {
"name": "Json Client",
"handle": "jsonclient",
"schemaVersion": "1.0.0",
"developer": "Dolphiq",
"developerUrl": "https://dolphiq.nl/",
"description": "Simple Json client plugin for Craft3 CMS. The plugin provides a simple Twig extension which allows you to fetch a Json url and return it to your Twig template.",
"hasCpSettings": false,
"hasCpSection": false,
"documentationUrl": "https://github.com/Dolphiq/craft3-jsonclient/blob/master/README.md",
"changelogUrl": "https://github.com/Dolphiq/craft3-jsonclient/blob/master/CHANGELOG.md",
"class": "dolphiq\\jsonclient\\JsonClientPlugin"
}
}