An opinionated Laravel setup using my favourite tools
The Opinionated Laravel Template is a preconfigured template designed for Laravel projects. Created with the author’s preferred conventions in mind, it offers a streamlined starting point for developers to work with.
To use the Opinionated Laravel Template, follow these steps:
Use Composer to create a new Laravel project with the template:
composer create-project author/template
Once the project is created, navigate to its directory:
cd project-directory
Install the dependencies:
composer install
Configure the database connection in the .env file.
Generate the application key:
php artisan key:generate
Run database migrations:
php artisan migrate
The template is now ready to use.
The Opinionated Laravel Template is a preconfigured template for Laravel projects that incorporates various tools and conventions preferred by the author. It aims to provide a consistent and efficient starting point for development, with features such as Pest PHP for testing, Laravel Pint for package management, LaraStan for static analysis, Safe PHP for linting, and Tailwind CSS for easy styling. By following the installation guide, developers can quickly set up the template and start working on their Laravel project.