Last active
December 3, 2015 20:29
-
-
Save di3goleite/fc59750140a524d0b05e to your computer and use it in GitHub Desktop.
LaravelStack for Fedora 22
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install PHP | |
sudo dnf install php php-common php-gd php-mcrypt php-pear php-pecl-memcache php-mhash php-mysql php-pgsql php-gd php-xml php-mbstring php-zip | |
# install composer | |
curl -sS https://getcomposer.org/installer | php | |
sudo mv composer.phar /usr/local/bin/composer | |
# install laravel | |
composer global require "laravel/installer=~1.1" | |
sudo ln -s ~/.composer/vendor/bin/laravel /usr/local/bin/laravel |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment