- PHP
- Composer
- NodeJS + npm
- Bower
- Gulp
If you don't already have node and npm installed, visit the node website to download and install the proper package. npm comes standard with node as a package so no need to install it separately.
Once you have npm, you can use it to install bower.
npm install -g bower
Use this command to install the required packages:
npm install
Use this command to install the required PHP packages:
composer install
- To compile frontend assets (JavaScript + SASS), run
gulp
. - To have gulp watch your work and recompile files as necessary, run
gulp watch
instead. (optional)