├── Procfile ├── README.md ├── app.json ├── composer.json ├── composer.lock └── web ├── .htaccess ├── .htpasswd ├── 1.png ├── YouTubeDownloader.php ├── ajax ├── ajax.php ├── api.php └── autocomplete.php ├── channel.php ├── config.php ├── content.php ├── downvideo.php ├── embed ├── index.php ├── tracks.php └── upgrade.php ├── error.php ├── favicon.ico ├── footer.php ├── header.php ├── inc ├── 2.gif ├── 2.svg ├── 4.js ├── 6.png ├── QueryList.php ├── iconfont.css ├── iconfont.eot ├── iconfont.js ├── iconfont.ttf ├── iconfont.woff ├── phpQuery.php └── theme.css ├── index.php ├── install.php ├── lib.php ├── link.php ├── search.php ├── stream.php ├── thumbnail.php ├── tracks.php ├── vs.php └── watch.php /Procfile: -------------------------------------------------------------------------------- 1 | web: vendor/bin/heroku-php-apache2 web/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/app.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/composer.lock -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/.htpasswd: -------------------------------------------------------------------------------- 1 | admin:$apr1$0R.2YgIb$K6IFPjuQkCIbP5sAFvgDR. -------------------------------------------------------------------------------- /web/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/1.png -------------------------------------------------------------------------------- /web/YouTubeDownloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/YouTubeDownloader.php -------------------------------------------------------------------------------- /web/ajax/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/ajax/ajax.php -------------------------------------------------------------------------------- /web/ajax/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/ajax/api.php -------------------------------------------------------------------------------- /web/ajax/autocomplete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/ajax/autocomplete.php -------------------------------------------------------------------------------- /web/channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/channel.php -------------------------------------------------------------------------------- /web/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/config.php -------------------------------------------------------------------------------- /web/content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/content.php -------------------------------------------------------------------------------- /web/downvideo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/downvideo.php -------------------------------------------------------------------------------- /web/embed/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/embed/index.php -------------------------------------------------------------------------------- /web/embed/tracks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/embed/tracks.php -------------------------------------------------------------------------------- /web/embed/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/embed/upgrade.php -------------------------------------------------------------------------------- /web/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/error.php -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/footer.php -------------------------------------------------------------------------------- /web/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/header.php -------------------------------------------------------------------------------- /web/inc/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/inc/2.gif -------------------------------------------------------------------------------- /web/inc/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/inc/2.svg -------------------------------------------------------------------------------- /web/inc/4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/inc/4.js -------------------------------------------------------------------------------- /web/inc/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/inc/6.png -------------------------------------------------------------------------------- /web/inc/QueryList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/inc/QueryList.php -------------------------------------------------------------------------------- /web/inc/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/inc/iconfont.css -------------------------------------------------------------------------------- /web/inc/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/inc/iconfont.eot -------------------------------------------------------------------------------- /web/inc/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/inc/iconfont.js -------------------------------------------------------------------------------- /web/inc/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/inc/iconfont.ttf -------------------------------------------------------------------------------- /web/inc/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/inc/iconfont.woff -------------------------------------------------------------------------------- /web/inc/phpQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/inc/phpQuery.php -------------------------------------------------------------------------------- /web/inc/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/inc/theme.css -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/index.php -------------------------------------------------------------------------------- /web/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/install.php -------------------------------------------------------------------------------- /web/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/lib.php -------------------------------------------------------------------------------- /web/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/link.php -------------------------------------------------------------------------------- /web/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/search.php -------------------------------------------------------------------------------- /web/stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/stream.php -------------------------------------------------------------------------------- /web/thumbnail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/thumbnail.php -------------------------------------------------------------------------------- /web/tracks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/tracks.php -------------------------------------------------------------------------------- /web/vs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/vs.php -------------------------------------------------------------------------------- /web/watch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onplus/you2php-heroku/HEAD/web/watch.php --------------------------------------------------------------------------------