diff options
author | Hans Duedal <hd@onlinecity.dk> | 2014-11-13 10:59:39 +0100 |
---|---|---|
committer | Hans Duedal <hd@onlinecity.dk> | 2014-11-13 10:59:39 +0100 |
commit | b2fd472fcb9630e53aebc32a967c85b0d57876ed (patch) | |
tree | da58bc1df5852fdfb8180cd6d0bf762aecb55a5e | |
parent | bc4a085967d3c0fa968ddcaf1a41945bb459a9a4 (diff) | |
download | php-smpp-b2fd472fcb9630e53aebc32a967c85b0d57876ed.zip php-smpp-b2fd472fcb9630e53aebc32a967c85b0d57876ed.tar.gz php-smpp-b2fd472fcb9630e53aebc32a967c85b0d57876ed.tar.bz2 |
Added a basic composer file
-rw-r--r-- | composer.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..86ed0f5 --- /dev/null +++ b/composer.json @@ -0,0 +1,29 @@ +{ + "name": "php-smpp/php-smpp", + "description": "PHP-based SMPP client lib", + "keywords": ["smpp", "sms", "texting", "gsm"], + "homepage": "http://github.com/onlinecity/php-smpp", + "type": "library", + "license": "LGPL", + "authors": [ + { + "name": "Hans Duedal", + "email": "hd@oc.dk", + "homepage": "http://oc.dk" + } + ], + "require": { + "php": ">=5.3.3", + "ext-sockets": "*", + "ext-mbstring": "*" + }, + "require-dev": { + }, + "autoload": { + "files": [ + "gsmencoder.class.php", + "sockettransport.class.php", + "smppclient.class.php" + ] + } +} |