salt / firebase
Package which sets up Firebase authentication for our Laravel applications
Fund package maintenance!
salt
Installs: 3 816
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 3
Requires
- php: ^8.0
- guzzlehttp/guzzle: ^7.3.0
- guzzlehttp/psr7: ^1.9 || ^2.4
- kraken-io/kraken-php: ^1.6
- kreait/firebase-php: ^6.7
- spatie/laravel-package-tools: ^1.9.2
Requires (Dev)
- laravel/pint: ^1.1
- nunomaduro/collision: ^5.10
- nunomaduro/larastan: ^1.0
- orchestra/testbench: ^6
- pestphp/pest: ^1.21
- pestphp/pest-plugin-faker: ^1.0
- pestphp/pest-plugin-laravel: ^1.1
- pestphp/pest-plugin-mock: ^1.0
- 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-20 11:53:04 UTC
README
You can install the package via composer:
composer require salt/firebase
You can publish and run the migrations with:
php artisan vendor:publish --tag="salt-firebase-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="salt-firebase-config"
This is the contents of the published config file:
<?php return [ 'firebase' => [ 'database_url' => env('FIREBASE_DATABASE_URL', ''), 'project_id' => env('FIREBASE_PROJECT_ID', ''), 'private_key_id' => env('FIREBASE_PRIVATE_KEY_ID', 'your-key'), 'private_key' => str_replace('\\n', "\n", env('FIREBASE_PRIVATE_KEY', '')), 'client_email' => env('FIREBASE_CLIENT_EMAIL', 'e@email.com'), 'client_id' => env('FIREBASE_CLIENT_ID', ''), 'client_x509_cert_url' => env('FIREBASE_CLIENT_x509_CERT_URL', ''), ], // Map the route names used in this package with the application's route names 'routes' => [ 'login' => 'login', 'logout' => 'logout', 'login_success' => 'index', 'login_error' => 'error', ], // Specify allowed email domains for authentication // In addition to those allowed by config/auth.php 'allowed_emails' => ['@okayemail.com'], ];
Documentation
View the documentation for this package here
Development
Install dependencies using composer install
and npm install
(for generating documentation).
Install the precommit using git config core.hooksPath .githooks
Testing
composer test
Code coverage
XDEBUG_MODE=coverage composer coverage
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.