-
-
Save EmanueleMinotto/95ddd1787b45ed25983e to your computer and use it in GitHub Desktop.
Improvement for http://emanueleminotto.github.io/configuration-organization/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// File: app/config/importer.php | |
use Symfony\Component\Finder\Finder; | |
$finder = new Finder(); | |
$files = $finder->files()->name('*.yml')->in(__DIR__.'/services')->in(__DIR__.'/vendors'); | |
foreach ($files as $file) { | |
$loader->import($file->getRealpath()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment