Sunday, March 9, 2014

Install Phalcon Dev Tools Ubuntu

Installing via Composer

Install composer in a common location or in your project:
curl -s http://getcomposer.org/installer | php
Create the composer.json file as follows:
{
    "require": {
        "phalcon/devtools": "dev-master"
    }
}
Run the composer installer:
php composer.phar install
Create a symbolink link to the phalcon.php script:
ln -s ~/devtools/phalcon.php /usr/bin/phalcon
chmod ugo+x /usr/bin/phalcon

No comments:

Post a Comment