Skip to content

Commit 56cff5b

Browse files
committed
v1.0.0
1 parent 69b0421 commit 56cff5b

File tree

15 files changed

+7243
-2
lines changed

15 files changed

+7243
-2
lines changed

composer.json

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,34 @@
11
{
22
"name": "postscripton/money",
33
"description": "A convenient way to convert numbers from DB or inputs into money strings for humans",
4-
"type": "library",
4+
"version": "1.0.0",
5+
"type": "library",
56
"license": "MIT",
67
"authors": [
78
{
89
"name": "PostScripton",
910
"email": "postscripton.sp@gmail.com"
1011
}
1112
],
12-
"require": {}
13+
"require": {
14+
"php": ">=7.1",
15+
"orchestra/testbench": "^6.15"
16+
},
17+
"autoload": {
18+
"psr-4": {
19+
"PostScripton\\Money\\": "src/"
20+
}
21+
},
22+
"autoload-dev": {
23+
"psr-4": {
24+
"PostScripton\\Money\\Tests\\": "tests/"
25+
}
26+
},
27+
"extra": {
28+
"laravel": {
29+
"providers": [
30+
"PostScripton\\Money\\MoneyServiceProvider"
31+
]
32+
}
33+
}
1334
}

0 commit comments

Comments
 (0)