smartprax / medidoc
Laravel package package for Medidoc service.
1.1.1
2024-11-24 13:52 UTC
Requires
- php: ^8.1|^8.2
- ext-dom: *
- ext-simplexml: *
- ext-soap: *
- guzzlehttp/guzzle: ^7.5
- illuminate/contracts: ^9.0|^10.0|^11.0
- lorisleiva/laravel-actions: ^2.5
- spatie/laravel-package-tools: ^1.14.0
Requires (Dev)
- laravel/pint: ^v1.18.0
- nunomaduro/collision: ^v8.5.0
- orchestra/testbench: ^9.0
- pestphp/pest: ^v3.5.0
- pestphp/pest-plugin-arch: ^v3.0.0
- pestphp/pest-plugin-laravel: ^v3.0.0
- spatie/laravel-ray: ^1.33
- wulfheart/laravel-actions-ide-helper: ^v0.8.0
README
A Laravel package to use the Medidoc API.
You need an account to access the documentation and use the API.
Installation
composer require smartprax/medidoc
Configuration
Set the follwing variables in .env
:
MEDIDOC_ENDPOINT="" # Defaults to 'https://test.medidoc.ch/webservices/MedidocSoapAccessV2.asmx?WSDL' MEDIDOC_GLN="" MEDIDOC_PASSWORD=""
Tests
Copy phpunit.xml.dist
to phpunit.xml
and set the env values:
<env name="MEDIDOC_GLN" value="" /> <env name="MEDIDOC_PASSWORD" value="" />
Run the tests:
composer test
Usage
The methods (SOAP functions) can be found in the Smartprax\Medidoc\Methods
namespace and are implemented as Actions.
Meaning, you can just call the static run
method, e.g.:
$can_connect = CheckConnection::run(); $insuranceListResponse = GetInsuranceList::run( new ArrayOfNameValue([ new NameValue('Canton', 'AG'), ]) )
License
The MIT License (MIT). Please see License File for more information.