-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.62 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.62 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
51
52
53
54
55
56
57
{
"name": "c975l/user-bundle",
"type": "symfony-bundle",
"description": "Bundle to manage user profile, by users and admin",
"keywords": ["symfony", "bundle", "user"],
"homepage": "https://github.com/975L/UserBundle",
"license": "MIT",
"authors": [
{
"name": "Laurent Marquet",
"email": "laurent.marquet@laposte.net",
"homepage": "https://github.com/LaurentMarquet",
"role": "Developer"
},
{
"name": "975L Community",
"homepage": "https://github.com/975L"
}
],
"require": {
"php": "*",
"c975l/config-bundle": "^2",
"c975l/email-bundle": "^4",
"c975l/includelibrary-bundle": "^1",
"c975l/services-bundle": "^1",
"c975l/toolbar-bundle": "^1",
"knplabs/knp-paginator-bundle": "*",
"lcobucci/jwt": "*",
"odolbeau/phone-number-bundle": "*",
"symfony/form": "*",
"symfony/security": "*",
"symfony/serializer": "*",
"symfony/translation": "*",
"symfony/validator": "*",
"twig/intl-extra": "*"
},
"require-dev": {
"phpstan/phpstan": "*",
"phpunit/phpunit": "*",
"rector/rector": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"c975L\\UserBundle\\": ""
}
},
"support": {
"email": "contact@975l.com",
"source": "https://github.com/975L/UserBundle",
"issues": "https://github.com/975L/UserBundle/issues"
},
"config": {
"sort-packages": true
}
}