0

I AM using XAMPP3.2.1 which has the below configuration.

PHP5.6.14
MYSQL5.0.11
APache2.4.17

I have changed extension=php_intl.dll setting in php.ini file.

After I ran this composer create-project --prefer-dist cakephp/app [app_name] my project created partially i.e vendor folder is empty. Can i get zip file like cakephp2X.

Oops D'oh
  • 941
  • 1
  • 15
  • 34
jayavel
  • 81
  • 7
  • 3
    Possible duplicate of [installing cakephp 3 manually, without composer](http://stackoverflow.com/questions/30412844/installing-cakephp-3-manually-without-composer) – ndm Nov 21 '15 at 13:11

1 Answers1

0

CakePHP is hosted on Github, you can get the latest release (at the time of writing this) from here as a ZIP file.

However, creating the project with composer is the preferred approach; since this creates a lot of output, retry and check for errors.

code-kobold
  • 829
  • 14
  • 18
  • In addition to the Core code linked in this answer you will probably also need the APP skeleton, available [here](https://github.com/cakephp/app). - But as alread mentioned it's recommended to use composer... – Oops D'oh Nov 21 '15 at 15:57