Skip to content

Commit 49c8a16

Browse files
authored
Update README.md
1 parent 19fd3e5 commit 49c8a16

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This package is an SDK for the REST API.
44

55
## Basics
66

7-
The SDK on [GitHub](https://github.com/preprio/php-sdk)
7+
The SDK on [GitHub](https://github.com/preprio/php-rest-sdk)
88

99
Minimal PHP version: `^8.2`
1010

@@ -17,7 +17,7 @@ For Laravel projects we recommend using the Laravel providers for [REST](https:/
1717
You can install the SDK as a composer package.
1818

1919
```bash
20-
composer require preprio/php-sdk
20+
composer require preprio/php-rest-sdk
2121
```
2222

2323
## Making your first request
@@ -27,7 +27,7 @@ Let's start with getting some content items from your Prepr environment.
2727
```php
2828
<?php
2929

30-
use Preprio\Prepr;
30+
use Preprio\PhpRestSdk;
3131

3232
$apiRequest = new Prepr('{ACCESS_TOKEN}');
3333

@@ -50,7 +50,7 @@ To get a single content item, pass the ID to the request.
5050
```php
5151
<?php
5252

53-
use Preprio\Prepr;
53+
use Preprio\PhpRestSdk;
5454

5555
$apiRequest = new Prepr('{ACCESS_TOKEN}');
5656

0 commit comments

Comments
 (0)