-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 894 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
39
40
41
42
43
44
45
{
"name": "xynnn/unicorn",
"type": "library",
"description": "A framework agnostic PHP library to convert several units",
"keywords": [
"converter",
"units",
"formats"
],
"homepage": "https://github.com/xyNNN/unicorn",
"license": "LGPL-3.0-or-later",
"version": "1.0.2",
"authors": [
{
"name": "Philipp Bräutigam",
"email": "[email protected]"
},
{
"name": "Steffen Brand",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.0",
"ext-bcmath": "*",
"steffenbrand/curr-curr": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "4.8"
},
"autoload": {
"psr-4": {
"Xynnn\\Unicorn\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Xynnn\\Unicorn\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin"
}
}