From 9787e27283b547dbbde461433119e5b46892c708 Mon Sep 17 00:00:00 2001 From: slvler <56368718+slvler@users.noreply.github.com> Date: Tue, 7 Nov 2023 01:50:38 +0300 Subject: [PATCH] Update README.md --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 23fe85d..375b2a7 100644 --- a/README.md +++ b/README.md @@ -26,13 +26,12 @@ To install this package tou can use composer: php artisan vendor:publish --tag=covalenthq ``` -- API key to be obtained from covalenthq.com address should be declared. + +- First of all we'll add the API key and API Url of the service we're using to our .env file of our project. API key to be obtained from covalenthq.com address should be declared. ```php - 'covalent' => [ - 'base_url' => 'https://api.covalenthq.com/', - 'api_key' => 'XXXXXXXXXXXXXXXXXXXXXXXX' - ] + COVALENTHQ_BASE_URL=https://api.covalenthq.com + COVALENTHQ_API_KEY=YOUR-API-KEY ``` - This is how you can connect to the covalenthq service.