-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
composer.json
66 lines (66 loc) · 1.36 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "dcarbone/php-fhir",
"type": "library",
"description": "Tools for creating PHP classes from the HL7 FHIR Specification",
"license": "Apache-2.0",
"homepage": "https://github.com/dcarbone/php-fhir",
"authors": [
{
"name": "Daniel Carbone",
"email": "[email protected]",
"homepage": "https://github.com/dcarbone"
}
],
"keywords": [
"php",
"fhir",
"ehr",
"hl7",
"php-fhir"
],
"require": {
"php": "^8.1",
"ext-ctype": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"psr/log": "^3.0"
},
"require-dev": {
"ext-dom": "*",
"ext-xmlreader": "*",
"ext-xmlwriter": "*",
"phpunit/phpunit": "^10.5 || ^11.0",
"monolog/monolog": "^3.2.0"
},
"replace": {
"php-fhir/parser": "*",
"php-fhir/resources": "*",
"php-fhir/elements": "*",
"php-fhir/common": "*",
"php-fhir/component-tests": "*",
"php-fhir/object-mapper": "*",
"php-fhir/utilities": "*"
},
"autoload": {
"files": [
"files/constants.php",
"files/funcs.php"
],
"psr-4": {
"DCarbone\\PHPFHIR\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HL7\\": "output/HL7"
}
},
"config": {
"platform-check": false
},
"suggest": {
"ext-zip": "To enable unzipping of downloaded source files"
}
}