-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (44 loc) · 1.08 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
45
{
"name": "mortgage-source/api",
"description": "PHP Mortgage Source API Client",
"type": "library",
"license": "GPL-3.0-only",
"homepage": "https://github.com/legalweb/mortgage-source-php-library/",
"authors": [
{
"name": "Aaron Parker",
"email": "[email protected]",
"homepage": "http://www.legalweb.org.uk"
}
],
"keywords": [
"legalweb",
"Mortgage",
"Source",
"API"
],
"require": {
"php": ">=7.1",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"friendsofphp/php-cs-fixer": "1.7.*",
"ulrichsg/getopt-php": "^3.2",
"yosymfony/toml": "^1.0"
},
"suggest": {
},
"autoload": {
"psr-4": {
"Legalweb\\MortgageSourceClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Legalweb\\MortgageSourceClientTest\\": "tests/",
"Legalweb\\MortgageSourceClientExample\\": "examples/"
}
}
}