From 2535de6a2ac92e2119566042e7a3a19495e1ea42 Mon Sep 17 00:00:00 2001 From: Christoph Reiter <reiter.christoph@gmail.com> Date: Wed, 6 Oct 2021 09:31:35 +0200 Subject: [PATCH] Add dbp/relay-frontend-bundle While it's not stricly required by everyone it doesn't require any extra implementation right now and is required by all frontend apps in the future, so including it should make the initial setup easier. --- composer.json | 1 + composer.lock | 39 ++++++++++++++++++++++++++++++++++++++- config/bundles.php | 1 + symfony.lock | 3 +++ 4 files changed, 43 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 61d494a..86fb809 100644 --- a/composer.json +++ b/composer.json @@ -6,6 +6,7 @@ "php": "^7.3", "brainmaestro/composer-git-hooks": "^2.8", "dbp/relay-core-bundle": "^0.1.10", + "dbp/relay-frontend-bundle": "^0.1.0", "dbp/relay-keycloak-bundle": "^0.1.1", "symfony/apache-pack": "^1.0", "symfony/console": "^5.2", diff --git a/composer.lock b/composer.lock index 30319a5..051da59 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "40e5f05e6836c6efebf49ca7c37778b9", + "content-hash": "0fcda705499482a29528b74c258c748d", "packages": [ { "name": "api-platform/core", @@ -361,6 +361,43 @@ ], "time": "2021-09-13T08:02:44+00:00" }, + { + "name": "dbp/relay-frontend-bundle", + "version": "v0.1.0", + "source": { + "type": "git", + "url": "https://gitlab.tugraz.at/dbp/relay/dbp-relay-frontend-bundle.git", + "reference": "bcf66052f0707101c332e412f50da83e93fb1a98" + }, + "require": { + "api-platform/core": "^2.5", + "dbp/relay-core-bundle": "^0.1.11", + "ext-json": "*", + "php": "^7.3", + "symfony/framework-bundle": "^5.2" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.0", + "phpstan/phpstan": "^0.12.33", + "phpstan/phpstan-phpunit": "^0.12.13", + "symfony/browser-kit": "^5.2", + "symfony/http-client": "^5.2", + "symfony/monolog-bundle": "^3.7", + "symfony/phpunit-bridge": "^5.2", + "vimeo/psalm": "^4.2.1" + }, + "type": "symfony-bundle", + "autoload": { + "psr-4": { + "Dbp\\Relay\\FrontendBundle\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "AGPL-3.0-or-later" + ], + "time": "2021-10-06T07:16:48+00:00" + }, { "name": "dbp/relay-keycloak-bundle", "version": "v0.1.1", diff --git a/config/bundles.php b/config/bundles.php index 7e52aa3..f9bdf13 100644 --- a/config/bundles.php +++ b/config/bundles.php @@ -13,5 +13,6 @@ return [ Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true], ApiPlatform\Core\Bridge\Symfony\Bundle\ApiPlatformBundle::class => ['all' => true], Dbp\Relay\KeycloakBundle\DbpRelayKeycloakBundle::class => ['all' => true], + Dbp\Relay\FrontendBundle\DbpRelayFrontendBundle::class => ['all' => true], Dbp\Relay\CoreBundle\DbpRelayCoreBundle::class => ['all' => true], ]; diff --git a/symfony.lock b/symfony.lock index 5c25a76..e590e1e 100644 --- a/symfony.lock +++ b/symfony.lock @@ -40,6 +40,9 @@ "dbp/relay-core-bundle": { "version": "v0.1.10" }, + "dbp/relay-frontend-bundle": { + "version": "v0.1.0" + }, "dbp/relay-keycloak-bundle": { "version": "v0.1.0" }, -- GitLab