openxtrem / fhir-core
4.0.7
2025-03-28 11:54 UTC
Requires (Dev)
- openxtrem/coding-standard: ^1.0.0
- phpstan/phpstan: 1.7.*
- phpunit/phpunit: 9.5.*
- symfony/http-client: ^6.4
- symfony/http-foundation: ^6.4
- symfony/mime: ^6.4
- dev-main
- 4.0.7
- 4.0.6
- 4.0.5
- 4.0.4
- 4.0.3
- 4.0.2
- 4.0.1
- 4.0.0
- 3.0.0
- 2.3.5
- 2.3.4
- 2.3.3
- 2.3.2
- 2.3.1
- 2.3.0
- 2.2.4
- 2.2.3
- 2.2.2
- 2.2.1
- 2.2.0
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.0.1
- 1.0.0
- 1.0.0-beta2.0
- 1.0.0-beta1.1
- dev-feature/update-versions
- dev-feature/new-validator-wrapper
- dev-release/v2
- dev-feature/fhirpath-write-v2
- dev-feature/fhirpath-independence-v2
- dev-feature/backbone-interfaces-v2
- dev-feature/Parser-Exception_8_1
- dev-feature/ref-8-1-usage
- dev-feature/datatypes-refactor
- dev-feature/OXI-3311-Version-R5
- dev-feature/OXI-2986-FHIR-Validator
- dev-feature/ModelOptimisation
- dev-feature/OXI-2947-ameliorations
- dev-feature/1_0_x-dev
- dev-release/v1
- dev-feature/2_0_X-dev
- dev-feature/clean-composer
- dev-test/ci
This package is auto-updated.
Last update: 2025-03-28 11:08:48 UTC
README
About
This library includes a generator for creating PHP classes from the HL7 FHIR specification, together with serializers and parsers for JSON and XML.
The project is under development
Generated classes usage example
$humanName = (new FHIRHumanName())
->setFamily('MyFamilyName')
->addGiven('MyGiven')
->addGiven('MySecondGiven');
$patient = (new FHIRPatient())
->setActive(true)
->setName($humanName);
Serializer
- Using Generated classes and structure definition (R4 FHIR version)
Example
PHP Usage
$XMLSerializer = new XMLSerializer();
$JSONSerializer = new JSONSerializer();
$XMLPatientString = $XMLSerializer->serializeResource($patient)
or
$XMLPatientString = (new XMLSerializer())->serializeResource($patient)
Parser
- Using Generated classes and structure definition (R4 FHIR version)
Example
XML Patient
<?xml version="1.0" encoding="UTF-8"?>
<Patient xmlns="http://hl7.org/fhir">
<active value="true"/>
<name>
<family value="MyFamilyName"/>
<given value="MyGiven"/>
<given value="MySecondGiven"/>
</name>
</Patient>
PHP Usage
$XMLParser = new XMLParser(FHIRVersion::R4);
$JSONParser = new JSONParser(FHIRVersion::R4);
$patient = $XMLParser->parse($XMLPatientString)
or
$patient = Parser::parse($XMLPatientString, FHIRVersion::R4)
Writing values
Initialize fhir_path
$fhir_path = new \Ox\Components\FHIRCore\FHIRPath\FHIRPath();
Place complex values
$patient = new \Ox\Components\FHIRCore\Model\R4\Resources\FHIRPatient();
$new_id = new \Ox\Components\FHIRCore\Model\R4\Datatypes\Complex\FHIRIdentifier();
// Overwrite
$fhir_path->placeValue($patient, 'Patient.identifier', $new_id);
// Without root name
$fhir_path->placeValue($patient, 'identifier', $new_id);
// append at index 1
$fhir_path->placeValue($patient, 'Patient.identifier[1]', $new_id);
// overwrite at index 0
$fhir_path->placeValue($patient, 'Patient.identifier[0]', $new_id);
// Append
$fhir_path->placeValue($patient, 'Patient.identifier[]', $new_id);
// Creates needed datatypes
$fhir_path->placeValue($fhir_patient, 'Patient.name.given', 'Erwan');