Skip to content

Commit e74c05e

Browse files
authored
Update README.md
1 parent bd480bc commit e74c05e

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

README.md

-25
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ Welcome to the **SharpAPI Laravel Integration Guide**! This repository provides
1414
3. [Installing the SharpAPI PHP Client](#installing-the-sharpapi-php-client)
1515
4. [Configuration](#configuration)
1616
- [Environment Variables](#environment-variables)
17-
- [Service Provider (Optional)](#service-provider-optional)
1817
5. [Authentication with SharpAPI](#authentication-with-sharpapi)
1918
6. [Making API Calls](#making-api-calls)
2019
- [Example: Generating a Job Description](#example-generating-a-job-description)
@@ -107,30 +106,6 @@ Storing sensitive information like API keys in environment variables is a best p
107106
$apiKey = env('SHARP_API_KEY');
108107
```
109108

110-
### Service Provider (Optional)
111-
112-
If the SharpAPI PHP client offers a Laravel service provider, you can register it for easier integration. Check the SharpAPI documentation for availability.
113-
114-
1. **Register the Service Provider**
115-
116-
Add the service provider to the `providers` array in `config/app.php`:
117-
118-
```php
119-
'providers' => [
120-
// Other Service Providers
121-
122-
SharpAPI\SharpApiServiceProvider::class,
123-
],
124-
```
125-
126-
2. **Publish Configuration (If Available)**
127-
128-
```bash
129-
php artisan vendor:publish --provider="SharpAPI\SharpApiServiceProvider"
130-
```
131-
132-
This step is optional and depends on whether SharpAPI provides a configuration file.
133-
134109
---
135110

136111
## Authentication with SharpAPI

0 commit comments

Comments
 (0)