-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
88 lines (88 loc) · 2.46 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "flipboxdigital/organization",
"description": "Simple parent + child management",
"version": "1.0.0-beta.11",
"type": "craft-plugin",
"minimum-stability": "beta",
"prefer-stable": true,
"config": {
"optimize-autoloader": true
},
"keywords": [
"flipbox",
"organization",
"parent-child",
"craftcms",
"yii2"
],
"license": "MIT",
"authors": [{
"name": "Flipbox Factory",
"email": "[email protected]"
}],
"support": {
"email": "[email protected]",
"issues": "https://github.com/flipbox/organization/issues?state=open",
"source": "https://github.com/flipbox/organization",
"docs": "https://github.com/flipbox/organization",
"rss": "https://github.com/flipbox/organization/commits/master.atom"
},
"require": {
"craftcms/cms": "~3.0.0-beta.28",
"flipboxdigital/spark": "~1.0.0-beta.2"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"squizlabs/php_codesniffer": "^2.0",
"codeception/codeception": "^2.2"
},
"autoload": {
"psr-4": {
"flipbox\\organization\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"flipbox\\organization\\tests\\": "tests/src/"
}
},
"extra": {
"name": "Organization",
"handle": "organization",
"developer": "Flipbox Digital",
"developerUrl": "https://www.flipboxdigital.com",
"class": "flipbox\\organization\\Organization",
"changelogUrl": "https://raw.githubusercontent.com/flipbox/organization/master/CHANGELOG.md",
"downloadUrl": "https://github.com/flipbox/organization/archive/master.zip",
"hasCpSettings": true,
"hasCpSection": true,
"schemaVersion": "1.0.0",
"components": {
"field": "flipbox\\organization\\services\\Field",
"organization": "flipbox\\organization\\services\\Organization",
"permission": "flipbox\\organization\\services\\Permission",
"type": "flipbox\\organization\\services\\Type",
"user": "flipbox\\organization\\services\\User"
},
"modules": {
"configuration": {
"basePath": "@flipbox/organization/modules/configuration",
"class": "flipbox\\organization\\modules\\configuration\\Module",
"components": {
"general": "flipbox\\organization\\modules\\configuration\\services\\General",
"layout": "flipbox\\organization\\modules\\configuration\\services\\Layout",
"type": "flipbox\\organization\\modules\\configuration\\services\\Type"
}
}
}
},
"repositories": [
{
"type": "composer",
"url": "https://packagist.org"
},{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}