-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.64 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
55
56
57
{
"name": "flipboxfactory/craft-initiatives",
"description": "Initiatives plugin for craft CMS",
"version": "1.0.0",
"type": "craft-plugin",
"license": "MIT",
"keywords": [
"cms",
"craftcms",
"postmark",
"mailer",
"yii2"
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/flipboxfactory/organizations/issues?state=open",
"source": "https://github.com/flipboxfactory/organizations",
"docs": "https://github.com/flipboxfactory/organizations",
"rss": "https://github.com/flipboxfactory/organizations/commits/master.atom"
},
"require": {
"craftcms/cms": "^3.0",
"flipboxfactory/craft-ember": "^2.2",
"flipboxfactory/craft-elements-nested-index": "^2.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.2",
"codeception/codeception": "^2.4.0",
"vlucas/phpdotenv": "^2.4"
},
"autoload": {
"psr-4": {
"flipbox\\craft\\initiatives\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"flipbox\\craft\\initiatives\\tests\\": "tests/src/"
}
},
"extra": {
"name": "Initiatives",
"handle": "initiatives",
"class": "flipbox\\craft\\initiatives\\Initiatives",
"developer": "Flipbox Digital",
"developerUrl": "https://www.flipboxdigital.com",
"changelogUrl": "https://raw.githubusercontent.com/flipboxfactory/craft-initiatives/master/CHANGELOG.md",
"documentationUrl": "https://github.com/flipboxfactory/craft-initiatives",
"hasCpSettings": true,
"hasCpSection": true,
"schemaVersion": "1.0.0",
"branch-alias": {
"dev-develop": "1.0.x-dev",
"dev-master": "1.0.x-dev"
}
}
}