I've gotten past a few hurdles, but can't seem to get over this one.
I have phalcon installed and enabled. phpinfo() reads:
under "Additional .ini files parsed": /etc/php/7.0/apache2/conf.d/30-phalcon.ini
phalcon also shows up running get_loaded_extensions(); [41] => phalcon
The problem I'm facing now is I can't composer install/update. Here is my composer.json file:
{
"require": {
"php" : ">=7.0.0",
"ext-phalcon" : ">=3.0.0"
}
}
The error I get when running composer install and/or update is:
Your requirements could not be resolved to an installable set of packages.
Problem 1 The requested PHP extension ext-phalcon >=3.0.0 is missing from your system. Install or enable PHP's phalcon extension.
I've also changed "ext-phalcon" to "phalcon" with the same results.