-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1004 Bytes
/
Copy pathcomposer.json
File metadata and controls
42 lines (42 loc) · 1004 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
{
"name": "atiweb/edss-in-php",
"description": "PHP implementation of the Expanded Disability Status Scale (EDSS) calculator based on the Kurtzke/Kappos scoring table",
"type": "library",
"license": "MIT",
"keywords": [
"edss",
"multiple-sclerosis",
"neurology",
"kurtzke",
"disability-scale",
"clinical-assessment",
"functional-systems"
],
"authors": [
{
"name": "atiweb",
"homepage": "https://github.com/atiweb"
}
],
"homepage": "https://github.com/atiweb/edss-in-php",
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.0 || ^11.0"
},
"autoload": {
"psr-4": {
"Atiweb\\Edss\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Atiweb\\Edss\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "stable"
}