mirror of
https://github.com/appwrite/appwrite
synced 2026-05-06 06:48:22 +00:00
801 B
801 B
setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint
->setProject('') // Your project ID
->setKey(''); // Your secret API key
$storage = new Storage($client);
$result = $storage->createBucket(
bucketId: '',
name: '',
permissions: [Permission::read(Role::any())], // optional
fileSecurity: false, // optional
enabled: false, // optional
maximumFileSize: 1, // optional
allowedFileExtensions: [], // optional
compression: Compression::NONE(), // optional
encryption: false, // optional
antivirus: false // optional
);