Skip to content

Commit 72f9aed

Browse files
committed
Minor
1 parent 150c220 commit 72f9aed

File tree

4 files changed

+5
-61
lines changed

4 files changed

+5
-61
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# MongoDB PSR-6 adapter
22
[![Build Status](https://travis-ci.org/php-cache/mongodb-adapter.svg?branch=master)](https://travis-ci.org/php-cache/mongodb-adapter) [![codecov.io](https://codecov.io/github/php-cache/mongodb-adapter/coverage.svg?branch=master)](https://codecov.io/github/php-cache/mongodb-adapter?branch=master)
33

4-
This is a implementation for the PSR-6 for an mongodb cache. This implementation supports tags.
4+
This is a implementation for the PSR-6 for a MongoDB cache. This implementation supports tags.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828
"require":
2929
{
3030
"php": "^5.5|^7.0",
31-
"ext-mongodb": "*",
3231
"psr/cache": "1.0.0",
3332
"cache/adapter-common": "^0.1",
34-
"cache/taggable-cache": "^0.2"
33+
"cache/taggable-cache": "^0.2",
34+
"mongodb/mongodb": "^1.0"
3535
},
3636
"require-dev":
3737
{

src/MongoCachePool.php

Lines changed: 0 additions & 56 deletions
This file was deleted.

tests/IntegrationPoolTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
namespace Cache\Adapter\MongoDB\Tests;
1313

1414
use Cache\Adapter\MongoDB\MongoDBCachePool;
15-
use Cache\IntegrationTests\CachePoolTest as BaseTest;
15+
use Cache\IntegrationTests\CachePoolTest;
1616

17-
class IntegrationPoolTest extends BaseTest
17+
class IntegrationPoolTest extends CachePoolTest
1818
{
1919
public function createCachePool()
2020
{

0 commit comments

Comments
 (0)