diff --git a/.devilbox/www/config.php b/.devilbox/www/config.php index e829671f..88f1e9b9 100644 --- a/.devilbox/www/config.php +++ b/.devilbox/www/config.php @@ -14,7 +14,7 @@ putenv('RES_OPTIONS=retrans:1 retry:1 timeout:1 attempts:1'); $DEVILBOX_VERSION = 'v0.15'; -$DEVILBOX_DATE = '2019-01-08'; +$DEVILBOX_DATE = '2019-01-12'; $DEVILBOX_API_PAGE = 'devilbox-api/status.json'; // diff --git a/README.md b/README.md index a5e7525c..ff5f7013 100644 --- a/README.md +++ b/README.md @@ -552,6 +552,10 @@ The following tools will assist you on creating new projects easily as well as h :wrench: php code beautifier phpcbf is a command line tool that automatically correct coding standard violations. + + :wrench: php cs fixer + php-cs-fixer is a tool to automatically fix PHP Coding Standards issues. + :wrench: pm2 pm2 is Node.js Production Process Manager with a built-in Load Balancer. @@ -628,6 +632,7 @@ The Devilbox is a development stack, so it is made sure that a lot of PHP module | enchant | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | | ereg | | ✔ | ✔ | ✔ | ✔ | | | | | | | exif | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | +| FFI | | | | | | | | | | 🗸 | | fileinfo | 🗸 | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | | filter | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | | ftp | 🗸 | 🗸 | 🗸 | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | @@ -638,7 +643,7 @@ The Devilbox is a development stack, so it is made sure that a lot of PHP module | iconv | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | | igbinary | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | | imagick | | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | | -| imap | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | +| imap | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | | | interbase | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | | intl | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | 🗸 | | ioncube | d | d | d | d | d | d | d | d | | | diff --git a/docker-compose.yml b/docker-compose.yml index 5669d1da..bc65ffda 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -95,7 +95,7 @@ services: # PHP # ------------------------------------------------------------ php: - image: devilbox/php-fpm:${PHP_SERVER}-work-0.67 + image: devilbox/php-fpm:${PHP_SERVER}-work-0.71 hostname: php ## diff --git a/docs/_includes/links/tools.rst b/docs/_includes/links/tools.rst index 971341d9..bc3ef0e1 100644 --- a/docs/_includes/links/tools.rst +++ b/docs/_includes/links/tools.rst @@ -159,6 +159,12 @@ PHP CodeSniffer +.. |ext_lnk_tool_php_cs_fixer| raw:: html + + + PHP-CS-Fixer + + .. |ext_lnk_tool_phpcbf| raw:: html diff --git a/docs/readings/available-tools.rst b/docs/readings/available-tools.rst index 685b3d16..5cc8b301 100644 --- a/docs/readings/available-tools.rst +++ b/docs/readings/available-tools.rst @@ -66,6 +66,8 @@ The PHP container is your workhorse and these are your tools: +----------------------+---------------------------------------+ | ``phalcon`` | |ext_lnk_tool_phalcon| | +----------------------+---------------------------------------+ +| ``php-cs-fixer`` | |ext_lnk_tool_php_cs_fixer| | ++----------------------+---------------------------------------+ | ``phpcs`` | |ext_lnk_tool_phpcs| | +----------------------+---------------------------------------+ | ``phpcbf`` | |ext_lnk_tool_phpcbf| |