├── .gitignore ├── LICENSE ├── README.markdown ├── lib └── Bencode.php └── tests └── Bencode.php /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/bencode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/bencode/HEAD/README.markdown -------------------------------------------------------------------------------- /lib/Bencode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/bencode/HEAD/lib/Bencode.php -------------------------------------------------------------------------------- /tests/Bencode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/bencode/HEAD/tests/Bencode.php --------------------------------------------------------------------------------