Skip to content

Instantly share code, notes, and snippets.

@lyrixx
Created December 5, 2014 22:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lyrixx/565752f13499a3fa17d9 to your computer and use it in GitHub Desktop.
Save lyrixx/565752f13499a3fa17d9 to your computer and use it in GitHub Desktop.
Melody demo
<?php
<<<CONFIG
packages:
- "symfony/finder: ~2.5"
CONFIG;
$finder = Symfony\Component\Finder\Finder::create()
->in(__DIR__)
->name('*.php')
;
foreach ($finder as $file) {
echo $file, "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment