Skip to content
This repository was archived by the owner on Apr 23, 2020. It is now read-only.

Install.RU

Ivan Dudarev edited this page Oct 7, 2017 · 4 revisions

Install

language: EN RU

Requiriments

  • PHP 5.3 or later
  • PHP Extention PDO
  • PHP Extention PDO SQLite

Install with composer

  1. Add package to requires:
    php composer.phar require ddrv/iptool
    
    {
        "require": {
            "ddrv/iptool":"*"
        }
    }
  2. Run in console
    php composer.phar install
    
  3. Include autoload file
    include('vendor/autoload.php');

Install without composer

  1. Download Archive
  2. Unzip archive to /path/to/libraries/
  3. Include files
    /* If need converter */
    require_once('/path/to/libraries/iptool/src/Converter.php');
    /* If need finder */
    require_once('/path/to/libraries/iptool/src/Iptool.php');
Clone this wiki locally