Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9c04639

Browse files
author
Joe Bennett
committed
#27345 Added Lock/Store/MongoDbStore
1 parent 71c33c1 commit 9c04639

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

phpunit.xml.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
<env name="LDAP_PORT" value="3389" />
2020
<env name="REDIS_HOST" value="localhost" />
2121
<env name="MEMCACHED_HOST" value="localhost" />
22+
<env name="MONGODB_HOST" value="localhost" />
2223
<env name="ZOOKEEPER_HOST" value="localhost" />
2324
</php>
2425

src/Symfony/Component/Lock/composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@
2020
"psr/log": "~1.0"
2121
},
2222
"require-dev": {
23-
"predis/predis": "~1.0",
24-
"doctrine/dbal": "~2.4"
23+
"doctrine/dbal": "~2.4",
24+
"mongodb/mongodb": "~1.1",
25+
"predis/predis": "~1.0"
2526
},
2627
"autoload": {
2728
"psr-4": { "Symfony\\Component\\Lock\\": "" },

src/Symfony/Component/Lock/phpunit.xml.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<ini name="error_reporting" value="-1" />
1313
<env name="REDIS_HOST" value="localhost" />
1414
<env name="MEMCACHED_HOST" value="localhost" />
15+
<env name="MONGODB_HOST" value="localhost" />
1516
<env name="ZOOKEEPER_HOST" value="localhost" />
1617
</php>
1718

0 commit comments

Comments
 (0)