Skip to content

Commit

Permalink
Merge pull request #436 from christeredvartsen/issue-403-new-mongodb-…
Browse files Browse the repository at this point in the history
…extension

New mongodb adapters
  • Loading branch information
christeredvartsen committed Mar 10, 2016
2 parents 64ee612 + 85a3f6d commit 99f3a66
Show file tree
Hide file tree
Showing 18 changed files with 1,998 additions and 184 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ before_install:
- sudo apt-get update
- sudo apt-get -y --reinstall install imagemagick
- printf "\n" | pecl install --force mongo
- printf "\n" | pecl install --force mongodb
- printf "\n" | pecl install --force memcached-2.2.0
- printf "\n" | pecl install apcu-4.0.10
- printf "\n" | pecl install imagick-3.4.0RC2
Expand Down
1 change: 1 addition & 0 deletions ChangeLog.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Imbo-2.x.x
----------
__N/A__

* #436: Added new MongoDB adapters that use the mongodb extension (Christer Edvartsen)
* #434: Custom models for group(s) and access rule(s) (Christer Edvartsen)

Imbo-2.0.0
Expand Down
7 changes: 6 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,23 @@
"symfony/http-foundation": "~2.7.3",
"symfony/event-dispatcher": "~2.7.3",
"symfony/console": "~2.7.3",
"ramsey/uuid": "~3.0.0"
"ramsey/uuid": "~3.0.0",
"mongodb/mongodb": "~1.0.0"
},
"require-dev": {
"symfony/filesystem": "~2.8.3",
"mikey179/vfsStream": "~1.5.0",
"phpunit/phpunit": "~4.8",
"behat/behat": "~2.0",
"guzzle/guzzle": "~3.9.3",
"doctrine/dbal": "~2.5.1",
"doctrine/common": "~2.5.3",
"doctrine/cache": "~1.5.4",
"aws/aws-sdk-php": "~2.8"
},
"suggest": {
"ext-mongo": "Enables usage of MongoDB and GridFS as database and store. Recommended version: >=1.4.0",
"ext-mongodb": "Enables usage of the new MongoDB extension. Recommended version: >=1.1.3",
"ext-memcached": "Enables usage of the Memcached cache adapter for custom event listeners. Recommended version: >=2.0.0",
"doctrine/dbal": "Enables usage of using RDMS for storing data (and optionally images). Recommended version: >=2.3",
"aws/aws-sdk-php": "Enables usage of the AWS S3 storage adapter. Recommended version >=2.4"
Expand Down

0 comments on commit 99f3a66

Please sign in to comment.