-
Notifications
You must be signed in to change notification settings - Fork 5
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
Integrate option to create project #8
Comments
What's |
Oh sorry, it's just a title like |
reviewing this, it would appear that composer::project should actually be composer::install (or perhaps a type composer_install) composer::create_project could be a separate defined type. |
The reason why I suggest this for This is why I think having this in one place has its merits. Otherwise I'd need a fact/inline template to determine whether to define |
nod |
i'm thinking we should stick to even though our maybe we could add that option, and deprecate target… |
@mbrodala with this now ^ it seems we have a fairly complete design. |
The reasons why I think
|
+1 |
Alright, I'll try to get this working and add a PR. Not sure if I can get around this year though. |
This internally invokes Composer's "create-project" command which allows for creating projects based on other packages. To reduce the number of options the shorthand syntax "<package>:<version>" supported by Composer is promoted. Fixes Brainsware#8
This internally invokes Composer's "create-project" command which allows for creating projects based on other packages. To reduce the number of options the shorthand syntax "<package>:<version>" supported by Composer is promoted. Fixes Brainsware#8
This internally invokes Composer's "create-project" command which allows for creating projects based on other packages. To reduce the number of options the shorthand syntax "<package>:<version>" supported by Composer is promoted. Fixes Brainsware#8
This internally invokes Composer's "create-project" command which allows for creating projects based on other packages. To reduce the number of options the shorthand syntax "<package>:<version>" supported by Composer is promoted. Fixes Brainsware#8
This internally invokes Composer's "create-project" command which allows for creating projects based on other packages. To reduce the number of options the shorthand syntax "<package>:<version>" supported by Composer is promoted. Fixes Brainsware#8
This internally invokes Composer's "create-project" command which allows for creating projects based on other packages. To reduce the number of options the shorthand syntax "<package>:<version>" supported by Composer is promoted. Fixes Brainsware#8
A new option, e.g.
source => '<vendor>/<package>:<version>'
could be integrated to allow executingcomposer create-project <vendor>/<package>:<version> <target>
.Example of the suggested configuration:
This would execute
composer create-project typo3/cms-base-distribution:~6.2 .
in$path
. Notice the trailing dot to ensure creation in the current execution path.The text was updated successfully, but these errors were encountered: