Add simple composer.json

This commit is contained in:
Stefan Vetsch 2015-03-14 10:50:06 +01:00
parent d6568d4925
commit 68514c11c2
1 changed files with 29 additions and 0 deletions

29
composer.json Normal file
View File

@ -0,0 +1,29 @@
{
"name": "singpolyma/openpgp-php",
"description": "Pure-PHP implementation of the OpenPGP Message Format (RFC 4880)",
"minimum-stability": "stable",
"license": "Unlicense",
"authors": [
{
"name": "Arto Bendiken",
"email": "arto.bendiken@gmail.com"
},
{
"name": "Stephen Paul Weber",
"email": "singpolyma@singpolyma.net"
}
],
"require": {
"phpseclib/phpseclib": "~0.3"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-0": {
"OpenPGP": "lib/"
},
"files": [
]
}
}