We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9e44340 + 7ef461d commit 518476bCopy full SHA for 518476b
.travis.yml
@@ -42,6 +42,6 @@ before_script:
42
- ulimit -c unlimited -S
43
44
script:
45
- - phpunit --debug || RESULT=$?
+ - ./vendor/bin/phpunit --debug || RESULT=$?
46
- for i in $(find ./ -maxdepth 1 -name 'core*' -print); do gdb `php -r 'echo PHP_BINARY;'` core* -ex "thread apply all bt" -ex "set pagination 0" -batch; done;
47
- if [[ ${RESULT} != 0 ]]; then exit $RESULT ; fi;
composer.json
@@ -13,6 +13,9 @@
13
"php": ">=5.4",
14
"ext-mongodb": "^1.1.0"
15
},
16
+ "require-dev": {
17
+ "phpunit/phpunit": "^4.8"
18
+ },
19
"autoload": {
20
"psr-4": { "MongoDB\\": "src/" },
21
"files": [ "src/functions.php" ]
0 commit comments