Skip to content

Commit

Permalink
[FIX] Bring back ext_emconf.php so TER release works again
Browse files Browse the repository at this point in the history
Relates #89
  • Loading branch information
schmitzal committed Oct 25, 2024
1 parent 005542c commit 1611761
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ This API can reduce up to 80% of the file size of your images, which will increa
## Configuration
1. Create an API key* at https://tinypng.com/developers
2. Enter the API key* in the extension configuration
3. TYPO3 < 12: Include the static TypoScript. It disables compression while on application context "Development", so you won't lose compressions during development and testing
4. TYPO3 >= 12: Disables compression in extension settings if desired, so you won't lose compressions during development and testing
5. Have a nice day :)
3. Disables compression in extension settings if desired, so you won't lose compressions during development and testing
4. Have a nice day :)

<span style="font-size: 80%">_*Note that the tinify API is limited to 500 compressions per month.
If you need more, there is a paid version which can be activated in your dashboard (where you got your API key)_</span>
Expand All @@ -33,7 +32,7 @@ Configuration has been moved to extension settings
## Contribution
Bugs and feature requests are welcome. Feel free to create an [issue](https://github.com/schmitzal/tinyimg/issues), and I'll have a look at it as soon as possible.

Code improvements are also highly appreciated, as I'm a young developer and sure there is stuff to optimize.
Code improvements are also highly appreciated.

## Sponsoring
This extension is powered by [OPEN Digitalgruppe GmbH](https://www.open.de/).
Expand Down
21 changes: 21 additions & 0 deletions ext_emconf.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php

$EM_CONF[$_EXTKEY] = [
'title' => 'tinyimg',
'description' => 'Image compression for all pngs and jpgs uploaded to the backend (using the tinypng API)',
'category' => 'plugin',
'author' => 'Alessandro Schmitz',
'author_email' => '[email protected]',
'author_company' => 'OPEN Digitalgruppe GmbH',
'state' => 'stable',
'version' => '1.8.0',
'constraints' => [
'depends' => [
'typo3' => '13.4.0-13.4.99',
],
'conflicts' => [
],
'suggests' => [
],
],
];

0 comments on commit 1611761

Please sign in to comment.