-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
35 lines (35 loc) · 998 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
{
"name": "nyholm/effective-interest-rate",
"type": "library",
"description": "A library to calculate effective interest rate. Also know as XIRR or effective APR. ",
"keywords": ["effective interest rate", "effective interest", "XIRR", "effective APR"],
"homepage": "http://tnyholm.se",
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0"
},
"autoload": {
"psr-4": { "Nyholm\\EffectiveInterest\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Nyholm\\EffectiveInterest\\Test\\": "tests/" }
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}