-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
42 lines (42 loc) · 1.14 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
{
"name": "eye4web/eye4web-zfc-user-pm",
"description": "Private message system for ZfcUser",
"license": "MIT",
"keywords": [
"zfc-user",
"zendframework",
"module",
"eye4web",
"pm",
"private message"
],
"homepage": "https://github.com/Eye4web/Eye4webZfcUserPm",
"authors": [
{
"name": "Daniel Strøm",
"email": "[email protected]",
"homepage": "http://eye4web.dk"
}
],
"require": {
"php": "^7.2|~8.0",
"zf-commons/zfc-user": "~3.0.0",
"eye4web/eye4web-base": "~0.0.1",
"ramsey/uuid": "^3.0|^4.0",
"laminas/laminas-serializer": "~2.1|~3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0.0",
"squizlabs/php_codesniffer": "~2.0.0@DEV",
"zf-commons/zfc-user-doctrine-orm": "~1.0",
"codeclimate/php-test-reporter": "0.*"
},
"autoload": {
"psr-0": {
"Eye4web\\ZfcUser\\Pm\\": "src/"
}
},
"suggest": {
"zf-commons/zfc-user-doctrine-orm": "ZF2 Doctrine ORM module for use with the Doctrine ORM mapper"
}
}