This repository was archived by the owner on Jun 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·55 lines (55 loc) · 1.81 KB
/
composer.json
File metadata and controls
executable file
·55 lines (55 loc) · 1.81 KB
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
52
53
54
55
{
"name": "melvilleco/instagram-basic-display",
"description": "Provides endpoints and helper console commands that make it easier to work with the Instagram Basic Display API.",
"type": "craft-plugin",
"version": "1.0.6",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"instagram",
"instagram api",
"instagram oembed",
"instagram embed",
"instagram feed",
"craft instagram",
"instagram basic display"
],
"support": {
"docs": "https://github.com/jonathanmelville/craft-instagram-basic-display/blob/master/README.md",
"issues": "https://github.com/jonathanmelville/craft-instagram-basic-display/issues"
},
"license": "MIT",
"authors": [
{
"name": "Jonathan Melville",
"homepage": "https://codemdd.io"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"ext-json": "*"
}
,
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"melvilleco\\instagrambasicdisplay\\": "src/"
}
},
"extra": {
"name": "Instagram Basic Display",
"handle": "instagram-basic-display",
"developer": "Jonathan Melville",
"developerUrl": "https://codemdd.io",
"documentationUrl": "https://github.com/jonathanmelville/craft-instagram-basic-display/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/jonathanmelville/craft-instagram-basic-display/master/CHANGELOG.md",
"components": {
"instagramBasicDisplayService": "melvilleco\\instagrambasicdisplay\\services\\InstagramBasicDisplayService"
},
"class": "melvilleco\\instagrambasicdisplay\\InstagramBasicDisplay"
}
}