Skip to content

Commit

Permalink
making additional changes to address laralib#68 in laralib/l5scaffold
Browse files Browse the repository at this point in the history
  • Loading branch information
cjwilburn committed Feb 21, 2017
1 parent c09ef85 commit 3542746
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Commands/ScaffoldMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

class ScaffoldMakeCommand extends Command
{
use AppNamespaceDetectorTrait, MakerTrait;
use DetectsApplicationNamespace, MakerTrait;

/**
* The console command name!
Expand Down
2 changes: 1 addition & 1 deletion src/Makes/MakeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class MakeController
{
use AppNamespaceDetectorTrait, MakerTrait;
use DetectsApplicationNamespace, MakerTrait;

/**
* Store name from Model
Expand Down
2 changes: 1 addition & 1 deletion src/Makes/MakeRoute.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

class MakeRoute
{
use AppNamespaceDetectorTrait, MakerTrait;
use DetectsApplicationNamespace, MakerTrait;

/**
* Create a new instance.
Expand Down

2 comments on commit 3542746

@niclowe
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work, you fixed it I think but I cannot figure out how to get your changes into laravel environment -composer keeps saying there is no version for you minimum-stability.
Any ideas? I havent required a forked project before...

@cjwilburn
Copy link
Owner Author

@cjwilburn cjwilburn commented on 3542746 Feb 28, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, @niclowe! Yes, this fixed fork is working for me. To include the fork, I did the following to my composer.json:

"require-dev": {
        "laralib/l5scaffold": "dev-master"
},
    "repositories": [
        {
            "type": "vcs",
            "url":  "https://github.com/cjwilburn/l5scaffold.git"
        }
    ],

It'll now pull from my fork.

Please sign in to comment.