├── LICENSE ├── README.md ├── composer.json ├── psalm.xml └── src ├── Bootloader └── StorageBootloader.php ├── Bucket.php ├── Bucket ├── ReadableInterface.php ├── ReadableTrait.php ├── UriResolvableInterface.php ├── WritableInterface.php └── WritableTrait.php ├── BucketFactory.php ├── BucketFactoryInterface.php ├── BucketInterface.php ├── Config └── StorageConfig.php ├── Exception ├── FileOperationException.php ├── InvalidArgumentException.php └── StorageException.php ├── File.php ├── File ├── EntryInterface.php ├── ReadableInterface.php ├── ReadableTrait.php ├── UriResolvableInterface.php ├── UriResolvableTrait.php ├── WritableInterface.php └── WritableTrait.php ├── FileInterface.php ├── MutableStorageInterface.php ├── Storage.php ├── Storage ├── ReadableInterface.php ├── ReadableTrait.php ├── WritableInterface.php └── WritableTrait.php ├── StorageInterface.php └── Visibility.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/composer.json -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/Bootloader/StorageBootloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/Bootloader/StorageBootloader.php -------------------------------------------------------------------------------- /src/Bucket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/Bucket.php -------------------------------------------------------------------------------- /src/Bucket/ReadableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/Bucket/ReadableInterface.php -------------------------------------------------------------------------------- /src/Bucket/ReadableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/Bucket/ReadableTrait.php -------------------------------------------------------------------------------- /src/Bucket/UriResolvableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/Bucket/UriResolvableInterface.php -------------------------------------------------------------------------------- /src/Bucket/WritableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/Bucket/WritableInterface.php -------------------------------------------------------------------------------- /src/Bucket/WritableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/Bucket/WritableTrait.php -------------------------------------------------------------------------------- /src/BucketFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/BucketFactory.php -------------------------------------------------------------------------------- /src/BucketFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/BucketFactoryInterface.php -------------------------------------------------------------------------------- /src/BucketInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/BucketInterface.php -------------------------------------------------------------------------------- /src/Config/StorageConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/Config/StorageConfig.php -------------------------------------------------------------------------------- /src/Exception/FileOperationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/Exception/FileOperationException.php -------------------------------------------------------------------------------- /src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Exception/StorageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/Exception/StorageException.php -------------------------------------------------------------------------------- /src/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/File.php -------------------------------------------------------------------------------- /src/File/EntryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/File/EntryInterface.php -------------------------------------------------------------------------------- /src/File/ReadableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/File/ReadableInterface.php -------------------------------------------------------------------------------- /src/File/ReadableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/File/ReadableTrait.php -------------------------------------------------------------------------------- /src/File/UriResolvableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/File/UriResolvableInterface.php -------------------------------------------------------------------------------- /src/File/UriResolvableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/File/UriResolvableTrait.php -------------------------------------------------------------------------------- /src/File/WritableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/File/WritableInterface.php -------------------------------------------------------------------------------- /src/File/WritableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/File/WritableTrait.php -------------------------------------------------------------------------------- /src/FileInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/FileInterface.php -------------------------------------------------------------------------------- /src/MutableStorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/MutableStorageInterface.php -------------------------------------------------------------------------------- /src/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/Storage.php -------------------------------------------------------------------------------- /src/Storage/ReadableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/Storage/ReadableInterface.php -------------------------------------------------------------------------------- /src/Storage/ReadableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/Storage/ReadableTrait.php -------------------------------------------------------------------------------- /src/Storage/WritableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/Storage/WritableInterface.php -------------------------------------------------------------------------------- /src/Storage/WritableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/Storage/WritableTrait.php -------------------------------------------------------------------------------- /src/StorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/StorageInterface.php -------------------------------------------------------------------------------- /src/Visibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/storage/HEAD/src/Visibility.php --------------------------------------------------------------------------------