diff options
author | Anant Narayanan <anant@kix.in> | 2013-08-30 11:56:22 -0700 |
---|---|---|
committer | Anant Narayanan <anant@kix.in> | 2013-08-30 11:56:22 -0700 |
commit | c794eeba527537f9690c1157b9f7f71999ded4ce (patch) | |
tree | 7cd643525e2b0b42ac0a3ed4dd6d42a45ffa99de | |
parent | f4fc7448173dc87f306b7fd61ad602a57b3299b5 (diff) | |
parent | ae54c3752af9d58d5b9ae0273cd98bf30f572515 (diff) | |
download | php-jwt-c794eeba527537f9690c1157b9f7f71999ded4ce.zip php-jwt-c794eeba527537f9690c1157b9f7f71999ded4ce.tar.gz php-jwt-c794eeba527537f9690c1157b9f7f71999ded4ce.tar.bz2 |
Merge pull request #2 from phansys/master
Added composer.json
-rw-r--r-- | composer.json | 26 |
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" +} |