techunico / dir-reader
this is a simple directory reader writen in php which can read the contents of given directory and return an array
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/techunico/dir-reader
This package is auto-updated.
Last update: 2025-11-29 03:31:12 UTC
README
This is simple director reader written in PHP. This will read the contents of the given directory and return an array containing the contents
- install it using composer
composer require techunico/dir-reader - include path
require "vendor/autoload.php" - use reader
use Techunico\DirReader\Reader - example
` $contents = new Reader;
$contents->dirreader('$directory'); `