lee-to / laravel-package-command
Package development command
Installs: 77 831
Dependents: 3
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- php: ^8.0|^8.1|^8.2
Requires (Dev)
- fakerphp/faker: ^1.9.2
- mockery/mockery: ^1.4.4
- phpunit/phpunit: ^9.5.8
This package is auto-updated.
Last update: 2024-10-29 06:13:22 UTC
README
The base class of the console command with a set of methods for package developers
Applies to console commands to install a package
It is convenient if your package adds stubs during installation, service providers
Installation
composer require lee-to/laravel-package-command
Usage
- Change
Illuminate\Console\Command
toLeeto\PackageCommand\Command
- Set
protected string $stubsDir = 'Path to stubs dir'