├── .github ├── CODEOWNERS └── workflows │ ├── phpunit.yml │ ├── pr-feedback.yml │ └── reuse.yml ├── .gitignore ├── .htaccess ├── AUTHORS.md ├── LICENSE ├── LICENSES ├── AGPL-3.0-or-later.txt ├── CC0-1.0.txt ├── GPL-2.0-or-later.txt └── MIT.txt ├── README.md ├── REUSE.toml ├── composer.json ├── config ├── config.php └── secrets.dist.php ├── index.php ├── src ├── Config.php └── Response.php └── tests └── unit ├── ResponseTest.php └── phpunit.xml /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/phpunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/.github/workflows/phpunit.yml -------------------------------------------------------------------------------- /.github/workflows/pr-feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/.github/workflows/pr-feedback.yml -------------------------------------------------------------------------------- /.github/workflows/reuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/.github/workflows/reuse.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/.htaccess -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/AGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/LICENSES/AGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/LICENSES/GPL-2.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/REUSE.toml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/config/config.php -------------------------------------------------------------------------------- /config/secrets.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/config/secrets.dist.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/index.php -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/src/Response.php -------------------------------------------------------------------------------- /tests/unit/ResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/tests/unit/ResponseTest.php -------------------------------------------------------------------------------- /tests/unit/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_updater_server/HEAD/tests/unit/phpunit.xml --------------------------------------------------------------------------------