forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MDL-54592 cachestore_mongodb: MongoDB cache store use new driver.
The scope of this change is limited to modifying the MongoDB cache plugin to use the new version of the driver that accepts PHP 7.x versions. Following the instructions in the official MongoDB documentation, https://docs.mongodb.com/php-library/current/, the MongoDB PHP Library was included and used.
- Loading branch information
Showing
8 changed files
with
87 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
MongoDB PHP | ||
----------- | ||
|
||
Downloaded from https://github.com/mongodb/mongo-php-library | ||
|
||
Last commit on download: aac8e54009196f6544e50baf9b63dcf0eab3bbdf | ||
|
||
This version (1.4) requires PHP mongodb extension >= 1.5 | ||
|
||
Import procedure: | ||
|
||
- Copy all the files and folders from the folder mongodb/src in this directory. | ||
- Copy the license file from the project root. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0"?> | ||
<libraries> | ||
<library> | ||
<location>MongoDB</location> | ||
<name>MongoDB PHP Library</name> | ||
<license>Apache</license> | ||
<version>1.4</version> | ||
<licenseversion>2.0</licenseversion> | ||
</library> | ||
</libraries> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters