-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.09 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": "ocr/ocr-space-engine",
"description": "Engine using the https://ocr.space API.",
"type": "library",
"license": "GPL-3.0-only",
"minimum-stability": "stable",
"require": {
"php": "^7.4|^8.0",
"ocr/core": "^1.0",
"ocr/http": "^2.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"guzzlehttp/guzzle": "^7.4",
"guzzlehttp/psr7": "^2.1",
"mockery/mockery": "^1.4",
"phan/phan": "^5.2",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.5",
"sebastian/phpcpd": "^6.0",
"slevomat/coding-standard": "^7.0",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^4.11"
},
"suggest": {
"guzzlehttp/guzzle": "^7.4",
"guzzlehttp/psr7": "^2.1"
},
"autoload": {
"psr-4": {
"OCR\\": "sources/"
}
},
"autoload-dev": {
"psr-4": {
"OCR\\Test\\": "tests/"
}
}
}