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