|
23 | 23 | "role": "Developer" |
24 | 24 | } |
25 | 25 | ], |
26 | | - "support": { |
27 | | - "issues": "https://github.com/dimadeush/docker-symfony-api/issues" |
28 | | - }, |
29 | | - "prefer-stable": true, |
30 | 26 | "require": { |
31 | 27 | "php": "^7.4.0", |
32 | 28 | "ext-ctype": "*", |
|
35 | 31 | "ext-mbstring": "*", |
36 | 32 | "ext-pdo": "*", |
37 | 33 | "ext-pdo_mysql": "*", |
| 34 | + "antishov/doctrine-extensions-bundle": "^1.4", |
38 | 35 | "doctrine/doctrine-migrations-bundle": "^2.1", |
39 | 36 | "easycorp/easy-log-handler": "1.0.*", |
40 | | - "jmose/command-scheduler-bundle": "^2.0", |
| 37 | + "jmose/command-scheduler-bundle": "^2.2", |
41 | 38 | "lexik/jwt-authentication-bundle": "^2.6", |
42 | 39 | "mark-gerarts/automapper-plus-bundle": "^1.2", |
43 | 40 | "matthiasnoback/symfony-console-form": "^3.6", |
44 | | - "nelmio/api-doc-bundle": "^3.5", |
| 41 | + "nelmio/api-doc-bundle": "^3.6", |
45 | 42 | "nelmio/cors-bundle": "^2.0", |
46 | 43 | "piwik/device-detector": "^3.12", |
47 | 44 | "ramsey/uuid-doctrine": "^1.6", |
48 | 45 | "sensio/framework-extra-bundle": "^5.5", |
49 | 46 | "sensiolabs/security-checker": "^6.0", |
50 | | - "antishov/doctrine-extensions-bundle": "^1.4", |
51 | 47 | "symfony/amqp-pack": "^1.0", |
52 | 48 | "symfony/asset": "4.4.*", |
53 | 49 | "symfony/config": "4.4.*", |
|
73 | 69 | "symfony/web-link": "4.4.*", |
74 | 70 | "symfony/yaml": "4.4.*" |
75 | 71 | }, |
| 72 | + "replace": { |
| 73 | + "paragonie/random_compat": "2.*", |
| 74 | + "symfony/polyfill-ctype": "*", |
| 75 | + "symfony/polyfill-iconv": "*", |
| 76 | + "symfony/polyfill-php56": "*", |
| 77 | + "symfony/polyfill-php70": "*", |
| 78 | + "symfony/polyfill-php71": "*", |
| 79 | + "symfony/polyfill-php72": "*" |
| 80 | + }, |
| 81 | + "conflict": { |
| 82 | + "symfony/symfony": "*" |
| 83 | + }, |
76 | 84 | "require-dev": { |
77 | 85 | "bamarni/composer-bin-plugin": "^1.3", |
78 | 86 | "doctrine/doctrine-fixtures-bundle": "^3.3", |
| 87 | + "ergebnis/composer-normalize": "^2.3", |
79 | 88 | "roave/security-advisories": "dev-master", |
80 | 89 | "symfony/debug-pack": "*", |
81 | 90 | "symfony/maker-bundle": "^1.14", |
82 | | - "symfony/profiler-pack": "*" |
| 91 | + "symfony/profiler-pack": "*", |
| 92 | + "symfony/requirements-checker": "^1.1" |
83 | 93 | }, |
84 | 94 | "config": { |
85 | 95 | "platform": { |
|
90 | 100 | }, |
91 | 101 | "sort-packages": true |
92 | 102 | }, |
| 103 | + "extra": { |
| 104 | + "bamarni-bin": { |
| 105 | + "target-directory": "tools" |
| 106 | + }, |
| 107 | + "symfony": { |
| 108 | + "allow-contrib": true, |
| 109 | + "require": "4.4.*" |
| 110 | + } |
| 111 | + }, |
93 | 112 | "autoload": { |
94 | 113 | "psr-4": { |
95 | 114 | "App\\": "src/" |
|
104 | 123 | "Symfony\\Bridge\\PhpUnit\\": "tools/01_phpunit/vendor/symfony/phpunit-bridge" |
105 | 124 | } |
106 | 125 | }, |
107 | | - "replace": { |
108 | | - "paragonie/random_compat": "2.*", |
109 | | - "symfony/polyfill-ctype": "*", |
110 | | - "symfony/polyfill-iconv": "*", |
111 | | - "symfony/polyfill-php72": "*", |
112 | | - "symfony/polyfill-php71": "*", |
113 | | - "symfony/polyfill-php70": "*", |
114 | | - "symfony/polyfill-php56": "*" |
115 | | - }, |
| 126 | + "prefer-stable": true, |
116 | 127 | "scripts": { |
117 | | - "auto-scripts": { |
118 | | - "cache:clear": "symfony-cmd", |
119 | | - "cache:warmup": "symfony-cmd", |
120 | | - "assets:install %PUBLIC_DIR%": "symfony-cmd", |
121 | | - "security-checker security:check": "script" |
122 | | - }, |
123 | 128 | "post-install-cmd": [ |
| 129 | + "if test -d vendor/symfony/requirements-checker; then ./vendor/bin/requirements-checker; fi", |
124 | 130 | "if test -d vendor/bamarni/composer-bin-plugin; then composer bin all install; fi", |
125 | 131 | "@auto-scripts" |
126 | 132 | ], |
127 | 133 | "post-update-cmd": [ |
| 134 | + "if test -d vendor/symfony/requirements-checker; then ./vendor/bin/requirements-checker; fi", |
128 | 135 | "if test -d vendor/bamarni/composer-bin-plugin; then composer bin all update; fi", |
129 | 136 | "@auto-scripts" |
130 | | - ] |
131 | | - }, |
132 | | - "conflict": { |
133 | | - "symfony/symfony": "*" |
134 | | - }, |
135 | | - "extra": { |
136 | | - "bamarni-bin": { |
137 | | - "target-directory": "tools" |
138 | | - }, |
139 | | - "symfony": { |
140 | | - "allow-contrib": true, |
141 | | - "require": "4.4.*" |
| 137 | + ], |
| 138 | + "auto-scripts": { |
| 139 | + "cache:clear": "symfony-cmd", |
| 140 | + "cache:warmup": "symfony-cmd", |
| 141 | + "assets:install %PUBLIC_DIR%": "symfony-cmd", |
| 142 | + "security-checker security:check": "script" |
142 | 143 | } |
| 144 | + }, |
| 145 | + "support": { |
| 146 | + "issues": "https://github.com/dimadeush/docker-symfony-api/issues" |
143 | 147 | } |
144 | 148 | } |
0 commit comments