PHP code example of securenative / securenative-php
1. Go to this page and download the library: Download securenative/securenative-php 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/ */
securenative / securenative-php example snippets
use SecureNative\sdk\SecureNative;
use SecureNative\sdk\SecureNativeOptions;
use SecureNative\sdk\EventTypes;
use SecureNative\sdk\SecureNativeContext;
$options = new SecureNativeOptions();
$options->setTimeout(100)
->setApiUrl("API URL")
->setDisable(false)
->setInterval(100)
->setAutoSend(true)
->setMaxEvents(10)
->setLogLevel('fatal');
// Passing `$options` is optional, will use default params
SecureNative::init("[API_KEY]", $options);