PHP code example of proxymakers / proxymakers-php
1. Go to this page and download the library: Download proxymakers/proxymakers-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/ */
proxymakers / proxymakers-php example snippets
$pm = new ProxyMakers\API\ProxyMakers($token);
// use the method you want, ex:
var_dump($pm->checkCredit()->getData());
Route::get('/', function (\ProxyMakers\API\ProxyMakers $pm) {
dd($pm->checkCredit()->getData());
});
$pm = resolve('ProxyMakers\\API\\ProxyMakers');
dd($pm->checkCredit()->getData());