29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-25 23:02:55 +00:00
cms/composer.json
Nicholas K. Dionysopoulos 205c7a5f7f
Fix/38233 webauth preload fido (#38664)
* Use cached FIDO metadata

Places a copy of fido.jwt in the plugin's directory

* Use cached FIDO metadata

Use the cached FIDO metadata in the plugin

* Use cached FIDO metadata

Remove unused local file fallback

* Use cached FIDO metadata

Simplify

* Use cached FIDO metadata

Update Joomla build script

* Use cached FIDO metadata

Let's not break the build if the FIDO server is down

* Use cached FIDO metadata

Do not include the fido.jwt in the repo

* Use cached FIDO metadata

Make sure not to re-fetch the fido.jwt file if it already exists.

* Use cached FIDO metadata

Move the check for the fido.jwt file right after composer install, do not try to fetch the file twice

* Use cached FIDO metadata

Update lang string

* Use cached FIDO metadata

Set the attestation support to disabled by default

* Update deleted files to PR #38664

Co-authored-by: Richard Fath <richard67@users.noreply.github.com>
2022-09-02 21:37:25 +02:00

127 lines
3.9 KiB
JSON

{
"name": "joomla/joomla-cms",
"type": "project",
"description": "Joomla CMS",
"keywords": [
"joomla",
"cms"
],
"homepage": "https://github.com/joomla/joomla-cms",
"license": "GPL-2.0-or-later",
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.2.5"
},
"vendor-dir": "libraries/vendor",
"github-protocols": ["https"],
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"support": {
"issues": "https://issues.joomla.org/",
"irc": "irc://chat.freenode.net/joomla/",
"forum": "https://forum.joomla.org/",
"docs": "https://docs.joomla.org/"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/joomla-backports/json-api-php.git",
"no-api": true
}
],
"autoload": {
"psr-4": {
"Joomla\\CMS\\": "libraries/src/"
}
},
"autoload-dev": {
"psr-4": {
"Joomla\\Tests\\": "tests"
}
},
"require": {
"php": "^7.2.5",
"joomla/application": "~2.0",
"joomla/archive": "~2.0",
"joomla/authentication": "~2.0",
"joomla/console": "~2.0",
"joomla/crypt": "~2.0",
"joomla/data": "~2.0",
"joomla/database": "~2.0",
"joomla/di": "~2.0",
"joomla/event": "~2.0",
"joomla/filter": "~2.0",
"joomla/filesystem": "~2.0",
"joomla/http": "~2.0",
"joomla/input": "~2.0",
"joomla/ldap": "~2.0",
"joomla/oauth1": "~2.0",
"joomla/oauth2": "~2.0",
"joomla/registry": "~2.0",
"joomla/router": "~2.0",
"joomla/session": "~2.0",
"joomla/string": "~2.0",
"joomla/uri": "~2.0",
"joomla/utilities": "~2.0",
"algo26-matthias/idna-convert": "~3.0",
"defuse/php-encryption": "~2.1",
"doctrine/inflector": "~1.3",
"fig/link-util": "~1.0",
"google/recaptcha": "~1.1",
"laminas/laminas-diactoros": "^2.2.2",
"paragonie/sodium_compat": "^1.17",
"phpmailer/phpmailer": "~6.0",
"psr/link": "~1.0",
"symfony/console": "~5.0",
"symfony/error-handler": "^5.2",
"symfony/ldap": "~5.0",
"symfony/options-resolver": "~5.0",
"symfony/polyfill-php73": "^1.10",
"symfony/web-link": "~5.0",
"symfony/yaml": "~5.0",
"typo3/phar-stream-wrapper": "~3.1",
"wamania/php-stemmer": "^2.0",
"maximebf/debugbar": "dev-master",
"tobscure/json-api": "dev-joomla-backports",
"willdurand/negotiation": "^3.0",
"ext-json": "*",
"ext-simplexml": "*",
"psr/log": "~1.0",
"ext-gd": "*",
"web-auth/webauthn-lib": "2.1.*",
"composer/ca-bundle": "^1.2",
"dragonmantank/cron-expression": "^3.1",
"enshrined/svg-sanitize": "^0.15.4",
"lcobucci/jwt": "^3.4.6",
"web-token/signature-pack": "^2.2.11",
"phpseclib/bcmath_compat": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"friendsofphp/php-cs-fixer": "^3.0",
"squizlabs/php_codesniffer": "~3.0",
"joomla-projects/joomla-browser": "~4.0",
"codeception/codeception": "~4.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"joomla/mediawiki": "^1.0",
"joomla/test": "~2.0",
"codeception/module-asserts": "^1.0",
"codeception/module-db": "^1.0",
"codeception/module-rest": "^1.0",
"codeception/module-webdriver": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"hoa/console": "^3.17"
},
"replace": {
"paragonie/random_compat": "9.99.99"
},
"scripts": {
"post-install-cmd": [
"php build/update_fido_cache.php"
]
}
}