Skip to content

Instantly share code, notes, and snippets.

@arnaudbesnier
Last active February 24, 2017 10:31
Show Gist options
  • Save arnaudbesnier/9a33483215ec8ac15055bb0dd5a0355d to your computer and use it in GitHub Desktop.
Save arnaudbesnier/9a33483215ec8ac15055bb0dd5a0355d to your computer and use it in GitHub Desktop.
Laravel Project Creation with PHP 5.4
# 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