File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11language : php
22
33php :
4- - 5.5
5- - 5.6
6- - 7.0
4+ - 7.1
5+ - 7.2
6+ - 7.3
77
88env :
99 matrix :
@@ -15,7 +15,7 @@ before_script:
1515 - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
1616
1717script :
18- - phpunit --coverage-text --coverage-clover=coverage.clover
18+ - vendor/bin/ phpunit --coverage-text --coverage-clover=coverage.clover
1919
2020after_script :
2121 - wget https://scrutinizer-ci.com/ocular.phar
Original file line number Diff line number Diff line change 1717 }
1818 ],
1919 "require" : {
20- "php" : " ^5.5|^7.0 " ,
20+ "php" : " ^7.1 " ,
2121 "guzzlehttp/guzzle" :" ^6.1"
2222 },
2323 "require-dev" : {
24- "phpunit/phpunit" : " 4 .*"
24+ "phpunit/phpunit" : " 7 .*"
2525 },
2626 "autoload" : {
2727 "psr-4" : {
Original file line number Diff line number Diff line change 2222 <logging >
2323 <log type =" tap" target =" build/report.tap" />
2424 <log type =" junit" target =" build/report.junit.xml" />
25- <log type =" coverage-html" target =" build/coverage" charset = " UTF-8 " yui = " true " highlight = " true " />
25+ <log type =" coverage-html" target =" build/coverage" />
2626 <log type =" coverage-text" target =" build/coverage.txt" />
2727 <log type =" coverage-clover" target =" build/logs/clover.xml" />
2828 </logging >
Original file line number Diff line number Diff line change 44
55use GuzzleHttp \Client ;
66use OrgManager \ApiClient \OrgManager ;
7+ use PHPUnit \Framework \TestCase ;
78
8- class OrgManagerTest extends \PHPUnit_Framework_TestCase
9+ class OrgManagerTest extends TestCase
910{
1011 /** @var \OrgManager\ApiClient\OrgManager */
1112 protected $ orgmanager ;
1213
13- public function setUp ()
14+ protected function setUp ()
1415 {
1516 $ this ->orgmanager = new OrgManager ();
1617
You can’t perform that action at this time.
0 commit comments