Web application - ThiReMa
v1.0.0-stable
Installazione e primo avvio
- composer update
- npm install
- npm run dev
- php artisan serve
🔥
In caso di corruzione JS npm install --package-lock
🔥
Comandi per il code style JS - Check:
npm run prettier-eslint-check
npm run prettier-eslint-test-check
- Autofix:
npm run prettier-eslint
npm run prettier-eslint-test
Comandi per i test JS
npm test
Comandi per il code style PHP
- Check:
vendor/bin/phpcs -s
vendor/bin/php-cs-fixer fix --config=.php_cs.php --dry-run -vvv
- Autofix:
vendor/bin/phpcbf -n
vendor/bin/php-cs-fixer fix --config=.php_cs.php --diff -vvv
Comandi per i test PHP
vendor/bin/phpunit -c phpunit.xml