PHPackages                             dayatfadila7/firebirdclassic - 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. dayatfadila7/firebirdclassic

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

dayatfadila7/firebirdclassic
============================

firebird using ibase laravel &gt;= 5.1

1.0.0.2(9y ago)031MITPHPPHP &gt;=5.4.0

Since Feb 23Pushed 9y ago1 watchersCompare

[ Source](https://github.com/dayatfadila7/firebirdclassic)[ Packagist](https://packagist.org/packages/dayatfadila7/firebirdclassic)[ RSS](/packages/dayatfadila7-firebirdclassic/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (4)Used By (0)

Firebird Classic
================

[](#firebird-classic)

This is a package for firebird laravel &gt;=5.1 using ibase function and that not using pdo because numeric in pdo firebird return random number.

#### feature

[](#feature)

- excute query
- insert
- update
- delete

### Installation

[](#installation)

composer require dayatfadila7/firebirdclassic

#### or add manual in composer.json

[](#or-add-manual-in-composerjson)

```
        .....
        "dayatfadila7/firebirdclassic": "^1.0"
        ......
 },

Next, add your new provider to the providers array of config/app.php:
```'providers' => [
    // ...
    FireBirdClassic\FirebirdClassicServiceProvider::class,
    // ...
  ],

  ### How to use it

  first you must add IbaseQuery namespace
  use FireBirdClassic\Query\IbaseQuery;
  than create constructor  :

  public function __construct()
    {
        $this->command = new IbaseQuery;
    }

#### feature ibase query

##### a. execute for excute query

$this->command->execute($query);

example:
$query = "SELECT * FROM USER";
$this->command->execute($query);

##### b. create
$this->command->create($table,$data);
example :
$data = ['USERNAME'=>'Sarah',['PASSWORD']=>'yourname'];
$this->command->create('USER',$data);

##### b. update
$this->command->update($>table, $data, $condition)
example :
$data = ['USERNAME'=>'Sarah',['PASSWORD']=>'yourname'];
$condition = ['ID'=>1];
$this->command->update('USER',$data);

##### c. delete
$this->command->delete($table, $condition);
example:
$condition = ['ID'=>1];
$this->command->update('USER',$condition);

##note :
$data and $codition is array.
for execute sql create,update and delete you must run function execute.
example :
$command = $this->command->create('USER',$data);
$this->command->execute($command);

```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity60

Established project with proven stability

 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.

###  Release Activity

Cadence

Every ~17 days

Total

3

Last Release

3331d ago

### Community

Maintainers

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

---

Top Contributors

[![dayatfadila7](https://avatars.githubusercontent.com/u/9100806?v=4)](https://github.com/dayatfadila7 "dayatfadila7 (10 commits)")

### Embed Badge

![Health badge](/badges/dayatfadila7-firebirdclassic/health.svg)

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

###  Alternatives

[doctrine/orm

Object-Relational-Mapper for PHP

10.2k285.3M6.2k](/packages/doctrine-orm)[jdorn/sql-formatter

a PHP SQL highlighting library

3.9k115.1M102](/packages/jdorn-sql-formatter)[illuminate/database

The Illuminate Database package.

2.8k52.4M9.4k](/packages/illuminate-database)[mongodb/mongodb

MongoDB driver library

1.6k64.0M546](/packages/mongodb-mongodb)[ramsey/uuid-doctrine

Use ramsey/uuid as a Doctrine field type.

90340.3M211](/packages/ramsey-uuid-doctrine)[reliese/laravel

Reliese Components for Laravel Framework code generation.

1.7k3.4M16](/packages/reliese-laravel)

PHPackages © 2026

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