├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src └── NextcloudApiWrapper ├── AbstractClient.php ├── AppsClient.php ├── Connection.php ├── FederatedCloudSharesClient.php ├── GroupsClient.php ├── NCException.php ├── NextcloudResponse.php ├── SharesClient.php ├── UsersClient.php └── Wrapper.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | .DS_STORE 4 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovesco/nextcloud-api-wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovesco/nextcloud-api-wrapper/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovesco/nextcloud-api-wrapper/HEAD/composer.json -------------------------------------------------------------------------------- /src/NextcloudApiWrapper/AbstractClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovesco/nextcloud-api-wrapper/HEAD/src/NextcloudApiWrapper/AbstractClient.php -------------------------------------------------------------------------------- /src/NextcloudApiWrapper/AppsClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovesco/nextcloud-api-wrapper/HEAD/src/NextcloudApiWrapper/AppsClient.php -------------------------------------------------------------------------------- /src/NextcloudApiWrapper/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovesco/nextcloud-api-wrapper/HEAD/src/NextcloudApiWrapper/Connection.php -------------------------------------------------------------------------------- /src/NextcloudApiWrapper/FederatedCloudSharesClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovesco/nextcloud-api-wrapper/HEAD/src/NextcloudApiWrapper/FederatedCloudSharesClient.php -------------------------------------------------------------------------------- /src/NextcloudApiWrapper/GroupsClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovesco/nextcloud-api-wrapper/HEAD/src/NextcloudApiWrapper/GroupsClient.php -------------------------------------------------------------------------------- /src/NextcloudApiWrapper/NCException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovesco/nextcloud-api-wrapper/HEAD/src/NextcloudApiWrapper/NCException.php -------------------------------------------------------------------------------- /src/NextcloudApiWrapper/NextcloudResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovesco/nextcloud-api-wrapper/HEAD/src/NextcloudApiWrapper/NextcloudResponse.php -------------------------------------------------------------------------------- /src/NextcloudApiWrapper/SharesClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovesco/nextcloud-api-wrapper/HEAD/src/NextcloudApiWrapper/SharesClient.php -------------------------------------------------------------------------------- /src/NextcloudApiWrapper/UsersClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovesco/nextcloud-api-wrapper/HEAD/src/NextcloudApiWrapper/UsersClient.php -------------------------------------------------------------------------------- /src/NextcloudApiWrapper/Wrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovesco/nextcloud-api-wrapper/HEAD/src/NextcloudApiWrapper/Wrapper.php --------------------------------------------------------------------------------