I am trying to add a package via composer on OS X to my CakePHP Application...
└──╼ composer require nbobtc/bitcoind-php
Using version ^2.1 for nbobtc/bitcoind-php
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.
Problem 1
- The requested linked library lib-icu ^62.1 has the wrong version installed, try upgrading the intl extension.
I have installed php 7.3 with brew install php@7.3
and linked with brew link php@7.3 --force
└──╼ php --version
PHP 7.3.9 (cli) (built: Sep 8 2019 14:56:33) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.3.9, Copyright (c) 1998-2018 Zend Technologies
with Zend OPcache v7.3.9, Copyright (c) 1999-2018, by Zend Technologies
I have the intl extension installed...
└──╼ php -m | grep intl
intl
I have the icu4c library installed
└──╼ brew install icu4c
Warning: icu4c 64.2 is already installed and up-to-date
I have also linked the icu4c library
└──╼ brew link icu4c --force
How can I upgrade the intl package?