-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update composer version requirements
- Loading branch information
1 parent
72b2dc4
commit f04b4f8
Showing
1 changed file
with
10 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,23 @@ | ||
{ | ||
"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": { | ||
"ext-bcmath": "^0.0.0" | ||
"php": "^5.4|^7.0", | ||
"ext-bcmath": "*" | ||
}, | ||
"require-dev": { | ||
"behat/behat": "^3.0", | ||
"henrikbjorn/phpspec-code-coverage": "^2.0", | ||
"phpspec/phpspec": "^2.4", | ||
"phpunit/phpunit": "^5.2", | ||
"rmiller/behat-spec": "^0.3.0" | ||
"phpunit/phpunit": "^5.0", | ||
"rmiller/behat-spec": "^0.3" | ||
}, | ||
"license": "MIT", | ||
"authors": [{ | ||
"name": "Daniel Hunsaker", | ||
"email": "[email protected]" | ||
}], | ||
"autoload": { | ||
"psr-4": { | ||
"Danhunsaker\\": "src/" | ||
|