Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/akalongman/php-ip-tools
- Owner: akalongman
- License: mit
- Created: 2015-11-12T08:59:17.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-11-02T08:17:44.000Z (about 1 year ago)
- Last Synced: 2024-10-12T10:44:22.093Z (24 days ago)
- Topics: ip, ipv4, ipv6, library, php, php-ip, utility
- Language: PHP
- Size: 29.3 KB
- Stars: 149
- Watchers: 9
- Forks: 10
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
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