-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
40 lines (40 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
{
"name": "jsmrtn/craftagram",
"description": "Grab Instagram content through the Instagram API",
"type": "craft-plugin",
"version": "4.1.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craftagram"
],
"support": {
"docs": "https://github.com/jsmrtn/craftagram/blob/master/README.md",
"issues": "https://github.com/jsmrtn/craftagram/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Joshua Martin"
}
],
"require": {
"craftcms/cms": "^4.0.0|^5.0.0"
},
"autoload": {
"psr-4": {
"jsmrtn\\craftagram\\": "src/"
}
},
"extra": {
"name": "Craftagram",
"handle": "craftagram",
"changelogUrl": "https://raw.githubusercontent.com/jsmrtn/craftagram/master/CHANGELOG.md",
"components": {
"craftagramService": "jsmrtn\\craftagram\\services\\CraftagramService"
},
"class": "jsmrtn\\craftagram\\Craftagram"
}
}