Download the PHP package prusaktech/lumen-firebase without Composer

On this page you can find all versions of the php package prusaktech/lumen-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 lumen-firebase

Firebase for Lumen

A Lumen package for the Firebase PHP Admin SDK.

Current version Firebase Admin SDK version Supported Lumen versions

Installation

This package requires Lumen 6.x and higher.

Add the following service provider in bootstrap/app.php

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.

The package uses auto discovery 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 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 use it to configure the package by specifying the environment variable FIREBASE_CREDENTIALS in your .env file:

For further configuration, please see config/firebase.php. You have to copy it manually, as it is done in Lumen.

Usage

Component Automatic Injection Facades app()
Authentication \Kreait\Firebase\Auth FirebaseAuth app('firebase.auth')
Cloud Firestore \Kreait\Firebase\Firestore FirebaseFirestore app('firebase.firestore')
Cloud Messaging (FCM) \Kreait\Firebase\Messaging FirebaseMessaging app('firebase.messaging')
Dynamic Links \Kreait\Firebase\DynamicLinks FirebaseDynamicLinks app('firebase.dynamic_links')
Realtime Database \Kreait\Firebase\Database FirebaseDatabase app('firebase.database')
Remote Config \Kreait\Firebase\RemoteConfig FirebaseRemoteConfig app('firebase.remote_config')
Storage \Kreait\Firebase\Storage FirebaseStorage app('firebase.storage')

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

License

The MIT License (MIT). Please see License File for more information.


All versions of lumen-firebase with dependencies

PHP Build Version
Package Version
Requires kreait/firebase-php Version ^4.35.0
illuminate/contracts Version ^5.8|^6.0
illuminate/support Version ^5.8|^6.0
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 prusaktech/lumen-firebase contains the following files

Loading the files please wait ....