tinytinyrss/composer.json

36 lines
779 B
JSON
Raw Normal View History

{
2022-08-01 19:38:16 +02:00
"config": {
2023-10-20 16:12:29 +02:00
"platform-check": false,
"allow-plugins": {
"php-http/discovery": true
}
2022-08-01 19:38:16 +02:00
},
"repositories": [
{
"name": "j4mie/idiorm",
"type": "vcs",
2022-07-16 10:10:19 +02:00
"url": "https://dev.tt-rss.org/fox/idiorm.git"
}
],
2023-10-25 11:55:09 +02:00
"autoload": {
"psr-4": {
"": "classes/"
}
},
"require": {
"spomky-labs/otphp": "^10.0",
Update php-qrcode and php-settings-container for PHP 8.1 By running the following command after updating composer.json ``` composer update chillerlan/php-qrcode chillerlan/php-settings-container ``` This change fixes a deprecation warning from Preferences -> Personal data / Authentication -> Authenticator (OTP). ``` Return type of chillerlan\Settings\SettingsContainerAbstract::jsonSerialize() should either be compatible with JsonSerializable::jsonSerialize(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice 1. vendor/chillerlan/php-settings-container/src/SettingsContainerAbstract.php(19): ttrss_error_handler(Return type of chillerlan\Settings\SettingsContainerAbstract::jsonSerialize() should either be compatible with JsonSerializable::jsonSerialize(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice, vendor/chillerlan/php-settings-container/src/SettingsContainerAbstract.php) 2. vendor/composer/ClassLoader.php(571): include(/usr/share/webapps/tt-rss/vendor/chillerlan/php-settings-container/src/SettingsContainerAbstract.php) 3. vendor/composer/ClassLoader.php(428): Composer\Autoload\includeFile(/usr/share/webapps/tt-rss/vendor/composer/../chillerlan/php-settings-container/src/SettingsContainerAbstract.php) 4. vendor/chillerlan/php-qrcode/src/QROptions.php(59): loadClass(chillerlan\Settings\SettingsContainerAbstract) 5. vendor/composer/ClassLoader.php(571): include(/usr/share/webapps/tt-rss/vendor/chillerlan/php-qrcode/src/QROptions.php) 6. vendor/composer/ClassLoader.php(428): Composer\Autoload\includeFile(/usr/share/webapps/tt-rss/vendor/composer/../chillerlan/php-qrcode/src/QROptions.php) 7. vendor/chillerlan/php-qrcode/src/QRCode.php(113): loadClass(chillerlan\QRCode\QROptions) 8. classes/pref/prefs.php(958): __construct() 9. classes/pref/prefs.php(469): _get_otp_qrcode_img() 10. classes/pref/prefs.php(541): index_auth_2fa() 11. backend.php(136): index_auth() ``` The issue is fixed in php-settings-container 2.1.1 [1] Here I use the latest php-qrcode version for another PHP 8.1 fix [2]. [1] https://github.com/chillerlan/php-settings-container/commit/68bc5019c8b38956c83906431ef879668366b036#diff-359c7f7a6d32d9935951e1b0742eb116fb654f4a932c8d40328bb5dcab2fa111L162 [2] https://github.com/chillerlan/php-qrcode/issues/97
2022-07-02 16:01:51 +02:00
"chillerlan/php-qrcode": "^4.3.3",
2021-03-01 16:36:47 +01:00
"mervick/material-design-icons": "^2.2",
2023-04-09 19:50:33 +02:00
"j4mie/idiorm": "dev-master",
2023-10-20 16:12:29 +02:00
"open-telemetry/exporter-otlp": "^1.0",
"php-http/guzzle7-adapter": "^1.0",
2023-12-22 17:51:04 +01:00
"soundasleep/html2text": "^2.1",
"guzzlehttp/guzzle": "^7.0"
2021-10-22 12:42:29 +02:00
},
"require-dev": {
"phpstan/phpstan": "1.10.3",
2023-12-02 15:45:25 +01:00
"phpunit/phpunit": "9.5.16",
"phpunit/php-code-coverage": "^9.2"
}
}