├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── docs ├── classes.html ├── classes │ ├── Akamai_NetStorage_Authentication.html │ ├── Akamai_NetStorage_Authentication │ │ ├── createAuthHeaders.html │ │ ├── makeBase64HmacSha256.html │ │ ├── makeDataToSign.html │ │ ├── setAction.html │ │ ├── setKey.html │ │ ├── setNonce.html │ │ ├── setPath.html │ │ ├── setTimestamp.html │ │ └── signRequest.html │ ├── Akamai_NetStorage_FileStoreAdapter.html │ ├── Akamai_NetStorage_FileStoreAdapter │ │ ├── __construct.html │ │ ├── createDir.html │ │ ├── delete.html │ │ ├── deleteDir.html │ │ ├── ensurePath.html │ │ ├── getAcsActionHeaderValue.html │ │ ├── getMetadata.html │ │ ├── getMimetype.html │ │ ├── getPathPrefix.html │ │ ├── getSize.html │ │ ├── getTimestamp.html │ │ ├── handleFileMetaData.html │ │ ├── has.html │ │ ├── listContents.html │ │ ├── read.html │ │ ├── readStream.html │ │ ├── rename.html │ │ ├── update.html │ │ ├── updateStream.html │ │ ├── write.html │ │ └── writeStream.html │ ├── Akamai_NetStorage_Handler_Authentication.html │ ├── Akamai_NetStorage_Handler_Authentication │ │ ├── __invoke.html │ │ └── setSigner.html │ ├── Akamai_NetStorage_ObjectStoreAdapter.html │ └── Akamai_NetStorage_ObjectStoreAdapter │ │ ├── __construct.html │ │ ├── createDir.html │ │ ├── delete.html │ │ ├── deleteDir.html │ │ ├── ensurePath.html │ │ ├── getAcsActionHeaderValue.html │ │ ├── getMetadata.html │ │ ├── getMimetype.html │ │ ├── getPathPrefix.html │ │ ├── getSize.html │ │ ├── getTimestamp.html │ │ ├── handleFileMetaData.html │ │ ├── has.html │ │ ├── listContents.html │ │ ├── read.html │ │ ├── readStream.html │ │ ├── rename.html │ │ ├── update.html │ │ ├── updateStream.html │ │ ├── write.html │ │ └── writeStream.html ├── css │ ├── source.css │ └── style.css ├── index.html ├── interfaces.html ├── namespaces.html ├── source │ ├── Authentication.php.html │ ├── FileStoreAdapter.php.html │ ├── Handler │ │ ├── Authentication.php.html │ │ └── index.html │ ├── ObjectStoreAdapter.php.html │ └── index.html └── traits.html ├── phpdox.xml.dist ├── phpunit.xml.dist ├── src ├── AbstractAdapter.php ├── Authentication.php ├── FileStoreAdapter.php ├── Handler │ └── Authentication.php └── ObjectStoreAdapter.php ├── tests ├── FileStoreAdapterTest.php ├── ObjectStoreAdapterTest.php ├── bootstrap.php └── fixtures │ ├── file-store │ ├── copyFile.json │ ├── copyFileExisting.json │ ├── createDir.json │ ├── createDirExists.json │ ├── createDirInvalid.json │ ├── delete.json │ ├── deleteDir.json │ ├── deleteNonExistent.json │ ├── getMetadata.json │ ├── getMetadataDir.json │ ├── getMetadataNonExistent.json │ ├── getMimetype.json │ ├── getMimetypeDirectory.json │ ├── getMimetypeNonExistent.json │ ├── getSize.json │ ├── getSizeDirectory.json │ ├── getSizeNonExistent.json │ ├── getTimestamp.json │ ├── getTimestampDirectory.json │ ├── getTimestampNonExistent.json │ ├── read.json │ ├── readNonExistent.json │ ├── readStream.json │ ├── readStreamNonExistent.json │ ├── rename.json │ ├── renameExisting.json │ ├── renameNonExistent.json │ ├── update.json │ ├── updateNonExistent.json │ ├── updateStream.json │ ├── write.json │ ├── writeExistingFile.json │ ├── writeNonExistentSubDir.json │ ├── writeStream.json │ └── writeStreamExistingFile.json │ └── object-store │ ├── copyFile.json │ ├── copyFileExisting.json │ ├── createDir.json │ ├── createDirExists.json │ ├── createDirInvalid.json │ ├── delete.json │ ├── deleteDir.json │ ├── deleteNonExistent.json │ ├── getMetadata.json │ ├── getMetadataDir.json │ ├── getMetadataNonExistent.json │ ├── getMimetype.json │ ├── getMimetypeDirectory.json │ ├── getMimetypeNonExistent.json │ ├── getSize.json │ ├── getSizeDirectory.json │ ├── getSizeNonExistent.json │ ├── getTimestamp.json │ ├── getTimestampDirectory.json │ ├── getTimestampNonExistent.json │ ├── read.json │ ├── readNonExistent.json │ ├── readStream.json │ ├── readStreamNonExistent.json │ ├── rename.json │ ├── renameExisting.json │ ├── renameNonExistent.json │ ├── update.json │ ├── updateNonExistent.json │ ├── updateStream.json │ ├── write.json │ ├── writeExistingFile.json │ ├── writeNonExistentSubDir.json │ ├── writeStream.json │ └── writeStreamExistingFile.json └── tools ├── build-docs.sh ├── build-phar.sh └── fix-cs.sh /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | .idea/ 3 | build/ 4 | credentials 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 0.1.0 2 | --- 3 | * Initial release 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_Authentication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_Authentication.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_Authentication/createAuthHeaders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_Authentication/createAuthHeaders.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_Authentication/makeBase64HmacSha256.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_Authentication/makeBase64HmacSha256.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_Authentication/makeDataToSign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_Authentication/makeDataToSign.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_Authentication/setAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_Authentication/setAction.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_Authentication/setKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_Authentication/setKey.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_Authentication/setNonce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_Authentication/setNonce.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_Authentication/setPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_Authentication/setPath.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_Authentication/setTimestamp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_Authentication/setTimestamp.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_Authentication/signRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_Authentication/signRequest.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/__construct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/__construct.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/createDir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/createDir.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/delete.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/deleteDir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/deleteDir.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/ensurePath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/ensurePath.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/getAcsActionHeaderValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/getAcsActionHeaderValue.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/getMetadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/getMetadata.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/getMimetype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/getMimetype.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/getPathPrefix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/getPathPrefix.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/getSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/getSize.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/getTimestamp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/getTimestamp.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/handleFileMetaData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/handleFileMetaData.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/has.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/has.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/listContents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/listContents.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/read.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/readStream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/readStream.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/rename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/rename.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/update.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/updateStream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/updateStream.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/write.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_FileStoreAdapter/writeStream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_FileStoreAdapter/writeStream.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_Handler_Authentication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_Handler_Authentication.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_Handler_Authentication/__invoke.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_Handler_Authentication/__invoke.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_Handler_Authentication/setSigner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_Handler_Authentication/setSigner.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/__construct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/__construct.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/createDir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/createDir.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/delete.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/deleteDir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/deleteDir.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/ensurePath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/ensurePath.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/getAcsActionHeaderValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/getAcsActionHeaderValue.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/getMetadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/getMetadata.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/getMimetype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/getMimetype.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/getPathPrefix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/getPathPrefix.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/getSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/getSize.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/getTimestamp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/getTimestamp.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/handleFileMetaData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/handleFileMetaData.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/has.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/has.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/listContents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/listContents.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/read.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/readStream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/readStream.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/rename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/rename.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/update.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/updateStream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/updateStream.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/write.html -------------------------------------------------------------------------------- /docs/classes/Akamai_NetStorage_ObjectStoreAdapter/writeStream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/classes/Akamai_NetStorage_ObjectStoreAdapter/writeStream.html -------------------------------------------------------------------------------- /docs/css/source.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/css/source.css -------------------------------------------------------------------------------- /docs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/css/style.css -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/interfaces.html -------------------------------------------------------------------------------- /docs/namespaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/namespaces.html -------------------------------------------------------------------------------- /docs/source/Authentication.php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/source/Authentication.php.html -------------------------------------------------------------------------------- /docs/source/FileStoreAdapter.php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/source/FileStoreAdapter.php.html -------------------------------------------------------------------------------- /docs/source/Handler/Authentication.php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/source/Handler/Authentication.php.html -------------------------------------------------------------------------------- /docs/source/Handler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/source/Handler/index.html -------------------------------------------------------------------------------- /docs/source/ObjectStoreAdapter.php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/source/ObjectStoreAdapter.php.html -------------------------------------------------------------------------------- /docs/source/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/source/index.html -------------------------------------------------------------------------------- /docs/traits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/docs/traits.html -------------------------------------------------------------------------------- /phpdox.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/phpdox.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/AbstractAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/src/AbstractAdapter.php -------------------------------------------------------------------------------- /src/Authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/src/Authentication.php -------------------------------------------------------------------------------- /src/FileStoreAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/src/FileStoreAdapter.php -------------------------------------------------------------------------------- /src/Handler/Authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/src/Handler/Authentication.php -------------------------------------------------------------------------------- /src/ObjectStoreAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/src/ObjectStoreAdapter.php -------------------------------------------------------------------------------- /tests/FileStoreAdapterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/FileStoreAdapterTest.php -------------------------------------------------------------------------------- /tests/ObjectStoreAdapterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/ObjectStoreAdapterTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/fixtures/file-store/copyFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/copyFile.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/copyFileExisting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/copyFileExisting.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/createDir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/createDir.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/createDirExists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/createDirExists.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/createDirInvalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/createDirInvalid.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/delete.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/deleteDir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/deleteDir.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/deleteNonExistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/deleteNonExistent.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/getMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/getMetadata.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/getMetadataDir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/getMetadataDir.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/getMetadataNonExistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/getMetadataNonExistent.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/getMimetype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/getMimetype.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/getMimetypeDirectory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/getMimetypeDirectory.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/getMimetypeNonExistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/getMimetypeNonExistent.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/getSize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/getSize.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/getSizeDirectory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/getSizeDirectory.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/getSizeNonExistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/getSizeNonExistent.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/getTimestamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/getTimestamp.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/getTimestampDirectory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/getTimestampDirectory.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/getTimestampNonExistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/getTimestampNonExistent.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/read.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/read.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/readNonExistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/readNonExistent.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/readStream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/readStream.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/readStreamNonExistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/readStreamNonExistent.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/rename.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/rename.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/renameExisting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/renameExisting.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/renameNonExistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/renameNonExistent.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/update.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/updateNonExistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/updateNonExistent.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/updateStream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/updateStream.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/write.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/write.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/writeExistingFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/writeExistingFile.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/writeNonExistentSubDir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/writeNonExistentSubDir.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/writeStream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/writeStream.json -------------------------------------------------------------------------------- /tests/fixtures/file-store/writeStreamExistingFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/file-store/writeStreamExistingFile.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/copyFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/copyFile.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/copyFileExisting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/copyFileExisting.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/createDir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/createDir.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/createDirExists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/createDirExists.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/createDirInvalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/createDirInvalid.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/delete.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/deleteDir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/deleteDir.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/deleteNonExistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/deleteNonExistent.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/getMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/getMetadata.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/getMetadataDir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/getMetadataDir.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/getMetadataNonExistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/getMetadataNonExistent.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/getMimetype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/getMimetype.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/getMimetypeDirectory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/getMimetypeDirectory.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/getMimetypeNonExistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/getMimetypeNonExistent.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/getSize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/getSize.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/getSizeDirectory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/getSizeDirectory.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/getSizeNonExistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/getSizeNonExistent.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/getTimestamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/getTimestamp.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/getTimestampDirectory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/getTimestampDirectory.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/getTimestampNonExistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/getTimestampNonExistent.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/read.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/read.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/readNonExistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/readNonExistent.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/readStream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/readStream.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/readStreamNonExistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/readStreamNonExistent.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/rename.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/rename.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/renameExisting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/renameExisting.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/renameNonExistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/renameNonExistent.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/update.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/updateNonExistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/updateNonExistent.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/updateStream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/updateStream.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/write.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/write.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/writeExistingFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/writeExistingFile.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/writeNonExistentSubDir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/writeNonExistentSubDir.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/writeStream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/writeStream.json -------------------------------------------------------------------------------- /tests/fixtures/object-store/writeStreamExistingFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tests/fixtures/object-store/writeStreamExistingFile.json -------------------------------------------------------------------------------- /tools/build-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tools/build-docs.sh -------------------------------------------------------------------------------- /tools/build-phar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tools/build-phar.sh -------------------------------------------------------------------------------- /tools/fix-cs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akamai/NetStorageKit-PHP/HEAD/tools/fix-cs.sh --------------------------------------------------------------------------------