From a9dbc8e018c5854f928d2740051d3d80cecc7860 Mon Sep 17 00:00:00 2001 From: Fredrick Boaz Date: Fri, 29 Mar 2024 19:49:54 +0300 Subject: [PATCH 1/4] support for Laravel 10 --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index f38fb510..e6068a21 100644 --- a/composer.json +++ b/composer.json @@ -1,8 +1,8 @@ { - "name": "werk365/identitydocuments", + "name": "dsc/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", @@ -15,11 +15,11 @@ "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" }, From 67bda3fd260d106c828160067d325407727c5015 Mon Sep 17 00:00:00 2001 From: Fredrick Boaz Date: Fri, 29 Mar 2024 19:58:46 +0300 Subject: [PATCH 2/4] updated profile --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index e6068a21..1ee99b2c 100644 --- a/composer.json +++ b/composer.json @@ -1,16 +1,16 @@ { - "name": "dsc/identitydocuments", + "name": "dscke/identitydocuments", "description": "Package to parse identity documents like passports", "license": "GPL-3.0-or-later", "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", From 4c2b8c86b4e7e69719eec3cbd65abcd7a4ab78a4 Mon Sep 17 00:00:00 2001 From: Fredrick Boaz Date: Fri, 29 Mar 2024 20:02:55 +0300 Subject: [PATCH 3/4] update readme file --- readme.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/readme.md b/readme.md index 77eadc2c..d51e09f4 100644 --- a/readme.md +++ b/readme.md @@ -7,11 +7,7 @@ [![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) @@ -19,7 +15,7 @@ Package that allows you to handle documents like passports and other documents t 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 @@ -34,7 +30,7 @@ Via Composer ``` bash -$ composer require werk365/identitydocuments +$ composer require dscke/identitydocuments ``` From c3453ce6bbd9b62bde70d030867155228e8980c8 Mon Sep 17 00:00:00 2001 From: Fredrick Boaz Date: Fri, 29 Mar 2024 20:07:09 +0300 Subject: [PATCH 4/4] clean up --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 1ee99b2c..b3db008b 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "keywords": ["Laravel", "IdentityDocuments", "MRZ", "Passport"], "require": { "google/cloud-vision": "^1.3", - "intervention/image": "^2.5", + "intervention/image": "^2.7", "illuminate/support": "~5|~6|~7|~8|~9|~10" }, "require-dev": {