fenom / providers-collection
Collection of additional providers
1.0.0
2016-02-23 14:41 UTC
Requires
- php: >=5.3
Requires (Dev)
- fenom/fenom: 2.*
- phpunit/phpunit: *
- satooshi/php-coveralls: dev-master
This package is auto-updated.
Last update: 2026-03-12 06:40:09 UTC
README
Install
composer require fenom/providers-collection
Multi directories template provider
Provider loads template from the filesystem. Provider supports multiple directories where to look for templates.
Create and configure provider
$provider = new Fenom\MultiPathsProvider([$path1, $path2]); $provider->addPath($path3); $provider->prependPath($path4);
Use the provider to create the object Fenom
$fenom = new Fenom($provider);
Use Fenom.