From 7bf1f97881b76c42d90dda61ca118140912dc18c Mon Sep 17 00:00:00 2001 From: Michal Sieciechowicz Date: Mon, 1 Mar 2021 11:25:18 +0100 Subject: [PATCH] 1.1 --- README.md | 4 ++-- composer.json | 10 +++++----- src/Middleware/ThrottleRequests.php | 2 +- src/Passport.php | 2 +- src/RouteRegistrar.php | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e057dfd..de3099f 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ $app->configure('auth'); // enable auth and throttle middleware $app->routeMiddleware([ 'auth' => App\Http\Middleware\Authenticate::class, - 'throttle' => Nomadnt\LumenPassport\Middleware\ThrottleRequests::class + 'throttle' => Fufle\LumenPassport\Middleware\ThrottleRequests::class ]); ... @@ -171,7 +171,7 @@ use Illuminate\Support\ServiceProvider; use Illuminate\Support\Carbon; // don't forget to include Passport -use Nomadnt\LumenPassport\Passport; +use Fufle\LumenPassport\Passport; class AuthServiceProvider extends ServiceProvider { diff --git a/composer.json b/composer.json index 06118b2..eafc659 100644 --- a/composer.json +++ b/composer.json @@ -2,13 +2,13 @@ "name": "fufle/lumen-passport", "description": "Lumen porting of Laravel Passport", "keywords": ["php","lumen","laravel passport"], - "homepage": "https://github.com/nomadnt/lumen-passport", + "homepage": "http://git.fufle.net/fufle/lumen-passport", "license": "MIT", "authors": [ { - "name": "Filippo Sallemi", - "email": "fsallemi@nomadnt.com", - "homepage": "https://nomadnt.com" + "name": "Fufle", + "email": "michal@fufle.net", + "homepage": "http://git.fufle.net/fufle/lumen-passport" } ], "type": "library", @@ -18,7 +18,7 @@ }, "autoload": { "psr-4": { - "Nomadnt\\LumenPassport\\": "src/" + "Fufle\\LumenPassport\\": "src/" }, "files": [ "src/helpers.php" diff --git a/src/Middleware/ThrottleRequests.php b/src/Middleware/ThrottleRequests.php index bc4b98b..962034b 100644 --- a/src/Middleware/ThrottleRequests.php +++ b/src/Middleware/ThrottleRequests.php @@ -1,4 +1,4 @@ -