for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace WShafer\PSR11FlySystem;
class ConfigProvider
{
public function __invoke()
return [
'dependencies' => [
'factories' => [
FlySystemManager::class => FlySystemManagerFactory::class
],
];
}