PHPackages                             nathanfeitoza/firebase-php5.6 - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. nathanfeitoza/firebase-php5.6

ActiveLibrary[Database &amp; ORM](/categories/database)

nathanfeitoza/firebase-php5.6
=============================

Firebase Admin SDK

1.0.0(6y ago)24.2k↓100%MITPHP

Since Sep 12Pushed 6y agoCompare

[ Source](https://github.com/nathanfeitoza/firebase-php5.6)[ Packagist](https://packagist.org/packages/nathanfeitoza/firebase-php5.6)[ Docs](https://github.com/nathanfeitoza/firebase-php5.6)[ RSS](/packages/nathanfeitoza-firebase-php56/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (8)Versions (2)Used By (0)

Firebase Admin SDK for PHP 5.6
==============================

[](#firebase-admin-sdk-for-php-56)

This repository is a fork of the original version 2.3.1 so that users of php version 5.6 or lower can work with google firebase.

Thanks for all support of Jérôme Gamez.
---------------------------------------

[](#thanks-for-all-support-of-jérôme-gamez)

[![Latest Stable Version](https://camo.githubusercontent.com/3580549732508541f182e8413ecaf4adfd591ee6a43df8964b6edf6fb1facbf6/68747470733a2f2f706f7365722e707567782e6f72672f6e617468616e666569746f7a612f66697265626173652d706870352e362f762f737461626c65)](https://packagist.org/packages/nathanfeitoza/firebase-php5.6)[![Total Downloads](https://camo.githubusercontent.com/e127c67dd674c45247e5f5b0d15cfb78e445180c48efec41980139fcb44ff524/68747470733a2f2f706f7365722e707567782e6f72672f6e617468616e666569746f7a612f66697265626173652d706870352e362f646f776e6c6f616473)](https://packagist.org/packages/nathanfeitoza/firebase-php5.6)[![License](https://camo.githubusercontent.com/2273da6d9dd11506e1844fd43ea6191db2055bf88d7ec8ebb3649f0e34a6901b/68747470733a2f2f706f7365722e707567782e6f72672f6e617468616e666569746f7a612f66697265626173652d706870352e362f6c6963656e7365)](https://packagist.org/packages/nathanfeitoza/firebase-php5.6)[![Build Status](https://camo.githubusercontent.com/4a9d543fdb820c1f6fcaeed847afb4b2c9fcc076e23ff335a38512f55bdeebb7/68747470733a2f2f7472617669732d63692e6f72672f6e617468616e666569746f7a612f66697265626173652d706870352e362e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/nathanfeitoza/firebase-php5.6)

This SDK makes it easy to interact with [Google Firebase](https://firebase.google.com%3E)applications.

For support, please use the [issue tracker](https://github.com/kreait/firebase-php/issues/), or join the Firebase Community Slack at  and join the #php channel.

- [Documentation](#documentation)
- [Usage example](#usage-example)

Documentation
-------------

[](#documentation)

You can find the documentation at

- [Requirements](http://firebase-php.readthedocs.io/en/latest/overview.html#requirements)
- [Installation](http://firebase-php.readthedocs.io/en/latest/overview.html#installation)

```
    composer require nathanfeitoza/firebase-php5.6

```

- [Authentication](http://firebase-php.readthedocs.io/en/latest/authentication.html)
- [Working with the Realtime Database](http://firebase-php.readthedocs.io/en/latest/realtime-database.html)
- [Roadmap](http://firebase-php.readthedocs.io/en/latest/overview.html#roadmap)

Usage example
-------------

[](#usage-example)

```
$firebase = (new \Firebase\Factory())
    ->withCredentials(__DIR__.'/path/to/google-service-account.json')
    ->withDatabaseUri('https://my-project.firebaseio.com')
    ->create();

$database = $firebase->getDatabase();

$newPost = $database
    ->getReference('blog/posts')
    ->push([
        'title' => 'Post title',
        'body' => 'This should probably be longer.'
    ]);

$newPost->getKey(); // => -KVr5eu8gcTv7_AHb-3-
$newPost->getUri(); // => https://my-project.firebaseio.com/blog/posts/-KVr5eu8gcTv7_AHb-3-

$newPost->getChild('title')->set('Changed post title');
$newPost->getValue(); // Fetches the data from the realtime database
$newPost->remove();
```

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 96% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2431d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/c7023322565441ff2bc9e0b48fd8d94135bd2d85ecff5c04cddca64ed37d0c1f?d=identicon)[nathanfeitoza](/maintainers/nathanfeitoza)

---

Top Contributors

[![jeromegamez](https://avatars.githubusercontent.com/u/67554?v=4)](https://github.com/jeromegamez "jeromegamez (569 commits)")[![nathanfeitoza](https://avatars.githubusercontent.com/u/37680036?v=4)](https://github.com/nathanfeitoza "nathanfeitoza (10 commits)")[![carusogabriel](https://avatars.githubusercontent.com/u/16328050?v=4)](https://github.com/carusogabriel "carusogabriel (1 commits)")[![Casperhr](https://avatars.githubusercontent.com/u/1279756?v=4)](https://github.com/Casperhr "Casperhr (1 commits)")[![iGusev](https://avatars.githubusercontent.com/u/1555767?v=4)](https://github.com/iGusev "iGusev (1 commits)")[![johnparkerg](https://avatars.githubusercontent.com/u/8322293?v=4)](https://github.com/johnparkerg "johnparkerg (1 commits)")[![llstarscreamll](https://avatars.githubusercontent.com/u/2442445?v=4)](https://github.com/llstarscreamll "llstarscreamll (1 commits)")[![MGParisi](https://avatars.githubusercontent.com/u/1011346?v=4)](https://github.com/MGParisi "MGParisi (1 commits)")[![morrislaptop](https://avatars.githubusercontent.com/u/67807?v=4)](https://github.com/morrislaptop "morrislaptop (1 commits)")[![Rjgoolsby](https://avatars.githubusercontent.com/u/10386821?v=4)](https://github.com/Rjgoolsby "Rjgoolsby (1 commits)")[![saishsali](https://avatars.githubusercontent.com/u/8968435?v=4)](https://github.com/saishsali "saishsali (1 commits)")[![Shinhan](https://avatars.githubusercontent.com/u/5931588?v=4)](https://github.com/Shinhan "Shinhan (1 commits)")[![TimZ99](https://avatars.githubusercontent.com/u/15219858?v=4)](https://github.com/TimZ99 "TimZ99 (1 commits)")[![behram](https://avatars.githubusercontent.com/u/4572080?v=4)](https://github.com/behram "behram (1 commits)")[![wadewomersley](https://avatars.githubusercontent.com/u/151294?v=4)](https://github.com/wadewomersley "wadewomersley (1 commits)")[![bennyt2](https://avatars.githubusercontent.com/u/5905154?v=4)](https://github.com/bennyt2 "bennyt2 (1 commits)")

---

Tags

apisdkgoogledatabasefirebase

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/nathanfeitoza-firebase-php56/health.svg)

```
[![Health](https://phpackages.com/badges/nathanfeitoza-firebase-php56/health.svg)](https://phpackages.com/packages/nathanfeitoza-firebase-php56)
```

###  Alternatives

[kreait/firebase-php

Firebase Admin SDK

2.4k39.7M72](/packages/kreait-firebase-php)[kreait/laravel-firebase

A Laravel package for the Firebase PHP Admin SDK

1.3k16.5M42](/packages/kreait-laravel-firebase)[kreait/firebase-bundle

Symfony Bundle for the Firebase Admin SDK

1534.7M2](/packages/kreait-firebase-bundle)[morrislaptop/firestore-php

Firestore SDK for PHP without gRPC

6928.6k1](/packages/morrislaptop-firestore-php)[aternus/geonames-client

GeoNames API Client

39215.5k2](/packages/aternus-geonames-client)[bensontrent/firestore-php

Firestore PHP Client without gRPC and support for Guzzle 7. Forked from archived project ahsankhatri/firestore-php

2190.0k](/packages/bensontrent-firestore-php)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
