From ae3f87164b4e1fcabfb14cc92932fe50a823b070 Mon Sep 17 00:00:00 2001 From: "Bekerle, Patrizio" <patrizio.bekerle@tugraz.at> Date: Wed, 6 Oct 2021 10:17:34 +0200 Subject: [PATCH] Update README.md --- README.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ff3ae2e..95adaf0 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,25 @@ # API-Base-Bundle -Contains Entities required by many bundles \ No newline at end of file +[GitLab](https://gitlab.tugraz.at/dbp/relay/api-base-bundle) | [Packagist](https://packagist.org/packages/dbp/api-base-bundle) + +This Symfony bundle contains entities required by many bundles for the DBP Relay project. + +## Integration into the API Server + +* Add the bundle package as a dependency: + +``` +composer require dbp/api-base-bundle +``` + +* Add the bundle to your `config/bundles.php`: + +```php +... +DBP\API\BaseBundle\DbpBaseBundle::class => ['all' => true], +DBP\API\CoreBundle\DbpCoreBundle::class => ['all' => true], +]; +``` + +* Run `composer install` to clear caches + -- GitLab