PHPackages                             lintangtimur/steldb - 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. lintangtimur/steldb

ActiveLibrary

lintangtimur/steldb
===================

Database driver for your simple project

v1.1.2(8y ago)028MITPHP

Since Oct 25Pushed 8y ago1 watchersCompare

[ Source](https://github.com/lintangtimur/Steldb)[ Packagist](https://packagist.org/packages/lintangtimur/steldb)[ Docs](https://github.com/lintangtimur/Steldb)[ RSS](/packages/lintangtimur-steldb/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (4)Dependencies (5)Versions (7)Used By (0)

[![Travis branch](https://camo.githubusercontent.com/c7fe74bbae74e3f8e6026efc1d822a9cc2b57393a8720290920cdfee08440654/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6c696e74616e6774696d75722f5374656c64622f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/lintangtimur/Steldb)[![Latest Stable Version](https://camo.githubusercontent.com/4dcdfb105ec6d52a6e002f1168a75df65b97e32b4d31e73623f9c793e4abb741/68747470733a2f2f706f7365722e707567782e6f72672f6c696e74616e6774696d75722f7374656c64622f762f737461626c65)](https://packagist.org/packages/lintangtimur/steldb)![GitHub issue last update](https://camo.githubusercontent.com/f1afe387f476b3c61c43d5d2d1d0e00a873092d93d894e157931990eabde4a58/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f64657461696c2f6c6173742d7570646174652f6c696e74616e6774696d75722f5374656c64622f3937392e7376673f7374796c653d666c61742d737175617265)![GitHub last commit](https://camo.githubusercontent.com/c3edaa8c8e108fdd4826dd52c42defd2050a586afdecbd0acb8935f5e090eb54/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6173742d636f6d6d69742f6c696e74616e6774696d75722f5374656c64622e7376673f7374796c653d666c61742d737175617265)[![Website](https://camo.githubusercontent.com/035aebb3e80414ae9304123aa902eaadf828b6e992b0706f865569839fdd89fc/68747470733a2f2f696d672e736869656c64732e696f2f776562736974652d75702d646f776e2d677265656e2d7265642f687474702f7374656c696e64622e6e65742e7376673f6c6162656c3d7374656c696e6462267374796c653d666c61742d737175617265)](https://stelindb.net)![Packagist](https://camo.githubusercontent.com/d070067948e8f59ae6e2d50a80518e032ff9ea64d080373d7d295209abca8aef/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c696e74616e6774696d75722f7374656c64622e7376673f7374796c653d666c61742d737175617265)[![GitHub issues](https://camo.githubusercontent.com/eca1bfb5133e18b36dec6bcbe7e3c2119c6b2aba300592168aa6ab1e194766cc/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f6c696e74616e6774696d75722f5374656c64622e7376673f7374796c653d666c61742d737175617265)](https://github.com/lintangtimur/Steldb/issues)[![GitHub license](https://camo.githubusercontent.com/f3f88fcac08c2029e968f77e4f38f2a782e129396351141ccedcaf403f2fc127/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6c696e74616e6774696d75722f5374656c64622e7376673f7374796c653d666c61742d737175617265)](https://github.com/lintangtimur/Steldb/blob/master/LICENSE)

About Steldb
============

[](#about-steldb)

Steldb adalah library php yang bertujuan mempermudah pelaksanaan eksekusi query database, mungkin anda sudah pakai PHP ORM semacam Doctrine, Propel, atau RedbeanPHP. Namun Steldb digunakan hanya untuk project kecil saja, dan mempermudah tugas kuliah.

Table Of Content
----------------

[](#table-of-content)

[Requirement](#requirement)
[Installation](#installation)
[Getting Started](#getting-started)
[Example](#example)
[Bug/Error/Suggestion](#bugerrorsuggestion)
[Wiki](https://github.com/lintangtimur/Steldb/wiki)
[Contributing](#contributing)

Requirement
-----------

[](#requirement)

1. Sudah terinstall Composer
2. Saya menggunakan PHP versi 7, jadi untuk PHP untuk versi sebelumnya, belum dicoba.

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

[](#installation)

Install Steldb menggunakan [Composer](https://getcomposer.org/).

`composer require lintangtimur/steldb `

Getting Started
---------------

[](#getting-started)

Buat file `.env` atau rename file `.env-example`, dan sesuaikan dengan database yang akan dipakai

dalam php kalian inputkan

```
use Dotenv\Dotenv;
use Steldb\DB;

require "vendor/autoload.php";

$dotenv = new Dotenv(__DIR__);
$dotenv->load();

$db = new DB;
```

Example
-------

[](#example)

1. select seluruh table

```
$db->selectAll('siswa');
```

2. insert

```
$db->insert('table', []);
```

3. atau dapat menggunakan perintah sql mentahan

```
$db->RAW("",[]);
```

lebih lanjut silahkan membuka `index.html` di folder documentation

Bug/Error/Suggestion
--------------------

[](#bugerrorsuggestion)

Jika menemukan bug, error, maupun sugesti bisa menambahkan issue baru [Create Issue](https://github.com/lintangtimur/Steldb/issues)

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

[](#contributing)

Library ini bebas digunakan, dan opensource, kontribusi juga welcome. Mohon bantuannya jika ada yang salah kalian dapat membantu saya dalam mengembangkan ini

- Fork repository ini
- Clone to your local
- Push and make pull request

License
-------

[](#license)

```
MIT License

Copyright (c) 2017 lintangtimur

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity67

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 ~7 days

Total

4

Last Release

3097d ago

### Community

Maintainers

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

---

Top Contributors

[![lintangtimur](https://avatars.githubusercontent.com/u/16686825?v=4)](https://github.com/lintangtimur "lintangtimur (13 commits)")

---

Tags

drivermahasiswamysqlmysql-driverunika

### Embed Badge

![Health badge](/badges/lintangtimur-steldb/health.svg)

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

###  Alternatives

[laravel/framework

The Laravel Framework.

34.6k509.9M17.0k](/packages/laravel-framework)[craftcms/cms

Craft CMS

3.6k3.6M2.6k](/packages/craftcms-cms)[tempest/framework

The PHP framework that gets out of your way.

2.1k23.1k9](/packages/tempest-framework)[tightenco/jigsaw

Simple static sites with Laravel's Blade.

2.2k438.5k29](/packages/tightenco-jigsaw)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)

PHPackages © 2026

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