Skip to content

Commit 1fc33f9

Browse files
authored
Merge pull request #46 from chadicus/master
Remove deprecated dependencies
2 parents 66c1a21 + 2fb6184 commit 1fc33f9

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ before_script:
1515
- composer update $PREFER_LOWEST
1616
script:
1717
- ./vendor/bin/phpunit --coverage-clover clover.xml
18-
after_success: ./vendor/bin/coveralls -v
18+
after_success: ./vendor/bin/php-coveralls -v

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@
2424
"php": "^7.0",
2525
"ext-curl": "*",
2626
"lib-curl": "~7.15",
27-
"chadicus/psr-cache-helper": "^0.3.0",
28-
"traderinteractive/util": "^3.0",
2927
"guzzlehttp/guzzle": "^6.3",
3028
"psr/http-message": "^1.0",
31-
"psr/simple-cache": "^1.0"
29+
"psr/simple-cache": "^1.0",
30+
"subjective-php/psr-cache-helper": "^1.1",
31+
"traderinteractive/util": "^3.0"
3232
},
3333
"config": {
3434
"sort-packages": true
3535
},
3636
"require-dev": {
37-
"php-coveralls/php-coveralls": "^1.0",
37+
"php-coveralls/php-coveralls": "^2.1",
3838
"phpunit/phpunit": "^6.5.2",
3939
"squizlabs/php_codesniffer": "^3.2"
4040
},

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace TraderInteractive\Api;
44

5-
use Chadicus\Psr\SimpleCache\NullCache;
5+
use SubjectivePHP\Psr\SimpleCache\NullCache;
66
use TraderInteractive\Util;
77
use TraderInteractive\Util\Arrays;
88
use TraderInteractive\Util\Http;

tests/ClientTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace TraderInteractive\Api;
44

55
use ArrayObject;
6-
use Chadicus\Psr\SimpleCache\InMemoryCache;
6+
use SubjectivePHP\Psr\SimpleCache\InMemoryCache;
77
use DominionEnterprises\Util\Arrays;
88
use DominionEnterprises\Util\Http;
99
use GuzzleHttp\Psr7\Request;

0 commit comments

Comments
 (0)