Skip to content

Commit

Permalink
Enhancement: composer setup
Browse files Browse the repository at this point in the history
  • Loading branch information
till committed Feb 17, 2014
1 parent d5304de commit 531ba2d
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 33 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
# composer related
composer.lock
composer.phar
vendor
82 changes: 49 additions & 33 deletions composer.json
@@ -1,34 +1,50 @@
{
"name" : "pear/crypt_gpg",
"description" : "Provides an object oriented interface to the GNU Privacy Guard (GnuPG). It requires the GnuPG executable to be on the system.",
"type" : "library",
"keywords" : [ "gpg", "gnupg", "encryption", "pgp" ],
"homepage" : "https://github.com/pear/Crypt_GPG",
"license" : "LGPL-2.1",
"authors" : [
{
"name" : "Michael Gauthier",
"email" : "mike@silverorange.com"
},
{
"name" : "Nathan Fredrickson",
"email" : "nathan@silverorange.com"
}
],
"require" : {
"php" : ">=5.2.1",
"ext-mbstring" : "*",
"pear/console_commandline" : ">=1.1.10"
},
"suggest" : {
"ext-posix" : "Enables slightly more efficient process management for the pinentry program."
},
"bin" : [
"scripts/crypt-gpg-pinentry"
],
"autoload": {
"psr-0": {
"Crypt_GPG" : ""
}
}
}
"name": "pear/crypt_gpg",
"description": "Provides an object oriented interface to the GNU Privacy Guard (GnuPG). It requires the GnuPG executable to be on the system.",
"type": "library",
"keywords": [
"gpg",
"gnupg",
"encryption",
"pgp"
],
"homepage": "https://github.com/pear/Crypt_GPG",
"license": "LGPL-2.1",
"authors": [
{
"name": "Michael Gauthier",
"email": "mike@silverorange.com"
},
{
"name": "Nathan Fredrickson",
"email": "nathan@silverorange.com"
}
],
"require": {
"php": ">=5.2.1",
"ext-mbstring": "*",
"pear/console_commandline": ">=1.1.10",
"pear/pear_exception": "*"
},
"suggest": {
"ext-posix": "May require the posix PHP extension"
},
"bin": [
"scripts/crypt-gpg-pinentry"
],
"autoload": {
"psr-0": {
"Crypt_GPG": ""
}
},
"include-path": [
"./"
],
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Crypt_GPG",
"source": "https://github.com/pear/Crypt_GPG"
},
"require-dev": {
"phpunit/phpunit": "*"
}
}

0 comments on commit 531ba2d

Please sign in to comment.