PHPackages                             aimme/laravel-dynamo - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. aimme/laravel-dynamo

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

aimme/laravel-dynamo
====================

app for creating laravel components

3.1.3(7y ago)039PHPPHP &gt;=7.1.3

Since Jun 13Pushed 7y ago1 watchersCompare

[ Source](https://github.com/mohamed-aiman/laravel-dynamo)[ Packagist](https://packagist.org/packages/aimme/laravel-dynamo)[ RSS](/packages/aimme-laravel-dynamo/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependencies (3)Versions (11)Used By (0)

Laravel Dynamo
==============

[](#laravel-dynamo)

[![](https://camo.githubusercontent.com/251211e4926f10169fb869e4f5d630a914e8a50d8640193820585a60513196b1/68747470733a2f2f7472617669732d63692e6f72672f6d6f68616d65642d61696d616e2f6c61726176656c2d64796e616d6f2e7376673f6272616e63683d6d6173746572)](https://camo.githubusercontent.com/251211e4926f10169fb869e4f5d630a914e8a50d8640193820585a60513196b1/68747470733a2f2f7472617669732d63692e6f72672f6d6f68616d65642d61696d616e2f6c61726176656c2d64796e616d6f2e7376673f6272616e63683d6d6173746572)[![Built for Laravel 5](https://camo.githubusercontent.com/8ec9f075b25664584d62f940aef5e7563799006538fbde3236c07cfbf455c45c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4275696c745f666f722d4c61726176656c2d7265642e7376673f7374796c653d666c61742d737175617265)](https://camo.githubusercontent.com/8ec9f075b25664584d62f940aef5e7563799006538fbde3236c07cfbf455c45c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4275696c745f666f722d4c61726176656c2d7265642e7376673f7374796c653d666c61742d737175617265)[![MIT License](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](https://github.com/ainme/laravel-dynamo/blob/master/LICENSE)

The package generates migration files for the application using raw mysql file. I use this package to create migration files for the applications after designing and exporting my ERDs to raw mysql from mysql workbench. I have just used this on Laravel 5 and hopefully so far it works.

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

[](#installation)

Require this package in your `composer.json` and update composer

```
"aimme/laravel-dynamo": "1.0.0"
```

To publish the config settings in Laravel 5 use:

```
php artisan vendor:publish --provider="Aimme\Dynamo\DynamoServiceProvider"
```

The generator is bound to the ioC as `dynamo`

```
$generator = App::make('dynamo');
```

Documentation
-------------

[](#documentation)

- configure the paths in `config/dynamo.php` . Sample values has already been provided

```
	'migrations' => [
	     //path to the source erd sql export file
		'source' => [
			'raw' => 'mysql.sql', //source export file by default app will look for the file project root folder.
			'formatted' => 'formatted_source.txt' //to store the formatted source, by default the file will be created in project root
			],
		//make: this array is loaded to the MakeMigraions as making migrations configs
		//order: tells the order of making migrations
		//id_as_auto_increment:  true means if id is set in a table it would be set as increments()
		//or bigIncrements() depending on the field type declared.
		//timestamps_for_all: adds timestamps()->useCurrent() to all migrations even if its not declared in dump
		//output_path: to where all the migrations to be created. Changing it from here wouldn't bring any changes while running through artisan. Just use --path option to define path other than app defined path (database/migrations).
		//clean_folder: removes all the previous file in the path, if any
		'make' => [
			'order' => [
				// 'users',
	            'items_features',
	            // 'listings',
	            'sellers',
	            // 'features',
	            // 'items'
			],
			'id_as_auto_increment' => true,
			'timestamps_for_all' => true,
			'include_remaining' => true,
			'output_path' => 'database/migrations',
			'clean_folder' => true
		],
	]
```

after configuring run the artisan command to generate the migration files from the sql file

```
php artisan generate:migrations
```

a parameter is available to change the path of the sql file, if not defined it will look into file path defined in the configuration array \[migrations\] \[source\] \[raw\]. For more information see the above configuration file. By default you can put the mysql file named mysql.sql in the root folder, without bringing any changes to the configuration.

example:

```
php artisan generate:migrations mysqlfile.sql
```

\--path option can be used to define path other than app defined migrations path (database/migrations). The location where the migration files should be created in.

example:

```
php artisan generate:migrations mysqlfile.sql --path=another/migrations
```

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity64

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

Recently: every ~2 days

Total

7

Last Release

2685d ago

Major Versions

1.0.0 → 2.0.02017-06-18

2.0.0 → 3.0.02019-02-14

PHP version history (2 changes)1.0.0PHP &gt;=5.6.0

3.0.0PHP &gt;=7.1.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/23ae68a2c9afa02b8f12c055e30325c11d9c1c9505f5338409ec0eb47a378c21?d=identicon)[aimme](/maintainers/aimme)

---

Top Contributors

[![mohamed-aiman](https://avatars.githubusercontent.com/u/14019247?v=4)](https://github.com/mohamed-aiman "mohamed-aiman (25 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/aimme-laravel-dynamo/health.svg)

```
[![Health](https://phpackages.com/badges/aimme-laravel-dynamo/health.svg)](https://phpackages.com/packages/aimme-laravel-dynamo)
```

###  Alternatives

[vinkla/extended-acf

Register advanced custom fields with object-oriented PHP

509284.4k14](/packages/vinkla-extended-acf)[dillingham/nova-items-field

Nova field to handle array columns

1111.0M2](/packages/dillingham-nova-items-field)[pavloniym/nova-action-buttons

A Laravel Nova field.

15214.0k](/packages/pavloniym-nova-action-buttons)

PHPackages © 2026

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