Install composer dependencies.
composer installCheck updates for composer (PHP)
composer outdatedCheck symfony migration for updates (PHP)
composer recipes:updatePrepare configuration for development.
composer dump-env devVefiy if current configuration is complete.
php bin/console debug:container --env-varsClear runtime cache.
php bin/console cache:clearInstall assets
php bin/console assets:install publicRun all tests.
php bin/phpunitRun all tests in Form directory.
php bin/phpunit tests/FormRun tests in given file.
php bin/phpunit tests/Form/UserTypeTest.phpInstall last LTS nodeJS.
nvm install lts
nvm use ltsInstall yarn dependencies
corepack enable
yarn set version stable
yarn installProduce encode JS output
# Script command
yarn build
# Full command
yarn run encore production
# Full command for dev
yarn run encore devUpdate Yarn packages
yarn upgrade-interactive