-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.22 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
{
"name": "legit-health/medical-device-sdk",
"description": "SDK for integrate with the Medical Device API",
"license": "MIT",
"type": "library",
"require": {
"php": "^8.2",
"symfony/http-client": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "10.4.*",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"ekino/phpstan-banned-code": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/extension-installer": "^1.3",
"friendsofphp/php-cs-fixer": "^3.37",
"phpunit/php-code-coverage": "10.1.*",
"vlucas/phpdotenv": "^5.5"
},
"autoload": {
"psr-4": {
"LegitHealth\\MedicalDevice\\": "src/"
}
},
"authors": [
{
"name": "Gerardo",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"ci": [
"php php-cs-fixer.phar fix --config .php-cs-fixer.php --allow-risky=yes",
"vendor/bin/phpstan analyse --ansi --no-interaction",
"./vendor/bin/phpunit tests --colors"
]
}
}