https://github.com/sourecode/doctrineextensionbundle
Adds lightweight UTC handling, auditing, and translations to Doctrine ORM
https://github.com/sourecode/doctrineextensionbundle
auditing doctrine symfony-bundle translation utc
Last synced: 14 days ago
JSON representation
Adds lightweight UTC handling, auditing, and translations to Doctrine ORM
- Host: GitHub
- URL: https://github.com/sourecode/doctrineextensionbundle
- Owner: SoureCode
- License: mit
- Created: 2025-03-29T19:43:24.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2025-06-01T00:25:50.000Z (10 months ago)
- Last Synced: 2025-06-08T13:05:12.986Z (10 months ago)
- Topics: auditing, doctrine, symfony-bundle, translation, utc
- Language: PHP
- Homepage:
- Size: 120 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sourecode/doctrine-extension-bundle
[](https://packagist.org/packages/sourecode/doctrine-extension-bundle)
[](https://packagist.org/packages/sourecode/doctrine-extension-bundle)
[](https://github.com/SoureCode/DoctrineExtensionBundle/actions/workflows/ci.yml)
[](https://codecov.io/gh/SoureCode/DoctrineExtensionBundle)
[](https://dashboard.stryker-mutator.io/reports/github.com/SoureCode/DoctrineExtensionBundle/master)
- [Documentation](./docs/index.md)
- [License](./LICENSE)
## Installation
Make sure Composer is installed globally, as explained in the
[installation chapter](https://getcomposer.org/doc/00-intro.md)
of the Composer documentation.
### Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
```console
composer require sourecode/doctrine-extension-bundle
```
### Applications that don't use Symfony Flex
#### Step 1: Download the Bundle
Open a command console, enter your project directory and execute the
following command to download the latest stable version of this bundle:
```console
composer require sourecode/doctrine-extension-bundle
```
#### Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the `config/bundles.php` file of your project:
```php
// config/bundles.php
return [
// ...
\SoureCode\Bundle\DoctrineExtension\SoureCodeDoctrineExtensionBundle::class => ['all' => true],
];
```