Pre-generated classes from dcarbone/php-fhir
- Homepage: http://hl7.org/fhir/STU3/index.html
- Resources: http://hl7.org/fhir/STU3/resourcelist.html
This lib can either be used with Composer or on it's own.
composer.json require entry:
{
"dcarbone/php-fhir-generated": "dev-STU3"
}
If you choose to then use the autoloader files generated by Composer, pass in false
when creating an instance of
PHPFHIRResponseParser so that it does not attempt to register
the included autoloader.
$parser = new PHPFHIRGenerated\PHPFHIRResponseParser(false);
Something like this:
require 'src/PHPFHIRGenerated/PHPFHIRResponseParser.php'
$parser = new PHPFHIRGenerated\PHPFHIRResponseParser();