├── .dockerignore ├── .env.example ├── .github ├── FUNDING.yml └── workflows │ ├── docker-image.yml │ ├── php.yml │ └── stale.yml ├── .gitignore ├── Dockerfile ├── README.md ├── composer.json ├── composer.lock ├── docker-compose.yml └── public ├── convert.php ├── download └── README.md ├── includes ├── env.php ├── nav.php └── styles.php ├── index.php ├── info.php ├── logs ├── README.md └── index.php ├── script.js └── search.php /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/.env.example -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/composer.lock -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /public/convert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/public/convert.php -------------------------------------------------------------------------------- /public/download/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/public/download/README.md -------------------------------------------------------------------------------- /public/includes/env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/public/includes/env.php -------------------------------------------------------------------------------- /public/includes/nav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/public/includes/nav.php -------------------------------------------------------------------------------- /public/includes/styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/public/includes/styles.php -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/public/index.php -------------------------------------------------------------------------------- /public/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/public/info.php -------------------------------------------------------------------------------- /public/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/public/logs/README.md -------------------------------------------------------------------------------- /public/logs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/public/logs/index.php -------------------------------------------------------------------------------- /public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/public/script.js -------------------------------------------------------------------------------- /public/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelBelgium/Youtube-API/HEAD/public/search.php --------------------------------------------------------------------------------