Sergey Romanenko
Sergey Romanenko
We should have this tool for image optimisation https://github.com/psliwa/image-optimizer This library is able to optimize png, jpg and gif files in very easy and handy way. It uses optipng, pngquant,...
To go forward - code and structure need to be refactored for upcoming Flextype 0.9.7! 1. Review **pds/skeleton** and implement some parts of https://github.com/php-pds/skeleton 2. Review possibility of migration to...
update license year
We should able to set fractions for element width Draft implementation: ```php if (preg_match('/(\d+)\/(\d+)/', (string) $widthStyle, $matches)) { $widthStyle = intval($matches[1] / $matches[2] * 100); } ``` need to check...
We should able to set percentage for element width Draft implementation: ```php if (preg_match('/^\d+(?:\.\d+)?%$/', (string) $widthStyle)) { $widthStyle = intval(($widthStyle / 100) * Terminal::getWidth()); } ``` need to check this...
We should have emojies support for the element value. With the current implementation of the box model calculations for value length with emojies are little bit wrong because some emojies...
We should have ability to import and export entries from files. New Entries methods: ```php /** * Import. * * @param string $file File with data to import. */ public...