Merge branch 'MDL-66992-master' of https://github.com/tungthai/moodle
[moodle.git] / lib / php-jwt / composer.json
blob25d1cfa96ad71085e2456d8f22ee38536778bfa5
2     "name": "firebase/php-jwt",
3     "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
4     "homepage": "https://github.com/firebase/php-jwt",
5     "keywords": [
6         "php",
7         "jwt"
8     ],
9     "authors": [
10         {
11             "name": "Neuman Vong",
12             "email": "neuman+pear@twilio.com",
13             "role": "Developer"
14         },
15         {
16             "name": "Anant Narayanan",
17             "email": "anant@php.net",
18             "role": "Developer"
19         }
20     ],
21     "license": "BSD-3-Clause",
22     "require": {
23         "php": ">=5.3.0"
24     },
25     "autoload": {
26         "psr-4": {
27             "Firebase\\JWT\\": "src"
28         }
29     },
30     "require-dev": {
31         "phpunit/phpunit": ">=4.8 <=9"
32     }