-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (51 loc) · 1.35 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
{
"name": "icybee/module-users",
"type": "icanboogie-module",
"description": "Manages the users of the CMS Icybee",
"keywords": [ "user", "login" ],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Olivier Laviale",
"email": "[email protected]",
"homepage": "http://www.weirdog.com/",
"role" : "Developer"
}
],
"support": {
"issues": "https://github.com/Icybee/module-users/issues",
"source": "https://github.com/Icybee/module-users"
},
"minimum-stability": "dev",
"require": {
"php": ">=5.5",
"icanboogie/module-installer": "^1.2",
"brickrouge/brickrouge": "^3.0",
"brickrouge/css-class-names": "^2.0",
"icybee/core": "^3.0",
"icybee/module-registry": "^3.0"
},
"require-dev": {
"icanboogie/bind-facets": "^0.6"
},
"suggest": {
"icanboogie/mailer": "Mailer is a library for PHP that is designed to handle emails generation and sending."
},
"autoload": {
"psr-4": {
"Icybee\\Modules\\Users\\": "lib"
}
},
"scripts": {
"post-autoload-dump": "ICanBoogie\\Autoconfig\\Hooks::on_autoload_dump"
},
"extra": {
"icanboogie": {
"config-constructor": {
"user": "merge",
"users_ownership_resolver_list": "Icybee\\Modules\\Users\\OwnershipResolver::synthesize_config#users",
"users_permission_resolver_list": "Icybee\\Modules\\Users\\PermissionResolver::synthesize_config#users"
}
}
}
}