mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-12 11:11:31 +00:00
The official image from streamline does not currently work for the arm64 platform. As a temporary measure, the source code and docker build scripts have been lifted from the official images and are used to build locally. Some additional modifications are made to reduce overall image size, these are documented in docker/README.md
43 lines
1.1 KiB
JSON
43 lines
1.1 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.1",
|
|
"psr/log": "^1|^2|^3",
|
|
"symfony/var-dumper": "^5.4|^6.0|^7.0"
|
|
},
|
|
"require-dev": {
|
|
"symfony/http-kernel": "^6.4|^7.0",
|
|
"symfony/serializer": "^5.4|^6.0|^7.0",
|
|
"symfony/deprecation-contracts": "^2.5|^3"
|
|
},
|
|
"conflict": {
|
|
"symfony/deprecation-contracts": "<2.5",
|
|
"symfony/http-kernel": "<6.4"
|
|
},
|
|
"autoload": {
|
|
"psr-4": { "Symfony\\Component\\ErrorHandler\\": "" },
|
|
"exclude-from-classmap": [
|
|
"/Tests/"
|
|
]
|
|
},
|
|
"bin": [
|
|
"Resources/bin/patch-type-declarations"
|
|
],
|
|
"minimum-stability": "dev"
|
|
}
|