Add new REST ressources.
[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 18 "symfony/serializer": "^4.1",
c4fba949 19 "symfony/swiftmailer-bundle": "^3.2",
98cb0edc
JB
20 "symfony/translation": "^4.1",
21 "symfony/twig-bundle": "^4.1",
dec6d031
JB
22 "symfony/yaml": "^4.1"
23 },
24 "require-dev": {
2d8fc88c
JB
25 "symfony/dotenv": "^4.1",
26 "symfony/web-server-bundle": "^4.1"
dec6d031
JB
27 },
28 "config": {
29 "preferred-install": {
30 "*": "dist"
31 },
32 "sort-packages": true
33 },
34 "autoload": {
35 "psr-4": {
36 "App\\": "src/"
37 }
38 },
39 "autoload-dev": {
40 "psr-4": {
41 "App\\Tests\\": "tests/"
42 }
43 },
44 "replace": {
45 "symfony/polyfill-ctype": "*",
46 "symfony/polyfill-iconv": "*",
47 "symfony/polyfill-php71": "*",
48 "symfony/polyfill-php70": "*",
49 "symfony/polyfill-php56": "*"
50 },
51 "scripts": {
52 "auto-scripts": {
53 "cache:clear": "symfony-cmd",
54 "assets:install %PUBLIC_DIR%": "symfony-cmd"
55 },
56 "post-install-cmd": [
57 "@auto-scripts"
58 ],
59 "post-update-cmd": [
60 "@auto-scripts"
61 ]
62 },
63 "conflict": {
64 "symfony/symfony": "*"
65 },
66 "extra": {
67 "symfony": {
68 "allow-contrib": false
69 }
70 }
71}