├── .github └── ISSUE_TEMPLATE │ ├── bug.yaml │ ├── documentation.yaml │ └── feature.yaml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── composer.json ├── docker-compose.yml ├── global.inc.php ├── playground.php ├── resources ├── code.tar.gz ├── composer.json └── src │ └── index.php └── test.txt /.github/ISSUE_TEMPLATE/bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-php/HEAD/.github/ISSUE_TEMPLATE/bug.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-php/HEAD/.github/ISSUE_TEMPLATE/documentation.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-php/HEAD/.github/ISSUE_TEMPLATE/feature.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | appwrite 4 | .idea 5 | .vscode 6 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-php/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-php/HEAD/composer.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-php/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /global.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-php/HEAD/global.inc.php -------------------------------------------------------------------------------- /playground.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-php/HEAD/playground.php -------------------------------------------------------------------------------- /resources/code.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-php/HEAD/resources/code.tar.gz -------------------------------------------------------------------------------- /resources/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-php/HEAD/resources/composer.json -------------------------------------------------------------------------------- /resources/src/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-php/HEAD/resources/src/index.php -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- 1 | Test file to Upload --------------------------------------------------------------------------------