PHPackages                             seatplus/seat3-migrator - 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. seatplus/seat3-migrator

ActiveLibrary

seatplus/seat3-migrator
=======================

Migration Package for seat3 to seatplus

0.5.3(4y ago)022[1 issues](https://github.com/seatplus/seat3-migrator/issues)MITPHPPHP ^8.0

Since Oct 7Pushed 4y ago1 watchersCompare

[ Source](https://github.com/seatplus/seat3-migrator)[ Packagist](https://packagist.org/packages/seatplus/seat3-migrator)[ Docs](https://github.com/seatplus/seat3-migrator)[ GitHub Sponsors](https://github.com/seatplus)[ RSS](/packages/seatplus-seat3-migrator/feed)WikiDiscussions main Synced 4d ago

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

Migration Package for seat3 to seatplus
=======================================

[](#migration-package-for-seat3-to-seatplus)

[![Latest Version on Packagist](https://camo.githubusercontent.com/c9ea32678b0bd1881d340fd3fc53435fdcd96b999fdeaedcc03e35468b06f7e9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f73656174706c75732f73656174332d6d69677261746f722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/seatplus/seat3-migrator)[![GitHub Tests Action Status](https://camo.githubusercontent.com/c9835b1686d6444675fffe5bc87186b31ef2f8839a2eb8e46f6e2673ed2faf3b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f73656174706c75732f73656174332d6d69677261746f722f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/seatplus/seat3-migrator/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/adea59a6692cb94f84029e4588a5d35a95fc205fcd2334e13773dc4c442a5ee8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f73656174706c75732f73656174332d6d69677261746f722f436865636b253230262532306669782532307374796c696e673f6c6162656c3d636f64652532307374796c65)](https://github.com/seatplus/seat3-migrator/actions?query=workflow%3A%22Check+%26+fix+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/42ecb4a9af6ab25b970ab9fb794b11eced03c2179151750ff9ee19c768a1164a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f73656174706c75732f73656174332d6d69677261746f722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/seatplus/seat3-migrator)

This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.

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

[](#installation)

This installation guide assumes you are using a functioning dockerized seatplus version. Since this will be a cli only package, access to the shell is mandatory.

### Create a backup from seat3

[](#create-a-backup-from-seat3)

Create a backup from seat 3 on your old instance

```
docker-compose exec mariadb sh -c 'exec mysqldump "$MYSQL_DATABASE" -u"$MYSQL_USER" -p"$MYSQL_PASSWORD"' | gzip > seat_backup.sql.gz
```

### Prepare your instance

[](#prepare-your-instance)

First we are going to create a container for the seat3 backup. Add the following to the `.env` file:

```
# .env

DB_BACKUP_DATABASE=seat_backup
```

then add the backup container to your `docker-compose.yml` a

```
# docker-compose.yml

services:
    ...
    ### seatBackup  ##############################################
    seatBackup:
      image: mariadb:10.3
      restart: always
      environment:
          MYSQL_RANDOM_ROOT_PASSWORD: "yes"
          MYSQL_USER: ${DB_USERNAME}
          MYSQL_PASSWORD: ${DB_PASSWORD}
          MYSQL_DATABASE: ${DB_BACKUP_DATABASE}
      networks:
          - backend
```

Note: We are using the same DB username and user password as your normal seatplus db container does. However, we use the DB name you specified in the `env` file

### Import backup to the newly created seatBackup container

[](#import-backup-to-the-newly-created-seatbackup-container)

```
zcat seat_backup.sql.gz | docker-compose exec -T seatBackup sh -c 'exec mysql "$MYSQL_DATABASE" -u"$MYSQL_USER" -p"$MYSQL_PASSWORD"'
```

You can install the package via composer:

```
composer require seatplus/seat3-migrator
```

You can publish and run the migrations with:

```
php artisan vendor:publish --provider="Seatplus\Seat3Migrator\Seat3MigratorServiceProvider" --tag="seat3-migrator-migrations"
php artisan migrate
```

You can publish the config file with:

```
php artisan vendor:publish --provider="Seatplus\Seat3Migrator\Seat3MigratorServiceProvider" --tag="seat3-migrator-config"
```

This is the contents of the published config file:

```
return [
];
```

Usage
-----

[](#usage)

```
$seat3-migrator = new Seatplus\Seat3Migrator();
echo $seat3-migrator->echoPhrase('Hello, Spatie!');
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

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

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Felix Huber](https://github.com/seatplus)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

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

Total

4

Last Release

1680d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/6583519?v=4)[Herpaderp Aldent](/maintainers/herpaderpaldent)[@herpaderpaldent](https://github.com/herpaderpaldent)

---

Top Contributors

[![herpaderpaldent](https://avatars.githubusercontent.com/u/6583519?v=4)](https://github.com/herpaderpaldent "herpaderpaldent (6 commits)")

---

Tags

laravelseatplusseat3-migrator

### Embed Badge

![Health badge](/badges/seatplus-seat3-migrator/health.svg)

```
[![Health](https://phpackages.com/badges/seatplus-seat3-migrator/health.svg)](https://phpackages.com/packages/seatplus-seat3-migrator)
```

###  Alternatives

[spatie/laravel-prometheus

Export Laravel metrics to Prometheus

2651.3M6](/packages/spatie-laravel-prometheus)[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)[bilfeldt/laravel-request-logger

Log Laravel application request and responses for debugging or statistics

122163.3k2](/packages/bilfeldt-laravel-request-logger)[api-platform/laravel

API Platform support for Laravel

59126.4k6](/packages/api-platform-laravel)[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)[basillangevin/laravel-data-json-schemas

Transforms Spatie Data objects into JSON Schemas with built-in validation

1312.2k1](/packages/basillangevin-laravel-data-json-schemas)

PHPackages © 2026

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