LoginSignup
0
0

More than 1 year has passed since last update.

CloudShellにLaravelをインストール

Last updated at Posted at 2023-01-10
sudo apt update \
  && sudo apt install -y php8.2 php8.2-curl php8.2-xml php8.2-mbstring php8.2-sqlite3 \
  && composer create-project laravel/laravel example-app \
  && cd example-app \
  && php artisan about
Ubuntu 22.10
sudo apt update \
  && sudo apt install -y php php-curl php-xml php-mbstring php-mysql php-sqlite3 composer sqlitebrowser \
  && composer create-project laravel/laravel example-app \
  && cd example-app \
  && php artisan about \
  && git init \
  && git add . \
  && git config --global user.email "you@example.com" \
  && git config --global user.name "Your Name" \
  && git commit -m first
0
0
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
0
0