This is a preconfigured Laravel boilerplate with various useful packages to quickly start the development of new applications.
- barryvdh/laravel-dompdf: For generating PDF files.
- elgibor-solution/laravel-database-encryption: For encrypting database data.
- laravel/framework: The Laravel framework itself.
- laravel/tinker: Interactive console for Laravel.
- laravel/ui: Authentication and scaffolding generation.
- maatwebsite/excel: Import and export Excel files.
- opcodesio/log-viewer: Laravel log viewer.
- spatie/laravel-backup: Automated database and file backups.
- spatie/laravel-permission: Permission management.
- yajra/laravel-datatables-oracle: Integration with DataTables.
- barryvdh/laravel-debugbar: Debug bar for Laravel.
- fakerphp/faker: Fake data generator for testing.
- larastan/larastan: Static Analyzer for Laravel.
- laravel/envoy: Tool for defining SSH tasks.
- laravel/pint: Performance testing tools for Laravel.
- laravel/sail: Docker-based development environment for Laravel.
- mockery/mockery: PHP mocking framework.
- nunomaduro/collision: Enhances Laravel exception handling.
- nunomaduro/phpinsights: Static code analysis for PHP.
- pestphp/pest: Lightweight testing framework for PHP.
- phpunit/phpunit: Unit testing framework for PHP.
- spatie/laravel-ignition: Debugging tool for Laravel.
- Clone the repository.
- Run
composer install
to install dependencies. - Copy the
.env.example
file to.env
and configure database details. - Run
php artisan key:generate
to generate a new application key. - Run database migrations with
php artisan migrate
. - Start the development server with
php artisan serve
.
If you want to contribute, please open an issue before submitting a pull request.