Last active
February 24, 2017 10:31
-
-
Save arnaudbesnier/9a33483215ec8ac15055bb0dd5a0355d to your computer and use it in GitHub Desktop.
Laravel Project Creation with PHP 5.4
This file contains 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
# https://ryanwinchester.ca/posts/install-php-5-6-in-osx-10-with-homebrew | |
brew install php56-pdo-pgsql | |
laravel new cars | |
php artisan key:generate | |
php artisan clear:cache | |
cd cars | |
composer install | |
php artisan make:migration create_cars_table | |
php artisan migrate | |
php serve |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment