Skip to content

Commit

Permalink
agregamos phpunit 7.x
Browse files Browse the repository at this point in the history
  • Loading branch information
cesargb committed Feb 8, 2018
1 parent 37c25c1 commit 7db14eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@
}
],
"require": {
"php": "^5.6 || ^7.0",
"guzzlehttp/guzzle": "~6.0 || ~5.3.1"
"php": "^5.6|^7.0",
"guzzlehttp/guzzle": "~6.0|~5.3.1"
},
"autoload": {
"psr-4": {
"Descom\\Sms\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^5.7"
"phpunit/phpunit": "^5.7|^7.0"
},
"autoload-dev": {
"psr-4": {
"Descom\\Sms\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit"
"test": "vendor/bin/phpunit"
}
}

0 comments on commit 7db14eb

Please sign in to comment.