-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
33 lines (33 loc) · 1.01 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
{
"name": "marionnewlevant/agnostic-fetch",
"description": "uniform syntax for fetching elements whether or not they have been eager loaded",
"type": "craft-plugin",
"version": "2.0.4",
"keywords": [
"craft", "craftcms", "craft-plugin", "agnostic-fetch", "eager"
],
"license": "MIT",
"authors": [
{
"name": "Marion Newlevant",
"homepage": "http://marion.newlevant.com"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1"
},
"autoload": {
"psr-4": {
"marionnewlevant\\agnosticfetch\\": "src/"
}
},
"extra": {
"name": "Agnostic Fetch",
"handle": "agnostic-fetch",
"schemaVersion": "1.0.0",
"hasSettings": false,
"hasCpSection": false,
"documentationUrl": "https://github.com/marionnewlevant/craft-agnostic_fetch/blob/v2/README.md",
"changelogUrl": "https://raw.githubusercontent.com/marionnewlevant/craft-agnostic_fetch/v2/CHANGELOG.md"
}
}