Skip to content

Commit be6d96b

Browse files
committed
moved Auth classes to Backpack - it's now completely independent from laravel/ui
1 parent 90683e6 commit be6d96b

File tree

5 files changed

+11
-12
lines changed

5 files changed

+11
-12
lines changed

composer.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,23 +32,22 @@
3232
}
3333
],
3434
"require": {
35-
"laravel/framework": "^7.0",
35+
"laravel/framework": "^7.0|^6.0|5.8.*",
3636
"prologue/alerts": "^0.4.1",
3737
"creativeorange/gravatar": "~1.0",
3838
"nesbot/carbon": "^2.14",
3939
"ocramius/package-versions": "^1.4",
4040
"laravel/helpers": "^1.1",
4141
"doctrine/dbal": "^2.5",
4242
"intervention/image": "^2.3",
43-
"guzzlehttp/guzzle": "^6.3",
44-
"laravel/ui": "2.*"
43+
"guzzlehttp/guzzle": "^6.3"
4544
},
4645
"require-dev": {
47-
"phpunit/phpunit": "~8.0",
48-
"scrutinizer/ocular": "~1.7",
49-
"orchestra/testbench": "^5.0",
50-
"orchestra/database": "^5.0@dev",
51-
"spatie/laravel-translatable": "^4.0"
46+
"phpunit/phpunit": "~8.0|~7.0",
47+
"scrutinizer/ocular": "~1.7|~1.1",
48+
"orchestra/testbench": "^5.0|^3.0",
49+
"orchestra/database": "^5.0@dev|3.8.x-dev",
50+
"spatie/laravel-translatable": "^4.0|^3.1.3"
5251
},
5352
"autoload": {
5453
"psr-4": {

src/app/Http/Controllers/Auth/ForgotPasswordController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Backpack\CRUD\app\Http\Controllers\Auth;
44

5-
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
5+
use Backpack\CRUD\app\Auth\SendsPasswordResetEmails;
66
use Illuminate\Routing\Controller;
77
use Illuminate\Support\Facades\Password;
88

src/app/Http/Controllers/Auth/LoginController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Backpack\CRUD\app\Http\Controllers\Auth;
44

5-
use Illuminate\Foundation\Auth\AuthenticatesUsers;
5+
use Backpack\CRUD\app\Library\Auth\AuthenticatesUsers;
66
use Illuminate\Http\Request;
77
use Illuminate\Routing\Controller;
88

src/app/Http/Controllers/Auth/RegisterController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Backpack\CRUD\app\Http\Controllers\Auth;
44

55
use Illuminate\Auth\Events\Registered;
6-
use Illuminate\Foundation\Auth\RegistersUsers;
6+
use Backpack\CRUD\app\Library\Auth\RegistersUsers;
77
use Illuminate\Http\Request;
88
use Illuminate\Routing\Controller;
99
use Validator;

src/app/Http/Controllers/Auth/ResetPasswordController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Backpack\CRUD\app\Http\Controllers\Auth;
44

5-
use Illuminate\Foundation\Auth\ResetsPasswords;
5+
use Backpack\Crud\app\Library\Auth\ResetsPasswords;
66
use Illuminate\Http\Request;
77
use Illuminate\Routing\Controller;
88
use Illuminate\Support\Facades\Password;

0 commit comments

Comments
 (0)