Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 56e5c97

Browse files
authoredMay 3, 2018
Merge pull request #430 from turboboy88/mongodb_transport
Mongodb transport
2 parents bf9f57a + dab69f9 commit 56e5c97

File tree

57 files changed

+3301
-11
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+3301
-11
lines changed
 

‎.travis.yml

+5
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ cache:
4444
directories:
4545
- $HOME/.composer/cache
4646

47+
before_install:
48+
- echo "extension = mongodb.so" >> $HOME/.phpenv/versions/$(phpenv version-name)/etc/php.ini
49+
- php -m
50+
- php -i | grep -C 15 mongo
51+
4752
install:
4853
- rm $HOME/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini;
4954
- echo "memory_limit=2048M" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini

‎README.md

+4
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ Features:
6161
[![Build Status](https://travis-ci.org/php-enqueue/fs.png?branch=master)](https://travis-ci.org/php-enqueue/fs)
6262
[![Total Downloads](https://poser.pugx.org/enqueue/fs/d/total.png)](https://packagist.org/packages/enqueue/fs)
6363
[![Latest Stable Version](https://poser.pugx.org/enqueue/fs/version.png)](https://packagist.org/packages/enqueue/fs)
64+
* [Mongodb](docs/transport/mongodb.md)
65+
[![Build Status](https://travis-ci.org/php-enqueue/mongodb.png?branch=master)](https://travis-ci.org/php-enqueue/mongodb)
66+
[![Total Downloads](https://poser.pugx.org/enqueue/mongodb/d/total.png)](https://packagist.org/packages/enqueue/mongodb)
67+
[![Latest Stable Version](https://poser.pugx.org/enqueue/mongodb/version.png)](https://packagist.org/packages/enqueue/mongodb)
6468
* [Null](docs/transport/null.md).
6569
[![Build Status](https://travis-ci.org/php-enqueue/null.png?branch=master)](https://travis-ci.org/php-enqueue/null)
6670
[![Total Downloads](https://poser.pugx.org/enqueue/null/d/total.png)](https://packagist.org/packages/enqueue/null)

0 commit comments

Comments
 (0)
Please sign in to comment.