From 7559b5d3d0cc348a9d07b7f3144a24ae4fa9ed3b Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Wed, 8 May 2013 11:59:46 -0700 Subject: [PATCH] Filled out composer.json --- composer.json | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index ebd575d..da94222 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,25 @@ { + "name": "maxmind/GeoIP2-php", + "description": "GeoIP2 PHP API", + "keywords": [ "geoip", "geolocation", "maxmind" ], + "homepage": "https://github.com/maxmind/GeoIP2-php", + "type": "library", + "license": "LGPL-2.1+", + "authors": [ + { + "name": "Gregory J. Oschwald", + "email": "goschwald@maxmind.com", + "homepage": "http://www.maxmind.com/" + } + ], "require": { - "guzzle/guzzle": "~3.1.1" + "guzzle/guzzle": "~3.1.1", + "php": ">=5.3.1" + }, + "require-dev": { + "phpunit/phpunit": "3.7.*" + }, + "autoload": { + "psr-0": { "GeoIP2": "src/" } } }