First choose a name for your project. In this example, our project is called "the_oregon_trail"
$ composer create-project -n concrete5/composer the_oregon_trail
Now you have the latest version of concrete5 and you're ready to install!
Note: This is a skeleton project. So once you create a project, you can install your own VCS and change the README and all that.
First create a new project
$ composer create-project -n concrete5/composer the_oregon_trail
Then navigate into that project and require the dev-develop
version of concrete5/core
$ cd the_oregon_trail
$ composer require concrete5/core:dev-develop
Navigate into your new concrete5 project
$ cd the_oregon_trail
and use the interactive install commmand that comes with concrete5's CLI tool
$ ./vendor/bin/concrete5 c5:install -i
Follow directions and your site will begin installing!
Note: You can also run the CLI tool directly with PHP
$ ./public/concrete/bin/concrete5
Find the package you'd like to install on packagist.org (in this case concrete5/sample_composer_package
)
Note: You can also use composer's repository functionality to manage private packages using composer
$ composer require concrete5/sample_composer_package
$ ./vendor/bin/concrete5 c5:package-install sample_composer_package
This library uses Laravel Mix. See webpack.mix.js.
Using Yarn run (If you're using NPM instead, just swap yarn
for npm
.):
yarn install
yarn dev
To compile assets for development.
Do you want to install an add-on that is free in the concrete5 marketplace, but not on packagist.org? Go to https://composer.concrete5.org.