PHP code example of incraigulous / contentful-sdk

1. Go to this page and download the library: Download incraigulous/contentful-sdk 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/ */

    

incraigulous / contentful-sdk example snippets

``
$result = $deliverySDK->entries()
				->limitByType('CONTENT TYPE ID')
				->where('fields.title', 'match', 'campus')
				->where('fields.location', 'near', '22,23')
				->limit(10)
				->get();
``
$result = $managementSDK->spaces()
				->post(
					new Space('My Space')
				);
``
$result = $managementSDK->assets()->process('ASSET_ID');