Skip to content

Commit

Permalink
Added PHP requirement and updated ToDo
Browse files Browse the repository at this point in the history
  • Loading branch information
MaestroError committed Mar 22, 2024
1 parent 072037d commit 1536658
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 29 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
59 changes: 30 additions & 29 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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"
}
}

0 comments on commit 1536658

Please sign in to comment.