From 153665888f2eb160bbf5c93872a2dd1fd595b6e0 Mon Sep 17 00:00:00 2001 From: maestroerror Date: Sat, 23 Mar 2024 02:09:18 +0400 Subject: [PATCH] Added PHP requirement and updated ToDo --- README.md | 3 +++ composer.json | 59 ++++++++++++++++++++++++++------------------------- 2 files changed, 33 insertions(+), 29 deletions(-) diff --git a/README.md b/README.md index 67919e1..56a2ef4 100644 --- a/README.md +++ b/README.md @@ -124,3 +124,6 @@ Added pest test and workflows for linux, windows and macos. Run tests locally wi - Find out if it can be used with docker CLI command from PHP, add in docs if yes - Try to update to Go 1.21 version - Add github action for generating executables +- Add issue #33 and solution as arm64 example +- Add changes from issue #28 (try/catch) +- Add alternative packages in Docs from this issue [comment](https://github.com/MaestroError/php-heic-to-jpg/issues/25#issuecomment-1903901459) diff --git a/composer.json b/composer.json index 3655087..d853f2b 100644 --- a/composer.json +++ b/composer.json @@ -1,32 +1,33 @@ { - "name": "maestroerror/php-heic-to-jpg", - "description": "Converts HEIC/HEIF image to JPG type, without any dependencies", - "license": "MIT", - "autoload": { - "psr-4": { - "Maestroerror\\": "src/" - } - }, - "authors": [ - { - "name": "maestroerror", - "email": "revaz.gh@gmail.com" - } - ], - "minimum-stability": "dev", - "bin": [ - "bin/heicToJpg", - "bin/heicToJpgWin" - ], - "require-dev": { - "pestphp/pest": "2.x-dev" - }, - "config": { - "allow-plugins": { - "pestphp/pest-plugin": true - } - }, - "require": { - "maestroerror/heif-converter": "0.2" + "name": "maestroerror/php-heic-to-jpg", + "description": "Converts HEIC/HEIF image to JPG type, without any dependencies", + "license": "MIT", + "autoload": { + "psr-4": { + "Maestroerror\\": "src/" } + }, + "authors": [ + { + "name": "maestroerror", + "email": "revaz.gh@gmail.com" + } + ], + "minimum-stability": "dev", + "bin": [ + "bin/heicToJpg", + "bin/heicToJpgWin" + ], + "require-dev": { + "pestphp/pest": "2.x-dev" + }, + "config": { + "allow-plugins": { + "pestphp/pest-plugin": true + } + }, + "require": { + "maestroerror/heif-converter": "0.2", + "php": ">=7.4" + } }