OS 10.12.6でXAMPP7.1.10 / PHP 7.1.10を使い、cakePHP3を導入しようとしています。
「PHPフレームワーク CakePHP3入門」の本の通りに環境構築を進めています。
まず、XAMPPの中のファイルにある「php.ini」の文頭にテキストエディタで「extension=php_intl.so」と加えました。
「ターミナルから環境変数PATHへの追加」も行い、XAMPPにあるPHPが実行されるようにしました。
そしてcomposerをダウンロードして、composer.pharを使ってcakephpをインストールする段階で、「intlが見つからない」と出てきて詰まっています。
このようなトラブルはMacでは起きやすいとのことで、本に書いてある通り、XcodeとCommand Line Toolをインストールしたのち、HomeBrewをインストールし、intlとautoconfをインストールしましたが、結局うまく行きません。

問題のエラーはこちらです。

Installing cakephp/app (3.5.0)

Installing cakephp/app (3.5.0): Loading from cache
Created project in cake3app
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

cakephp/cakephp 3.5.4 requires ext-intl * -> the requested PHP extension intl is missing from your system.
cakephp/cakephp 3.5.3 requires ext-intl * -> the requested PHP extension intl is missing from your system.
cakephp/cakephp 3.5.2 requires ext-intl * -> the requested PHP extension intl is missing from your system.
cakephp/cakephp 3.5.1 requires ext-intl * -> the requested PHP extension intl is missing from your system.
cakephp/cakephp 3.5.0 requires ext-intl * -> the requested PHP extension intl is missing from your system.
Installation request for cakephp/cakephp 3.5.* -> satisfiable by cakephp/cakephp[3.5.0, 3.5.1, 3.5.2, 3.5.3, 3.5.4].
To enable extensions, verify that they are enabled in your .ini files:

/Applications/XAMPP/xamppfiles/etc/php.ini
You can also run php --ini inside terminal to see which files are used by PHP in CLI mode.

ご回答のほど、何卒よろしくお願い致します。