From fd38b97684b174f9e790c2c0b0ef921943f501f9 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Fri, 8 Jun 2012 20:28:42 +0200 Subject: [PATCH] [feature/composer] Configuration file for the composer dependency manager. --- composer.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 00000000..13ff4aac --- /dev/null +++ b/composer.json @@ -0,0 +1,30 @@ +{ + "name": "phpseclib/phpseclib", + "type": "library", + "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP etc.", + "keywords": [ + "security", + "crypto", + "cryptography", + "encryption", + "signature", + "signing", + "rsa", + "aes", + "ssh", + "sftp", + "BigInteger" + ], + "homepage": "http://phpseclib.sourceforge.net", + "license": "MIT", + "authors": [ + { + "name": "Jim Wigginton", + "email": "terrafrost@php.net", + "role": "Developer" + } + ], + "require": { + "php": ">=4.3.3" + }, +}