-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 923 Bytes
/
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
{
"name": "katsana/etiqa-motor-insurance",
"description": "PHP Agnostic library for working with Etiqa Motor Insurance",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "KATSANA Developer",
"email": "developer@katsana.com"
}
],
"autoload": {
"psr-4": {
"Etiqa\\MotorInsurance\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Etiqa\\MotorInsurance\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.2",
"laravie/codex": "^5.1"
},
"require-dev": {
"mockery/mockery": "^1.3",
"php-http/curl-client": "^2.0",
"phpunit/phpunit": "^8.4"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}