Created composer.json file.

This commit is contained in:
Henrique Moody 2012-01-16 16:07:55 -02:00
parent c4b47d7dcf
commit bfe5fb4fab

34
composer.json Normal file
View file

@ -0,0 +1,34 @@
{
"name": "Respect/Validation",
"version": "1.0.0",
"type": "library",
"description": "The most awesome validation engine ever created for PHP.",
"keywords": ["respect", "validation"],
"homepage": "https://github.com/Respect/Validation",
"repositories": {
"Respect/Validation": {
"vcs": {
"url" : "git://github.com/Respect/Validation.git"
}
}
},
"license" : "New BSD",
"authors" : [
{
"name": "Alexandre Gomes Gaigalas",
"email": "alexandre@gaigalas.net"
},
{
"name": "Augusto Pascutti",
"email": "augusto@phpsp.org.br"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"psr-0": {
"Respect\\Validation": "library"
}
}
}