├── .github └── CODEOWNERS ├── .gitignore ├── .scrutinizer.yml ├── .styleci.yml ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── changelog.md ├── composer.json ├── phpunit.hhvm.xml ├── phpunit.php ├── phpunit.xml ├── src └── GoogleStorageAdapter.php └── tests └── GoogleStorageAdapterTests.php /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Superbalist/flysystem-google-cloud-storage/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Superbalist/flysystem-google-cloud-storage/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Superbalist/flysystem-google-cloud-storage/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Superbalist/flysystem-google-cloud-storage/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Superbalist/flysystem-google-cloud-storage/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Superbalist/flysystem-google-cloud-storage/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Superbalist/flysystem-google-cloud-storage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Superbalist/flysystem-google-cloud-storage/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Superbalist/flysystem-google-cloud-storage/HEAD/changelog.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Superbalist/flysystem-google-cloud-storage/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.hhvm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Superbalist/flysystem-google-cloud-storage/HEAD/phpunit.hhvm.xml -------------------------------------------------------------------------------- /phpunit.php: -------------------------------------------------------------------------------- 1 |