| Package Data | |
|---|---|
| Maintainer Username: | maddhatter |
| Maintainer Contact: | shawn.tunney@gmail.com (Shawn Tunney) |
| Package Create Date: | 2015-10-28 |
| Package Last Update: | 2017-05-03 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-12-06 15:09:02 |
| Package Statistics | |
|---|---|
| Total Downloads: | 87 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 1 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Just a package for me to include in my projects with a bunch of dev dependencies I use in all of my Laravel 5.* projects... trying to DRY my processes
composer require maddhatter/laravel-dev-helpers dev-master --dev
AppServiceProvider.php/**
* Register any application services.
*
* @return void
*/
public function register()
{
if (config('app.debug', false)) {
$this->app->register(\MaddHatter\DevHelpers\ServiceProvider::class);
}
}
Customized laracasts/generators fork:
"repositories": [
{
"type": "vcs",
"url": "https://github.com/maddhatter/Laravel-5-Generators-Extended.git"
}
],
"require-dev": {
"laracasts/generators": "dev-custom",
},
"require-dev": {
"laracasts/generators": "dev-custom-5.4",
},