cakephp3をターミナルからインストールできない
今現在、XAMPPを使ってターミナル上でcakephp3をインストールしようと思っています。
いろいろ調べてみて、
composerをインストールして、cakephpをインストールするという手順で行いました。
XAMPPのhtdocs内にcakephpというフォルダを作り、
現在は、「composer.phar」というプロジェクトと「bookmarker」というフォルダがあります。
ただ、ターミナル上で
php composer.phar create-project --prefer-dist -s dev cakephp/app bookmarker
と打ったら、
Your requirements could not be resolved to an installable set of packages.
Problem 1
- cakephp/cakephp 3.1.3 requires ext-intl * -> the requested PHP extension intl is missing from your system.
- cakephp/cakephp 3.1.2 requires ext-intl * -> the requested PHP extension intl is missing from your system.
- cakephp/cakephp 3.1.1 requires ext-intl * -> the requested PHP extension intl is missing from your system.
- cakephp/cakephp 3.1.0 requires ext-intl * -> the requested PHP extension intl is missing from your system.
- Installation request for cakephp/cakephp ~3.1 -> satisfiable by cakephp/cakephp[3.1.0, 3.1.1, 3.1.2, 3.1.3].
とエラーが表示されます。
調べてみて、php.intlが有効化されていないということで、
xamppfileのphp.intlを有効化したのですが、まだこのエラーが続いています。
ブラウザでは、
Warning: require(/Applications/XAMPP/xamppfiles/htdocs/cakephp_youtube/bookmarker/vendor/autoload.php): failed to open stream: No such file or directory in /Applications/XAMPP/xamppfiles/htdocs/cakephp/bookmarker/config/bootstrap.php on line 23
Fatal error: require(): Failed opening required '/Applications/XAMPP/xamppfiles/htdocs/cakephp/bookmarker/vendor/autoload.php' (include_path='.:/Applications/XAMPP/xamppfiles/lib/php') in /Applications/XAMPP/xamppfiles/htdocs/cakephp_youtube/bookmarker/config/bootstrap.php on line 23
このように表示されていて、イマイチよく分かっていません。
XAMPPをやり直しても、ターミナルでbookmarkerというフォルダを作り直しても同じエラーが起きるのですが、どうしたら良いでしょうか?
よろしくお願いします。