-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
71 lines (71 loc) · 2.95 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
{
"name": "innova/self",
"license": "MIT",
"type": "project",
"description": "Système d'EvaLuation à visée Formative.",
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": "^7.0",
"symfony/symfony": "2.7.9",
"symfony/assetic-bundle": "2.3.*",
"symfony/swiftmailer-bundle": "2.3.*",
"symfony/monolog-bundle": "2.3.*",
"doctrine/orm": "v2.5.4",
"doctrine/dbal": "v2.5.4",
"doctrine/doctrine-bundle": "1.6.1",
"doctrine/doctrine-fixtures-bundle" : "2.3.0",
"doctrine/doctrine-migrations-bundle": "dev-master#6a1bd731dbdd4a",
"twig/extensions": "1.3",
"sensio/framework-extra-bundle": "2.3.*",
"sensio/generator-bundle": "v3.0.5",
"incenteev/composer-parameter-handler": "~2.0",
"friendsofsymfony/user-bundle": "~2.0@dev",
"friendsofsymfony/jsrouting-bundle": "~1.1",
"stfalcon/tinymce-bundle": "dev-master#758c19947b04d93d",
"knplabs/knp-snappy-bundle": "dev-master#c023573e1b0b",
"willdurand/js-translation-bundle": "@stable",
"lexik/maintenance-bundle": "dev-master#4967701a108aa8262f",
"twig/twig": "1.*",
"sensio/distribution-bundle": "~4",
"snc/redis-bundle": "^2.0",
"predis/predis": "^1.0",
"sentry/sentry-symfony": "1.0.3",
"stof/doctrine-extensions-bundle": "^1.2",
"kitpages/data-grid-bundle": "2.7.1"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Innova\\SelfBundle\\Composer\\ScriptHandler::clearDoctrineMetadataCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Innova\\SelfBundle\\Composer\\ScriptHandler::clearDoctrineMetadataCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
]
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "dev",
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-assets-install": "symlink",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "2.3-dev"
}
}
}