1{ 2 "name": "mlocati/ip-lib", 3 "type": "library", 4 "description": "Handle IPv4, IPv6 addresses and ranges", 5 "keywords": [ 6 "ip", 7 "ipv4", 8 "ipv6", 9 "range", 10 "network", 11 "networking", 12 "address", 13 "addresses", 14 "subnet", 15 "matching" 16 ], 17 "homepage": "https://github.com/mlocati/ip-lib", 18 "license": "MIT", 19 "authors": [ 20 { 21 "name": "Michele Locati", 22 "homepage": "https://github.com/mlocati", 23 "email": "mlocati@gmail.com", 24 "role": "Author" 25 } 26 ], 27 "autoload": { 28 "psr-4": { 29 "IPLib\\": "src/" 30 } 31 }, 32 "require": { 33 "php": ">=5.3.3" 34 }, 35 "autoload-dev": { 36 "psr-4": { 37 "IPLib\\Test\\": "test/tests/" 38 } 39 }, 40 "require-dev": { 41 "ext-pdo_sqlite": "*", 42 "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5", 43 "phpunit/dbunit": "^1.4 || ^2 || ^3 || ^4" 44 }, 45 "scripts": { 46 "test": "phpunit" 47 } 48} 49