-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
147 lines (147 loc) · 4.44 KB
/
composer.json
File metadata and controls
147 lines (147 loc) · 4.44 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "opencoreemr/oce-cli-import-codes",
"description": "OpenEMR CLI tool for importing standardized code tables (RXNORM, SNOMED, ICD, CQM_VALUESET), by OpenCoreEMR Inc",
"license": "GPL-3.0-or-later",
"type": "library",
"keywords": [
"openemr",
"cli",
"codes",
"medical",
"rxnorm",
"snomed",
"icd",
"cqm",
"healthcare"
],
"authors": [
{
"name": "Michael A. Smith",
"email": "michael@opencoreemr.com",
"homepage": "https://opencoreemr.com",
"role": "Developer"
}
],
"homepage": "https://opencoreemr.com",
"support": {
"email": "support@opencoreemr.com",
"issues": "https://github.com/opencoreemr/oce-cli-import-codes/issues",
"source": "https://github.com/opencoreemr/oce-cli-import-codes"
},
"require": {
"php": ">=8.2.0",
"ext-simplexml": "*",
"ext-xml": "*",
"ext-zip": "*",
"symfony/console": "^6.4",
"symfony/filesystem": "^6.4",
"symfony/finder": "^6.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.44",
"openemr/openemr": ">=7.0.3.4 || 7.0.4.x-dev || dev-master",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.0",
"rector/rector": "^2.0",
"squizlabs/php_codesniffer": "^4.0"
},
"repositories": [
{
"type": "package",
"package": {
"name": "openemr/openemr",
"version": "7.0.3.4",
"autoload": {
"psr-4": {
"OpenEMR\\": "src/"
}
},
"source": {
"type": "git",
"url": "https://github.com/openemr/openemr.git",
"reference": "v7_0_3_4"
}
}
},
{
"type": "package",
"package": {
"name": "openemr/openemr",
"version": "7.0.4.x-dev",
"autoload": {
"psr-4": {
"OpenEMR\\": "src/"
}
},
"source": {
"type": "git",
"url": "https://github.com/openemr/openemr.git",
"reference": "rel-704"
}
}
},
{
"type": "package",
"package": {
"name": "openemr/openemr",
"version": "dev-master",
"autoload": {
"psr-4": {
"OpenEMR\\": "src/"
}
},
"source": {
"type": "git",
"url": "https://github.com/openemr/openemr.git",
"reference": "master"
}
}
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"OpenCoreEMR\\CLI\\ImportCodes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenCoreEMR\\CLI\\ImportCodes\\Tests\\": "tests/"
}
},
"bin": [
"bin/oce-import-codes"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"php-http/discovery": false
},
"sort-packages": true
},
"scripts": {
"_comment": "Composer scripts handle CODE QUALITY checks that work in any environment (local, Docker, CI). For infrastructure operations (Docker, database), use Taskfile instead.",
"check": [
"@php-lint",
"@phpcs",
"@phpstan",
"@rector"
],
"fix": [
"@phpcbf",
"@rector-fix"
],
"php-lint": "git ls-files -z '*.php' | xargs -0 -n1 php -l",
"phpcbf": "phpcbf",
"phpcs": "phpcs",
"phpstan": "phpstan --memory-limit=512M analyse",
"phpunit": "vendor/bin/phpunit --testdox",
"rector": "rector process --dry-run",
"rector-fix": "rector process",
"test": "@phpunit",
"test:e2e": "vendor/bin/phpunit -c phpunit-integration.xml --testsuite e2e --testdox",
"test:integration": "vendor/bin/phpunit -c phpunit-integration.xml --testsuite integration --testdox",
"test:unit": "vendor/bin/phpunit --testsuite unit --testdox"
}
}