-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 963 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
{
"name" : "kobens/kobens-currency",
"description" : "Library for providing a common interface for interacting with currencies both digital and fiat.",
"type" : "library",
"license" : "BSD-3-Clause",
"authors" : [
{
"name" : "Darren Felton",
"email" : "[email protected]"
}
],
"minimum-stability" : "stable",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/dfelton/kobens-coding-standards"
}
],
"require" : {
"php" : "^7.4",
"ext-bcmath": "*"
},
"require-dev": {
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "^3.5",
"kobens/coding-standards": "dev-master"
},
"autoload" : {
"psr-4" : {
"Kobens\\Currency\\" : "src"
}
},
"autoload-dev": {
"psr-4": {
"KobensTest\\Currency\\": "test"
}
}
}