1. Go to this page and download the library: Download ssnepenthe/soter-core 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/ */
ssnepenthe / soter-core example snippets
$client = new Soter_Core\Api_Client(
new Soter_Core\Cached_Http_Client(
new Soter_Core\WP_Http_Client( 'Some user agent string' ),
new Soter_Core\WP_Transient_Cache( 'unique-prefix', HOUR_IN_SECONDS )
)
);
$plugin = new Soter_Core\Package( 'contact-form-7', Soter_Core\Package::TYPE_PLUGIN, '4.9' );
$response = $client->check( $plugin );
$theme = new Soter_Core\Package( 'twentyfifteen', Soter_Core\Package::TYPE_THEME, '1.8' );
$response = $client->check( $theme );
// WordPress "slug" is the version string stripped of periods.
$wordpress = new Soter_Core\Package( '481', Soter_Core\Package::TYPE_WORDPRESS, '4.8.1' );
$response = $client->check( $wordpress );
$checker = new Soter_Core\Checker(
new Soter_Core\Api_Client(
new Soter_Core\Cached_Http_Client(
new Soter_Core\WP_Http_Client( 'Some user agent string' ),
new Soter_Core\WP_Transient_Cache( 'unique-prefix', HOUR_IN_SECONDS )
)
),
new Soter_Core\WP_Package_Manager()
);