├── .gitattributes ├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Bee.php ├── File.php └── Torrent.php └── tests ├── 1992-06-15.torrent ├── BeeTest.php ├── TorrentTest.php ├── TorrentTestMultiFile.php ├── multifile.torrent └── ubuntu-13.10-desktop-amd64.iso.torrent /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | *.torrent binary -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devristo/torrent/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devristo/torrent/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devristo/torrent/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devristo/torrent/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devristo/torrent/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Bee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devristo/torrent/HEAD/src/Bee.php -------------------------------------------------------------------------------- /src/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devristo/torrent/HEAD/src/File.php -------------------------------------------------------------------------------- /src/Torrent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devristo/torrent/HEAD/src/Torrent.php -------------------------------------------------------------------------------- /tests/1992-06-15.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devristo/torrent/HEAD/tests/1992-06-15.torrent -------------------------------------------------------------------------------- /tests/BeeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devristo/torrent/HEAD/tests/BeeTest.php -------------------------------------------------------------------------------- /tests/TorrentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devristo/torrent/HEAD/tests/TorrentTest.php -------------------------------------------------------------------------------- /tests/TorrentTestMultiFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devristo/torrent/HEAD/tests/TorrentTestMultiFile.php -------------------------------------------------------------------------------- /tests/multifile.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devristo/torrent/HEAD/tests/multifile.torrent -------------------------------------------------------------------------------- /tests/ubuntu-13.10-desktop-amd64.iso.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devristo/torrent/HEAD/tests/ubuntu-13.10-desktop-amd64.iso.torrent --------------------------------------------------------------------------------