-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.02 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
{
"name": "bicycle/tesseract-bridge",
"description": "Integration of tesseract bridge via FFI and CLI",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"keywords": ["tesseract", "ocr", "integration", "library", "ffi", "cli"],
"authors": [
{
"name": "Vladimir Khramtsov",
"homepage": "https://github.com/vkhramtsov",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/vkhramtsov/tesseract-bridge/issues"
},
"require": {
"php": ">7.4.0"
},
"autoload": {
"psr-4": {
"Bicycle\\": "src/Bicycle"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.17.3",
"phpmd/phpmd": "^2.9.1",
"phpunit/phpunit": "^9.5.0",
"sebastian/phpcpd": "^6.0.3",
"squizlabs/php_codesniffer": "^3.5.8",
"vimeo/psalm": "^4.3.2"
},
"suggest": {
"ext-ffi": "So you can use tesseract via ffi integration"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}