├── .gitattributes ├── .gitignore ├── ChangeLog.md ├── LICENSE ├── README.md ├── composer.json └── src ├── Configuration.php └── FinderFacade.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/finder-facade/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/finder-facade/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/finder-facade/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/finder-facade/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/finder-facade/HEAD/composer.json -------------------------------------------------------------------------------- /src/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/finder-facade/HEAD/src/Configuration.php -------------------------------------------------------------------------------- /src/FinderFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/finder-facade/HEAD/src/FinderFacade.php --------------------------------------------------------------------------------