-
Notifications
You must be signed in to change notification settings - Fork 3
PHPORM-439 Initialize the make:document command
#3
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
d5ebc8e
Setup test
GromNaN 7074f9b
Draft implementation of make:document command
GromNaN cfcb10a
doctrine/mongodb-odm-bundle has now an official recipe
GromNaN fc43e20
Add tests to MongoDBHelper
GromNaN 03a479a
Update attribute namespace for ODM v2.16
GromNaN 986c1d6
Fix tests
GromNaN 05c79a3
Require version 1.x from symfony/maker-bundle, as it exist in my fork…
GromNaN 10d388f
Add symfony/phpunit-bridge because it's symlinked in test environment
GromNaN 6749083
Add mongodb-atlas-local container to tests
GromNaN 88c143d
Add PHP 8.5 polyfill
GromNaN e1ed7e3
Use CPP and nullable coalesce
GromNaN 405de03
Merge ifs
GromNaN eda2e2e
Add exception when the class does not exit
GromNaN 725cf51
Revert "Add exception when the class does not exit"
GromNaN 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 |
|---|---|---|
|
|
@@ -3,5 +3,6 @@ | |
| /composer.lock | ||
| /phpcs.xml | ||
| /phpunit.xml | ||
| /tests/tmp | ||
| /var | ||
| /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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,11 +3,14 @@ | |
| "description": "Symfony MakerBundle for MongoDB ODM", | ||
| "keywords": ["mongodb", "maker", "odm", "dev"], | ||
| "type": "symfony-bundle", | ||
| "repositories": [ | ||
| { "type": "github", "url": "https://github.com/GromNaN/symfony-maker-bundle" } | ||
|
Member
Author
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. I created the branch 1.x on my fork to get all the required PR together. https://github.com/GromNaN/symfony-maker-bundle/tree/1.x |
||
| ], | ||
| "require": { | ||
| "php": "^8.4", | ||
| "ext-mongodb": "^2.1", | ||
| "doctrine/mongodb-odm-bundle": "^5.5", | ||
| "symfony/maker-bundle": "^1.65", | ||
| "symfony/maker-bundle": "dev-develop", | ||
|
GromNaN marked this conversation as resolved.
Outdated
|
||
| "symfony/http-kernel": "^7.4|^8" | ||
| }, | ||
| "require-dev": { | ||
|
|
||
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
Oops, something went wrong.
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.
Noted that this and the
"symfony/maker-bundle": "^1@dev"requirement below are required until your upstream PRs on symfony/maker-bundle are merged.