-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
42 lines (42 loc) · 1.18 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
{
"name": "godruoyi/ocr",
"description": "The Best Image Ocr SDK For BAT.",
"keywords": ["OCR", "文字识别", "百度 OCR", "腾讯 OCR", "阿里云 OCR"],
"homepage": "https://github.com/godruoyi/ocr",
"type": "library",
"license": "MIT",
"authors": [{
"name": "godruoyi",
"email": "[email protected]"
}],
"require": {
"php": ">=8.1",
"guzzlehttp/guzzle": "^7.2",
"monolog/monolog": "^3.0",
"psr/log": "^3.0",
"godruoyi/easy-container": "^3.0",
"psr/simple-cache": "^3.0",
"symfony/cache": "^6.1",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"mockery/mockery": "^1.6",
"laravel/pint": "^1.19",
"ext-gd": "*"
},
"autoload": {
"psr-4": {
"Godruoyi\\OCR\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --display-incomplete --display-skipped --display-deprecations --display-errors --display-notices --display-warnings",
"pint": "vendor/bin/pint --config=pint.json"
}
}