Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PostScripton committed Mar 26, 2021
1 parent 69b0421 commit 56cff5b
Show file tree
Hide file tree
Showing 15 changed files with 7,243 additions and 2 deletions.
25 changes: 23 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,34 @@
{
"name": "postscripton/money",
"description": "A convenient way to convert numbers from DB or inputs into money strings for humans",
"type": "library",
"version": "1.0.0",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "PostScripton",
"email": "[email protected]"
}
],
"require": {}
"require": {
"php": ">=7.1",
"orchestra/testbench": "^6.15"
},
"autoload": {
"psr-4": {
"PostScripton\\Money\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PostScripton\\Money\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"PostScripton\\Money\\MoneyServiceProvider"
]
}
}
}
Loading

0 comments on commit 56cff5b

Please sign in to comment.