1. Go to this page and download the library: Download fernleafsystems/qa 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/ */
fernleafsystems / qa example snippets
declare( strict_types=1 );
use FernleafSystems\QA\PhpCsFixer\ConfigFactory;
use FernleafSystems\QA\PhpCsFixer\RuleSet\Php83;
use PhpCsFixer\Finder;
$finder = Finder::create()
->in( __DIR__.'/src' )
->exclude( 'vendor' );
return ConfigFactory::fromRuleSet( new Php83() )
->withFinder( $finder )
->create();