-
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) · 1.48 KB
/
Copy pathcomposer.json
File metadata and controls
50 lines (50 loc) · 1.48 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
{
"name": "ardenexal/fhir-bundle",
"description": "Symfony Bundle for integrating FHIR Tools components",
"type": "symfony-bundle",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.3",
"ardenexal/fhir-code-generation": "^0.4",
"ardenexal/fhir-http-client": "^0.4",
"ardenexal/fhir-metadata": "^0.4",
"ardenexal/fhir-path": "^0.4",
"ardenexal/fhir-serialization": "^0.4",
"ardenexal/fhir-validation": "^0.4",
"psr/cache": "^3.0",
"symfony/config": "^6.4|^7.4",
"symfony/console": "^6.4|^7.4",
"symfony/dependency-injection": "^6.4|^7.4",
"symfony/finder": "^6.4|^7.4",
"symfony/framework-bundle": "^6.4|^7.4",
"symfony/http-kernel": "^6.4|^7.4",
"symfony/serializer": "^6.4|^7.4",
"symfony/yaml": "^6.4|^7.4"
},
"require-dev": {
"phpunit/phpunit": "^12.5",
"symfony/phpunit-bridge": "^6.4|^7.4",
"giorgiosironi/eris": "^1.0"
},
"autoload": {
"psr-4": {
"Ardenexal\\FHIRTools\\Bundle\\FHIRBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ardenexal\\FHIRTools\\Bundle\\FHIRBundle\\Tests\\": "tests/"
}
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^6.4|^7.4"
},
"branch-alias": {
"dev-main": "0.4.x-dev"
}
}
}