Download the PHP package limych/foxy-tools without Composer

On this page you can find all versions of the php package limych/foxy-tools. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package foxy-tools

Foxy-Tools

“I solemnly swear that I am planning a prank, and only prank…”

Latest Stable Version Latest Unstable Version License composer.lock Dependency Status GitHub issues GitHub pull requests

Foxy-Tools — is a set of PHP-tools for not quite legal cases on the web.

Instalation

Using Composer

Composer is the recommended way to install Foxy-Tools. Alternatively, if you prefer not to use Composer, but want to install Foxy-Tools, you can do so by doing a direct download.

Currently, Foxy-Tools is available at packagist.org. To use it in your project, you need to include it as a dependency in your project composer.json file.

Instructions

  1. Download Composer if not already installed
  2. Go to your project directory. If you do not have one, just create a directory and cd in.

  3. Execute composer require "paypal/rest-api-sdk-php:*" on command line. Replace composer with composer.phar if required. It should show something like this:

Using direct download

If you do not want to use composer, you can grab the zip that contains Foxy-Tools with all its dependencies with it.

Instructions

  1. Download latest/desired release zip file from Releases Section
  2. Go to your project directory. If you do not have one, just create a directory and cd in.

  3. Unzip, and copy directory to your project location

Usage

Proxy format

{type}://{user}:{password}@{host}:{port}

Some examples:

183.95.132.76
195.5.18.41:8118
socks5://195.5.18.41:8118
socks5://user:[email protected]:8118

Check one proxy

$pingUrl = 'http://yourdomain.com/ping.php';
$proxy = 'xxx.xxx.xxx.xxx:xx';

$proxyChecker = new ProxyChecker($pingUrl);
$results = $proxyChecker->checkProxy($proxy);

Check several proxies

$pingUrl = 'http://yourdomain.com/ping.php';
$proxies = array('xxx.xxx.xxx.xxx:xx', 'xxx.xxx.xxx.xxx:xx');

$proxyChecker = new ProxyChecker($pingUrl);
$results = $proxyChecker->checkProxies($proxies);

Result

Allowed/Disallowed

Array allowed/disallowed operations of proxy (get, post, referer, cookie, user_agent), for example:

'allowed' => array (
    0 => 'get',
    1 => 'post',
    2 => 'referer',
    3 => 'user_agent'
)

'disallowed' => array (
    0 => 'cookie'
)

Proxy level

Other info

Other proxy info - time, http code, redirect count, speed etc:

'info' => array (
  'content_type' => 'text/html',
  'http_code' => 200,
  'header_size' => 237,
  'request_size' => 351,
  'ssl_verify_result' => 0,
  'redirect_count' => 0,
  'total_time' => 1.212548,
  'connect_time' => 0.058647,
  'size_upload' => 143,
  'size_download' => 485,
  'speed_download' => 399,
  'speed_upload' => 117,
  'download_content_length' => 485,
  'upload_content_length' => 143,
  'starttransfer_time' => 1.059746,
  'redirect_time' => 0,
  'certinfo' => array (),
)

All versions of foxy-tools with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package limych/foxy-tools contains the following files

Loading the files please wait ....