-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (56 loc) · 1.27 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
64
65
{
"name": "ahmedghanem00/tesseract-ocr",
"description": "A PHP wrapper for Tesseract-OCR binary",
"type": "library",
"license": "MIT",
"keywords": [
"tesseract",
"ocr",
"text recognition",
"ocr recognition",
"php-wrapper"
],
"authors": [
{
"name": "Ahmed Ghanem",
"email": "[email protected]",
"homepage": "https://github.com/ahmedghanem00"
}
],
"autoload": {
"psr-4": {
"ahmedghanem00\\TesseractOCR\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ahmedghanem00\\TesseractOCR\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"symfony/string": "^6.0 || ^7.0",
"symfony/process": "^6.0 || ^7.0",
"intervention/image": "^2.7.0"
},
"require-dev": {
"ext-gd": "*",
"ext-imagick": "*",
"phpunit/phpunit": "dev-main",
"phpstan/phpstan": "1.10.x-dev",
"phpstan/extension-installer": "^1.3",
"friendsofphp/php-cs-fixer": "^3.54",
"smalot/pdfparser": "dev-master"
},
"scripts": {
"test": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan analyse",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix"
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}