-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.01 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
{
"name": "phpexperts/loan-calculators",
"description": "A set of loan calculators for aiding the creation of loan packages.",
"keywords": [
"loan",
"calculator",
"amortization",
"payment schedule"
],
"homepage": "https://www.phpexperts.pro/",
"license": "Creative Commons Attribution-NoDerivatives 4.0",
"authors": [
{
"name": "PHP Experts, Inc.",
"homepage": "https://www.phpexperts.pro/"
},
{
"name": "Theodore R. Smith",
"homepage": "https://www.linkedin.com/in/hopeseekr"
}
],
"require": {
"php": ">=7.1",
"phpexperts/simple-dto": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"mockery/mockery": "^1.0",
"larapack/dd": "^1.1"
},
"autoload": {
"psr-4": { "PHPExperts\\LoanCalculators\\" : "src/" }
},
"autoload-dev": {
"psr-4": { "PHPExperts\\LoanCalculators\\Tests\\" : "tests/" }
}
}