From f2a017a21cdc16fef32dc35e0c167173215fd4f0 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Wed, 29 Apr 2015 18:54:26 +1200 Subject: [PATCH] Limit compat to 3.1 No longer compatible with 3.2 or higher due to deprecation warnings on has_one() vs hasOne(). --- .travis.yml | 5 ----- README.md | 2 +- composer.json | 4 ++-- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index e2e6bf3..77e8776 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,11 +8,6 @@ php: env: - DB=MYSQL CORE_RELEASE=3.1 -matrix: - include: - - php: 5.4 - env: DB=MYSQL CORE_RELEASE=3 - before_script: - pear -q install --onlyreqdeps pear/PHP_CodeSniffer - phpenv rehash diff --git a/README.md b/README.md index e7ee313..aa75431 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Note: This module was originally part of the SilverStripe CMS 2.x codebase. ## Requirements ## - * SilverStripe Framework 3.1+ and CMS 3.1+ + * SilverStripe Framework 3.1 and CMS 3.1 ## Maintainers ## diff --git a/composer.json b/composer.json index 594557f..b15f4a1 100644 --- a/composer.json +++ b/composer.json @@ -15,8 +15,8 @@ "require": { "php": ">=5.3.2", - "silverstripe/framework": "~3.1", - "silverstripe/cms": "~3.1" + "silverstripe/framework": "3.1.*", + "silverstripe/cms": "3.1.*" }, "require-dev": { "silverstripe/postgresql": "*",