From 7326262304140e84aa5b2d57b5c91b3f99f2a707 Mon Sep 17 00:00:00 2001 From: Fonata Date: Fri, 26 Jul 2019 21:49:42 +0200 Subject: [PATCH] Travis conf didn't match schema - PHP versions need to be strings - https://docs.travis-ci.com/user/notifications/#configuring-email-notifications Also: tell editors like PhpStorm how the YAML needs to be formatted. --- .editorconfig | 3 +++ .travis.yml | 19 ++++++++++--------- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/.editorconfig b/.editorconfig index 1997ca9..84fda39 100644 --- a/.editorconfig +++ b/.editorconfig @@ -13,3 +13,6 @@ insert_final_newline = true [composer.json] indent_size = 4 + +[.travis.yml] +indent_size = 2 diff --git a/.travis.yml b/.travis.yml index 8341b0c..3b450d9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,12 @@ language: php php: - - 7.3 - - 7.2 - - 7.1 - - 7.0 - - 5.6 - - 5.5 + - '7.3' + - '7.2' + - '7.1' + - '7.0' + - '5.6' + - '5.5' before_install: - composer update @@ -18,6 +18,7 @@ script: notifications: email: - - will.knauss@gmail.com - on_success: never - on_failure: always + recipients: + - will.knauss@gmail.com + on_success: never + on_failure: always