forked from ekmungai/eloquent-ifrs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.3 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name" : "ekmungai/eloquent-ifrs",
"description" : "Eloquent Double Entry Accounting with focus on IFRS Compliant Reporting",
"keywords" : [
"accounting",
"eloquent",
"laravel",
"lumen",
"reporting"
],
"type" : "library",
"license" : "MIT",
"support" : {
"issues" : "https://github.com/ekmungai/eloquent-ifrs/issues",
"source" : "https://github.com/ekmungai/eloquent-ifrs"
},
"authors" : [{
"name" : "Edward Mungai",
"email" : "[email protected]"
}
],
"minimum-stability" : "dev",
"require" : {
"php" : "^7.3.0",
"illuminate/database" : "^7.0|^8.0",
"illuminate/auth" : "^7.0|^8.0",
"calebporzio/parental" : "^0.11.0",
"doctrine/dbal": "^2.10.1"
},
"require-dev" : {
"facade/ignition" : "^2.3.6",
"friendsofphp/php-cs-fixer" : "^2.16",
"fzaninotto/faker" : "^1.4",
"mockery/mockery" : "^1.0",
"nunomaduro/collision" : "^5.0",
"nunomaduro/larastan" : "^0.5.0",
"phpmd/phpmd" : "^2.8",
"phpunit/phpunit" : "9.4.3",
"squizlabs/php_codesniffer" : "*",
"orchestra/testbench" : "^5.0|^6.0"
},
"autoload" : {
"psr-4" : {
"IFRS\\" : "src"
},
"classmap" : [
"database/factories"
]
},
"autoload-dev" : {
"psr-4" : {
"IFRS\\Tests\\" : "tests"
}
},
"extra" : {
"laravel" : {
"providers" : [
"IFRS\\IFRSServiceProvider"
]
}
}
}