summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2017-04-03 07:55:45 +0200
committerRemi Collet <fedora@famillecollet.com>2017-04-03 07:55:45 +0200
commit40b9564b05d65b26a4b891108832e3d21310a219 (patch)
treeccbad1da08e0f71c4d3c480eb8ac181d85fde827 /composer.json
parent9f7fd9ab970cfc759f55571285c2e7f64cc7e9c8 (diff)
backport
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..1a5e93b
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,27 @@
+{
+ "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.3.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "Firebase\\JWT\\": "src"
+ }
+ },
+ "minimum-stability": "dev"
+}