PHPackages                             rioagungpurnomo/dcobwebs - 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. rioagungpurnomo/dcobwebs

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

rioagungpurnomo/dcobwebs
========================

DCobwebs (Database Cobwebs) PHP framework to make it easier to process data and very simple NoSQL.

v2.2.7(3y ago)822MITPHP

Since Apr 27Pushed 2y ago1 watchersCompare

[ Source](https://github.com/rioagungpurnomo/dcobwebs)[ Packagist](https://packagist.org/packages/rioagungpurnomo/dcobwebs)[ RSS](/packages/rioagungpurnomo-dcobwebs/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)DependenciesVersions (11)Used By (0)

[![DCobwebs](https://user-images.githubusercontent.com/91432414/234926130-fe9db818-1ed8-493c-814b-4bd937778992.png)](https://user-images.githubusercontent.com/91432414/234926130-fe9db818-1ed8-493c-814b-4bd937778992.png)

[![Total Downloads](https://camo.githubusercontent.com/fb81a53c99e3dedeb2a8af1cc757ba192598ab2395b399165aa8e1016ce9f783/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f72696f6167756e677075726e6f6d6f2f64636f6277656273)](https://packagist.org/packages/rioagungpurnomo/dcobwebs)[![Latest Stable Version](https://camo.githubusercontent.com/a7353dbe81e2d0ca4502d99be6a634ec5ffece04b3256883882ba5bec876efcf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f72696f6167756e677075726e6f6d6f2f64636f6277656273)](https://packagist.org/packages/rioagungpurnomo/dcobwebs)[![License](https://camo.githubusercontent.com/67a1d93384c7ec76e8032e92db76d5fc982a9e1935ed4ae0fff71f0ab284fb3f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f72696f6167756e677075726e6f6d6f2f64636f6277656273)](https://packagist.org/packages/rioagungpurnomo/dcobwebs)

DCobwebs
========

[](#dcobwebs)

DCobwebs (Database Cobwebs) PHP framework to make it easier to process data and very simple NoSQL.

Demo : **[View](http://dcobwebs.epizy.com)**

### Installation

[](#installation)

Start to do the installation.

```
composer require rioagungpurnomo/dcobwebs
```

### Example

[](#example)

A simple example of using DCobwebs and creating a **users** table containing **name** and **bio** fields.

```
require 'vendor/autoload.php';

use Rioagungpurnomo\Dcobwebs\Dcobwebs;

Dcobwebs::add('users', ['name', 'bio']);
```

### Create Data

[](#create-data)

Adding new data in a table.

```
Dcobwebs::table(table)->create(array);
```

### Update Data

[](#update-data)

Updating data in a table.

```
Dcobwebs::table(table)->update(id, array);
```

### Delete Data

[](#delete-data)

Delete data in a table.

```
Dcobwebs::table(table)->delete(id);
```

### Count Data

[](#count-data)

Counts how much data is in a table.

```
Dcobwebs::table(table)->count();
```

### Find Data

[](#find-data)

Displays one data with a certain **id** in a table.

```
Dcobwebs::table(table)->find(id);
```

### Where Data

[](#where-data)

Retrieve only certain data in the table.

```
Dcobwebs::table(table)->where(field, value);
```

### All Data

[](#all-data)

Displays all data in a table.

```
Dcobwebs::table(table)->all();
```

### ASC Data

[](#asc-data)

Displays all data in a table by ASC (Ascending).

```
Dcobwebs::table(table)->asc(field);
```

### DESC Data

[](#desc-data)

Displays all data in a table by DESC (Descending).

```
Dcobwebs::table(table)->desc(field);
```

### Create Table

[](#create-table)

Adding a new table in the database.

```
Dcobwebs::add(name, array);
```

### List Table

[](#list-table)

Displays all tables in the database.

```
Dcobwebs::list();
```

### Delete Table

[](#delete-table)

Delete tables in the database.

```
Dcobwebs::remove(table);
```

### Rename Table

[](#rename-table)

Change the table name to the new table name in the database.

```
Dcobwebs::rename(old_name, new_name);
```

### Count Table

[](#count-table)

Count how many tables are in the database.

```
Dcobwebs::calculate();
```

### Create Field Table

[](#create-field-table)

Adding existing fields to tables in the database.

```
Dcobwebs::table(table)->create_field(array);
```

### Delete Field Table

[](#delete-field-table)

Delete existing fields in the table in the database.

```
Dcobwebs::table(table)->delete_field(field);
```

### List Field Table

[](#list-field-table)

Displays the fields in the table in the database.

```
Dcobwebs::table(table)->list_field();
```

Security
--------

[](#security)

### Encrypt

[](#encrypt)

Encrypt strings.

```
Dcobwebs::encrypt(plaintext, key, iv);
```

### Decrypt

[](#decrypt)

Decrypt strings.

```
Dcobwebs::decrypt(ciphertext, key, iv);
```

Donate
------

[](#donate)

- [Saweria](https://saweria.co/rioagungpurnomo)
- [Trakteer](https://trakteer.id/rioagungpurnomo)
- [PayPal](https://www.paypal.me/rioagungpurnomoo)

Contact me
----------

[](#contact-me)

Contact me via email: ****, give me input or suggestions or request additional features for DCobwebs to become the number 1 tool for your help.

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 69.7% 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 ~0 days

Total

10

Last Release

1110d ago

Major Versions

v1.1.6 → v2.2.62023-04-28

### Community

Maintainers

![](https://www.gravatar.com/avatar/4eb59833b90877734dfaa1cb6f53ff695ea9e27ef42bdd91e2683f7142c7728f?d=identicon)[rioagungpurnomo](/maintainers/rioagungpurnomo)

---

Top Contributors

[![riodevnet](https://avatars.githubusercontent.com/u/193766411?v=4)](https://github.com/riodevnet "riodevnet (23 commits)")[![riodev99](https://avatars.githubusercontent.com/u/91432414?v=4)](https://github.com/riodev99 "riodev99 (10 commits)")

---

Tags

databasedcobwebsframeworklibraryphpphp-frameworkphp-library

### Embed Badge

![Health badge](/badges/rioagungpurnomo-dcobwebs/health.svg)

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

###  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)
