|
22 | 22 | "role": "Developer"
|
23 | 23 | }
|
24 | 24 | ],
|
25 |
| - "support": { |
26 |
| - "issues": "https://github.com/dimadeush/docker-nginx-php-symfony/issues" |
27 |
| - }, |
28 |
| - "prefer-stable": true, |
29 | 25 | "require": {
|
30 | 26 | "php": "^7.4.0",
|
| 27 | + "ext-amqp": "*", |
31 | 28 | "ext-ctype": "*",
|
32 | 29 | "ext-iconv": "*",
|
33 | 30 | "ext-json": "*",
|
34 | 31 | "ext-mbstring": "*",
|
35 | 32 | "ext-pdo": "*",
|
36 | 33 | "ext-pdo_mysql": "*",
|
37 | 34 | "doctrine/doctrine-migrations-bundle": "^2.1",
|
38 |
| - "jmose/command-scheduler-bundle": "^2.0", |
| 35 | + "easycorp/easy-log-handler": "1.0.*", |
| 36 | + "jmose/command-scheduler-bundle": "^2.2", |
39 | 37 | "sensio/framework-extra-bundle": "^5.5",
|
40 | 38 | "sensiolabs/security-checker": "^6.0",
|
41 |
| - "symfony/amqp-pack": "^1.0", |
42 | 39 | "symfony/asset": "4.4.*",
|
43 | 40 | "symfony/config": "4.4.*",
|
44 | 41 | "symfony/console": "4.4.*",
|
|
63 | 60 | "symfony/web-link": "4.4.*",
|
64 | 61 | "symfony/yaml": "4.4.*"
|
65 | 62 | },
|
| 63 | + "replace": { |
| 64 | + "paragonie/random_compat": "2.*", |
| 65 | + "symfony/polyfill-ctype": "*", |
| 66 | + "symfony/polyfill-iconv": "*", |
| 67 | + "symfony/polyfill-php56": "*", |
| 68 | + "symfony/polyfill-php70": "*", |
| 69 | + "symfony/polyfill-php71": "*", |
| 70 | + "symfony/polyfill-php72": "*" |
| 71 | + }, |
| 72 | + "conflict": { |
| 73 | + "symfony/symfony": "*" |
| 74 | + }, |
66 | 75 | "require-dev": {
|
67 | 76 | "bamarni/composer-bin-plugin": "^1.3",
|
68 | 77 | "doctrine/doctrine-fixtures-bundle": "^3.3",
|
| 78 | + "ergebnis/composer-normalize": "^2.3", |
69 | 79 | "roave/security-advisories": "dev-master",
|
70 | 80 | "symfony/debug-pack": "*",
|
71 | 81 | "symfony/maker-bundle": "^1.14",
|
72 | 82 | "symfony/profiler-pack": "*",
|
73 |
| - "symfony/test-pack": "*" |
| 83 | + "symfony/requirements-checker": "^1.1" |
74 | 84 | },
|
75 | 85 | "config": {
|
76 | 86 | "platform": {
|
|
81 | 91 | },
|
82 | 92 | "sort-packages": true
|
83 | 93 | },
|
| 94 | + "extra": { |
| 95 | + "bamarni-bin": { |
| 96 | + "target-directory": "tools" |
| 97 | + }, |
| 98 | + "symfony": { |
| 99 | + "allow-contrib": true, |
| 100 | + "require": "4.4.*" |
| 101 | + } |
| 102 | + }, |
84 | 103 | "autoload": {
|
85 | 104 | "psr-4": {
|
86 | 105 | "App\\": "src/"
|
87 | 106 | }
|
88 | 107 | },
|
89 | 108 | "autoload-dev": {
|
90 | 109 | "psr-4": {
|
91 |
| - "App\\Tests\\": "tests/" |
| 110 | + "App\\Tests\\": "tests/", |
| 111 | + "PHPUnit\\": "tools/01_phpunit/vendor/phpunit/phpunit/src/", |
| 112 | + "PHPUnit\\Framework\\MockObject\\": "tools/01_phpunit/vendor/phpunit/phpunit/src/Framework/MockObject/ForwardCompatibility", |
| 113 | + "Symfony\\Component\\BrowserKit\\": "tools/01_phpunit/vendor/symfony/browser-kit", |
| 114 | + "Symfony\\Bridge\\PhpUnit\\": "tools/01_phpunit/vendor/symfony/phpunit-bridge" |
92 | 115 | }
|
93 | 116 | },
|
94 |
| - "replace": { |
95 |
| - "paragonie/random_compat": "2.*", |
96 |
| - "symfony/polyfill-ctype": "*", |
97 |
| - "symfony/polyfill-iconv": "*", |
98 |
| - "symfony/polyfill-php72": "*", |
99 |
| - "symfony/polyfill-php71": "*", |
100 |
| - "symfony/polyfill-php70": "*", |
101 |
| - "symfony/polyfill-php56": "*" |
102 |
| - }, |
| 117 | + "prefer-stable": true, |
103 | 118 | "scripts": {
|
104 |
| - "auto-scripts": { |
105 |
| - "cache:clear": "symfony-cmd", |
106 |
| - "assets:install %PUBLIC_DIR%": "symfony-cmd", |
107 |
| - "security-checker security:check": "script" |
108 |
| - }, |
109 | 119 | "post-install-cmd": [
|
| 120 | + "if test -d vendor/symfony/requirements-checker; then ./vendor/bin/requirements-checker; fi", |
110 | 121 | "if test -d vendor/bamarni/composer-bin-plugin; then composer bin all install; fi",
|
111 | 122 | "@auto-scripts"
|
112 | 123 | ],
|
113 | 124 | "post-update-cmd": [
|
| 125 | + "if test -d vendor/symfony/requirements-checker; then ./vendor/bin/requirements-checker; fi", |
114 | 126 | "if test -d vendor/bamarni/composer-bin-plugin; then composer bin all update; fi",
|
115 | 127 | "@auto-scripts"
|
116 |
| - ] |
117 |
| - }, |
118 |
| - "conflict": { |
119 |
| - "symfony/symfony": "*" |
120 |
| - }, |
121 |
| - "extra": { |
122 |
| - "bamarni-bin": { |
123 |
| - "target-directory": "tools" |
124 |
| - }, |
125 |
| - "symfony": { |
126 |
| - "allow-contrib": true, |
127 |
| - "require": "4.4.*" |
| 128 | + ], |
| 129 | + "auto-scripts": { |
| 130 | + "cache:clear": "symfony-cmd", |
| 131 | + "cache:warmup": "symfony-cmd", |
| 132 | + "assets:install %PUBLIC_DIR%": "symfony-cmd", |
| 133 | + "security-checker security:check": "script" |
128 | 134 | }
|
| 135 | + }, |
| 136 | + "support": { |
| 137 | + "issues": "https://github.com/dimadeush/docker-nginx-php-symfony/issues" |
129 | 138 | }
|
130 | 139 | }
|
0 commit comments