Commit | Line | Data |
---|---|---|
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", | |
17 | "symfony/yaml": "^4.1" | |
18 | }, | |
19 | "require-dev": { | |
20 | "symfony/dotenv": "^4.1" | |
21 | }, | |
22 | "config": { | |
23 | "preferred-install": { | |
24 | "*": "dist" | |
25 | }, | |
26 | "sort-packages": true | |
27 | }, | |
28 | "autoload": { | |
29 | "psr-4": { | |
30 | "App\\": "src/" | |
31 | } | |
32 | }, | |
33 | "autoload-dev": { | |
34 | "psr-4": { | |
35 | "App\\Tests\\": "tests/" | |
36 | } | |
37 | }, | |
38 | "replace": { | |
39 | "symfony/polyfill-ctype": "*", | |
40 | "symfony/polyfill-iconv": "*", | |
41 | "symfony/polyfill-php71": "*", | |
42 | "symfony/polyfill-php70": "*", | |
43 | "symfony/polyfill-php56": "*" | |
44 | }, | |
45 | "scripts": { | |
46 | "auto-scripts": { | |
47 | "cache:clear": "symfony-cmd", | |
48 | "assets:install %PUBLIC_DIR%": "symfony-cmd" | |
49 | }, | |
50 | "post-install-cmd": [ | |
51 | "@auto-scripts" | |
52 | ], | |
53 | "post-update-cmd": [ | |
54 | "@auto-scripts" | |
55 | ] | |
56 | }, | |
57 | "conflict": { | |
58 | "symfony/symfony": "*" | |
59 | }, | |
60 | "extra": { | |
61 | "symfony": { | |
62 | "allow-contrib": false | |
63 | } | |
64 | } | |
65 | } |