forked from thiagoalessio/tesseract-ocr-for-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 877 Bytes
/
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
{
"name": "thiagoalessio/tesseract_ocr",
"description": "A wrapper to work with Tesseract OCR inside PHP.",
"version": "1.0.0-RC",
"type": "library",
"keywords": ["Tesseract", "OCR", "text recognition"],
"license": "Apache-2.0",
"authors": [
{
"name": "Thiago Alessio Pereira",
"email": "[email protected]",
"homepage": "http://thiagoalessio.me"
}
],
"support": {
"issues": "https://github.com/thiagoalessio/tesseract-ocr-for-php/issues",
"irc": "irc://irc.freenode.net/tesseract-ocr-for-php",
"source": "https://github.com/thiagoalessio/tesseract-ocr-for-php"
},
"require-dev": {
"phpunit/phpunit": "5.3.2",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"classmap": [
"src"
]
}
}