You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -11,9 +11,9 @@ This library provides a PHP SDK for the SuperOffice [REST WebAPI](https://commun
11
11
**This library's functionality is currently limited to Projects, Appointments and Documents, but it should be easy enough to expand it to other SuperOffice types as well if you need them - just note that some work is needed.**
12
12
13
13
## Installation
14
-
The recommended way to install this library is with [Composer](http://getcomposer.org/), by adding the [`superoffice-webapi`](https://packagist.org/packages/roydejong/superoffice-webapi) package as a dependency to your application:
14
+
The recommended way to install this library is with [Composer](http://getcomposer.org/), by adding the [`superoffice-webapi`](https://packagist.org/packages/SoftwarePunt/superoffice-webapi) package as a dependency to your application:
15
15
16
-
composer require roydejong/superoffice-webapi
16
+
composer require softwarepunt/superoffice-webapi
17
17
18
18
## Configuration
19
19
@@ -26,8 +26,8 @@ When initializing the client, you must pass a `Config` object:
26
26
```php
27
27
<?php
28
28
29
-
use roydejong\SoWebApi\Client;
30
-
use roydejong\SoWebApi\Config;
29
+
use SoftwarePunt\SoWebApi\Client;
30
+
use SoftwarePunt\SoWebApi\Config;
31
31
32
32
$config = new Config();
33
33
$config->environment = "sod";
@@ -71,7 +71,7 @@ After setting your configuration, you can ask the client to generate the OAuth a
0 commit comments