├── LICENSE ├── README.md ├── composer.json ├── example.php └── src └── CBOR ├── CBOREncoder.php ├── CBORIncorrectAdditionalInfoException.php └── Types └── CBORByteString.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2tvenom/CBOREncode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2tvenom/CBOREncode/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2tvenom/CBOREncode/HEAD/composer.json -------------------------------------------------------------------------------- /example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2tvenom/CBOREncode/HEAD/example.php -------------------------------------------------------------------------------- /src/CBOR/CBOREncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2tvenom/CBOREncode/HEAD/src/CBOR/CBOREncoder.php -------------------------------------------------------------------------------- /src/CBOR/CBORIncorrectAdditionalInfoException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2tvenom/CBOREncode/HEAD/src/CBOR/CBORIncorrectAdditionalInfoException.php -------------------------------------------------------------------------------- /src/CBOR/Types/CBORByteString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2tvenom/CBOREncode/HEAD/src/CBOR/Types/CBORByteString.php --------------------------------------------------------------------------------