-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (62 loc) · 1.57 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "elcodi/user",
"description": "Elcodi User Component",
"keywords": [
"elcodi",
"User",
"ecommerce",
"component"
],
"homepage": "https://github.com/elcodi/User",
"type": "library",
"license": "MIT",
"support": {
"email": "[email protected]",
"forum": "https://gitter.im/elcodi/elcodi",
"source": "https://github.com/elcodi/elcodi",
"issues": "https://github.com/elcodi/elcodi/issues"
},
"authors": [
{
"name": "Marc Morera",
"email": "[email protected]"
},
{
"name": "Aldo Chiecchia",
"email": "[email protected]"
},
{
"name": "The Awesome Elcodi Community",
"homepage": "https://github.com/elcodi/User/contributors"
}
],
"require": {
"php": "^5.4|^7.0",
"doctrine/common": "^2.5",
"doctrine/orm": "^2.5",
"symfony/security": "^2.7|^3.0",
"symfony/routing": "^2.7|^3.0",
"symfony/event-dispatcher": "^2.7|^3.0",
"symfony/dependency-injection": "^2.7|^3.0",
"elcodi/core": "^2.0",
"elcodi/geo": "^2.0",
"elcodi/language": "^2.0",
"elcodi/cart": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "4.8.19"
},
"autoload": {
"exclude-from-classmap": [
"/Tests/"
],
"psr-4": {
"Elcodi\\Component\\User\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}