This repository was archived by the owner on Sep 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 156
remove dev master dependencies #484
Merged
Merged
Changes from all commits
Commits
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 |
---|---|---|
|
@@ -31,26 +31,19 @@ all of the required packages now. | |
... | ||
"symfony-cmf/routing-auto-bundle": "1.0.*@alpha", | ||
"symfony-cmf/menu-bundle": "1.0", | ||
"sonata-project/doctrine-phpcr-admin-bundle": "dev-master", | ||
"symfony-cmf/tree-browser-bundle": "@dev", | ||
"sonata-project/doctrine-phpcr-admin-bundle": "1.0.*", | ||
"symfony-cmf/tree-browser-bundle": "1.0.*", | ||
"doctrine/data-fixtures": "1.0.0", | ||
|
||
"doctrine/phpcr-odm": "dev-master as 1.0.0", | ||
"phpcr/phpcr-utils": "dev-master as 1.0.0", | ||
"doctrine/phpcr-bundle": "dev-master as 1.0.0", | ||
"symfony-cmf/routing-bundle": "dev-master as 1.1.0", | ||
"symfony-cmf/routing": "dev-master as 1.2.0" | ||
"doctrine/phpcr-odm": "1.0.*", | ||
"phpcr/phpcr-utils": "1.0.*", | ||
"doctrine/phpcr-bundle": "1.0.*" | ||
"symfony-cmf/routing-bundle": "1.1.*", | ||
"symfony-cmf/routing": "1.1.*" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. do we need 1.2.0 here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this will collide / overlap with #480 in that PR i go for the new versions. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ah ok, this PR is against master... then we just will have to solve a conflict when merging master into dev. |
||
}, | ||
... | ||
} | ||
|
||
.. note:: | ||
|
||
This tutorial currently requires code only available in the lastest | ||
unstable version of PHPCR-ODM, this is why you require the "dev-master as | ||
1.0.0" constraints. When PHPCR-ODM 1.1 is released this will no longer be | ||
necessary. | ||
|
||
Note that each time you modify your ``composer.json`` file you are required to | ||
run ``composer update``. | ||
|
||
|
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
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
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.
does this even make sense to include this Bundle in a tutorial until its stable?
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.
ping @dantleech
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.
we can't simply remove it, as the tutorial is based on it being here. not sure how much is missing to tag a stable version of routing-auto?
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.
well the tricky bit is .. does this even still work? even if it does today .. how long will it still work? if at all we need to set a fixed release here imho
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.
+1 for locking on a specific commit or alphaX tag.
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.
Yeah, let's change it to a specific alpha tag.
It is indeed a bit tricky. To be honest, the whole tutorial is tricky. It is almost completely based on unstable features. On the other hand, it is one of the best parts of the docs for beginners currently. That's the reason it is in there.
We might want to check it and see what we get if we remove unstable features for the tutorial. Then we can keep the "old" tutorial in the
dev
branch and merge it when the features are stable.