PHP code example of f-oris / easy-sdk-develop
1. Go to this page and download the library: Download f-oris/easy-sdk-develop 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/ */
f-oris / easy-sdk-develop example snippets
namespace Foris\Easy\Sdk\Develop\Tests;
/**
* Class TestCase
*/
class TestCase extends \Foris\Easy\Sdk\Develop\TestCase
{
/**
* Test get demo application instance.
*/
public function testGetDemoApplicationInstance()
{
$this->assertInstanceOf('Foris\Demo\Sdk\Application', $this->app());
}
}