Skip to content

Commit

Permalink
Merge pull request #1 from LesyaBerest/master
Browse files Browse the repository at this point in the history
fix readme service provider namespace
  • Loading branch information
MasterRO94 authored Dec 12, 2018
2 parents bd70475 + 76c3db7 commit 646a75d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ composer require masterro/laravel-fresh-start --dev
For your Laravel app, open `config/app.php` and, within the `providers` array, append:

```
MasterRO\LaravelFreshStart\FreshStartServiceProvider::class
MasterRO\LaravelFreshStart\Providers\FreshStartServiceProvider::class
```

### Step 3: Run the scaffold
Expand Down
4 changes: 2 additions & 2 deletions src/Console/Commands/FreshStartCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ protected function requireIdeHelperAndDebugbar()
$this->info('.........Requiring ' . implode(' and ', $this->packagesToInstall));

foreach ($this->packagesToInstall as $package) {
$process = new Process("{$this->composerCmd} require {$package} --dev");
$process = new Process("{$this->composerCmd} require {$package} --dev", null, null, null, 3600);

$process->run(function ($type, $buffer) {
$this->getOutput()->write('> ' . $buffer);
Expand Down Expand Up @@ -426,7 +426,7 @@ protected function composerUpdate()
{
$this->info(".........Running \"{$this->composerCmd} update\"");

$process = new Process("{$this->composerCmd} update");
$process = new Process("{$this->composerCmd} update", null, null, null, 3600);

$process->run(function ($type, $buffer) {
$this->getOutput()->write('> ' . $buffer);
Expand Down
1 change: 0 additions & 1 deletion src/Providers/FreshStartServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ public function boot()
]);
}


/**
* Register the application services.
*
Expand Down

0 comments on commit 646a75d

Please sign in to comment.