-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 788 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 788 Bytes
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
{
"name": "danhunsaker/bcmath",
"description": "PHP bcmath as a static class, with several enhancements.",
"keywords": ["bcmath", "large number"],
"license": "MIT",
"authors": [{
"name": "Daniel Hunsaker",
"email": "[email protected]"
}],
"require": {
"php": "^5.4|^7.0",
"ext-bcmath": "*"
},
"require-dev": {
"behat/behat": "^3.0",
"henrikbjorn/phpspec-code-coverage": "^2.0|^1.0",
"phpspec/phpspec": "^2.4",
"phpunit/phpunit": "^4.0|^5.0",
"rmiller/behat-spec": "^0.3"
},
"autoload": {
"psr-4": {
"Danhunsaker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Danhunsaker\\BC\\Tests\\": "tests/"
}
}
}