Skip to content
This repository has been archived by the owner on Oct 26, 2024. It is now read-only.

Commit

Permalink
Change namespace and add autoloading
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCrankHank committed Oct 25, 2017
1 parent 7cf18e1 commit 2d4c962
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,10 @@
"illuminate/console": "5.*",
"illuminate/contracts": "5.*",
"illuminate/support": "5.*"
},
"autoload": {
"psr-4": {
"MrCrankHank\\LaravelUpdate\\": "src"
}
}
}
2 changes: 1 addition & 1 deletion src/Commands/GenerateJsonFileCommand.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace MrCrankHank\Update\Commands;
namespace MrCrankHank\LaravelUpdate\Commands;

use Exception;
use Illuminate\Console\Command;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/UpdateCommand.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace MrCrankHank\Update\Commands;
namespace MrCrankHank\LaravelUpdate\Commands;

use Exception;
use ParentIterator;
Expand Down
6 changes: 3 additions & 3 deletions src/UpdateServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php
namespace MrCrankHank\Update;
namespace MrCrankHank\LaravelUpdate;

use Illuminate\Support\ServiceProvider;
use MrCrankHank\Update\Commands\UpdateCommand;
use MrCrankHank\Update\Commands\GenerateJsonFileCommand;
use MrCrankHank\LaravelUpdate\Commands\UpdateCommand;
use MrCrankHank\LaravelUpdate\Commands\GenerateJsonFileCommand;

class UpdateServiceProvider extends ServiceProvider
{
Expand Down

0 comments on commit 2d4c962

Please sign in to comment.