├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── README.md ├── composer.json ├── object-cache.php ├── phpunit.xml.dist └── tests ├── bin └── install-wp-tests.sh ├── bootstrap.php ├── ms-mock.php ├── redis-spy.php └── test-object-cache.php /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | composer.lock 3 | vendor 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pressjitsu/pj-object-cache-red/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pressjitsu/pj-object-cache-red/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pressjitsu/pj-object-cache-red/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pressjitsu/pj-object-cache-red/HEAD/composer.json -------------------------------------------------------------------------------- /object-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pressjitsu/pj-object-cache-red/HEAD/object-cache.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pressjitsu/pj-object-cache-red/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /tests/bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pressjitsu/pj-object-cache-red/HEAD/tests/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pressjitsu/pj-object-cache-red/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/ms-mock.php: -------------------------------------------------------------------------------- 1 |