-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
63 lines (63 loc) · 1.51 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
63
{
"name": "abivia/ledger",
"type": "library",
"description": "General Ledger and Journal Accounting Package for Laravel with JSON API",
"keywords": [
"abivia",
"accounting",
"journal",
"laravel",
"ledger"
],
"authors": [
{
"name": "Alan Langford",
"email": "ledger@abivia.com",
"homepage": "https://ledger.abivia.com",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"php": "^8.0|^8.1",
"ext-bcmath": "*",
"ext-json": "*",
"ext-pdo": "*",
"abivia/hydration": "^2.5"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"doctrine/dbal": "^3.2",
"nunomaduro/phpinsights": "^2.6",
"opis/json-schema": "^2.2",
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^9.5.8"
},
"autoload": {
"psr-4": {
"Abivia\\Ledger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Abivia\\Ledger\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Abivia\\Ledger\\LedgerServiceProvider"
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}