salt / auth0
Package which sets up Auth0 authentication for our Laravel applications
Fund package maintenance!
salt
Requires
- php: ^8.0
- auth0/login: ^7.0.1
- guzzlehttp/guzzle: ^7.3.0
- guzzlehttp/psr7: ^2.4
- spatie/laravel-package-tools: ^1.9.2
Requires (Dev)
- nunomaduro/collision: ^5.10
- nunomaduro/larastan: ^1.0
- orchestra/testbench: ^6.22
- pestphp/pest: ^1.21
- pestphp/pest-plugin-faker: ^1.0
- pestphp/pest-plugin-laravel: ^1.1
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- phpunit/phpunit: ^9.5
- spatie/laravel-ray: ^1.26
This package is auto-updated.
Last update: 2025-03-09 17:38:26 UTC
README
This package adds some helper classes for integrating Laravel applications with Auth0
Installation
You can install the package via composer:
composer require salt/auth0
You can publish and run the migrations with:
php artisan vendor:publish --tag="auth0-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="auth0-config"
This is the contents of the published config file:
return [ 'app' => array( 'client_id' => env('AUTH0_CLIENT_ID', ''), 'client_secret' => env('AUTH0_CLIENT_SECRET', ''), 'db_connection' => env('AUTH0_DB_CONNECTION', '') ), 'api' => array( 'audience' => env('API_MACHINE_AUDIENCE', ''), 'client_id' => env('AUTH0_MACHINE_CLIENT_ID', ''), 'client_secret' => env('AUTH0_MACHINE_CLIENT_SECRET', ''), 'domain' => env('AUTH0_MACHINE_DOMAIN') ), 'url' => env('APP_URL', '') ];
Optionally, you can publish the views using
php artisan vendor:publish --tag="auth0-views"
Documentation
View the documentation for this package here
Testing
composer test
Releasing a new version
To release a new version, first create a tag on the main
branch with the new version number. E.g "1.0.1":
git tag -a 1.0.1 -m "Release version 1.0.1"
Then push that tag up to GitHub:
git push origin 1.0.1
A new version will automatically be created on packagist which will then be available for installation.
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.