Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
20 changes: 10 additions & 10 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": "hergen.dillema@gmail.com",
"homepage": "https://365werk.nl"
"name": "Digital Steps Creatives",
"email": "info@dsc.co.ke",
"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"
"intervention/image": "^2.7",
"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