Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
"require": {
"open-dxp/opendxp": "*",
"open-dxp/admin-ui-classic-bundle": "*",
"symfony/dotenv": "^6.4",
"symfony/runtime": "^6.4"
"symfony/dotenv": "^7.3",
"symfony/runtime": "^7.3"
},
"require-dev": {
"codeception/codeception": "5.2.2",
"codeception/module-symfony": "^3.1.0",
"codeception/codeception": "^5.3.0",
"codeception/module-symfony": "^3.6.0",
"wikimedia/composer-merge-plugin": "^2.1"
},
"suggest": {
Expand Down
2 changes: 1 addition & 1 deletion config/routes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ _opendxp:

app:
resource: '../src/Controller/'
type: attribute
type: attribute
13 changes: 0 additions & 13 deletions src/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,8 @@

namespace App;

use OpenDxp\Bundle\AdminBundle\OpenDxpAdminBundle;
use OpenDxp\HttpKernel\BundleCollection\BundleCollection;
use OpenDxp\Kernel as OpenDxpKernel;

class Kernel extends OpenDxpKernel
{
/**
* Adds bundles to register to the bundle collection. The collection is able
* to handle priorities and environment specific bundles.
*
*/
public function registerBundlesToCollection(BundleCollection $collection): void
{
if (class_exists(OpenDxpAdminBundle::class)) {
$collection->addBundle(new OpenDxpAdminBundle(), 60);
}
}
}