-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 999 Bytes
/
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": "msgphp/user-bundle",
"type": "symfony-bundle",
"description": "Basic user management (the `User` domain)",
"keywords": [
"user",
"security"
],
"license": "MIT",
"authors": [
{
"name": "Roland Franssen",
"email": "[email protected]"
}
],
"require": {
"msgphp/user": "^0.2",
"symfony/config": "^3.4 || ^4.3 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^3.4 || ^4.3 || ^5.0 || ^6.0",
"symfony/http-kernel": "^3.4 || ^4.3 || ^5.0 || ^6.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.16-dev"
}
},
"autoload": {
"psr-4": {
"MsgPhp\\UserBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev"
}