franckitho / laravel-aws-textract
Wrapper for AWS Textract
Fund package maintenance!
franckitho
Requires
- php: ^8.2
- aws/aws-sdk-php: ^3.322
- illuminate/contracts: ^10.0|^11.0|^12.0
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- larastan/larastan: ^2.9
- laravel/pint: ^1.14
- nunomaduro/collision: ^8.1.1||^7.10.0
- orchestra/testbench: ^9.0.0||^8.22.0
- pestphp/pest: ^2.34
- pestphp/pest-plugin-arch: ^2.7
- pestphp/pest-plugin-laravel: ^2.3
- phpstan/extension-installer: ^1.3
- phpstan/phpstan-deprecation-rules: ^1.1
- phpstan/phpstan-phpunit: ^1.3
README
Simple AWS Textract (OCR Software, Data Extraction Tool) wrapper for Laravel
Features
- Analyze Document
- Analyze ID card
- Analyze Invoice
- Query-based extraction
- Signature detection
Installation
You can install the package via composer:
composer require franckitho/laravel-aws-textract
You can publish the config file with:
php artisan vendor:publish --tag="laravel-aws-textract-config"
This is the contents of the published config file:
return [ 'region' => env('AWS_REGION', 'us-east-1'), 'version' => env('AWS_TEXTRACT_VERSION', 'latest'), 'credentials' => [ 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), ], ];
Usage
With local file or url
use franckitho\Textract\AnalyseDocument; $document = AnalyseDocument::features('LAYOUT')->file('path/to/file')->analyze();
With S3 Bucket (need S3 permission)
use franckitho\Textract\AnalyseDocument; $document = AnalyseDocument::features('LAYOUT')->s3('bucket', 'file')->analyze();
For showing metadata
use franckitho\Textract\AnalyseDocument; $document = AnalyseDocument::features('LAYOUT')->file('path/to/file')->withMetaData()->analyze();
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.