This repository has been archived by the owner on Oct 21, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.59 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
46
47
48
49
50
51
52
53
54
{
"name": "topshelfcraft/craft3-walk",
"type": "craft-plugin",
"description": "A Craft-aware array_walk() method, plus some super-convenient console commands, to easily call Craft service methods on a collection of elements or values.",
"version": "3.0.0-beta.1",
"keywords": [
"craft",
"cms",
"craftcms",
"plugin",
"walk",
"array_walk",
"console"
],
"license": "MIT",
"homepage": "https://topshelfcraft.com",
"authors": [
{
"name": "Top Shelf Craft",
"homepage": "https://topshelfcraft.com"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/TopShelfCraft/Walk/issues?state=open",
"source": "https://github.com/TopShelfCraft/Walk",
"docs": "https://github.com/TopShelfCraft/Walk"
},
"require": {
"craftcms/cms": "^3.0.0-beta.1"
},
"autoload": {
"psr-4": {
"topshelfcraft\\walk\\": "src/"
}
},
"extra": {
"name": "Walk",
"handle": "walk",
"description": "It walks, like the walking man.",
"version": "3.0.0",
"schemaVersion": "3.0.0.0",
"hasSettings": false,
"hasCpSection": false,
"developer": "Top Shelf Craft (Michael Rog)",
"developerUrl": "https://topshelfcraft.com",
"documentationUrl": "",
"changelogUrl": "",
"components": {
"dummy": "topshelfcraft\\walk\\services\\DummyService"
},
"class": "topshelfcraft\\walk\\Walk"
}
}