LoginSignup
18
15

More than 5 years have passed since last update.

MacでComposerのインストールからLaravelのインストールまで

Last updated at Posted at 2015-02-11

Composerのインストール

Composerのダウンロードしてパスを通す

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

Mcryptをインストール

brew tap homebrew/dupes
brew tap homebrew/versions
brew tap homebrew/homebrew-php
brew install mcrypt php55-mcrypt

Laravelのインストール

プロジェクトを作成したいディレクトリに移動し、下記コマンドを実行する

composer create-project laravel/laravel プロジェクト名 --prefer-dist

起動確認

cd プロジェクト名
php artisan serve
18
15
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
18
15