Skip to content

Commit

Permalink
Add compatibility to the latest version of the pagebased extension
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelthanner committed Oct 16, 2023
1 parent d666cd4 commit 698dfb7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
],
"require": {
"typo3/cms-core": "^11.5.0 || ^12.4.0",
"zeroseven/pagebased": "*"
"zeroseven/pagebased": "^1.2.0"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 2 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
'author_company' => 'zeroseven design studios GmbH',
'state' => 'stable',
'clearCacheOnLoad' => 1,
'version' => '1.0.0',
'version' => '1.1.0',
'constraints' => [
'depends' => [
'typo3' => '11.5.0-12.4.99',
'pagebased' => ''
'pagebased' => '1.2.0-1.99.99'
],
'conflicts' => [
'z7_blog' => ''
Expand Down
1 change: 1 addition & 0 deletions ext_localconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
->setClassName(\Zeroseven\PagebasedBlog\Domain\Model\Post::class)
->setControllerClass(\Zeroseven\PagebasedBlog\Controller\PostController::class)
->setRepositoryClass(\Zeroseven\PagebasedBlog\Domain\Repository\PostRepository::class)
->enableDate(true)
->enableRelations()
->enableTop()
->enableTags();
Expand Down

0 comments on commit 698dfb7

Please sign in to comment.