PHP
Xdebug with VS Code (Remote - SSH)
quickly setup php debugging on remote server with Xdebug and VS Code with Remote-SSH enable
Read moreA collection of 3 posts
quickly setup php debugging on remote server with Xdebug and VS Code with Remote-SSH enable
Read more> 16) & 0xFF; $green = ($rgb >> 8 ) & 0xFF; $blue = $rgb & 0xFF; //formula to calculate gray level $gray = round(.299*$red + .587*$green
Read moreThe Core File * composer.json The Keys The require Key Specifying the dependency of the project, the packages that the project depends on. { "require": { "monolog/monolog": "1.0.*" // "package name" : "version" } } Package Name (monolog/monolog) Consist of a vendor name and a library name Version (1.0.*) Range: >, >=, <, <=, != Hyphen(-)
Read more