mirror of
https://github.com/symfony/error-handler.git
synced 2026-03-24 00:02:09 +01:00
* 7.4: [ObjectMapper] handle non existing property errors Fix AsCronTask not passing arguments to command [HttpFoundation] Fix deprecation in tests on PHP 8.5 Fix typo [Cache] Bump ext-redis to 6.2 and ext-relay to 0.11 minimum [VarExporter] Dump implicit-nullable types as explicit to prevent the corresponding deprecation [DependencyInjection] CS fix chore: PHP CS Fixer fixes Leverage get_error_handler() Various CS fixes Allow mixed root on CompoundConstraintTestCase validator [Serializer] Fix readonly property initialization from incorrect scope Update BrevoRequestParser.php [JsonPath] Improve escape sequence validation in name selector
45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"name": "symfony/error-handler",
|
|
"type": "library",
|
|
"description": "Provides tools to manage errors and ease debugging PHP code",
|
|
"keywords": [],
|
|
"homepage": "https://symfony.com",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Fabien Potencier",
|
|
"email": "fabien@symfony.com"
|
|
},
|
|
{
|
|
"name": "Symfony Community",
|
|
"homepage": "https://symfony.com/contributors"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=8.4",
|
|
"psr/log": "^1|^2|^3",
|
|
"symfony/polyfill-php85": "^1.32",
|
|
"symfony/var-dumper": "^7.4|^8.0"
|
|
},
|
|
"require-dev": {
|
|
"symfony/console": "^7.4|^8.0",
|
|
"symfony/deprecation-contracts": "^2.5|^3",
|
|
"symfony/http-kernel": "^7.4|^8.0",
|
|
"symfony/serializer": "^7.4|^8.0",
|
|
"symfony/webpack-encore-bundle": "^1.0|^2.0"
|
|
},
|
|
"conflict": {
|
|
"symfony/deprecation-contracts": "<2.5"
|
|
},
|
|
"autoload": {
|
|
"psr-4": { "Symfony\\Component\\ErrorHandler\\": "" },
|
|
"exclude-from-classmap": [
|
|
"/Tests/"
|
|
]
|
|
},
|
|
"bin": [
|
|
"Resources/bin/patch-type-declarations"
|
|
],
|
|
"minimum-stability": "dev"
|
|
}
|