PHP code example of spinen / connectwise-php-client
1. Go to this page and download the library: Download spinen/connectwise-php-client library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
spinen / connectwise-php-client example snippets
'providers' => [
# other providers omitted
Spinen\ConnectWise\Laravel\ServiceProvider::class,
],
'connectwise' => [
'client_id' => env('CW_CLIENT_ID'),
'company_id' => env('CW_COMPANY_ID'),
// Optional member id to use if there is not a logged in user
'default_member_id' => env('CW_DEFAULT_MEMBER_ID'),
'integrator' => env('CW_INTEGRATOR'),
'password' => env('CW_PASSWORD'),
'url' => env('CW_URL'),
// Optional version of the API models to use
//'version' => '' // default is the latest supported
],