├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── phpunit.xml ├── src └── Nelexa │ └── Buffer │ ├── Buffer.php │ ├── BufferException.php │ ├── Cast.php │ ├── FileBuffer.php │ ├── MemoryResourceBuffer.php │ ├── ResourceBuffer.php │ ├── StringBuffer.php │ └── TempBuffer.php └── tests └── Nelexa └── Buffer ├── BinaryFormat ├── BinaryFileInterface.php ├── BinaryFileItem.php └── BinaryFileTestFormat.php ├── BufferTestCase.php ├── CastTest.php ├── FileBufferTest.php ├── GetInfoIcoFileTest.php ├── MemoryResourceBufferTest.php ├── ResourceBufferTest.php ├── StringBufferTest.php ├── TempBufferTest.php └── test.ico /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.lock 3 | .DS_Store 4 | /.idea 5 | /.php_cs.cache -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Nelexa/Buffer/Buffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/src/Nelexa/Buffer/Buffer.php -------------------------------------------------------------------------------- /src/Nelexa/Buffer/BufferException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/src/Nelexa/Buffer/BufferException.php -------------------------------------------------------------------------------- /src/Nelexa/Buffer/Cast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/src/Nelexa/Buffer/Cast.php -------------------------------------------------------------------------------- /src/Nelexa/Buffer/FileBuffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/src/Nelexa/Buffer/FileBuffer.php -------------------------------------------------------------------------------- /src/Nelexa/Buffer/MemoryResourceBuffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/src/Nelexa/Buffer/MemoryResourceBuffer.php -------------------------------------------------------------------------------- /src/Nelexa/Buffer/ResourceBuffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/src/Nelexa/Buffer/ResourceBuffer.php -------------------------------------------------------------------------------- /src/Nelexa/Buffer/StringBuffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/src/Nelexa/Buffer/StringBuffer.php -------------------------------------------------------------------------------- /src/Nelexa/Buffer/TempBuffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/src/Nelexa/Buffer/TempBuffer.php -------------------------------------------------------------------------------- /tests/Nelexa/Buffer/BinaryFormat/BinaryFileInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/tests/Nelexa/Buffer/BinaryFormat/BinaryFileInterface.php -------------------------------------------------------------------------------- /tests/Nelexa/Buffer/BinaryFormat/BinaryFileItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/tests/Nelexa/Buffer/BinaryFormat/BinaryFileItem.php -------------------------------------------------------------------------------- /tests/Nelexa/Buffer/BinaryFormat/BinaryFileTestFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/tests/Nelexa/Buffer/BinaryFormat/BinaryFileTestFormat.php -------------------------------------------------------------------------------- /tests/Nelexa/Buffer/BufferTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/tests/Nelexa/Buffer/BufferTestCase.php -------------------------------------------------------------------------------- /tests/Nelexa/Buffer/CastTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/tests/Nelexa/Buffer/CastTest.php -------------------------------------------------------------------------------- /tests/Nelexa/Buffer/FileBufferTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/tests/Nelexa/Buffer/FileBufferTest.php -------------------------------------------------------------------------------- /tests/Nelexa/Buffer/GetInfoIcoFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/tests/Nelexa/Buffer/GetInfoIcoFileTest.php -------------------------------------------------------------------------------- /tests/Nelexa/Buffer/MemoryResourceBufferTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/tests/Nelexa/Buffer/MemoryResourceBufferTest.php -------------------------------------------------------------------------------- /tests/Nelexa/Buffer/ResourceBufferTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/tests/Nelexa/Buffer/ResourceBufferTest.php -------------------------------------------------------------------------------- /tests/Nelexa/Buffer/StringBufferTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/tests/Nelexa/Buffer/StringBufferTest.php -------------------------------------------------------------------------------- /tests/Nelexa/Buffer/TempBufferTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/tests/Nelexa/Buffer/TempBufferTest.php -------------------------------------------------------------------------------- /tests/Nelexa/Buffer/test.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-byte-buffer/HEAD/tests/Nelexa/Buffer/test.ico --------------------------------------------------------------------------------