I am trying to use the Symfony 4 demo application https://github.com/symfony/demo but when I install it with composer I get the error described below. I am using Ubuntu 16.04 and php 7.1 installed via phpbrew.
My steps are as follows:
$ cd /var/www/html
$ phpbrew use php-7.1.13
$ sudo php composer.phar create-project symfony/symfony-demo
which yields this error:
Your requirements could not be resolved to an installable set of packages.
Problem 1
- The requested PHP extension ext-pdo_sqlite * is missing from your system. Install or enable PHP's pdo_sqlite extension.
if I check which extensions are loaded:
$ phpbrew extension
I get
Loaded extensions:
...
[*] pdo_sqlite
so it appears that extension is loaded.
What am I doing wrong please?