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