Download the PHP package kreait/laravel-firebase without Composer

On this page you can find all versions of the php package kreait/laravel-firebase. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-firebase

Firebase for Laravel

A Laravel package for the Firebase PHP Admin SDK.

Current version Monthly Downloads Total Downloads Tests codecov Sponsor


The future of the Firebase Admin PHP SDK

Please read about the future of the Firebase Admin PHP SDK on the SDK's GitHub Repository.


Installation

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.

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:

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:

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:

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.

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:

Supported Versions

Only the latest version is actively supported.

Earlier versions will receive security fixes as long as their lowest SDK requirement receives security fixes. You can find the currently supported versions and support options in the SDK's README.

Version Initial Release Supported SDK Versions Supported Laravel Versions Status
5.x 13 Jan 2023 ^7.0 ^9.0, ^10.0, ^11.0 Active
4.x 09 Jan 2022 ^6.0 ^8.0 End of life
3.x 01 Nov 2020 ^5.24 ^6.0, ^7.0, ^8.0 End of life
2.x 01 Apr 2020 ^5.0 ^5.8, ^6.0, ^7.0, ^8.0 End of life
1.x 17 Aug 2019 ^4.40.1 ^5.8, ^6.0, ^7.0 End of life

License

This project is licensed under the MIT License.

Your use of Firebase is governed by the Terms of Service for Firebase Services.


All versions of laravel-firebase with dependencies

PHP Build Version
Package Version
Requires php Version ~8.1.0 || ~8.2.0 || ~8.3.0
kreait/firebase-php Version ^7.0
illuminate/contracts Version ^9.0 || ^10.0 || ^11.0
illuminate/support Version ^9.0 || ^10.0 || ^11.0
symfony/cache Version ^6.1.2 || ^7.0.3
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package kreait/laravel-firebase contains the following files

Loading the files please wait ....