kreait/laravel-firebase
Composer 安装命令:
composer require kreait/laravel-firebase
包简介
A Laravel package for the Firebase PHP Admin SDK
README 文档
README
A Laravel package for the Firebase PHP Admin SDK.
Important
Support the project: This library is downloaded 1M+ times monthly and powers thousands of applications. If it saves you or your team time, please consider sponsoring its development.
Note
The project moved from the kreait to the beste GitHub Organization in January 2026.
The namespace remains Kreait\Laravel\Firebase and the package name remains kreait/laravel-firebase.
Please update your remote URL if you have forked or cloned the repository.
Installation
composer require kreait/laravel-firebase
Configuration
In order to access a Firebase project and its related services using a server SDK, requests must be authenticated. For server-to-server communication this is done with a Service Account.
If you don't already have generated a Service Account, you can do so by following the instructions from the official documentation pages at https://firebase.google.com/docs/admin/setup#initialize_the_sdk_in_non-google_environments.
Once you have downloaded the Service Account JSON file, you can configure the package by specifying
environment variables starting with FIREBASE_ in your .env file. Usually, the following are
required for the package to work:
# You can find the database URL for your project at
# https://console.firebase.google.com/project/_/database
FIREBASE_DATABASE_URL=https://<your-project>.firebaseio.com
For further configuration, please see config/firebase.php. You can modify the configuration
by copying it to your local config directory or by defining the environment variables used in the config file:
# Laravel php artisan vendor:publish --provider="Kreait\Laravel\Firebase\ServiceProvider" --tag=config
Credentials with JSON files
The package uses auto discovery for the default project to find the credentials needed for authenticating requests to the Firebase APIs by inspecting certain environment variables and looking into Google's well known path(s).
If you don't want a service account to be auto-discovered, provide it by setting the FIREBASE_CREDENTIALS or GOOGLE_APPLICATION_CREDENTIALS environment variable or by adapting the package configuration, like so for example:
FIREBASE_CREDENTIALS=storage/app/firebase-auth.json
Credentials with Arrays
If you prefer to have more control over the configuration items required to configure the credentials, you can also transpose the Service Account JSON file as an array within your config/firebase.php file.
'credentials' => [ 'type' => 'service_account', 'project_id' => 'some-project-123', 'private_key_id' => '123456789', 'private_key' => '-----BEGIN PRIVATE KEY-----\nFOO_BAR_123456789\n-----END PRIVATE KEY-----\n', 'client_email' => 'firebase-adminsdk-cwiuo@some-project-123.iam.gserviceaccount.com', 'client_id' => '123456789', 'auth_uri' => 'https://accounts.google.com/o/oauth2/auth', 'token_uri' => 'https://oauth2.googleapis.com/token', 'auth_provider_x509_cert_url' => 'https://www.googleapis.com/oauth2/v1/certs', 'client_x509_cert_url' => 'https://www.googleapis.com/robot/v1/metadata/x509/firebase-adminsdk-cwiuo%40some-project-123.iam.gserviceaccount.com', 'universe_domain' => 'googleapis.com', ],
Usage
Once you have retrieved a component, please refer to the documentation of the Firebase PHP Admin SDK for further information on how to use it.
You don't need and should not use the new Factory() pattern described in the SDK documentation, this is already
done for you with the Laravel Service Provider. Use Dependency Injection, the Facades or the app() helper instead
Multiple projects
Multiple projects can be configured in config/firebase.php by adding another section to the projects array.
When accessing components, the facade uses the default project. You can also explicitly use a project:
use Kreait\Laravel\Firebase\Facades\Firebase; // Return an instance of the Auth component for the default Firebase project $defaultAuth = Firebase::auth(); // Return an instance of the Auth component for a specific Firebase project $appAuth = Firebase::project('app')->auth(); $anotherAppAuth = Firebase::project('another-app')->auth();
License
This project is licensed under the MIT License.
Your use of Firebase is governed by the Terms of Service for Firebase Services.
kreait/laravel-firebase 适用场景与选型建议
kreait/laravel-firebase 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 18.49M 次下载、GitHub Stars 达 1.3k, 最近一次更新时间为 2019 年 08 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「database」 「api」 「sdk」 「laravel」 「gcm」 「firebase」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 kreait/laravel-firebase 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 kreait/laravel-firebase 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 kreait/laravel-firebase 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Dibi is Database Abstraction Library for PHP
Store your language lines in the database, yaml or other sources
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
A PSR-7 compatible library for making CRUD API endpoints
PHP module for MySql database
A PHP client driver for the RethinkDB query language (ReQL)
统计信息
- 总下载量: 18.49M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1303
- 点击次数: 25
- 依赖项目数: 45
- 推荐数: 2
其他信息
- 授权协议: MIT
- 更新时间: 2019-08-16