Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/akalongman/php-ip-tools

Useful tools for IP manipulations
https://github.com/akalongman/php-ip-tools

ip ipv4 ipv6 library php php-ip utility

Last synced: 4 days ago
JSON representation

Useful tools for IP manipulations

Awesome Lists containing this project

README

        

# PHP IP Tools

[![Build Status](https://travis-ci.org/akalongman/php-ip-tools.svg?branch=master)](https://travis-ci.org/akalongman/php-ip-tools)
[![Latest Stable Version](https://img.shields.io/packagist/v/Longman/ip-tools.svg)](https://packagist.org/packages/longman/ip-tools)
[![Total Downloads](https://img.shields.io/packagist/dt/Longman/ip-tools.svg)](https://packagist.org/packages/longman/ip-tools)
[![Downloads Month](https://img.shields.io/packagist/dm/Longman/ip-tools.svg)](https://packagist.org/packages/longman/ip-tools)
[![License](https://img.shields.io/packagist/l/Longman/ip-tools.svg)](https://github.com/akalongman/ip-tools/LICENSE.md)

Universal IP Tools for manipulation on IPv4 and IPv6.

## Require this package with Composer
Install this package through [Composer](https://getcomposer.org/).
Edit your project's `composer.json` file to require
`longman/ip-tools`.

Create *composer.json* file:
```js
{
"name": "yourproject/yourproject",
"type": "project",
"require": {
"longman/ip-tools": "~1.1.0"
}
}
```
And run composer update

**Or** run a command in your command line:

```
composer require longman/ip-tools
```

## Usage
```php