From 358b2b661e4d4f79fae2fe99f3bd7a35a952c607 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 3 Nov 2018 11:40:57 +0100 Subject: [PATCH] Deprecated ci composer command, since it does the same as check, but slower --- .travis.yml | 2 +- composer.json | 10 ++++------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 24ebfc96..085989bb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,7 +26,7 @@ install: script: - mkdir build - - composer ci + - composer check after_success: - rm -f build/clover.xml diff --git a/composer.json b/composer.json index 5a704aa7..9b8c2027 100644 --- a/composer.json +++ b/composer.json @@ -88,17 +88,15 @@ }, "scripts": { "check": [ - "@cs", - "@stan", - "@test", - "@infect" - ], - "ci": [ "@cs", "@stan", "@test:ci", "@infect:ci" ], + "ci": [ + "echo \"This command is DEPRECATED. Use check instead\"", + "@check" + ], "cs": "phpcs", "cs:fix": "phpcbf",