diff options
-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" + ] + } +} |