-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
35 lines (35 loc) · 1 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
{
"name": "fannypack/ledger",
"description": "ledger implementation for laravel",
"keywords": ["library", "laravel", "php", "ledger"],
"license": "MIT",
"authors": [
{
"name": "Mpande Andrew",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"FannyPack\\Ledger\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"FannyPack\\Ledger\\LedgerServiceProvider"
],
"aliases": {
"Ledger": "FannyPack\\Ledger\\Facades\\Ledger"
}
}
},
"require": {
"illuminate/database": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/support": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/routing": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/validation": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"nesbot/carbon": "^1.26.3 || ^2.0"
}
}