Se você cria aplicações regularmente com o Laravel 4, você pode querer adicionar esta pequena função ao seu bash_profile. Ele até instala o composer!
# Install laravel and configure
install-laravel () {
echo "Installing Laravel into '$1'"
git clone https://github.com/laravel/laravel.git $1
cd $1
# Required for getting L4 dev
git reset --hard HEAD
git checkout develop
# Do the house cleaning
chmod -R 0777 app/storage
php curl -s https://getcomposer.org/installer | php
php composer.phar install
php artisan key:generate
rm -rf .git
}