-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.33 KB
/
Copy pathcomposer.json
File metadata and controls
47 lines (47 loc) · 1.33 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
{
"name": "visionapi/visionapi-php",
"description": "Official PHP client for the Vision API — credit-based OCR and visual intelligence. Extract structured JSON from images and PDFs.",
"type": "library",
"keywords": ["ocr", "vision", "document-ai", "invoice", "receipt", "pdf", "extraction", "visionapi"],
"homepage": "https://visionapi.io",
"license": "MIT",
"authors": [
{
"name": "Vision API",
"homepage": "https://visionapi.io"
}
],
"support": {
"docs": "https://docs.visionapi.io",
"issues": "https://github.com/devrobotlabs/visionapi-php/issues",
"source": "https://github.com/devrobotlabs/visionapi-php"
},
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"friendsofphp/php-cs-fixer": "^3.49",
"phpstan/phpstan": "^2.2"
},
"autoload": {
"psr-4": {
"VisionApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VisionApi\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"lint": "php-cs-fixer fix --dry-run --diff",
"analyse": "phpstan analyse src --level=6"
},
"config": {
"sort-packages": true
}
}