├── .gitignore ├── .travis-phpunit.xml ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── config └── filesystems.php ├── phpunit.xml ├── src ├── FlysystemOtherManager.php └── FlysystemOtherServiceProvider.php └── tests └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danhunsaker/laravel-flysystem-others/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis-phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danhunsaker/laravel-flysystem-others/HEAD/.travis-phpunit.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danhunsaker/laravel-flysystem-others/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danhunsaker/laravel-flysystem-others/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danhunsaker/laravel-flysystem-others/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danhunsaker/laravel-flysystem-others/HEAD/composer.json -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danhunsaker/laravel-flysystem-others/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danhunsaker/laravel-flysystem-others/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/FlysystemOtherManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danhunsaker/laravel-flysystem-others/HEAD/src/FlysystemOtherManager.php -------------------------------------------------------------------------------- /src/FlysystemOtherServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danhunsaker/laravel-flysystem-others/HEAD/src/FlysystemOtherServiceProvider.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------