Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.1.0 #45

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"name": "werk365/identitydocuments",
"name": "dscke/identitydocuments",
"description": "Package to parse identity documents like passports",
"license": "GPL-3.0-or-later",
"version": "2.0.5",
"version": "3",
"authors": [
{
"name": "Hergen Dillema",
"email": "[email protected]",
"homepage": "https://365werk.nl"
"name": "Digital Steps Creatives",
"email": "[email protected]",
"homepage": "https://dsc.co.ke"
}
],
"homepage": "https://github.com/werk365/identitydocuments",
"homepage": "https://github.com/dsc382/identitydocuments",
"keywords": ["Laravel", "IdentityDocuments", "MRZ", "Passport"],
"require": {
"google/cloud-vision": "^1.3",
"intervention/image": "^2.5",
"illuminate/support": "~5|~6|~7|~8|~9"
"illuminate/support": "~5|~6|~7|~8|~9|~10"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1.1",
"phpunit/phpunit": "^9.5.10",
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "~3|~4",
"sempro/phpunit-pretty-print": "^1.0"
},
Expand Down
8 changes: 2 additions & 6 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,15 @@
[![Total Downloads][ico-downloads]][link-downloads]
[![StyleCI][ico-styleci]][link-styleci]



For general questions and suggestions join gitter:

[![Join the chat at https://gitter.im/werk365/identitydocuments](https://badges.gitter.im/werk365/identitydocuments.svg)](https://gitter.im/werk365/identitydocuments?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)



Package that allows you to handle documents like passports and other documents that contain a Machine Readable Zone (MRZ).

This package allows you to process images of documents to find the MRZ, parse the MRZ, parse the Visual Inspection Zone (VIZ) and also to find and return a crop of the passport picture (using face detection).

> ⚠️ Version 2.x is a complete rewrite of the package with a new MRZ detection algorithm and is not compatible with version 1.x
> ⚠️ Version 3.x is a complete rewrite of the package with a new MRZ detection algorithm and is not compatible with version 1.x



Expand All @@ -34,7 +30,7 @@ Via Composer

``` bash

$ composer require werk365/identitydocuments
$ composer require dscke/identitydocuments

```

Expand Down