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 7mo 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

16

—

LowBetter than 4% of packages

Maintenance44

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://avatars.githubusercontent.com/u/57223858?v=4)[pimphand](/maintainers/pimphand)[@pimphand](https://github.com/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

[exsyst/swagger

A php library to manipulate Swagger specifications

35916.4M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k13](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93459.5k6](/packages/botman-driver-telegram)

PHPackages © 2026

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