diff --git a/README.md b/README.md index 588a067..b9137c1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ -![Spaces-API](https://imgur.com/NYNsQyl.png "Devang Srivastava's Spaces-API") +# This library is deprecated +We recommend using the [official SDK](https://github.com/DigitalOceanPHP/Client) or the [Laravel package](https://github.com/GrahamCampbell/Laravel-DigitalOcean) -PHP library for accessing Digital Ocean spaces +All issues will be closed and new PRs will not be accepted ## Installation Install via composer @@ -32,6 +33,9 @@ $file2url = $file2->getSignedURL("2 hours"); // Make a copy $file3 = $file2->copy('remote-file-3.txt'); +// Move or rename a file +$file2->move('new-filename.txt') + // Make a file public and get the URL $file3->makePublic(); $file3url = $file3->getURL(); diff --git a/SpacesAPI/Spaces.php b/SpacesAPI/Spaces.php index d822e8a..c248664 100644 --- a/SpacesAPI/Spaces.php +++ b/SpacesAPI/Spaces.php @@ -36,7 +36,7 @@ class Spaces { $this->s3 = new S3Client([ "version" => "latest", - "region" => "us-east-1", + "region" => $region, "endpoint" => "https://$region.$host", "credentials" => ["key" => $accessKey, "secret" => $secretKey], "ua_append" => "SociallyDev-Spaces-API/2", diff --git a/composer.json b/composer.json index a365e90..8eec5d8 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "sociallydev/spaces-api", "description": "Library for accessing Digital Ocean spaces", - "version":"3.6.0", + "version":"3.6.1", "type": "library", "license": "MIT", "authors": [