├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config.m4 ├── crc16.c ├── php_phpiredis.h ├── php_phpiredis_struct.h ├── phpiredis.c ├── tests ├── client_001.phpt ├── client_002.phpt ├── client_003.phpt ├── client_004.phpt ├── client_005.phpt ├── client_006.phpt ├── client_007.phpt ├── client_008.phpt ├── client_009.phpt ├── client_010.phpt ├── client_011.phpt ├── reader_001.phpt ├── reader_002.phpt ├── reader_003.phpt ├── reader_004.phpt ├── reader_005.phpt ├── reader_006.phpt ├── reader_007.phpt ├── reader_008.phpt ├── reader_009.phpt ├── reader_010.phpt ├── reader_011.phpt ├── reader_012.phpt ├── reader_013.phpt ├── serializer_001.phpt ├── serializer_002.phpt ├── testsuite_configuration.inc ├── testsuite_skipif.inc ├── testsuite_utilities.inc └── utils_001.phpt └── travis_cflags.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/README.md -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/config.m4 -------------------------------------------------------------------------------- /crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/crc16.c -------------------------------------------------------------------------------- /php_phpiredis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/php_phpiredis.h -------------------------------------------------------------------------------- /php_phpiredis_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/php_phpiredis_struct.h -------------------------------------------------------------------------------- /phpiredis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/phpiredis.c -------------------------------------------------------------------------------- /tests/client_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/client_001.phpt -------------------------------------------------------------------------------- /tests/client_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/client_002.phpt -------------------------------------------------------------------------------- /tests/client_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/client_003.phpt -------------------------------------------------------------------------------- /tests/client_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/client_004.phpt -------------------------------------------------------------------------------- /tests/client_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/client_005.phpt -------------------------------------------------------------------------------- /tests/client_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/client_006.phpt -------------------------------------------------------------------------------- /tests/client_007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/client_007.phpt -------------------------------------------------------------------------------- /tests/client_008.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/client_008.phpt -------------------------------------------------------------------------------- /tests/client_009.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/client_009.phpt -------------------------------------------------------------------------------- /tests/client_010.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/client_010.phpt -------------------------------------------------------------------------------- /tests/client_011.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/client_011.phpt -------------------------------------------------------------------------------- /tests/reader_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/reader_001.phpt -------------------------------------------------------------------------------- /tests/reader_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/reader_002.phpt -------------------------------------------------------------------------------- /tests/reader_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/reader_003.phpt -------------------------------------------------------------------------------- /tests/reader_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/reader_004.phpt -------------------------------------------------------------------------------- /tests/reader_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/reader_005.phpt -------------------------------------------------------------------------------- /tests/reader_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/reader_006.phpt -------------------------------------------------------------------------------- /tests/reader_007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/reader_007.phpt -------------------------------------------------------------------------------- /tests/reader_008.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/reader_008.phpt -------------------------------------------------------------------------------- /tests/reader_009.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/reader_009.phpt -------------------------------------------------------------------------------- /tests/reader_010.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/reader_010.phpt -------------------------------------------------------------------------------- /tests/reader_011.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/reader_011.phpt -------------------------------------------------------------------------------- /tests/reader_012.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/reader_012.phpt -------------------------------------------------------------------------------- /tests/reader_013.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/reader_013.phpt -------------------------------------------------------------------------------- /tests/serializer_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/serializer_001.phpt -------------------------------------------------------------------------------- /tests/serializer_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/serializer_002.phpt -------------------------------------------------------------------------------- /tests/testsuite_configuration.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/testsuite_configuration.inc -------------------------------------------------------------------------------- /tests/testsuite_skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/testsuite_skipif.inc -------------------------------------------------------------------------------- /tests/testsuite_utilities.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/testsuite_utilities.inc -------------------------------------------------------------------------------- /tests/utils_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/tests/utils_001.phpt -------------------------------------------------------------------------------- /travis_cflags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrk/phpiredis/HEAD/travis_cflags.sh --------------------------------------------------------------------------------