forked from Saeven/zf3-circlical-user
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 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
{
"name": "saeven/zf3-circlical-user",
"description": "Complete user entity, rights, and access module for ZF2 and ZF3",
"type": "library",
"license": "MPL2.0",
"homepage": "https://github.com/Saeven/zf2-circlical-user",
"keywords": [
"user",
"zf3",
"user management",
"acl",
"bjyauthorize",
"authorization",
"auth"
],
"authors": [
{
"name": "Alexandre Lemaire",
"email": "[email protected]",
"homepage": "http://circlical.com/",
"role": "Paper Stapler"
}
],
"require": {
"php": "^7.0.0",
"zendframework/zend-eventmanager": "^3.0",
"zendframework/zend-servicemanager": "^3.0",
"zendframework/zend-mvc": "^3.0",
"zendframework/zend-console": "^2.6",
"zendframework/zend-view": "^2.8",
"zendframework/zend-http": "^2.5",
"doctrine/doctrine-orm-module": "^1.1",
"doctrine/doctrine-module": "^1.2",
"doctrine/orm": "^2.5",
"paragonie/halite": "^2.1"
},
"require-dev": {
"phpspec/phpspec": "^3.1",
"henrikbjorn/phpspec-code-coverage": "^3.0",
"codacy/coverage": "^1.0",
"paragonie/passwdqc": "dev-master"
},
"suggest":{
"paragonie/passwdqc": "Add built-in support for password-strength checking! See README for configuration details."
},
"autoload": {
"psr-4": {
"CirclicalUser\\": "src/CirclicalUser"
}
}
}