forked from craftcms/element-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.16 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.16 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
{
"name": "craftcms/element-api",
"description": "Create a JSON API for your elements in Craft",
"version": "2.4.0",
"type": "craft-plugin",
"keywords": [
"api",
"cms",
"craftcms",
"json",
"yii2"
],
"license": "MIT",
"authors": [
{
"name": "Pixel & Tonic",
"homepage": "https://pixelandtonic.com/"
}
],
"support": {
"email": "support@craftcms.com",
"issues": "https://github.com/craftcms/element-api/issues?state=open",
"source": "https://github.com/craftcms/element-api",
"docs": "https://github.com/craftcms/element-api",
"rss": "https://github.com/craftcms/element-api/commits/v2.atom"
},
"require": {
"craftcms/cms": "~3.0.0-beta.13",
"league/fractal": "^0.16.0"
},
"autoload": {
"psr-4": {
"craft\\elementapi\\": "src/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"extra": {
"name": "Element API",
"handle": "elementApi",
"changelogUrl": "https://raw.githubusercontent.com/craftcms/element-api/v2/CHANGELOG.md",
"downloadUrl": "https://github.com/craftcms/element-api/archive/v2.zip"
}
}