-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.23 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
{
"name": "miquelbrazil/accounting-tools",
"description": "CLI tools for parsing and preparing financial data for use with Zoho Books.",
"type": "project",
"license": "proprietary",
"authors": [
{
"name": "Miquel Brazil",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"symfony/console": "^5.4",
"vlucas/phpdotenv": "^5.5",
"cakephp/core": "^5.0",
"cakephp/chronos": "^3.0",
"league/csv": "^9.0",
"league/flysystem": "^3.19",
"league/flysystem-aws-s3-v3": "^3.19",
"league/mime-type-detection": "^1.14",
"hashids/hashids": "^5.0",
"cakephp/collection": "^5.0",
"setasign/setapdf-extractor_eval_ioncube_php8.1": "2.43.0.1899"
},
"require-dev": {
"spatie/ray": "^1.0"
},
"repositories": [
{
"type": "composer",
"url": "https://www.setasign.com/downloads/"
}
],
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"setasign/composer-ioncube-license-installer": true
}
}
}