I use Symfony Standard Edition and try to get Symfony Finder component like a service, but not found it. To use the Finder, I need to create it manually like:
$finder = new Symfony\Component\Finder\Finder();
Why I can't get it from service container? Is it was wrong?
P.S. The Symfony Filesystem component exists in service container and available by name filesystem
.