Initial commit

This commit is contained in:
2023-03-30 00:28:32 +03:00
parent 6f1bc532bf
commit a3831cad6b
4 changed files with 280 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"name": "geckon01/simple-image-compressor",
"description": "SimpleImageCompressor is a tiny simple PHP image compressor lib which allows you to compress any image easily on the fly",
"version": "0.3.1",
"keywords": [
"php",
"images",
"compress",
"png",
"jpeg",
"gif"
],
"require": {
"php": ">=7.4",
"ext-gd": "*"
},
"homepage": "https://github.com/Geckon01/simple-image-compressor",
"license": "MIT",
"autoload": {
"psr-4": {
"geckon01\\SimpleImageCompressor\\": "src/"
}
},
"require-dev": {}
}