Skip to content

Commit 5042f38

Browse files
committed
Merge branch 'release/1.0.3'
2 parents 6f8770a + 0f6f99b commit 5042f38

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ composer require stechstudio/laravel-ssh-tunnel
1717
```
1818
Then register the provider
1919
```php
20-
$app->register(stechstudio\Tunneler\TunnelerServiceProvider::class);
20+
$app->register(STS\Tunneler\TunnelerServiceProvider::class);
2121
```
2222
in your `bootstrap/app.php` for Lumen services or add it to your `providers` array in `config/app.php` for Laravel applications.
2323

@@ -102,7 +102,7 @@ Perhaps your application rarely needs to do this, but when it does, you'd like t
102102

103103
```php
104104
$app->get('/mysql_tunnel', function () use ($app) {
105-
dispatch(new stechstudio\Tunneler\Jobs\CreateTunnel());
105+
dispatch(new STS\Tunneler\Jobs\CreateTunnel());
106106

107107
$users = DB::connection('mysql_tunnel')
108108
->table('users')
File renamed without changes.

src/Console/TunnelerCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<?php namespace stechstudio\Tunneler\Console;
1+
<?php namespace STS\Tunneler\Console;
22

33
use Illuminate\Console\Command;
4-
use stechstudio\Tunneler\Jobs\CreateTunnel;
4+
use STS\Tunneler\Jobs\CreateTunnel;
55

66
class TunnelerCommand extends Command {
77
/**

src/Jobs/CreateTunnel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php namespace stechstudio\Tunneler\Jobs;
1+
<?php namespace STS\Tunneler\Jobs;
22

33
class CreateTunnel
44
{

src/TunnelerServiceProvider.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<?php namespace stechstudio\Tunneler;
1+
<?php namespace STS\Tunneler;
22

33
use Illuminate\Support\ServiceProvider;
4-
use stechstudio\Tunneler\Console\TunnelerCommand;
5-
use stechstudio\Tunneler\Jobs\CreateTunnel;
4+
use STS\Tunneler\Console\TunnelerCommand;
5+
use STS\Tunneler\Jobs\CreateTunnel;
66

77

88
class TunnelerServiceProvider extends ServiceProvider{
@@ -17,7 +17,7 @@ class TunnelerServiceProvider extends ServiceProvider{
1717
* Default path to configuration
1818
* @var string
1919
*/
20-
protected $configPath = __DIR__ . '/config/tunneler.php';
20+
protected $configPath = __DIR__ . '/../config/tunneler.php';
2121

2222

2323
public function boot()

0 commit comments

Comments
 (0)