-
Notifications
You must be signed in to change notification settings - Fork 71
/
composer.json
104 lines (104 loc) · 3.55 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
97
98
99
100
101
102
103
104
{
"name": "victoire/victoire",
"type": "symfony-bundle",
"description": "Victoire is a cms based on Symfony framework",
"keywords": [
"Victoire",
"CMS",
"Symfony"
],
"license": "MIT",
"homepage": "http://victoire.io",
"authors": [
{
"name": "Paul Andrieux",
"email": "[email protected]",
"homepage": "http://github.com/paulandrieux",
"role": "developer"
},
{
"name": "Leny Bernard",
"email": "[email protected]",
"homepage": "http://github.com/lenybernard",
"role": "developer"
},
{
"name": "Community Contributors",
"homepage": "http://github.com/Victoire/Victoire/graphs/contributors"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"php": ">=7.1",
"a2lix/translation-form-bundle": "2.4.0",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-migrations-bundle": "^1.2",
"doctrine/orm": "^2.5,<2.7",
"friendsofsymfony/jsrouting-bundle": "^1.0|^2.0",
"friendsofsymfony/user-bundle": "~2.0",
"incenteev/composer-parameter-handler": "^2.0",
"jms/serializer-bundle": "^1.0",
"knplabs/gaufrette": "^0.1",
"knplabs/doctrine-behaviors": "1.4.0",
"knplabs/knp-menu-bundle": "^2.1",
"liip/imagine-bundle": "^1.4",
"predis/predis": "^1.1",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.1 | ^4.0 | ^5.0",
"snc/redis-bundle": "~2.0",
"stof/doctrine-extensions-bundle": "~1.2",
"symfony/assetic-bundle": "~2.3",
"symfony/monolog-bundle": "^3.1.0",
"symfony/polyfill-apcu": "^1.0",
"symfony/symfony": "^3.4,<3.4.5",
"symfony/swiftmailer-bundle": "^2.6.4|^3.0",
"symfony/twig-bundle": "~3.0",
"troopers/alertify-bundle": "^3.0",
"troopers/assetic-injector-bundle": "^1.1",
"twig/extensions": "~1.0",
"twig/twig": "~2.0",
"willdurand/js-translation-bundle": "^2.5"
},
"require-dev": {
"behat/behat": "~3.0",
"behat/mink-browserkit-driver": "~1.3",
"behat/mink-extension": "~2.0",
"behat/mink-goutte-driver": "~1.1",
"behat/mink-selenium2-driver": "~1.1",
"behat/symfony2-extension": "~2.0",
"knplabs/friendly-contexts": "~0.7",
"lakion/mink-debug-extension": "^1.0",
"nelmio/alice": "~2.0",
"phpunit/php-code-coverage": "^4.0",
"phpunit/phpunit-mock-objects": "^3.0",
"phpunit/phpunit": "~5.7",
"sensio/generator-bundle": "~2.3|~3.0",
"symfony/var-dumper": "~2.8|~3.1",
"doctrine/doctrine-fixtures-bundle": "^2.2",
"symfony/web-server-bundle": "~3.4"
},
"autoload": {
"psr-4": {
"Acme\\AppBundle\\": "Tests/App/src/Acme/AppBundle",
"Victoire\\Bundle\\": "Bundle",
"Victoire\\Tests\\Features\\": "Tests/Features",
"Victoire\\Tests\\Functional\\": "Tests/Functional",
"Victoire\\Widget\\": "Tests/App/src/Victoire/Widget"
}
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
]
},
"extra": {
"incenteev-parameters": {
"file": "Tests/App/app/config/parameters.yml"
}
}
}