auth0/login
Auth0 Laravel SDK. Straight-forward and tested methods for implementing authentication, and accessing Auth0's Management API endpoints.
7.22.0
5.5M downloads/mo
#2230 most downloaded on Packagist
auth0/laravel-auth0
What this package is like to depend on
Last release 23 days ago
31 Jul 2026
Release timing varies
gaps range from 3 weeks to 10 months
Rarely documented
notes for 9 of 80 stable releases
Nothing withdrawn
no release was ever pulled
12 years old
83 releases · first in 2014
6 releases in the last 12 months
see the full history below
Release timeline
81 releases · Apr 2014 to Jul 2026Releases
latest 60 of 83-
8.0.0-beta.031 Jul 2026 pre-releaseRelease notes
Open source →⚠️ This is a beta release. It moves the SDK onto auth0-php v9, which rewrites the Management API. The Authentication API is unchanged. Please consult the v7 to v8 Upgrade Guide before upgrading.
🚀 What's New
This release makes the Auth0 Laravel SDK compatible with auth0-php v9. The SDK wraps the Authentication API, which is unchanged in v9, so authentication flows require no changes. The changes are all in the Management API surface.
✨ Highlights
- 🔑
management()returns the baseManagementClient-Auth0::management()and$guard->management()return a v9ManagementClientbuilt from your existing guard configuration (domain,client_id,client_secret), with automatic client credentials token management and PSR-6 caching - 🏗️ auth0-php v9 Management API - Strongly-typed requests and responses, sub-clients accessed as properties (
$management->users->list()), and built-inPager<T>pagination - ⚙️ Configurable options -
management()accepts an options array (timeout,maxRetries,additionalHeaders, and more), settable per call or as defaults under amanagementkey inconfig/auth0.php(global or per-guard) - 🛡️ Authentication API unchanged - Guards, middleware, user providers, session store, and events behave exactly as in v7
🔄 What's Changed
The Authentication surface is completely unchanged. Login, logout, callback, and token handling work exactly as before.
The Management API usage has changed:
Area v7 v8 Sub-client access ->users()->getAll()->users->list()Request params Associative arrays Typed classes ( ListUsersRequestParameters)Responses ResponseInterface+HttpResponse::decodeContent()Typed objects ( $user->getEmail())Pagination getResponsePaginator()foreach ($pager as $user)Return type ManagementInterfaceManagementClient📦 Installation
composer require auth0/login:8.0.0-beta.0
🔧 Quick Start
use Auth0\Laravel\Facade\Auth0; use Auth0\SDK\API\Management\Users\Requests\ListUsersRequestParameters; $management = Auth0::management(); $users = $management->users->list( new ListUsersRequestParameters(['perPage' => 25, 'page' => 0, 'includeTotals' => true]) ); foreach ($users as $user) { echo $user->getEmail(); }
⚠️ Breaking Changes
- Bumped the
auth0/auth0-phpdependency from^8.19to^9.0 management()now returns the baseManagementClientinstead ofManagementInterface- Removed the
deprecated/v6 to v7 compatibility shims
📚 Resources
🙏 Feedback
This is a beta release - we would love your feedback! Please open an issue if you encounter any problems or have suggestions.
- 🔑
-
7.22.008 Apr 2026Release notes
Open source →Added
- Laravel 13 support #491 (cosmastech)
Fixed
Changed
- Add PHP 8.4 to CI test matrix, cap Psalm <6.5, disable static_lambda CS rule for PHP 8.5+ compat #491 (kishore7snehil)
-
7.21.001 Apr 2026 -
7.20.016 Dec 2025 -
7.19.001 Oct 2025 -
7.18.002 Sep 2025Release notes
Open source →Contributing Changes
Added:
- feat: add macroable guards (#459) by erikn69
- docs: Added facade methods documentation for better developer guidance (#466) by lucascbittencourt
Fixed:
-
7.17.015 May 2025 -
7.16.008 Apr 2025Release notes
Open source → -
7.15.004 Jun 2024Release notes
Open source →Changed
- perf: Update getCredential to only refresh credential once per request #453 (ComputerTinker)
-
7.14.002 Apr 2024 -
7.13.011 Mar 2024Nothing published for this version
-
7.12.011 Dec 2023Nothing published for this version
-
7.11.009 Aug 2023Nothing published for this version
-
7.10.107 Aug 2023Nothing published for this version
-
7.10.024 Jul 2023Nothing published for this version
-
7.9.121 Jun 2023Nothing published for this version
-
7.9.016 Jun 2023Nothing published for this version
-
7.8.120 May 2023Nothing published for this version
-
7.8.018 May 2023Nothing published for this version
-
7.7.026 Apr 2023Nothing published for this version
-
7.6.012 Apr 2023Nothing published for this version
-
7.5.210 Apr 2023Nothing published for this version
-
7.5.104 Apr 2023Nothing published for this version
-
7.5.003 Apr 2023Nothing published for this version
-
7.4.013 Dec 2022Nothing published for this version
-
7.3.007 Nov 2022Nothing published for this version
-
7.2.220 Oct 2022Nothing published for this version
-
7.2.114 Oct 2022Nothing published for this version
-
7.2.011 Oct 2022Nothing published for this version
-
7.1.009 Aug 2022Nothing published for this version
-
7.0.102 Jun 2022Nothing published for this version
-
7.0.021 Mar 2022Nothing published for this version
-
7.0.0-BETA209 Mar 2022 pre-releaseNothing published for this version
-
7.0.0-BETA108 Feb 2022 pre-releaseNothing published for this version
-
6.5.015 Oct 2021Nothing published for this version
-
6.4.103 Aug 2021Nothing published for this version
-
6.4.025 Mar 2021Nothing published for this version
-
6.3.019 Feb 2021Nothing published for this version
-
6.2.015 Jan 2021Nothing published for this version
-
6.1.017 Sep 2020Nothing published for this version
-
6.0.128 Apr 2020Nothing published for this version
-
6.0.010 Apr 2020Nothing published for this version
-
5.4.027 Mar 2020Nothing published for this version
-
5.3.114 Nov 2019Nothing published for this version
-
5.3.026 Sep 2019Nothing published for this version
-
5.2.027 Jun 2019Nothing published for this version
-
5.1.020 Mar 2018Nothing published for this version
-
5.0.230 Aug 2017Nothing published for this version
-
5.0.123 Feb 2017Nothing published for this version
-
5.0.022 Feb 2017Nothing published for this version
-
4.0.827 Jan 2017Nothing published for this version
-
4.0.702 Jan 2017Nothing published for this version
-
4.0.623 Dec 2016Nothing published for this version
-
4.0.529 Nov 2016Nothing published for this version
-
4.0.403 Oct 2016Nothing published for this version
-
4.0.3no dateNothing published for this version
-
4.0.203 Oct 2016Nothing published for this version
-
4.0.119 Sep 2016Nothing published for this version
-
4.0.015 Sep 2016Nothing published for this version
-
3.2.112 Sep 2016Nothing published for this version