Composer¶
Requirements¶
Basic usage¶
This project should always be used together with the create-project
Composer command:
composer create-project cpsit/project-builder <projectname>
Replace <projectname>
with the actual name of your new project. This will
be the folder name where to install and set up your project.
See also
For more command options, refer to the documentation of the
create-project
command.
Recommended usage¶
We recommend using the command like follows:
composer create-project cpsit/project-builder \
--prefer-dist \
--no-dev \
<projectname>
This implies usage of the following options:
--prefer-dist
ensures that only distributed files are installed skipping files that are only relevant for development of this repository--no-dev
speeds up the installation process by skipping dev-requirements (those are only required for development purposes)
Tip
Add the -v
(or --verbose
) command option to get a verbose
output of processing steps.