PHPackages                             rasel9w9/data-generator - 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. rasel9w9/data-generator

ActiveLaravel-package

rasel9w9/data-generator
=======================

This is For Make Seeder Or Generate The Table Data As Array

1.2(2y ago)069PHPPHP &gt;=7.4

Since Oct 30Pushed 2y ago1 watchersCompare

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

READMEChangelog (2)Dependencies (1)Versions (3)Used By (0)

Data Generator: Export Table Data With ease.
============================================

[](#data-generator-export-table-data-with-ease)

Easily export data using . This package has been tested since Laravel 10.

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

[](#installation)

Run this composer command in your laravel application: Only Mysql version 1.1;

```
composer require rasel9w9/data-generator:^1.1

```

support oracle database18c in 1.2 version with mysql

```
composer require rasel9w9/data-generator:^1.2

```

To start using Laravel, add the Service Provider and the Facade to your `config/app.php`:

> **Note:** This package supports auto-discovery features of Laravel 5.5+, You only need to manually add the service provider and alias if working on Laravel version lower then 5.5.

```
'providers' => [
    // ...
    rasel9w9\DataGenerator\DataGeneratorServiceProvider::class,
]
```

Basic Usage
===========

[](#basic-usage)

To use Data Generator add something like this to one of your controllers.

\#Using Artisan Command

```
	//to export specific table data
	php artisan alauddin:generate-table-data --table=youreTableName

	//To export All Tables Of the database
	php artisan alauddin:generate-data
```

\#Using Controller

```
//....

use rasel9w9\DataGenerator\GenerateData;

class DataController extends Controller
{
    public function data()
    {
    	//To Generate data Of specific table
        $object = new GenerateData();
        $object->generateTableData("yourTableName");

        //To Generate data Of All The tables
        $object->generateData();

        //The Data is saved to /database/seeders/data directory with separate table name as file name.The file(s) has no extension just open the file in a editor and you can see your table data as php array.
    }

}
```

###  Health Score

22

—

LowBetter than 23% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 86.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 ~61 days

Total

2

Last Release

860d ago

### Community

Maintainers

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

---

Top Contributors

[![rasel9w9](https://avatars.githubusercontent.com/u/59905936?v=4)](https://github.com/rasel9w9 "rasel9w9 (13 commits)")[![amra3jon](https://avatars.githubusercontent.com/u/71621995?v=4)](https://github.com/amra3jon "amra3jon (2 commits)")

### Embed Badge

![Health badge](/badges/rasel9w9-data-generator/health.svg)

```
[![Health](https://phpackages.com/badges/rasel9w9-data-generator/health.svg)](https://phpackages.com/packages/rasel9w9-data-generator)
```

###  Alternatives

[fumeapp/modeltyper

Generate TypeScript interfaces from Laravel Models

196277.9k](/packages/fumeapp-modeltyper)[slowlyo/owl-admin

基于 laravel、amis 开发的后台框架~

61214.2k26](/packages/slowlyo-owl-admin)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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