File tree Expand file tree Collapse file tree 5 files changed +13
-11
lines changed Expand file tree Collapse file tree 5 files changed +13
-11
lines changed Original file line number Diff line number Diff line change 11language : php
22php :
3- - 5.5
4- - 5.4
5- - 7
6- script : phpunit
3+ - 5.6
4+ - 7.1
5+ - 7.2
6+ - 7.3
7+ before_script :
8+ - composer install --prefer-source --no-interaction --dev
9+
10+ script : ./vendor/bin/phpunit
711
812env :
913 - AUTOLOAD=1
10-
11- script : php ./build.php ${AUTOLOAD}
12- after_script : ./vendor/bin/coveralls -v
13- sudo : false
Original file line number Diff line number Diff line change 1+ [ ![ Build Status] ( https://travis-ci.org/robwittman/shopify-php-sdk.svg?branch=master )] ( https://travis-ci.org/robwittman/shopify-php-sdk )
2+
13# Shopify PHP SDK
24
35This SDK was created to enable rapid efficient development using Shopify's API.
Original file line number Diff line number Diff line change 2727 ]
2828 },
2929 "require-dev" : {
30- "phpunit/phpunit" : " ^6 .1" ,
30+ "phpunit/phpunit" : " ^5 .1" ,
3131 "squizlabs/php_codesniffer" : " ^3.0" ,
3232 "overtrue/phplint" : " ^0.2.4"
3333 },
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ abstract class AbstractService
2626 const REQUEST_METHOD_PUT = 'PUT ' ;
2727 const REQUEST_METHOD_DELETE = 'DELETE ' ;
2828
29- public static function factory (ApiInterface $ api ): AbstractService
29+ public static function factory (ApiInterface $ api )
3030 {
3131 return new static ($ api );
3232 }
Original file line number Diff line number Diff line change 1212
1313session_start ();
1414
15- class TestCase extends \PHPUnit \ Framework \TestCase
15+ class TestCase extends \PHPUnit_Framework_TestCase
1616{
1717 public function getApi (array $ params = array ())
1818 {
You can’t perform that action at this time.
0 commit comments