PackageTrack
Sign in Get early access

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 2026
2015 2017 2019 2021 2023 2025
Release Pre-release

Releases

latest 60 of 83
  1. 8.0.0-beta.0 31 Jul 2026 pre-release
    Release notes

    ⚠️ 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 base ManagementClient - Auth0::management() and $guard->management() return a v9 ManagementClient built 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-in Pager<T> pagination
    • ⚙️ Configurable options - management() accepts an options array (timeout, maxRetries, additionalHeaders, and more), settable per call or as defaults under a management key in config/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 ManagementInterface ManagementClient

    📦 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-php dependency from ^8.19 to ^9.0
    • management() now returns the base ManagementClient instead of ManagementInterface
    • 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.

    Open source →
  2. 7.22.0 08 Apr 2026
    Release notes

    Added

    Fixed

    • Add missing hashPasswordForCookie to AuthenticationGuard #492 (steffjenl)

    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)
    Open source →
  3. 7.21.0 01 Apr 2026
    Release notes

    Fixed

    Open source →
  4. 7.20.0 16 Dec 2025
    Release notes

    Fixed

    Open source →
  5. 7.19.0 01 Oct 2025
    Release notes

    Fixed

    Open source →
  6. 7.18.0 02 Sep 2025
    Release notes Open source →
  7. 7.17.0 15 May 2025
    Release notes

    Fixed

    Open source →
  8. 7.16.0 08 Apr 2025
    Release notes

    Added

    Fixed

    Open source →
  9. 7.15.0 04 Jun 2024
    Release notes

    Changed

    • perf: Update getCredential to only refresh credential once per request #453 (ComputerTinker)
    Open source →
  10. 7.14.0 02 Apr 2024
    Release notes

    Changed

    • refactor: add additional Telescope state check #447 (samuelhgf)
    • chore(deps): replace temporary psalm-laravel-plugin fork with official #448 (alies-dev)
    Open source →
  11. 7.13.0 11 Mar 2024

    Nothing published for this version

  12. 7.12.0 11 Dec 2023

    Nothing published for this version

  13. 7.11.0 09 Aug 2023

    Nothing published for this version

  14. 7.10.1 07 Aug 2023

    Nothing published for this version

  15. 7.10.0 24 Jul 2023

    Nothing published for this version

  16. 7.9.1 21 Jun 2023

    Nothing published for this version

  17. 7.9.0 16 Jun 2023

    Nothing published for this version

  18. 7.8.1 20 May 2023

    Nothing published for this version

  19. 7.8.0 18 May 2023

    Nothing published for this version

  20. 7.7.0 26 Apr 2023

    Nothing published for this version

  21. 7.6.0 12 Apr 2023

    Nothing published for this version

  22. 7.5.2 10 Apr 2023

    Nothing published for this version

  23. 7.5.1 04 Apr 2023

    Nothing published for this version

  24. 7.5.0 03 Apr 2023

    Nothing published for this version

  25. 7.4.0 13 Dec 2022

    Nothing published for this version

  26. 7.3.0 07 Nov 2022

    Nothing published for this version

  27. 7.2.2 20 Oct 2022

    Nothing published for this version

  28. 7.2.1 14 Oct 2022

    Nothing published for this version

  29. 7.2.0 11 Oct 2022

    Nothing published for this version

  30. 7.1.0 09 Aug 2022

    Nothing published for this version

  31. 7.0.1 02 Jun 2022

    Nothing published for this version

  32. 7.0.0 21 Mar 2022

    Nothing published for this version

  33. 7.0.0-BETA2 09 Mar 2022 pre-release

    Nothing published for this version

  34. 7.0.0-BETA1 08 Feb 2022 pre-release

    Nothing published for this version

  35. 6.5.0 15 Oct 2021

    Nothing published for this version

  36. 6.4.1 03 Aug 2021

    Nothing published for this version

  37. 6.4.0 25 Mar 2021

    Nothing published for this version

  38. 6.3.0 19 Feb 2021

    Nothing published for this version

  39. 6.2.0 15 Jan 2021

    Nothing published for this version

  40. 6.1.0 17 Sep 2020

    Nothing published for this version

  41. 6.0.1 28 Apr 2020

    Nothing published for this version

  42. 6.0.0 10 Apr 2020

    Nothing published for this version

  43. 5.4.0 27 Mar 2020

    Nothing published for this version

  44. 5.3.1 14 Nov 2019

    Nothing published for this version

  45. 5.3.0 26 Sep 2019

    Nothing published for this version

  46. 5.2.0 27 Jun 2019

    Nothing published for this version

  47. 5.1.0 20 Mar 2018

    Nothing published for this version

  48. 5.0.2 30 Aug 2017

    Nothing published for this version

  49. 5.0.1 23 Feb 2017

    Nothing published for this version

  50. 5.0.0 22 Feb 2017

    Nothing published for this version

  51. 4.0.8 27 Jan 2017

    Nothing published for this version

  52. 4.0.7 02 Jan 2017

    Nothing published for this version

  53. 4.0.6 23 Dec 2016

    Nothing published for this version

  54. 4.0.5 29 Nov 2016

    Nothing published for this version

  55. 4.0.4 03 Oct 2016

    Nothing published for this version

  56. 4.0.3 no date

    Nothing published for this version

  57. 4.0.2 03 Oct 2016

    Nothing published for this version

  58. 4.0.1 19 Sep 2016

    Nothing published for this version

  59. 4.0.0 15 Sep 2016

    Nothing published for this version

  60. 3.2.1 12 Sep 2016

    Nothing published for this version

Every package, every release, already written down.

The archive is open and free. Watching your own project is what we are building next.

Browse the archive