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