1
1

More than 3 years have passed since last update.

Laravel プロジェクト作成まで

Posted at

PHP のインストール

brew install composer

composer のインストール

brew install composer

githubでプライベート・アクセス・トークンを作成

  • github.com にログイン
  • Setting > Developer settings に移動
  • New Personal access tokens
  • read:packages をチェック
  • 作成されてプライベート・アクセス・トークンをコピー

composer にプライベート・アクセス・トークンを設定

composer config --global github-oauth.github.com ${プライベート・アクセス・トークン}

Laravel プロジェクト作成

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

参考文献

1
1
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
1
1