mirror of
https://github.com/standardebooks/web.git
synced 2025-07-13 18:11:52 -04:00
Add Composer autoloading functions and PHPStan for testing
This commit is contained in:
parent
e198c4db65
commit
f5d7d4e02a
1518 changed files with 169063 additions and 30 deletions
31
vendor/nikic/php-parser/test/bootstrap.php
vendored
Normal file
31
vendor/nikic/php-parser/test/bootstrap.php
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
|
||||
namespace PhpParser;
|
||||
|
||||
require __DIR__ . '/../vendor/autoload.php';
|
||||
|
||||
function canonicalize($str) {
|
||||
// normalize EOL style
|
||||
$str = str_replace("\r\n", "\n", $str);
|
||||
|
||||
// trim newlines at end
|
||||
$str = rtrim($str, "\n");
|
||||
|
||||
// remove trailing whitespace on all lines
|
||||
$lines = explode("\n", $str);
|
||||
$lines = array_map(function($line) {
|
||||
return rtrim($line, " \t");
|
||||
}, $lines);
|
||||
return implode("\n", $lines);
|
||||
}
|
||||
|
||||
function filesInDir($directory, $fileExtension) {
|
||||
$directory = realpath($directory);
|
||||
$it = new \RecursiveDirectoryIterator($directory);
|
||||
$it = new \RecursiveIteratorIterator($it, \RecursiveIteratorIterator::LEAVES_ONLY);
|
||||
$it = new \RegexIterator($it, '(\.' . preg_quote($fileExtension) . '$)');
|
||||
foreach ($it as $file) {
|
||||
$fileName = $file->getPathname();
|
||||
yield $fileName => file_get_contents($fileName);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue