elbojoloco/laravel-clean-stubs

Laravel stubs without docblocks.

1.0.1 2021-05-06 13:46 UTC

This package is auto-updated.

Last update: 2024-06-06 20:47:14 UTC


README

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