OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
kreait
/
firebase-php
/
docs
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:34:12 AM
rwxr-xr-x
📄
Makefile
7.68 KB
08/12/2024 10:33:24 AM
rw-r--r--
📁
_static
-
08/12/2024 10:34:12 AM
rwxr-xr-x
📁
_templates
-
08/12/2024 10:34:12 AM
rwxr-xr-x
📄
authentication.rst
13.82 KB
08/12/2024 10:33:24 AM
rw-r--r--
📄
cloud-firestore.rst
2.37 KB
08/12/2024 10:33:24 AM
rw-r--r--
📄
cloud-messaging.rst
26.18 KB
08/12/2024 10:33:24 AM
rw-r--r--
📄
cloud-storage.rst
2.5 KB
08/12/2024 10:33:24 AM
rw-r--r--
📄
conf.py
1.17 KB
08/12/2024 10:33:24 AM
rw-r--r--
📄
dynamic-links.rst
11.35 KB
08/12/2024 10:33:24 AM
rw-r--r--
📄
framework-integrations.rst
505 bytes
08/12/2024 10:33:24 AM
rw-r--r--
📄
index.rst
2.31 KB
08/12/2024 10:33:24 AM
rw-r--r--
📄
overview.rst
4.51 KB
08/12/2024 10:33:24 AM
rw-r--r--
📄
realtime-database.rst
20.11 KB
08/12/2024 10:33:24 AM
rw-r--r--
📄
remote-config.rst
7.96 KB
08/12/2024 10:33:24 AM
rw-r--r--
📄
requirements.txt
40 bytes
08/12/2024 10:33:24 AM
rw-r--r--
📄
setup.rst
8.29 KB
08/12/2024 10:33:24 AM
rw-r--r--
📄
troubleshooting.rst
10.57 KB
08/12/2024 10:33:24 AM
rw-r--r--
📄
tutorials.rst
1.71 KB
08/12/2024 10:33:24 AM
rw-r--r--
📄
user-management.rst
18.32 KB
08/12/2024 10:33:24 AM
rw-r--r--
Editing: index.rst
Close
.. title:: Firebase Admin SDK for PHP ########################## Firebase Admin SDK for PHP ########################## Interact with `Google Firebase <https://firebase.google.com>`_ from your PHP application. .. image:: https://img.shields.io/github/license/kreait/firebase-php.svg :target: https://github.com/kreait/firebase-php/blob/master/LICENSE :alt: License .. image:: https://img.shields.io/github/stars/kreait/firebase-php.svg :target: https://github.com/kreait/firebase-php/stargazers :alt: Stargazers .. image:: https://img.shields.io/packagist/dt/kreait/firebase-php.svg :target: https://packagist.org/packages/kreait/firebase-php :alt: Total downloads .. image:: https://img.shields.io/discord/807679292573220925.svg?color=7289da&logo=discord :target: https://discord.gg/nbgVfty :alt: Community chat .. image:: https://img.shields.io/static/v1?logo=GitHub&label=Sponsor&message=%E2%9D%A4&color=ff69b4 :target: https://github.com/sponsors/jeromegamez :alt: Sponsoring .. note:: If you are interested in using the PHP Admin SDK as a client for end-user access (for example, in a web application), as opposed to admin access from a privileged environment (like a server), you should instead follow the `instructions for setting up the client JavaScript SDK <https://firebase.google.com/docs/web/setup>`_. The source code can be found at https://github.com/kreait/firebase-php/ . *********** Quick Start *********** .. code-block:: php use Kreait\Firebase\Factory; $factory = (new Factory) ->withServiceAccount('/path/to/firebase_credentials.json') ->withDatabaseUri('https://my-project-default-rtdb.firebaseio.com'); $auth = $factory->createAuth(); $realtimeDatabase = $factory->createDatabase(); $cloudMessaging = $factory->createMessaging(); $remoteConfig = $factory->createRemoteConfig(); $cloudStorage = $factory->createStorage(); $firestore = $factory->createFirestore(); ********** User Guide ********** .. toctree:: :maxdepth: 3 overview setup cloud-messaging cloud-firestore cloud-storage realtime-database authentication user-management dynamic-links remote-config framework-integrations tutorials troubleshooting