# How to create a Laravel project Creating a Laravel project is a breeze: - First, make sure `php-xml` is installed, because `laravel/pint` requires it. Install it using `sudo apt install php-xml` - Second, install a sqlite driver (used by default in Laravel projects): `sudo apt install php8.3-sqlite3` - Third, install a pgsql driver (because why not): `sudo apt install php-pgsql` - Finally, create the application using: `composer create-project laravel/laravel example-app` ## Related - [[How to create a Laravel application with Jetstream, Inertia, Vue.js, and TypeScript]]