You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.6 KiB
63 lines
1.6 KiB
{ |
|
"name": "lcobucci/jwt", |
|
"description": "A simple library to work with JSON Web Token and JSON Web Signature", |
|
"license": [ |
|
"BSD-3-Clause" |
|
], |
|
"type": "library", |
|
"keywords": [ |
|
"JWT", |
|
"JWS" |
|
], |
|
"authors": [ |
|
{ |
|
"name": "Luís Cobucci", |
|
"email": "lcobucci@gmail.com", |
|
"role": "Developer" |
|
} |
|
], |
|
"require": { |
|
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0", |
|
"ext-openssl": "*", |
|
"ext-sodium": "*", |
|
"psr/clock": "^1.0" |
|
}, |
|
"require-dev": { |
|
"infection/infection": "^0.29", |
|
"lcobucci/clock": "^3.2", |
|
"lcobucci/coding-standard": "^11.0", |
|
"phpbench/phpbench": "^1.2", |
|
"phpstan/extension-installer": "^1.2", |
|
"phpstan/phpstan": "^1.10.7", |
|
"phpstan/phpstan-deprecation-rules": "^1.1.3", |
|
"phpstan/phpstan-phpunit": "^1.3.10", |
|
"phpstan/phpstan-strict-rules": "^1.5.0", |
|
"phpunit/phpunit": "^11.1" |
|
}, |
|
"suggest": { |
|
"lcobucci/clock": ">= 3.2" |
|
}, |
|
"autoload": { |
|
"psr-4": { |
|
"Lcobucci\\JWT\\": "src" |
|
} |
|
}, |
|
"autoload-dev": { |
|
"psr-4": { |
|
"Lcobucci\\JWT\\Tests\\": "tests" |
|
} |
|
}, |
|
"config": { |
|
"allow-plugins": { |
|
"dealerdirect/phpcodesniffer-composer-installer": true, |
|
"infection/extension-installer": true, |
|
"ocramius/package-versions": true, |
|
"phpstan/extension-installer": true |
|
}, |
|
"platform": { |
|
"php": "8.2.99" |
|
}, |
|
"preferred-install": "dist", |
|
"sort-packages": true |
|
} |
|
}
|
|
|