From 44e7daaacfa6dfec4a31bbeeef4bfa1f9b2f6e6a Mon Sep 17 00:00:00 2001 From: jubianchi Date: Fri, 24 Feb 2017 13:15:11 +0100 Subject: [PATCH] Bump dependencies to support atoum 3.x --- .travis.yml | 5 +++++ CHANGELOG.md | 5 +++++ autoloader.php | 10 ---------- composer.json | 7 ++----- 4 files changed, 12 insertions(+), 15 deletions(-) delete mode 100644 autoloader.php diff --git a/.travis.yml b/.travis.yml index 28143aa..ec136cd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ php: - 5.5 - 5.6 - 7.0 + - 7.1 - nightly cache: @@ -25,6 +26,10 @@ matrix: exclude: - php: 7.0 env: COMPOSER_PREFER="--prefer-lowest" + - php: 7.1 + env: COMPOSER_PREFER="--prefer-lowest" + - php: nightly + env: COMPOSER_PREFER="--prefer-lowest" script: - composer update $COMPOSER_PREFER diff --git a/CHANGELOG.md b/CHANGELOG.md index 4410faf..f5a9195 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 1.3.0 - 2017-02-24 + +* [#31](https://github.com/atoum/visibility-extension/pull/31) Support atoum 3.x ([@hywan], [@jubianchi]) + # 1.2.0 - 2017-02-16 * [#13](https://github.com/atoum/visibility-extension/pull/13) Support return type hint ([@jubianchi]) @@ -14,3 +18,4 @@ # 1.0.0 - 2014-12-01 [@jubianchi]: https://github.com/jubianchi +[@hywan]: https://github.com/hywan diff --git a/autoloader.php b/autoloader.php deleted file mode 100644 index edd7615..0000000 --- a/autoloader.php +++ /dev/null @@ -1,10 +0,0 @@ -addNamespaceAlias('atoum\visibility', __NAMESPACE__) - ->addDirectory(__NAMESPACE__, __DIR__ . DIRECTORY_SEPARATOR . 'classes'); -; diff --git a/composer.json b/composer.json index a2aedf8..3c9b273 100644 --- a/composer.json +++ b/composer.json @@ -13,15 +13,12 @@ ], "minimum-stability": "beta", "require": { - "atoum/atoum": "^2.9" + "atoum/atoum": "^2.9 | ^3.0" }, "autoload": { "psr-4": { "mageekguy\\atoum\\visibility\\": "classes" }, - "files": [ - "autoloader.php", - "configuration.php" - ] + "files": ["configuration.php"] } }