forked from GwendolenLynch/msgphp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.34 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.34 KB
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
{
"name": "msgphp/user",
"type": "library",
"license": "MIT",
"description": "A domain layer providing basic user management",
"keywords": ["ddd", "domain-driven-design", "rich domain model", "user", "security"],
"authors": [
{
"name": "Roland Franssen",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"MsgPhp\\User\\": ""
},
"exclude-from-classmap": ["/Tests/"]
},
"require": {
"msgphp/domain": "^0.8"
},
"require-dev": {
"doctrine/orm": "^2.6",
"lexik/jwt-authentication-bundle": "^2.5",
"msgphp/eav": "^0.8",
"sensio/framework-extra-bundle": "^5.1",
"symfony/console": "^3.4|^4.0",
"symfony/form": "^3.4|^4.0",
"symfony/http-kernel": "^3.4|^4.0",
"symfony/phpunit-bridge": "^3.4.9|^4.0.9",
"symfony/security-core": "^3.4|^4.0",
"symfony/validator": "^3.4|^4.0",
"symfony/var-dumper": "^3.4|^4.0"
},
"suggest": {
"msgphp/eav": "To enable user attribute values"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.8-dev"
}
}
}