-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1017 Bytes
/
composer.json
File metadata and controls
50 lines (50 loc) · 1017 Bytes
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
{
"name": "medicplus/hl7",
"description": "MedicPlus HL7 is a PHP package for importing/exporting medical data to XML",
"license": "MIT",
"keywords": [
"MedicPlus",
"HL7"
],
"authors": [
{
"name": "Ivan Vasquez",
"email": "[email protected]",
"homepage": "http://ivanvasquez.net",
"role": "Project Manager / Developer"
},
{
"name": "Omar Acuña",
"role": "Developer"
}
],
"require": {
"php": "^7.3 || ^8.0",
"illuminate/config": "^8.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.0",
"mockery/mockery": "^1.5.0",
"symfony/var-dumper": "^5.4.0"
},
"autoload": {
"psr-4": {
"Medicplus\\HL7\\": "src",
"Medicplus\\Library\\": "src/library"
}
},
"autoload-dev": {
"psr-4": {
"Medicplus\\HL7\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "stable"
}