-
Notifications
You must be signed in to change notification settings - Fork 77
/
composer.json
52 lines (42 loc) · 1.23 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "php-units-of-measure/php-units-of-measure",
"description": "A PHP library for converting between standard units of measure.",
"keywords": [
"measurements", "data", "conversion"
],
"homepage": "https://github.com/PhpUnitsOfMeasure/php-units-of-measure",
"license": "MIT",
"authors": [
{
"name": "Jonathan Hanson",
"email": "[email protected]",
"homepage": "http://www.jonathan-hanson.org/",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/PhpUnitsOfMeasure/php-units-of-measure/issues",
"source": "https://github.com/PhpUnitsOfMeasure/php-units-of-measure"
},
"require": {
"php": ">=5.5.0"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"squizlabs/php_codesniffer": "2.8.1"
},
"replace": {
"triplepoint/php-units-of-measure": "*"
},
"autoload": {
"psr-4": {
"PhpUnitsOfMeasure\\": "source/"
}
},
"autoload-dev": {
"psr-4": {
"PhpUnitsOfMeasureTest\\": "tests/"
}
}
}