PHPackages                             pimphand/firemoo - 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. [API Development](/categories/api)
4. /
5. pimphand/firemoo

ActiveLibrary[API Development](/categories/api)

pimphand/firemoo
================

Laravel package for Firestore-like API and WebSocket integration

02PHP

Since Nov 14Pushed 6mo agoCompare

[ Source](https://github.com/pimphand/module-firemoo-php)[ Packagist](https://packagist.org/packages/pimphand/firemoo)[ RSS](/packages/pimphand-firemoo/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Firemoo
=======

[](#firemoo)

[![Latest Version on Packagist](https://camo.githubusercontent.com/f5d74d42dbbdcefdb58976e9704aaaaac7671d2fc3602df7eefd8a257c550912/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f796f75722d76656e646f722d6e616d652f666972656d6f6f2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/your-vendor-name/firemoo)[![Total Downloads](https://camo.githubusercontent.com/26f23c9fdd6410d9a93b49b1e2131d22353eb7ab5fc79eed6ded737a204362d8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f796f75722d76656e646f722d6e616d652f666972656d6f6f2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/your-vendor-name/firemoo)

Laravel package untuk integrasi dengan Firestore-like API dan WebSocket realtime.

Features
--------

[](#features)

- ✅ Firestore-like API integration (Collections &amp; Documents)
- ✅ WebSocket realtime connections
- ✅ Clean code architecture dengan dependency injection
- ✅ File-based logging (bukan console)
- ✅ Support API Key dan JWT authentication
- ✅ Laravel Facades untuk kemudahan penggunaan
- ✅ Fully tested dan documented

Installation
------------

[](#installation)

Install package via Composer:

```
composer require pimphand/firemoo
```

Configuration
-------------

[](#configuration)

Tambahkan ke `.env`:

```
FIRESTORE_API_URL=http://127.0.0.1:9090
FIRESTORE_WS_URL=ws://127.0.0.1:9090/websocket
FIRESTORE_AUTH_METHOD=api_key
FIRESTORE_API_KEY=your-api-key
FIRESTORE_WEBSITE_URL=https://your-website.com
```

Quick Start
-----------

[](#quick-start)

### Firestore Operations

[](#firestore-operations)

```
use Firemoo\Firemoo\Facades\Firestore;

// Create collection
$collection = Firestore::createCollection('tasks');

// Create document
$document = Firestore::createDocument($collectionId, [
    'title' => 'Task 1',
    'status' => 'pending'
]);

// Get documents
$documents = Firestore::getDocuments($collectionId, page: 1, limit: 10);
```

### WebSocket Operations

[](#websocket-operations)

```
use Firemoo\Firemoo\Facades\WebSocket;

// Connect
$socket = WebSocket::connect(
    apiKey: 'your-api-key',
    websiteUrl: 'https://your-website.com'
);

// Subscribe to channel
WebSocket::subscribe($socket, 'tasks');

// Read messages
while (true) {
    $message = WebSocket::read($socket, timeout: 30);
    if ($message) {
        // Handle message
    }
}
```

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

[](#documentation)

Lihat [FIREMOO\_USAGE.md](FIREMOO_USAGE.md) untuk dokumentasi lengkap.

Requirements
------------

[](#requirements)

- PHP &gt;= 8.2
- Laravel &gt;= 10.0

License
-------

[](#license)

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

Contributing
------------

[](#contributing)

Contributions are welcome! Please feel free to submit a Pull Request.

Support
-------

[](#support)

Jika ada pertanyaan atau issue, silakan buat issue di GitHub repository.

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance47

Moderate activity, may be stable

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity13

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/4838d99f873eea9bdd41a12681636039d8f8662745907b2bb51484bfee5811ae?d=identicon)[pimphand](/maintainers/pimphand)

---

Top Contributors

[![faisol-coding](https://avatars.githubusercontent.com/u/220848113?v=4)](https://github.com/faisol-coding "faisol-coding (2 commits)")

### Embed Badge

![Health badge](/badges/pimphand-firemoo/health.svg)

```
[![Health](https://phpackages.com/badges/pimphand-firemoo/health.svg)](https://phpackages.com/packages/pimphand-firemoo)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

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