Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/pfilsx/postgresqldoctrinebundle
- Owner: pfilsx
- License: mit
- Created: 2022-12-19T11:06:14.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-27T17:40:22.000Z (almost 2 years ago)
- Last Synced: 2024-10-09T19:56:29.432Z (4 months ago)
- Topics: doctrine, doctrine-dbal, doctrine-migrations, doctrine-orm, php, postgresql, symfony, symfony-bundle
- Language: PHP
- Homepage:
- Size: 8.79 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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],
];
```