public function setUp()
 {
     $this->file = new Filesystem();
     $this->fixtures = dirname(__DIR__) . '/Fixtures';
     $this->workspace = $this->getTempDir('filesystem_');
     $this->file->registerAdapter('temp', new StreamAdapter($this->workspace));
     StreamWrapper::setFilesystem($this->file);
 }
Beispiel #2
0
<?php

use Pagekit\Filesystem\Adapter\FileAdapter;
use Pagekit\Filesystem\Filesystem;
use Pagekit\Filesystem\Locator;
use Pagekit\Filesystem\StreamWrapper;
return ['name' => 'filesystem', 'main' => function ($app) {
    $app['file'] = function () {
        return new Filesystem();
    };
    $app['locator'] = function () {
        return new Locator($this->config['path']);
    };
    $app['module']->addLoader(function ($module) use($app) {
        if (isset($module['resources'])) {
            foreach ($module['resources'] as $prefix => $path) {
                $app['locator']->add($prefix, "{$module['path']}/{$path}");
            }
        }
        return $module;
    });
}, 'events' => ['boot' => function ($event, $app) {
    StreamWrapper::setFilesystem($app['file']);
}, 'request' => [function ($event, $request) use($app) {
    $baseUrl = $request->getSchemeAndHttpHost() . $request->getBasePath();
    $app['file']->registerAdapter('file', new FileAdapter($this->config['path'], $baseUrl));
}, 100]], 'autoload' => ['Pagekit\\Filesystem\\' => 'src'], 'config' => ['path' => getcwd()]];