From 9940b9dab61a9651aef6a1560b60f030e07dcf70 Mon Sep 17 00:00:00 2001 From: Lewis Larsen Date: Sat, 10 Aug 2024 00:33:30 +0100 Subject: [PATCH] updates --- README.md | 14 +++++++------- composer.json | 13 ++++++------- 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 246a71c..713435b 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ -# VanguardBackup PHP SDK +# Vanguard PHP SDK ## Overview -The VanguardBackup PHP SDK offers a fluent interface for interacting with the VanguardBackup API, enabling efficient management of your backup operations. +The Vanguard PHP SDK offers a fluent interface for interacting with Vanguard's API, enabling efficient management of your backup operations. ## API Documentation -While this SDK provides a convenient way to interact with the VanguardBackup API, you may sometimes need more detailed information about the specific parameters and responses for each endpoint. For comprehensive API documentation, including request/response schemas and example payloads, please refer to our official API documentation: +While this SDK provides a convenient way to interact with Vanguard's API, you may sometimes need more detailed information about the specific parameters and responses for each endpoint. For comprehensive API documentation, including request/response schemas and example payloads, please refer to our official API documentation: -[VanguardBackup API Documentation](https://docs.vanguardbackup.com/api/introduction) +[Vanguard API Documentation](https://docs.vanguardbackup.com/api/introduction) This resource will be invaluable when constructing requests or handling responses, especially for more complex operations not fully abstracted by the SDK. @@ -16,7 +16,7 @@ This resource will be invaluable when constructing requests or handling response ### Installation -Add the VanguardBackup SDK to your project using Composer: +Add the Vanguard PHP SDK to your project using Composer: ```bash composer require vanguardbackup/vanguard-sdk @@ -30,7 +30,7 @@ Create a new instance of the VanguardBackup client: $vanguard = new VanguardBackup\Vanguard\VanguardClient('YOUR_API_KEY'); ``` -For custom VanguardBackup installations, specify the API base URL: +For custom Vanguard installations, specify the API base URL: ```php $vanguard = new VanguardBackup\Vanguard\VanguardClient('YOUR_API_KEY', 'https://your-vanguard-instance.com/api'); @@ -48,7 +48,7 @@ $user = $vanguard->user(); ### Backup Task Management -Backup tasks are central to VanguardBackup operations. Here's how to interact with them: +Backup tasks are central to Vanguard's operations. Here's how to interact with them: ```php // List all backup tasks diff --git a/composer.json b/composer.json index b889508..5618af4 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "vanguardbackup/vanguard-php-sdk", - "description": "The official VanguardBackup PHP SDK.", + "description": "The official Vanguard PHP SDK.", "keywords": ["vanguard", "backup", "sdk", "php"], "license": "MIT", "support": { @@ -14,17 +14,16 @@ } ], "require": { - "php": "^7.2|^8.0", + "php": "^7.2|^8.0|^8.1|^8.2|^8.3|^8.4", "ext-json": "*", - "guzzlehttp/guzzle": "^6.3.1|^7.0" + "guzzlehttp/guzzle": "^7.0" }, "require-dev": { - "roave/security-advisories": "dev-latest" - , + "roave/security-advisories": "dev-latest", "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0", "mockery/mockery": "^1.3.1", "phpstan/phpstan": "^1.10", - "phpunit/phpunit": "^8.4|^9.0|^10.4" + "phpunit/phpunit": "^8.5|^9.0|^10.0" }, "autoload": { "psr-4": { @@ -38,7 +37,7 @@ }, "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-main": "0.x-dev" }, "laravel": { "providers": [