-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.36 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.36 KB
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
46
47
48
{
"name": "ranskills/billing-boss",
"description": "A library that implements billing using a domain-specific language (DSL) to express a billing structure to be applied",
"keywords": ["billing", "bill", "discount"],
"homepage": "https://github.com/ranskills/billing-boss-php",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ransford Okpoti",
"email": "ranskills@yahoo.co.uk",
"homepage": "https://ranskills.wordpress.com",
"role": "developer"
}
],
"scripts": {
"test": "phpunit --testdox --colors=always",
"lint": "phpcs --standard=PSR2 src/",
"metrics": "phpmetrics --report-html=./tests/_reports/metrics src/",
"clean": [
"rm -rf tests/_reports",
"rm -f coverage.xml"
]
},
"scripts-descriptions": {
"test": "Run all tests!",
"clean": "Remove generated files"
},
"minimum-stability": "stable",
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "*",
"phpmetrics/phpmetrics": "^2.7"
},
"autoload": {
"psr-4": {
"BillingBoss\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BillingBoss\\Tests\\": "tests/"
}
}
}