sebastianfeldmann / camino
Path management the OO way
Fund package maintenance!
0.9.5
2022-01-03 13:15 UTC
Requires
- php: >=7.1
README
Camino
File system path handling the OO way
Installation
composer install sebastianfeldmann/camino
Usage
<?php use SebastianFeldmann\Camino; $file = Camino\Path\File::create(__FILE__); $dir = Camino\Path\Directory::create(__DIR__); if ($file->isInDirectory($dir)) { echo 'file is located inside the directory'; }