corpus/recursive-require
Library to Recursively Require Every PHP File in a Directory Tree
Maintainers
v1.2.0
2024-01-19 22:52 UTC
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
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT 76d1ae0b63f1ecfbd123b99d3436daecbc47d3c6
- Jesse Donat <donatj.woop@gmail.com>
This package is auto-updated.
Last update: 2026-06-19 22:08:19 UTC
README
👁 Latest Stable Version
👁 License
👁 ci.yml
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_onceinstead 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.
