PHPackages                             blinktag/laravel-lazydev - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. blinktag/laravel-lazydev

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

blinktag/laravel-lazydev
========================

Finds TODO and FIXME annotations that past-you left in the code for future-you to deal with

0.2.0(8y ago)114MITPHPPHP &gt;=7.0

Since Feb 3Pushed 8y ago1 watchersCompare

[ Source](https://github.com/blinktag/laravel-lazydev)[ Packagist](https://packagist.org/packages/blinktag/laravel-lazydev)[ RSS](/packages/blinktag-laravel-lazydev/feed)WikiDiscussions master Synced yesterday

READMEChangelog (2)DependenciesVersions (3)Used By (0)

laravel-lazydev
===============

[](#laravel-lazydev)

[![Latest Stable Version](https://camo.githubusercontent.com/52efb787adf52adcd9f80e379dcb41ea10b00bbe5a1d79179bf52f131f4dc6d3/68747470733a2f2f706f7365722e707567782e6f72672f626c696e6b7461672f6c61726176656c2d6c617a796465762f762f737461626c653f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/blinktag/laravel-lazydev) [![Total Downloads](https://camo.githubusercontent.com/3ea219c3b465914123bcc739114d4c48c0d564a20309e140fab2d7d83337f00f/68747470733a2f2f706f7365722e707567782e6f72672f626c696e6b7461672f6c61726176656c2d6c617a796465762f646f776e6c6f6164733f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/blinktag/laravel-lazydev) [![Latest Unstable Version](https://camo.githubusercontent.com/f361d41c3a7c8dac930f593e60fa26a198eeef3343f4a2a473989606e0b0e378/68747470733a2f2f706f7365722e707567782e6f72672f626c696e6b7461672f6c61726176656c2d6c617a796465762f762f756e737461626c653f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/blinktag/laravel-lazydev) [![License](https://camo.githubusercontent.com/9a71c6d5d34dd92dc6b577830e68d39c2b7bd0d9dbbdcf7ac597b5ccae6cf5c8/68747470733a2f2f706f7365722e707567782e6f72672f626c696e6b7461672f6c61726176656c2d6c617a796465762f6c6963656e73653f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/blinktag/laravel-lazydev)

Finds TODO and FIXME annotations that past-you left in the code for future-you to deal with

Install
-------

[](#install)

```
composer require-dev blinktag/laravel-lazydev:dev-master

```

### Laravel &lt; 5.5:

[](#laravel--55)

```
'providers' => [

    // ...

    Blinktag\Providers\FindTodosServiceProvider::class,
],

```

### Laravel &gt;= 5.5

[](#laravel--55-1)

The package will be autodiscovered

### Configuration

[](#configuration)

If you wish to change the strings this tool searches for, publish the configuration and then edit the value of `find_strings` in `config/findtodos.php`. Each term should be separated by a pipe character

```
php artisan vendor:publish --tag=findtodos

```

Usage
-----

[](#usage)

Add comments in your code that begin with TODO, or FIXME, like so:

```
