You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 13, 2019. It is now read-only.
composer_1 | Loading composer repositories with package information
composer_1 | Installing dependencies (including require-dev) from lock file
composer_1 | Your requirements could not be resolved to an installable set of packages.
composer_1 |
au-app | [Sat Sep 10 23:38:35.599648 2016] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.10 (Debian) PHP/7.1.0RC1 configured -- resuming normal operations
composer_1 | Problem 1
composer_1 | - Installation request for cakephp/cakephp 3.2.5 -> satisfiable by cakephp/cakephp[3.2.5].
composer_1 | - cakephp/cakephp 3.2.5 requires ext-intl * -> the requested PHP extension intl is missing from your system.
but intl is exist in system, and accessible from cli/apache both.
for example:
run bash from last builded image
$ docker run -it aus_app bash
$ php -m
this give:
[PHP Modules]
Core
ctype
curl
date
dom
fileinfo
filter
ftp
gd
hash
iconv
**intl**
... and so on
in phpinfo:
intl
Internationalization support enabled
version 1.1.0
ICU version 52.1
ICU Data version 52.1
I want build my project by docker, then install vendor requirements by composer.
The text was updated successfully, but these errors were encountered:
The composer image does not contain the extension. Your application image does. Composer is not running inside your application image though, it is running inside its own image. You can create a custom image that extends the composer image and adds the necessary extension(s) for your application. But if you do not need these extensions for the install step, then it is best to just rely on --ignore-platform-reqs.
My dockerfile:
my compose config:
first build app:
docker-compose build
its ok.
then start:
I get this errors:
but intl is exist in system, and accessible from cli/apache both.
for example:
run bash from last builded image
this give:
in phpinfo:
I want build my project by docker, then install vendor requirements by composer.
The text was updated successfully, but these errors were encountered: