PHPackages                             paysera/lib-database-init-bundle - 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. paysera/lib-database-init-bundle

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

paysera/lib-database-init-bundle
================================

Initializes database for your project

3.0.0(2y ago)116.6k1[2 PRs](https://github.com/paysera/lib-database-init-bundle/pulls)PHPPHP ^7.4||^8.0

Since Mar 5Pushed 2y ago7 watchersCompare

[ Source](https://github.com/paysera/lib-database-init-bundle)[ Packagist](https://packagist.org/packages/paysera/lib-database-init-bundle)[ RSS](/packages/paysera-lib-database-init-bundle/feed)WikiDiscussions master Synced 6d ago

READMEChangelog (3)Dependencies (14)Versions (19)Used By (0)

lib-database-init-bundle [![](https://camo.githubusercontent.com/8eeada2c2ecc359c956efb9e3fd2b4030e58122a04966058d92faa59442d8db1/68747470733a2f2f7472617669732d63692e6f72672f706179736572612f6c69622d64617461626173652d696e69742d62756e646c652e7376673f6272616e63683d6d6173746572)](https://camo.githubusercontent.com/8eeada2c2ecc359c956efb9e3fd2b4030e58122a04966058d92faa59442d8db1/68747470733a2f2f7472617669732d63692e6f72672f706179736572612f6c69622d64617461626173652d696e69742d62756e646c652e7376673f6272616e63683d6d6173746572)
==========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================

[](#lib-database-init-bundle-)

Initializes your database to needed state. Exports your database. Can be configured to export different parts of the database (stricture, specific grouped tables). Supports plain SQL queries and Doctrine Fixtures.

#### Installation

[](#installation)

Install: `composer requre --dev paysera/lib-database-init-bundle`Register:

```
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
            // ...
            $bundles[] = new \Paysera\Bundle\DatabaseInitBundle\PayseraDatabaseInitBundle();
        }
        return $bundles;
    }
```

#### Configuration

[](#configuration)

In your `config_dev.yml` - change table names with corresponding tables in the project:

```
paysera_database_init:
    directories:
        sql:
            initial: &initial '%kernel.project_dir%/sql/initial'
            additional: &additional '%kernel.project_dir%/sql/additional'
        fixtures:
            main: '%kernel.project_dir%/fixtures'
        structure: *initial
    exports:
        configuration:
            name: configuration
            tables:
                - config_table_1
                - config_table_2
            directory: *initial
        data:
            name: data
            invert_tables_from: configuration
            directory: *initial
        users:
            name: users
            tables:
                - users_table
            directory: *additional
        cards:
            name: cards
            tables:
                - card_table
            directory: *additional
```

- `paysera_database_init.directories.sql` (optional) - Will look for `*.sql` files in given directories, split each by lines, and execute each line. Multi-line SQL statements should be separated by `;\n` characters.
- `paysera_database_init.exports` (optional) - Define different DatabaseExport configurations

    - `name` - will be used for the exported filename
    - `priority` - sets priority over the rest of the exports; it is also used as a prefix of the exported filename
    - `tables` - array of tables to be exported
    - `directory` - exported file will be placed in this directory
- `paysera_database_init.directories.fixtures` (optional) - Will load all fixtures in given directories to database. Be aware that migrations should be executed before applying fixtures.
- `paysera_database_init.directories.structure` (required) - Structure will be exported in stated directory
- `invert_tables_from` (optional) - Will ignore specified export configuration's tables. When used without specified `tables` it will export all tables in the db except `{invert_tables_from}.tables`

#### Run

[](#run)

`bin/console paysera:db-init:init {initializer} {set}`

- `initializer` - optional name of single initializer to run.
- List of provided initializers:
    - `sql`
    - `fixtures`
- `set` - optional name of given configuration, i.e. `initial` or `additional` in configuration example above.

`bin/console paysera:db-init:export {export_key}`

- `export_key` - optional name of single exporter to run.

#### Extension

[](#extension)

Implement `\Paysera\Bundle\DatabaseInitBundle\Service\Initializer\DatabaseInitializerInterface`and tag your service with `paysera_database_init.initializer`, provide `priority` tag attribute.

#### Run PHPUnit tests

[](#run-phpunit-tests)

Starting or switching the dev environment:

```
bin/devenv [7.4,8.0,8.1]

```

Entering php container:

```
bin/devenv enter
```

Install composer packages:

```
composer install
```

Running tests:

```
vendor/bin/phpunit
```

Stopping the dev environment:

```
bin/devenv stop
```

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity77

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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

Recently: every ~505 days

Total

16

Last Release

971d ago

Major Versions

0.2.4 → 1.0.02018-03-07

1.0.1 → 2.0.02019-12-16

2.1.0 → 3.0.02023-09-20

### Community

Maintainers

![](https://www.gravatar.com/avatar/9d385187c2b529d5c1189dfc3763972f76738d24293593ff3db876fff82321db?d=identicon)[paysera.com](/maintainers/paysera.com)

---

Top Contributors

[![daniel-valchev-paysera](https://avatars.githubusercontent.com/u/95758316?v=4)](https://github.com/daniel-valchev-paysera "daniel-valchev-paysera (1 commits)")[![ivelinahristova](https://avatars.githubusercontent.com/u/3619021?v=4)](https://github.com/ivelinahristova "ivelinahristova (1 commits)")[![vaskevicius](https://avatars.githubusercontent.com/u/22121652?v=4)](https://github.com/vaskevicius "vaskevicius (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/paysera-lib-database-init-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/paysera-lib-database-init-bundle/health.svg)](https://phpackages.com/packages/paysera-lib-database-init-bundle)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[ec-cube/ec-cube

EC-CUBE EC open platform.

78527.0k1](/packages/ec-cube-ec-cube)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[hautelook/alice-bundle

Symfony bundle to manage fixtures with Alice and Faker.

19519.4M34](/packages/hautelook-alice-bundle)[contao/core-bundle

Contao Open Source CMS

1231.6M2.4k](/packages/contao-core-bundle)

PHPackages © 2026

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