Composer-compatiblity; PHPDoc

This commit is contained in:
Nikko Bautista
2013-04-24 16:05:06 -07:00
parent 0ab2c583db
commit 8d875f3d02
9 changed files with 308 additions and 300 deletions

28
composer.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name" : "mashape/unirest-php",
"description" : "Unirest PHP",
"keywords" : ["rest", "curl"],
"type" : "library",
"homepage" : "http://unireset.io#php",
"license" : "MIT",
"authors" : [
{
"name" : "Mashape",
"email" : "hey@mashape.com",
"homepage" : "http://mashape.com"
}
],
"require" : {
"php" : ">=5.3.0",
"ext-curl" : "*",
"ext-json" : "*"
},
"autoload" : {
"psr-0" : {
"Unirest" : "lib"
}
},
"support" : {
"email" : "hey@mashape.com"
}
}