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
59 lines
1.7 KiB
JSON
Executable File
59 lines
1.7 KiB
JSON
Executable File
{
|
|
"name": "laravelcollective/html",
|
|
"description": "HTML and Form Builders for the Laravel Framework",
|
|
"license": "MIT",
|
|
"homepage": "https://laravelcollective.com",
|
|
"support": {
|
|
"issues": "https://github.com/LaravelCollective/html/issues",
|
|
"source": "https://github.com/LaravelCollective/html"
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Adam Engebretson",
|
|
"email": "adam@laravelcollective.com"
|
|
},
|
|
{
|
|
"name": "Taylor Otwell",
|
|
"email": "taylorotwell@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.2.5",
|
|
"illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
|
|
"illuminate/routing": "^6.0|^7.0|^8.0|^9.0|^10.0",
|
|
"illuminate/session": "^6.0|^7.0|^8.0|^9.0|^10.0",
|
|
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
|
|
"illuminate/view": "^6.0|^7.0|^8.0|^9.0|^10.0"
|
|
},
|
|
"require-dev": {
|
|
"illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0",
|
|
"mockery/mockery": "~1.0",
|
|
"phpunit/phpunit": "~8.5|^9.5.10"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Collective\\Html\\": "src/"
|
|
},
|
|
"files": [
|
|
"src/helpers.php"
|
|
]
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "6.x-dev"
|
|
},
|
|
"laravel": {
|
|
"providers": [
|
|
"Collective\\Html\\HtmlServiceProvider"
|
|
],
|
|
"aliases": {
|
|
"Form": "Collective\\Html\\FormFacade",
|
|
"Html": "Collective\\Html\\HtmlFacade"
|
|
}
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"abandoned": "spatie/laravel-html",
|
|
"prefer-stable": true
|
|
}
|