-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.07 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.07 KB
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
{
"name": "php-vision/ya-ocr-sdk",
"description": "HTTP client for Yandex Cloud Vision OCR (sync/async)",
"type": "library",
"license": "MIT",
"keywords": [
"yandex",
"cloud",
"vision",
"ocr",
"http-client",
"ocr-text-reader",
"ocr-php"
],
"require": {
"php": "^8.4",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^2.0",
"ext-fileinfo": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.59",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.5",
"rector/rector": "^2.3"
},
"autoload": {
"psr-4": {
"PhpVision\\YandexVision\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpVision\\YandexVision\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"stan": "phpstan analyse --memory-limit=1G",
"lint": "php-cs-fixer fix --dry-run --diff",
"rector": "rector"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "stable",
"prefer-stable": true
}