├── .env.dist ├── .github └── workflows │ └── metrics.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Procfile ├── README.md ├── app.json ├── composer.json ├── composer.lock ├── config └── global.php ├── phpstan.neon ├── src └── Action │ ├── Archive │ ├── GetAction.php │ ├── ListAction.php │ ├── StartAction.php │ ├── StopAction.php │ └── ViewAction.php │ ├── EventsAction.php │ ├── IndexAction.php │ ├── JoinAction.php │ ├── RoomAction.php │ ├── SessionAction.php │ └── SignalAction.php ├── templates ├── home.html ├── join.html └── view.html └── web ├── .htaccess └── index.php /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/.env.dist -------------------------------------------------------------------------------- /.github/workflows/metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/.github/workflows/metrics.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | storage/ 3 | .env 4 | .php-version 5 | .vscode -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: vendor/bin/heroku-php-apache2 web 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/app.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/composer.lock -------------------------------------------------------------------------------- /config/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/config/global.php -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/phpstan.neon -------------------------------------------------------------------------------- /src/Action/Archive/GetAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/src/Action/Archive/GetAction.php -------------------------------------------------------------------------------- /src/Action/Archive/ListAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/src/Action/Archive/ListAction.php -------------------------------------------------------------------------------- /src/Action/Archive/StartAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/src/Action/Archive/StartAction.php -------------------------------------------------------------------------------- /src/Action/Archive/StopAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/src/Action/Archive/StopAction.php -------------------------------------------------------------------------------- /src/Action/Archive/ViewAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/src/Action/Archive/ViewAction.php -------------------------------------------------------------------------------- /src/Action/EventsAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/src/Action/EventsAction.php -------------------------------------------------------------------------------- /src/Action/IndexAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/src/Action/IndexAction.php -------------------------------------------------------------------------------- /src/Action/JoinAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/src/Action/JoinAction.php -------------------------------------------------------------------------------- /src/Action/RoomAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/src/Action/RoomAction.php -------------------------------------------------------------------------------- /src/Action/SessionAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/src/Action/SessionAction.php -------------------------------------------------------------------------------- /src/Action/SignalAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/src/Action/SignalAction.php -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/templates/join.html -------------------------------------------------------------------------------- /templates/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/templates/view.html -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-php/HEAD/web/index.php --------------------------------------------------------------------------------