Looking to hire Laravel developers? Try LaraJobs

laravel-clean-stubs maintained by elbojoloco

Description
Laravel stubs without docblocks.
Author
Last update
2021/05/06 15:46 (dev-main)
License
Downloads
413

Comments
comments powered by Disqus

Packagist Version Packagist Downloads

Laravel Clean Stubs

This package brings all of Laravel's stubs but without docblocks. That's it. Stubs are template files that are used by the framework's "make" command, e.g. php artisan make:model. This package is inspired by zepfietje/laravel-stubs, the difference is that this package only removes docblocks.

Installation

  1. Install this package.
    $ composer require elbojoloco/laravel-clean-stubs
    
  2. Add this hook to "scripts" in your composer.json to receive the latest stubs when this packages gets updated.
    "post-update-cmd": [
        "@php artisan stub:publish --force"
    ]
    
  3. Publish the stubs.
    $ php artisan stub:publish