├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src ├── Adapter ├── KickassAdapter.php └── PirateBayAdapter.php ├── BuildUrlTrait.php ├── Categories.php ├── Facades └── Torrent.php ├── HttpClientTrait.php ├── Result └── Torrent.php ├── TorrentAdapterInterface.php ├── TorrentScraper.php └── TorrentServiceProvider.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | .idea 3 | composer.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstien/laravel-torrent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstien/laravel-torrent/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstien/laravel-torrent/HEAD/composer.json -------------------------------------------------------------------------------- /src/Adapter/KickassAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstien/laravel-torrent/HEAD/src/Adapter/KickassAdapter.php -------------------------------------------------------------------------------- /src/Adapter/PirateBayAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstien/laravel-torrent/HEAD/src/Adapter/PirateBayAdapter.php -------------------------------------------------------------------------------- /src/BuildUrlTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstien/laravel-torrent/HEAD/src/BuildUrlTrait.php -------------------------------------------------------------------------------- /src/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstien/laravel-torrent/HEAD/src/Categories.php -------------------------------------------------------------------------------- /src/Facades/Torrent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstien/laravel-torrent/HEAD/src/Facades/Torrent.php -------------------------------------------------------------------------------- /src/HttpClientTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstien/laravel-torrent/HEAD/src/HttpClientTrait.php -------------------------------------------------------------------------------- /src/Result/Torrent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstien/laravel-torrent/HEAD/src/Result/Torrent.php -------------------------------------------------------------------------------- /src/TorrentAdapterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstien/laravel-torrent/HEAD/src/TorrentAdapterInterface.php -------------------------------------------------------------------------------- /src/TorrentScraper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstien/laravel-torrent/HEAD/src/TorrentScraper.php -------------------------------------------------------------------------------- /src/TorrentServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstien/laravel-torrent/HEAD/src/TorrentServiceProvider.php --------------------------------------------------------------------------------