This repository has been archived by the owner on Jul 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 111
allow zf3 #335
Merged
Merged
allow zf3 #335
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
c359ffe
allow zf3
prolic 673874f
build on travis with zf2 & zf3. drop support php < 5.6
prolic aefc37f
fix typo in composer json
prolic ef117e1
other composer json formatting for or (||)
prolic d678102
update composer deps
prolic 6a0b20a
update to work with ZF3
prolic a07ee7d
require newer versions of zf2/3
prolic a5ea04f
allow zf2 and zf3
prolic ad351c9
fix zf3 usage
prolic 5f55b6c
fix usage with zf2
prolic 3327195
enable switch for zf3 in tests
prolic 1491665
allow zend-mvc 3.0
prolic 52b2b23
php cs issues
prolic 66b84db
update code sniffer
prolic aab9b71
update ZfcRbacTest/Util/ServiceManagerFactory
prolic 191b454
update tests and srcs
prolic feb4aba
add v3 service manager tests
prolic 03fca8e
remove test group
prolic 2d856b8
apply php cs fixes
prolic 284ba81
some last cleanups
prolic 7894392
update doctrine orm module in composer json
prolic 4dc3eb0
update AuthorizationServiceInitializer
prolic 9e97ce3
Fixes #340 - EventManager::trigger() causes an event instance of the …
1c8dc25
make test modifications related to #340, zf2- and zf3-compatible
66466fc
Merge pull request #1 from nasko/zf3
prolic 079e135
Revert "Fix for #340"
prolic c895f5f
Merge pull request #2 from prolic/revert-1-zf3
prolic f7e401a
switch triggerEvent/trigger methods depending on zf2/zf3
prolic 4b970dd
update code again to be 100% backward compatible with zf2 components
prolic 2b1ecb0
run all tests with zf3
prolic 4afa493
fix route permissions guard factory
prolic 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 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 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 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 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 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 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 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 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 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 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 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
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.
removing
MutableCreationOptionsInterface
please look how servicemanager v2 keep compatibility: https://github.com/zendframework/zend-servicemanager/blob/release-2.7/src/AbstractPluginManager.php#L322-L328basically instead of
MutableCreationOptionsInterface
it checks forsetCreationOptions()
not sure it works without it. Possible BC break unless this is handled somewhere else, but don't know if this is good idea.can find more info here zendframework/zend-servicemanager#91 (comment)
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.
i'll re-check that tomorrow