-
-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.45 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 1.45 KB
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
{
"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": "emungai@karanjamungai.com"
}
],
"minimum-stability": "dev",
"require": {
"php": "^8.2",
"illuminate/database": "^11.0|^12.0|^13.0",
"illuminate/auth": "^11.0|^12.0|^13.0",
"doctrine/dbal": "^3.1|^4.2"
},
"require-dev": {
"spatie/laravel-ignition": "^2.0",
"laravel/legacy-factories": "1.x-dev|^1.4",
"nunomaduro/collision": "^8.0",
"phpunit/phpunit": "^11.5.3|^12.5.12",
"squizlabs/php_codesniffer": "*",
"orchestra/testbench": "^9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
"IFRS\\": "src"
},
"classmap": [
"database/factories"
]
},
"autoload-dev": {
"psr-4": {
"IFRS\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"IFRS\\IFRSServiceProvider"
]
}
}
}