-
Notifications
You must be signed in to change notification settings - Fork 1
Update for Contao 5 compatibility #19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
ericges
wants to merge
26
commits into
master
Choose a base branch
from
update/contao-5
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
8c4c47f
wip
vvohh c1af4a4
refactoring (wip)
vvohh 1e85f3d
wip
vvohh 954f7c9
wip
vvohh bf0d775
drop filter support
vvohh 547ede2
fix dc table
vvohh 24adbdc
hotfix
vvohh 24bc93f
wip
vvohh cf9ed13
refactorinh
vvohh bf6ba1b
remove newsfeed feature
vvohh 661344e
more refactoring
vvohh 2cc33db
move twig code to runtime class
koertho 5f2674e
fix service registration
koertho 7f15381
replace some old utils bundle usages
koertho 6845cd0
adjustments to rector and deps
koertho a397298
add optional dc_multilingual support
koertho 2ebc388
add categories-multilingual bundle to conflicts
koertho 45668ab
add parent category flare filter
koertho c142c8a
remove extension class
koertho 27ae752
fixes due code review
koertho 622b1e0
refactor HookListener to use $this->utils for model instance retrieval
vvohh c7acde3
fix service yaml
koertho 88b122c
add model method
koertho 77886e6
fix flare query
vvohh 2a88f80
fix issues with callbacks
koertho c63c148
dont use dateAdded from utils bundle anymore
vvohh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,3 +2,4 @@ | |
| Thumbs.db | ||
| .DS_Store | ||
| .sass-cache | ||
| vendor | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,34 +1,35 @@ | ||
| { | ||
| "name": "heimrichhannot/contao-categories-bundle", | ||
| "type": "contao-bundle", | ||
| "description": "This bundle allows to assign nestable categories to arbitrary entities in Contao-driven systems.", | ||
| "license": "LGPL-3.0-or-later", | ||
| "require": { | ||
| "php": "^7.4 || ^8.0", | ||
| "contao/core-bundle": "^4.4", | ||
| "heimrichhannot/contao-utils-bundle": "^2.210", | ||
| "heimrichhannot/contao-multi-column-editor-bundle": "^2.0", | ||
| "wa72/htmlpagedom": "^1.3 || ^2.0", | ||
| "heimrichhannot/contao-request-bundle": "^1.0" | ||
| }, | ||
| "autoload": { | ||
| "psr-4": { | ||
| "HeimrichHannot\\CategoriesBundle\\": "src/" | ||
| "name": "heimrichhannot/contao-categories-bundle", | ||
| "type": "contao-bundle", | ||
| "description": "This bundle allows to assign nestable categories to arbitrary entities in Contao-driven systems.", | ||
| "license": "LGPL-3.0-or-later", | ||
| "require": { | ||
| "php": "^8.2", | ||
| "contao/core-bundle": "^5.3", | ||
| "heimrichhannot/contao-utils-bundle": "^3.9", | ||
| "heimrichhannot/contao-multi-column-editor-bundle": "^2.0", | ||
| "wa72/htmlpagedom": "^3.0" | ||
| }, | ||
| "classmap": [ | ||
| "src/" | ||
| ], | ||
| "exclude-from-classmap": [ | ||
| "src/Resources/contao/config/", | ||
| "src/Resources/contao/dca/", | ||
| "src/Resources/contao/languages/", | ||
| "src/Resources/contao/templates/" | ||
| ] | ||
| }, | ||
| "extra": { | ||
| "contao-manager-plugin": "HeimrichHannot\\CategoriesBundle\\ContaoManager\\Plugin" | ||
| }, | ||
| "suggest": { | ||
| "heimrichhannot/contao-categories-multilingual-bundle": "Adds multilanguage support for categories bundle." | ||
| } | ||
| "autoload": { | ||
| "psr-4": { | ||
| "HeimrichHannot\\CategoriesBundle\\": "src/" | ||
| } | ||
| }, | ||
| "extra": { | ||
| "contao-manager-plugin": "HeimrichHannot\\CategoriesBundle\\ContaoManager\\Plugin" | ||
| }, | ||
| "suggest": { | ||
| "heimrichhannot/contao-categories-multilingual-bundle": "Adds multilanguage support for categories bundle." | ||
| }, | ||
| "require-dev": { | ||
| "rector/rector": "^2.2", | ||
| "contao/contao-rector": "dev-main", | ||
| "symplify/easy-coding-standard": "^12.6", | ||
| "phpstan/phpstan": "^2.1", | ||
| "phpstan/phpstan-symfony": "^2.0", | ||
| "contao/manager-plugin": "^2.13" | ||
| }, | ||
| "conflict": { | ||
| "heimrichhannot/contao-categories-multilingual-bundle": "*" | ||
| } | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Da könnte auch noch flare rein, oder? @koertho