Skip to content

Commit

Permalink
Downgraded PhpUnit to run with PHP5.6 - Added some more comments
Browse files Browse the repository at this point in the history
  • Loading branch information
oldec committed Mar 27, 2018
1 parent b8de7b6 commit e112b2e
Show file tree
Hide file tree
Showing 16 changed files with 225 additions and 380 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
language: php
php:
- '5.6'
- '7.0'
- '7.1'
- '7.2'
env:
Expand Down
13 changes: 5 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,18 @@
"license": "MIT",
"description": "A small etl coded in php, to extract/transform/load Edit with ease.",
"require": {
"php": "^7.1.3",
"php": ">=5.6.0",
"oliverde8/associative-array-simplified": "^1.0",
"psr/log": "^1.0",
"symfony/yaml": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0"
"phpunit/phpunit": "^5.7"
},
"config": {
"platform": {
"php": "5.6.0"
},
"preferred-install": {
"*": "dist"
},
Expand All @@ -29,12 +32,6 @@
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {

Expand Down
Loading

0 comments on commit e112b2e

Please sign in to comment.