From 67241c8d54e233f5259e27b079ec3a164fdaf18c Mon Sep 17 00:00:00 2001 From: Joshua Ramon Enslin Date: Sat, 24 Jun 2023 00:21:15 +0200 Subject: [PATCH] Fix links in README --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 634995f..cc8ced2 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,18 @@ # Quality Assurance Settings for museum-digital -Most of the code used at [[https://www.museum-digital.org][museum-digital]] is written in PHP. To keep a uniform code style throughout the code, we use [[https://github.com/squizlabs/PHP_CodeSniffer][PHP Code Sniffer]]. +Most of the code used at [museum-digital](https://www.museum-digital.org) is written in PHP. To keep a uniform code style throughout the code, we use [PHP Code Sniffer](https://github.com/squizlabs/PHP_CodeSniffer). ## Tools used -- [[https://github.com/squizlabs/PHP_CodeSniffer][php-codesniffer]] -- [[https://github.com/phpstan/phpstan][PHPStan - PHP Static Analysis Tool]] -- [[https://phpunit.de/][phpunit]] +- [php-codesniffer](https://github.com/squizlabs/PHP_CodeSniffer) +- [PHPStan - PHP Static Analysis Tool](https://github.com/phpstan/phpstan) +- [phpunit](https://phpunit.de/) ## This Repository This repository serves to collect generally applicable rules, that can be embedded into the specific rule sets of the different projects. -The file `[md_phpcs_rules.xml](./rules/md_phpcs_rules.xml)` contains the main style guide. When rewriting files to fit the uniform style rules, ``[md_phpcs_rules_basic.xml](./rules/md_phpcs_rules_basic.xml)`` comes in handy as a first step. It contains the same rules, excluding some which require or encourage a more in-depth look at the code (the prohibition of procedural-style calls to mysqli functions is e.g. a good opportunity to check the efficiency of queries). +The file [`md_phpcs_rules.xml`](./rules/md_phpcs_rules.xml) contains the main style guide. When rewriting files to fit the uniform style rules, ``[md_phpcs_rules_basic.xml](./rules/md_phpcs_rules_basic.xml)`` comes in handy as a first step. It contains the same rules, excluding some which require or encourage a more in-depth look at the code (the prohibition of procedural-style calls to mysqli functions is e.g. a good opportunity to check the efficiency of queries). ## License