From 39e8df54f2632d35e724162217eeab42e8946a16 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Thu, 11 May 2017 11:15:54 +0200 Subject: [PATCH 1/2] Changed Composer package type to phpcodesniffer-standard --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 0c09cd0..e3f4536 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "escapestudios/symfony2-coding-standard", - "type": "coding-standard", + "type": "phpcodesniffer-standard", "description": "CodeSniffer ruleset for the Symfony 2+ coding standard", "keywords": ["Symfony2", "Symfony", "coding standard", "phpcs"], "homepage": "https://github.com/djoos/Symfony2-coding-standard", From 32ab82e9147a7421d85f4b1f9d2f0d44821d8c93 Mon Sep 17 00:00:00 2001 From: David Joos Date: Thu, 8 Jun 2017 12:05:25 +0100 Subject: [PATCH 2/2] Allow HHVM failures --- .travis.yml | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3908ddf..72e3985 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,16 @@ language: php -php: - - 5.3 - - 5.4 - - 5.5 - - 5.6 - - 7.0 - - hhvm +matrix: + include: + - php: 5.4 + - php: 5.5 + - php: 5.6 + - php: 7.0 + - php: hhvm + - php: hhvm-nightly + allow_failures: + - php: hhvm + - php: hhvm-nightly # @todo take out plaster for getting Travis CI tests working again on PHP7 ---> # More information? @@ -27,11 +31,3 @@ before_script: script: - ant travis - -branches: - except: - - jenkins - -notifications: - email: - - dev@escapestudios.com