Search…
Introduction
Getting Started
Installation
Upgrade Guide
Configuration
Configuration Overview
App Config Reference
Cache Config Reference
Icon Configuration
Hiding Files
Help & Support
Troubleshooting
Common Issues
Developers
Development Environment
Code Analysis & Testing
Building Release Artifacts
Powered By
GitBook
Code Analysis & Testing
Coding Standards
Apply coding standards to all application and tests files
app/vendor/bin/php-cs-fixer fix
npx eslint --fix app/resources/js/**/*.js
or to see the changes before applying
app/vendor/bin/php-cs-fixer fix --diff --dry-run
npx eslint app/resources/js/**/*.js
Static Analysis
app/vendor/bin/psalm
Unit/Feature Tests
app/vendor/bin/phpunit
Code Coverage
app/vendor/bin/phpunit --coverage-text
or generate a more detailed HTML coverage report with
app/vendor/bin/phpunit --coverage-html .coverage
Developers - Previous
Development Environment
Next - Developers
Building Release Artifacts
Last modified
1yr ago
Copy link
Outline
Coding Standards
Static Analysis
Unit/Feature Tests
Code Coverage