The Ewus library was created to simplify communication with the eWUŚ system.
At this moment, the functionality of the system is the same as the eWUŚ service in version 1.10.
Ewus requires PHP version ^7.1
with DOM extension to work properly.
<?php
use Gilek\Ewus\Client\Client;
use Gilek\Ewus\Client\Credentials;
$client = new Client(
new Credentials('login', 'password', '15'),
);
$response = $client->checkCwu('NNNNNNNNNNN');
var_dump($response);
$client->logout();
The above code is designed to:
- Login the user to the eWUŚ system (the account is associated with the 15th NFZ department).
- Fetch information about the person with PESEL number NNNNNNNNNNN.
- Return the response as
\Gilek\Ewus\Response\CheckCwuResponse
object. - Logout of the eWUŚ system.