forked from Sylius/SyliusUserBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (59 loc) · 1.64 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
{
"name": "sylius/user-bundle",
"type": "symfony-bundle",
"description": "Users management for Symfony2 projects.",
"keywords": ["user", "registration", "login", "groups"],
"homepage": "http://sylius.org",
"license": "MIT",
"authors": [
{
"name": "Paweł Jędrzejewski",
"homepage": "http://pjedrzejewski.com"
},
{
"name": "Michał Marcinkowski",
"email": "[email protected]"
},
{
"name": "Łukasz Chruściel",
"email": "[email protected]"
},
{
"name": "Bartosz Siejka",
"homepage": "http://bsiejka.com"
},
{
"name": "Sylius project",
"homepage": "http://sylius.org"
},
{
"name": "Community contributions",
"homepage": "http://github.com/Sylius/Sylius/contributors"
}
],
"require": {
"php": ">=5.3.3",
"sylius/user": "0.15.*@dev",
"sylius/resource-bundle": "0.15.*@dev",
"sylius/mailer-bundle": "0.15.*@dev",
"symfony/framework-bundle": "~2.3"
},
"require-dev": {
"phpspec/phpspec": "~2.1",
"symfony/form": "~2.3"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": { "Sylius\\Bundle\\UserBundle\\": "" }
},
"autoload-dev": {
"psr-4": { "Sylius\\Bundle\\UserBundle\\spec\\": "spec/" }
},
"extra": {
"branch-alias": {
"dev-master": "0.15-dev"
}
}
}