A Charcoal module to add tinify integration to charcoal.
The preferred (and only supported) method is with Composer:
$ composer require locomotivemtl/charcoal-contrib-tinify
- PHP 5.6+: PHP 7 is recommended.
- locomotivemtl/charcoal-admin ^0.14.1
- tinify/tinify ^1.5
- PSR-7: Common interface for HTTP messages. Fulfilled by Slim.
- PSR-11: Common interface for dependency containers. Fulfilled by Pimple.
In your project's config file, require the tinify module like so :
{
"modules": {
"charcoal/tinify/tinify": {}
}
}
Define an API key, preferably in the admin.json config file since it's use is only required in the cms. You can generate a key at https://tinyjpg.com/developers
{
"apis": {
"tinify": {
"key": "3FYkvsXPt7VlZbwHsMnHvmZg2g9jW8dJ"
}
}
}
This contrib adds a menu item to the CMS system menu
TODO
- Add a script to schedule compressions task via cron.
To install the development environment:
$ composer install
To run the scripts (phplint, phpcs, and phpunit):
$ composer test
- The auto-generated
phpDocumentor
API documentation is available at:
https://locomotivemtl.github.io/charcoal-contrib-tinify/docs/master/ - The auto-generated
apigen
API documentation is available at:
https://codedoc.pub/locomotivemtl/charcoal-contrib-tinify/master/
- [php-coveralls/php-coveralls][phpcov]
- [phpunit/phpunit][phpunit]
- [squizlabs/php_codesniffer][phpcs]
The charcoal-contrib-tinify module follows the Charcoal coding-style:
- PSR-1
- PSR-2
- PSR-4, autoloading is therefore provided by Composer.
- phpDocumentor comments.
- phpcs.xml.dist and .editorconfig for coding standards.
Coding style validation / enforcement can be performed with
composer phpcs
. An auto-fixer is also available withcomposer phpcbf
.
Charcoal is licensed under the MIT license. See LICENSE for details.