corpus / recursive-require
Library to Recursively Require Every PHP File in a Directory Tree
Installs: 3 145
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 1
Requires
- php: >=7.4.0
Requires (Dev)
- corpus/coding-standard: ^0.6.0
- donatj/drop: ^1.1
- friendsofphp/php-cs-fixer: ^3.48
- phpunit/phpunit: ^9.6
- squizlabs/php_codesniffer: ^3.8
This package is auto-updated.
Last update: 2024-10-30 10:30:14 UTC
README
Library to Recursively Require Every PHP File in a Directory Tree
Requirements
- php: >=7.4.0
Installing
Install the latest version with:
composer require 'corpus/recursive-require'
Usage
Here is a simple usage example:
<?php use Corpus\RecursiveRequire\Loader; require __DIR__ . '../vendor/autoload.php'; $loader = new Loader('path/to/directory'); $loader();
Documentation
Class: \Corpus\RecursiveRequire\Loader
Helper to recursively require all PHP files in a directory
Method: Loader->__construct
function __construct(string $path [, bool $once = false])
Parameters:
- string
$path
- Root path to recursively require - bool
$once
- Whether to userequire_once
instead ofrequire
Method: Loader->__invoke
function __invoke([ string $regex = "/\\.php\$/"]) : array
Trigger the require
(s)
Note: The order in which files are required is not guaranteed.
It will vary based on the Operating System and filesystem.
Do not rely on the order in which files are required.
Parameters:
- string
$regex
- A regex to filter the files to require
Returns:
- array<string,mixed> - The result as a map of filename to return value.