morrislaptop / laravel-seed-list
Make db:seed interactive
Fund package maintenance!
morrislaptop
Requires
- php: ^8.1
- cweagans/composer-patches: ^1.7
- illuminate/contracts: ^8.0|^9.2
- nikic/php-parser: ^4.13
- spatie/laravel-package-tools: ^1.9.2
- uzbek/classtools: ^0.0.2
Requires (Dev)
- nunomaduro/collision: ^5.10|^6.0
- nunomaduro/larastan: ^1.0
- orchestra/testbench: ^6.22|^7.0
- pestphp/pest: ^1.21
- pestphp/pest-plugin-laravel: ^1.1
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- phpunit/phpunit: ^9.5
- spatie/laravel-ray: ^1.26
This package is auto-updated.
Last update: 2024-10-23 07:43:13 UTC
README
Often forget what your seeder classes are called? This package can make db:seed
interactive so you can see a list and choose which seeders to run (and which additional seeders will be called).
Installation
You can install the package via composer:
composer require morrislaptop/laravel-seed-list
Configure your default seeder to extend the LaravelSeedLister
provided by the package:
<?php namespace Database\Seeders; use Morrislaptop\LaravelSeedList\LaravelSeedLister; class DatabaseSeeder extends LaravelSeedLister { }
Usage
php artisan db:seed
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.