Fix all errors after configuration update.
[Project_proches_de_moi-server.git] / composer.json
CommitLineData
dec6d031
JB
1{
2 "type": "project",
3 "license": "proprietary",
4 "require": {
5 "php": "^7.1.3",
6 "ext-ctype": "*",
7 "ext-iconv": "*",
8 "doctrine/doctrine-bundle": "^1.9",
9 "doctrine/orm": "^2.6",
10 "friendsofsymfony/rest-bundle": "^2.3",
11 "jms/serializer-bundle": "^2.4",
12 "sensio/framework-extra-bundle": "^5.1",
13 "symfony/console": "^4.1",
14 "symfony/flex": "^1.0",
15 "symfony/framework-bundle": "^4.1",
16 "symfony/lts": "^4@dev",
ef3fa6e0 17 "symfony/security-bundle": "^4.1",
98cb0edc
JB
18 "symfony/serializer": "^4.1",
19 "symfony/translation": "^4.1",
20 "symfony/twig-bundle": "^4.1",
dec6d031
JB
21 "symfony/yaml": "^4.1"
22 },
23 "require-dev": {
2d8fc88c
JB
24 "symfony/dotenv": "^4.1",
25 "symfony/web-server-bundle": "^4.1"
dec6d031
JB
26 },
27 "config": {
28 "preferred-install": {
29 "*": "dist"
30 },
31 "sort-packages": true
32 },
33 "autoload": {
34 "psr-4": {
35 "App\\": "src/"
36 }
37 },
38 "autoload-dev": {
39 "psr-4": {
40 "App\\Tests\\": "tests/"
41 }
42 },
43 "replace": {
44 "symfony/polyfill-ctype": "*",
45 "symfony/polyfill-iconv": "*",
46 "symfony/polyfill-php71": "*",
47 "symfony/polyfill-php70": "*",
48 "symfony/polyfill-php56": "*"
49 },
50 "scripts": {
51 "auto-scripts": {
52 "cache:clear": "symfony-cmd",
53 "assets:install %PUBLIC_DIR%": "symfony-cmd"
54 },
55 "post-install-cmd": [
56 "@auto-scripts"
57 ],
58 "post-update-cmd": [
59 "@auto-scripts"
60 ]
61 },
62 "conflict": {
63 "symfony/symfony": "*"
64 },
65 "extra": {
66 "symfony": {
67 "allow-contrib": false
68 }
69 }
70}