diff --git a/.travis.yml b/.travis.yml index f3b5e35..4f44c9a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,9 @@ language: php +dist: trusty php: + - "7.4" + - "7.3" + - "7.2" - "7.1" - "7.0" - "5.6" diff --git a/composer.json b/composer.json index f2afa34..a8dc1ab 100644 --- a/composer.json +++ b/composer.json @@ -1,21 +1,29 @@ { - "name": "codemix/yii2-configloader", - "description": "Build configuration arrays from config files and env vars.", - "keywords": ["yii2", "config", "environment"], - "license": "MIT", - "authors": [ - { - "name": "Michael Härtl", - "email": "haertl.mike@gmail.com" - } - ], - "require": { - "yiisoft/yii2": "*", - "vlucas/phpdotenv": "2.5.*" - }, - "autoload": { - "psr-4": { - "codemix\\yii2confload\\": "src/" - } + "name": "codemix/yii2-configloader", + "description": "Build configuration arrays from config files and env vars.", + "keywords": ["yii2", "config", "environment"], + "license": "MIT", + "authors": [ + { + "name": "Michael Härtl", + "email": "haertl.mike@gmail.com" } + ], + "require": { + "yiisoft/yii2": "*", + "vlucas/phpdotenv": "2.5.*" + }, + "require-dev": { + "phpunit/phpunit": ">4.0 <8" + }, + "autoload": { + "psr-4": { + "codemix\\yii2confload\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "tests\\": "tests" + } + } } diff --git a/tests/BootstrapTest.php b/tests/BootstrapTest.php index 8b4ebec..42c21e6 100644 --- a/tests/BootstrapTest.php +++ b/tests/BootstrapTest.php @@ -1,7 +1,10 @@