From ad3cad662fbf377611c8086ef85139cb4eaf9855 Mon Sep 17 00:00:00 2001 From: Jannik Zschiesche Date: Tue, 30 Apr 2024 16:30:59 +0200 Subject: [PATCH] Use strings to have better syntax highlighting --- docs/php/tooling/janus-php.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/php/tooling/janus-php.mdx b/docs/php/tooling/janus-php.mdx index af9f29d..9928313 100644 --- a/docs/php/tooling/janus-php.mdx +++ b/docs/php/tooling/janus-php.mdx @@ -76,9 +76,9 @@ Your CI should just use the composer scripts: ```yaml title=".gitlab-ci.yml" "Build App": script: - - composer install --optimize-autoloader --classmap-authoritative --no-interaction - - composer run-script lint - - composer run-script test + - "composer install --optimize-autoloader --classmap-authoritative --no-interaction" + - "composer run-script lint" + - "composer run-script test" ```