PHP code example of gtjamesa / php-standards
1. Go to this page and download the library: Download gtjamesa/php-standards 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/ */
gtjamesa / php-standards example snippets
use PhpCsFixer\Finder;
$project_path = getcwd();
$finder = Finder::create()
->notPath('bootstrap/*')
->notPath('storage/*')
->notPath('resources/view/mail/*')
->in([
$project_path . '/app',
$project_path . '/config',
$project_path . '/database',
$project_path . '/resources',
$project_path . '/routes',
$project_path . '/tests',
])
->name('*.php')
->notName('*.blade.php')
->ignoreDotFiles(true)
->ignoreVCS(true);
return JamesAusten\styles($finder);
// Define rules to override the defaults
$rules = [
'method_argument_space' => true,
'phpdoc_summary' => false,
];
// Specify whether to enable caching (default: `true`)
// https://github.com/FriendsOfPHP/PHP-CS-Fixer#caching
$useCache = false;
return JamesAusten\styles($finder, $rules, $useCache)
->setCacheFile(__DIR__ . '.php_cs.cache'); // Set the cache file
bash
composer
.php_cs.cache
.php-cs-fixer.cache
bash
./vendor/bin/php-cs-fixer fix