joomla-oauth-server/composer.json

36 lines
808 B
JSON
Raw Normal View History

2024-03-02 04:44:33 +03:00
{
"type": "joomla-package",
2024-03-11 00:16:27 +03:00
"description": "OAuth Server for Joomla",
2024-03-02 04:44:33 +03:00
"license": "MIT",
"homepage": "https://github.com/webmasterskaya/joomla-oauth-server",
2024-03-02 04:44:33 +03:00
"authors": [
{
"name": "Artem Vasilev",
2024-03-11 00:16:27 +03:00
"email": "dev@webmasterskaya.xyz",
"homepage": "https://webmasterskaya.xyz/"
2024-03-02 04:44:33 +03:00
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1.0",
"ext-openssl": "*",
"league/oauth2-server": "^8.5.0"
},
"replace": {
"lcobucci/jwt": "*",
"defuse/php-encryption": "*",
"paragonie/random_compat": "9.99.99"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.1.0"
},
"vendor-dir": "com_oauthserver/administrator/vendor",
"github-protocols": [
"https"
],
"prepend-autoloader": false
2024-03-02 04:44:33 +03:00
}
}