Download the PHP package rahmatawaludin/laravel-notes without Composer
On this page you can find all versions of the php package rahmatawaludin/laravel-notes. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download rahmatawaludin/laravel-notes
More information about rahmatawaludin/laravel-notes
Files in rahmatawaludin/laravel-notes
Package laravel-notes
Short Description Laravel 4 Artisan Notes Management
License MIT
Informations about the package laravel-notes
Laravel 4 Artisan Notes Management
Inpired by Rails Rake notes, Laravel Notes helps you manage your notes when developing an application. It will search comment begin with TODO, FIXME, or OPTIMIZE.
Installation
-
Update your composer.json to require
"rahmatawaludin/laravel-notes": "dev-master"
- Run
composer update
in the Terminal - Add the LaravelNotesServiceProvider
'Rahmatawaludin\LaravelNotes\LaravelNotesServiceProvider'
to the laravel providers array in the fileapp/config/app.php
Usage
Add your comment to file within app
directory begin with @TODO, @FIXME, or @OPTIMIZE.
example:
app/controllers/HomeController.php:
app/routes.php
app/models/User.php
Then use notes
in terminal to view all notes:
Options
-
To filter only one type
-
To add custom types to the default ones
-
To search only within a directory (defaults: app)
- To exclude a directory (defaults: storage)
Under the hood
Laravel Notes will check your plataform and run grep
of you are on a UNIX system. For Windows users it will use PHP to read and parse files. Non-formal tests have found that grep is 2x faster.
Screenshot
Roadmap
Version | Feature |
---|---|
2.1 | Add --group-by-file and --group-by-type |
2.2 | Any idea? |
Contribute
- Fork
- Work on dev branch
- Pull
- Repeat.. :)
All versions of laravel-notes with dependencies
illuminate/support Version 4.1.*
illuminate/filesystem Version ~4
illuminate/console Version ~4