Tags

Tags give the ability to mark specific points in history as being important
  • 1.1.1

    8f926f3e · Release 1.1.1 ·
    Fixes a bug that prevented querying by boolean values.
    
  • 2.0.0-beta1

    bd89ea18 · Initial rewrite ·
    Initial rewrite.
    
  • 1.1

    Release 1.1
    
  • 1.0

    fbabcb26 · Release 1.0 ·
    * Removed deprecated methods and revisited the code and documentation.
  • 0.10.2

    85950cbb · Release 0.10.2 ·
    * Added support for authentication overrides when using a Google Service account
    * It is now easier to override authentication credentials through
      `$firebase->setAuthOverride($uid, array $claims = [])`.
      * There's no need to create and set the needed custom tokens yourself.
      * The new method works regardless of whether you use a database secret or
        a Google Service Account for the basic authentication.
    * Updated authentication docs
    * Added methods:
      * `Firebase::setAuthOverride(string $uid, array $claims = [])`
      * `Firebase::removeAuthOverride()`
    * Deprecated methods:
      * `Firebase::setAuthToken()`
      * `Firebase::getAuthToken()`
      * `Firebase::hasAuthToken()`
      * `Firebase::removeAuthToken()`
  • 0.10.1

    * Added support for authentication with a Google Service account
  • 0.10.0

    a275d938 · Release 0.10.0 ·
    * Added magic getters, allowing to write `$firebase->foo` instead of instead of `$firebase->getReference('foo')`
    * Deprecated magic callers to allow writing `$firebase->foo()`
  • 0.9.1

    08c6e48c · Release 0.9.1 ·
    * Added magic reference methods, to allow writing `$firebase->foo()`
      instead of `$firebase->getReference('foo')`
  • 0.9

    c0584dad · Release 0.9 ·
    * Added support for shallow queries (thanks to [@famersbs](https://github.com/famersbs) for the initial
      implementation in [#17](https://github.com/kreait/firebase-php/pull/17))
  • 0.8

    697f269c · Update changelog ·
    * Allow usage of phpunit/phpunit ^5.0
    * Allow usage of symfony/event-dispatcher ^3.0
    * Be more specific about PHP versions (^5.5|^7.0)
  • 0.7

    d5767a84 · Release 0.7 ·
    * Update Ivory HTTP Adapter and Tape Recorder Subscriber to current versions.
  • 0.6.2

    98e567b0 · Release 0.6.2 ·
    * Guess best HTTP adapter instead of using fixed CurlHttpAdapter.
  • 0.6.1

    7db741df · Release 0.6.1 ·
    * Fixed a bug where `Reference::update()` would throw an error with multidimensional data.
  • 0.6

    2898c962 · Release 0.6 ·
    * Added Authentication support
    * Ensure PHP7 and HHVM support
    * Improved tests and general code quality
  • 0.5

    c3c3ba34 · Release 0.5 ·
    * Use `Configuration` object instead of configuring `Firebase` directly.
  • 0.4.2

    918a0f0f · Release 0.4.2 ·
    * Fix Query documentation
    * Use Tape Recorder Subscriber for Reference Tests
    * Make sure data returned from Firebase is an array (null responses weren't handled correctly)
  • 0.4.1

    257eff5e · Release 0.4.1 ·
    * Use Tape Recorder Subscriber as distinct package instead of relying on the PR branch of the Ivory HTTP Adapter.
  • 0.4.0

    6688d2a8 · Release 0.4.0 ·
    * Use TapeRecorder subscriber in HTTP adapter to use fixtures instead of real HTTP requests.
    * Use [dotenv](https://github.com/vlucas/phpdotenv/) for the test environment.
    * Moved `FirebaseException` to own namespace.
    * Add support for Queries.
  • 0.3.1

    22d61252 · Release 0.3.1 ·
    * Bugfix: Allow whitespaces in locations