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
52 lines
1.5 KiB
JSON
52 lines
1.5 KiB
JSON
{
|
|
"name": "knplabs/knp-snappy",
|
|
"type": "library",
|
|
"description": "PHP library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
|
|
"keywords": ["pdf", "thumbnail", "snapshot", "knplabs", "knp", "wkhtmltopdf"],
|
|
"homepage": "http://github.com/KnpLabs/snappy",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "KNP Labs Team",
|
|
"homepage": "http://knplabs.com"
|
|
},
|
|
{
|
|
"name": "Symfony Community",
|
|
"homepage": "http://github.com/KnpLabs/snappy/contributors"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=8.1",
|
|
"symfony/process": "^5.0||^6.0||^7.0",
|
|
"psr/log": "^2.0||^3.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^8.5",
|
|
"phpstan/phpstan": "^1.0.0",
|
|
"phpstan/phpstan-phpunit": "^1.0.0",
|
|
"friendsofphp/php-cs-fixer": "^3.0",
|
|
"pedrotroller/php-cs-custom-fixer": "^2.19"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Knp\\Snappy\\": "src/Knp/Snappy"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"unit-tests": "vendor/bin/phpunit",
|
|
"static-analysis": "vendor/bin/phpstan analyse --ansi",
|
|
"check-cs": "vendor/bin/php-cs-fixer fix --diff --dry-run --verbose",
|
|
"fix-cs": "vendor/bin/php-cs-fixer fix --verbose"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "1.x-dev"
|
|
}
|
|
}
|
|
}
|