1. Go to this page and download the library: Download mouday/more-echo library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mouday / more-echo example snippets
namespace Mouday\MoreEcho;
/**
* a demo for php composer
* Class EchoText
* @package Mouday\MoreEcho
*/
class EchoText
{
public static function echoText($text)
{
echo $text;
}
}