summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhansys <phansys@gmail.com>2013-07-19 13:05:10 -0300
committerPhansys <phansys@gmail.com>2013-07-19 13:05:10 -0300
commitae54c3752af9d58d5b9ae0273cd98bf30f572515 (patch)
tree7cd643525e2b0b42ac0a3ed4dd6d42a45ffa99de
parentf4fc7448173dc87f306b7fd61ad602a57b3299b5 (diff)
downloadphp-jwt-ae54c3752af9d58d5b9ae0273cd98bf30f572515.zip
php-jwt-ae54c3752af9d58d5b9ae0273cd98bf30f572515.tar.gz
php-jwt-ae54c3752af9d58d5b9ae0273cd98bf30f572515.tar.bz2
Added composer.json to allow install and dependency management through Composer.
-rw-r--r--composer.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..292edbf
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,26 @@
+{
+ "name": "firebase/php-jwt",
+ "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
+ "homepage": "https://github.com/firebase/php-jwt",
+ "authors": [
+ {
+ "name": "Neuman Vong",
+ "email": "neuman+pear@twilio.com",
+ "role": "Developer"
+ },
+ {
+ "name": "Anant Narayanan",
+ "email": "anant@php.net",
+ "role": "Developer"
+ }
+ ],
+ "license": "BSD-3-Clause",
+ "require": {
+ "php": ">=5.2.0"
+ },
+ "autoload": {
+ "classmap": ["Authentication/"]
+ },
+ "target-dir": "Firebase/PHP-JWT",
+ "minimum-stability": "dev"
+}