-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
54 lines (54 loc) · 1.63 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "kelvinmo/simplejwt",
"description": "A simple JSON Web Token library for PHP.",
"keywords": [ "jwt", "jwe", "jose" ],
"homepage": "https://github.com/kelvinmo/simplejwt",
"require": {
"php": "^7.2 || ^8.0",
"ext-openssl": "*",
"ext-hash": "*",
"ext-gmp": "*",
"symfony/console": "^5.0 || ^6.0"
},
"require-dev": {
"ext-bz2": "*",
"ext-Phar": "*",
"phpunit/phpunit": "^8.0 || ^9.3 || ^10.0",
"consolidation/robo": "^3.0 || ^4.0",
"phpstan/phpstan": "^1.3.0",
"bamarni/composer-bin-plugin": "^1.8"
},
"suggest": {
"ext-sodium": "Provides support for OKP (X25519/Ed25519) keys"
},
"license": "BSD-3-Clause",
"authors": [
{
"name": "Kelvin Mo",
"email": "kmo@users.sourceforge.net"
}
],
"bin": [ "bin/jwkstool" ],
"autoload": {
"psr-4": { "SimpleJWT\\": "src/SimpleJWT" }
},
"scripts": {
"phar": [ "@composer install", "@composer bin build install", "robo phar" ],
"test": [ "@composer install", "phpunit" ],
"coverage": [ "@composer install", "phpdbg -qrr vendor/bin/phpunit --coverage-text" ],
"phpstan": [ "@composer install", "phpstan analyse" ],
"update-copyright": [ "@composer install", "robo update_copyright" ]
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"target-directory": "vendor-bin",
"forward-command": false
}
}
}