forked from crouillon/BackBee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
96 lines (96 loc) · 2.91 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "backbee/backbee-php",
"description": "BackBee is the next generation open source CMS",
"keywords": ["CMS", "Core", "Content Management", "No backend CMS", "User Management"],
"type": "library",
"license": "GPL-3.0+",
"authors": [
{
"name": "Charles Rouillon",
"email": "[email protected]"
},
{
"name": "Chau Eric",
"email": "[email protected]"
},
{
"name": "Mickaël Andrieu",
"email": "[email protected]"
},
{
"name": "Florian Kroockmann",
"email": "[email protected]"
},
{
"name": "Harris Baptiste",
"email": "[email protected]"
},
{
"name": "Nicolas Dufreche",
"email": "[email protected]"
},
{
"name": "BackBee community",
"homepage": "https://github.com/backbee/BackBee/graphs/contributors"
}
],
"require": {
"php": ">=5.6.0",
"psr/log": "~1.0",
"symfony/config": "~2.7.0",
"symfony/console": "~2.7.0",
"symfony/debug": "~2.7.0",
"symfony/doctrine-bridge": "~2.5.0",
"symfony/event-dispatcher": "~2.7.0",
"symfony/expression-language": "~2.7.0",
"symfony/filesystem": "~2.7.0",
"symfony/finder": "~2.7.0",
"symfony/http-foundation": "~2.7.0",
"symfony/http-kernel": "~2.7.0",
"symfony/routing": "~2.7.0",
"symfony/security-acl": "~2.7.0",
"symfony/security-core": "~2.7.0",
"symfony/security-http": "~2.7.0",
"symfony/serializer": "~2.7.0",
"symfony/translation": "~2.7.0",
"symfony/validator": "~2.7.0",
"symfony/yaml": "~2.7.0",
"symfony/dependency-injection": "~2.7.0",
"doctrine/orm": "~2.4.0",
"doctrine/dbal": "~2.4.0",
"twig/twig": "~1.17",
"twig/extensions" : "1.1.0",
"swiftmailer/swiftmailer": "5.3.0",
"jms/serializer": "0.16.0",
"jms/metadata": "1.5.1",
"willdurand/jsonp-callback-validator": "1.1.0",
"backbee/utils": "~2.0"
},
"bin": [
"backbee"
],
"autoload": {
"psr-4": {
"BackBee\\": ""
}
},
"require-dev": {
"phpunit/phpunit": "4.4.2",
"phpunit/dbunit": "1.3.1",
"mikey179/vfsStream": "1.4.0",
"fzaninotto/faker": "1.4.0",
"backbee/demo-bundle": "~1.2.0",
"backbee/toolbar-bundle": "~1.2.0",
"backbee/backbee-js": "~1.2.0",
"symfony/phpunit-bridge": "~2.7.0"
},
"suggest": {
"symfony/form": "Allows you to use Symfony Form Component integration"
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}