maddhatter / laravel-dev-helpers by maddhatter

Package to include in my projects with dev dependencies I use frequently
86
1
2
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: 2024-04-30 15:00:51
Package Statistics
Total Downloads: 86
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 2
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);
    }
}

composer.json

Customized laracasts/generators fork:

"repositories": [
    {
        "type": "vcs",
        "url":  "https://github.com/maddhatter/Laravel-5-Generators-Extended.git"
    }
],

Laravel <5.4

"require-dev": {
    "laracasts/generators": "dev-custom",
},

Laravel 5.4

"require-dev": {
    "laracasts/generators": "dev-custom-5.4",
},