├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── Bootstrappers └── TenantBucketBootstrapper.php ├── Bucket.php ├── Events ├── CreatedBucket.php ├── CreatingBucket.php ├── DeletedBucket.php └── DeletingBucket.php └── Jobs ├── CreateTenantBucket.php └── DeleteTenantBucket.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourdotsix/tenant-buckets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourdotsix/tenant-buckets/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourdotsix/tenant-buckets/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourdotsix/tenant-buckets/HEAD/composer.json -------------------------------------------------------------------------------- /src/Bootstrappers/TenantBucketBootstrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourdotsix/tenant-buckets/HEAD/src/Bootstrappers/TenantBucketBootstrapper.php -------------------------------------------------------------------------------- /src/Bucket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourdotsix/tenant-buckets/HEAD/src/Bucket.php -------------------------------------------------------------------------------- /src/Events/CreatedBucket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourdotsix/tenant-buckets/HEAD/src/Events/CreatedBucket.php -------------------------------------------------------------------------------- /src/Events/CreatingBucket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourdotsix/tenant-buckets/HEAD/src/Events/CreatingBucket.php -------------------------------------------------------------------------------- /src/Events/DeletedBucket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourdotsix/tenant-buckets/HEAD/src/Events/DeletedBucket.php -------------------------------------------------------------------------------- /src/Events/DeletingBucket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourdotsix/tenant-buckets/HEAD/src/Events/DeletingBucket.php -------------------------------------------------------------------------------- /src/Jobs/CreateTenantBucket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourdotsix/tenant-buckets/HEAD/src/Jobs/CreateTenantBucket.php -------------------------------------------------------------------------------- /src/Jobs/DeleteTenantBucket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourdotsix/tenant-buckets/HEAD/src/Jobs/DeleteTenantBucket.php --------------------------------------------------------------------------------