LoginSignup
2
2

More than 5 years have passed since last update.

Laravelインストール手順メモ

Last updated at Posted at 2015-05-17

実施環境

  • CentOS6.4 x86_64

Composerインストール

# curl -sS https://getcomposer.org/installer | php
# mv composer.phar /usr/local/bin/composer

Laravelインストール

# composer global require "laravel/installer=~1.1"
# PATH=$PATH:~/.composer/vendor/bin/
# vim ~/.bashrc  上記のパス追加を行う

インストールバージョン確認、プロジェクト作成

# laravel new sample
# cd sample; php artisan --version
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2