mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51: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
51 lines
1.6 KiB
JSON
51 lines
1.6 KiB
JSON
{
|
|
"name": "doctrine/cache",
|
|
"type": "library",
|
|
"description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
|
|
"keywords": [
|
|
"php",
|
|
"cache",
|
|
"caching",
|
|
"abstraction",
|
|
"redis",
|
|
"memcached",
|
|
"couchdb",
|
|
"xcache",
|
|
"apcu"
|
|
],
|
|
"homepage": "https://www.doctrine-project.org/projects/cache.html",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
|
|
{"name": "Roman Borschel", "email": "roman@code-factory.org"},
|
|
{"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
|
|
{"name": "Jonathan Wage", "email": "jonwage@gmail.com"},
|
|
{"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"}
|
|
],
|
|
"require": {
|
|
"php": "~7.1 || ^8.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
|
|
"doctrine/coding-standard": "^9",
|
|
"psr/cache": "^1.0 || ^2.0 || ^3.0",
|
|
"cache/integration-tests": "dev-master",
|
|
"symfony/cache": "^4.4 || ^5.4 || ^6",
|
|
"symfony/var-exporter": "^4.4 || ^5.4 || ^6"
|
|
},
|
|
"conflict": {
|
|
"doctrine/common": ">2.2,<2.4"
|
|
},
|
|
"autoload": {
|
|
"psr-4": { "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" }
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": { "Doctrine\\Tests\\": "tests/Doctrine/Tests" }
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
}
|
|
}
|
|
}
|