Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update codestyle.md #1

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions versioned_docs/version-5.2/get-started/codestyle.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,15 @@ To run the code sniffer/fixer you need to start a terminal, navigate to your Joo

### Checking for code style violations

To facilitate this process, we have prepared a shortcut script command.

- ```composer run phpcs```
- ```composer run csfixer```

For reference and to adjust to other needs, here the complete command:

```./libraries/vendor/bin/phpcs --extensions=php -p --standard=ruleset.xml .```
```./libraries/vendor/bin/php-cs-fixer fix -vvv --dry-run --diff```

This will run the code style check for the whole Joomla! installation, including your extensions, when installed in Joomla!

Expand Down