Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pfilsx/postgresqldoctrinebundle

Symfony bridge bundle for https://github.com/pfilsx/PostgreSQLDoctrine package
https://github.com/pfilsx/postgresqldoctrinebundle

doctrine doctrine-dbal doctrine-migrations doctrine-orm php postgresql symfony symfony-bundle

Last synced: 3 months ago
JSON representation

Symfony bridge bundle for https://github.com/pfilsx/PostgreSQLDoctrine package

Awesome Lists containing this project

README

        

PostgreSQL Doctrine Bundle
==============

Description
------------

Provides symfony-bridge for [pfilsx/postgresql-doctrine](https://github.com/pfilsx/PostgreSQLDoctrine) package.

Features
--------
* See [pfilsx/postgresql-doctrine](https://github.com/pfilsx/PostgreSQLDoctrine)

Requirement
-----------
* PHP ^8.1
* doctrine/dbal ^3.5.1
* doctrine/migrations ^3.5.2
* doctrine/doctrine-bundle ^2.8
* symfony/serializer >=5.4 (optional)

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

Open a command console, enter your project directory and execute the following command to download the latest version of this bundle:
```bash
composer require pfilsx/postgresql-doctrine-bundle
```

Register bundle into ``config/bundles.php`` (Flex did it automatically):
``` php
return [
...
Pfilsx\PostgreSQLDoctrineBundle\PostgreSQLDoctrineBundle::class => ['all' => true],
];
```