Files
archived-runtime/composer.json
Nicolas Grekas c84f705fcf Merge branch '7.4' into 8.0
* 7.4:
  [JsonPath] Handle special whitespaces in filters
  [FrameworkBundle] Fix allow `loose` as an email validation mode
  [Messenger] Fix float value for worker memory limit
  fix backwards-compatibility with overridden add() methods
  [Serializer] improve phpdoc for normalizer
  Improve-callable-typing
  fix merge
  [Mailer] Add new `assertEmailAddressNotContains` method
2025-06-16 09:42:02 +02:00

46 lines
1.2 KiB
JSON

{
"name": "symfony/runtime",
"type": "composer-plugin",
"description": "Enables decoupling PHP applications from global state",
"keywords": ["runtime"],
"homepage": "https://symfony.com",
"license" : "MIT",
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"require": {
"php": ">=8.4",
"composer-plugin-api": "^1.0|^2.0"
},
"require-dev": {
"composer/composer": "^2.6",
"symfony/console": "^7.4|^8.0",
"symfony/dotenv": "^7.4|^8.0",
"symfony/http-foundation": "^7.4|^8.0",
"symfony/http-kernel": "^7.4|^8.0"
},
"conflict": {
"symfony/error-handler": "<7.4"
},
"autoload": {
"psr-4": {
"Symfony\\Component\\Runtime\\": "",
"Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
},
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"extra": {
"class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
}
}