This repository was archived by the owner on Nov 27, 2023. It is now read-only.
Updated for storage (Blob, Queue and Table) to use the new Storage SDK
- Updated PHP version requirement to >=5.5 for PHP Storage SDK (https://github.com/Azure/azure-storage-php)
- Updated SDK code for storage (Blob, Queue and Table) to use the new Storage SDK
- Removed unit and functional tests for storage (Blob, Queue and Table)
- Fixed broken functional tests
- Updated code samples to use the new storage SDK
- Adopted PSR-2 as coding standard (contributed by @phansys)
- Added paging support for getAssetList() in Media Services
- Other minor fixes
To update your code for the new storage SDK, change
"use WindowsAzure\Blob" to "use MicrosoftAzure\Storage\Blob",
"use WindowsAzure\Queue" to "use MicrosoftAzure\Storage\Queue"
"use WindowsAzure\Table" to "use MicrosoftAzure\Storage\Table"
For the following calls,
ServicesBuilder::getInstance()->createTableService($connectionString)
ServicesBuilder::getInstance()->createBlobService($connectionString)
ServicesBuilder::getInstance()->createQueueService($connectionString)
The new API will be called automatically. You don't need to update your code.