Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 841 Bytes

File metadata and controls

28 lines (24 loc) · 841 Bytes
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 transformations: false // optional );