Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 988 Bytes

README.md

File metadata and controls

39 lines (26 loc) · 988 Bytes

php-fhir-generated

Pre-generated classes from dcarbone/php-fhir

VERSION: STU3

Usage

This lib can either be used with Composer or on it's own.

Inclusion with Composer

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);

Standalone Usage

Something like this:

require 'src/PHPFHIRGenerated/PHPFHIRResponseParser.php'
$parser = new PHPFHIRGenerated\PHPFHIRResponseParser();