mirror of
https://github.com/cytopia/devilbox.git
synced 2025-03-30 23:46:04 +00:00
Merge pull request #468 from cytopia/php-cs-fixer
Feature Release: Foreign Function Interface (FFI) and PHP-CS-Fixer
This commit is contained in:
commit
3400c02b45
@ -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';
|
||||
|
||||
//
|
||||
|
@ -552,6 +552,10 @@ The following tools will assist you on creating new projects easily as well as h
|
||||
<td>:wrench: <a href="https://github.com/squizlabs/PHP_CodeSniffer">php code beautifier</a></td>
|
||||
<td><code>phpcbf</code> is a command line tool that automatically correct coding standard violations.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>:wrench: <a href="https://github.com/FriendsOfPHP/PHP-CS-Fixer">php cs fixer</a></td>
|
||||
<td><code>php-cs-fixer</code> is a tool to automatically fix PHP Coding Standards issues.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>:wrench: <a href="https://github.com/Unitech/pm2">pm2</a></td>
|
||||
<td><code>pm2</code> is Node.js Production Process Manager with a built-in Load Balancer.</td>
|
||||
@ -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 | | |
|
||||
|
@ -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
|
||||
|
||||
##
|
||||
|
@ -159,6 +159,12 @@
|
||||
PHP CodeSniffer <img src="https://raw.githubusercontent.com/cytopia/icons/master/11x11/ext-link.png" />
|
||||
</a>
|
||||
|
||||
.. |ext_lnk_tool_php_cs_fixer| raw:: html
|
||||
|
||||
<a target="_blank" href="https://github.com/FriendsOfPHP/PHP-CS-Fixer">
|
||||
PHP-CS-Fixer <img src="https://raw.githubusercontent.com/cytopia/icons/master/11x11/ext-link.png" />
|
||||
</a>
|
||||
|
||||
.. |ext_lnk_tool_phpcbf| raw:: html
|
||||
|
||||
<a target="_blank" href="https://github.com/squizlabs/PHP_CodeSniffer">
|
||||
|
@ -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| |
|
||||
|
Loading…
x
Reference in New Issue
Block a user