163 changed files
examples | ||
example1.php | ||
src | ||
CosmosDb.php | ||
CosmosDbCollection.php | ||
CosmosDbDatabase.php | ||
QueryBuilder.php | ||
vendor | ||
composer | ||
autoload_classmap.php + | ||
autoload_files.php + | ||
autoload_namespaces.php + | ||
autoload_psr4.php + | ||
autoload_real.php + | ||
autoload_static.php + | ||
ClassLoader.php + | ||
installed.json + | ||
installed.php + | ||
InstalledVersions.php + | ||
LICENSE + | ||
platform_check.php + | ||
guzzlehttp | ||
guzzle | ||
src | ||
Cookie | ||
CookieJar.php + | ||
CookieJarInterface.php + | ||
FileCookieJar.php + | ||
SessionCookieJar.php + | ||
SetCookie.php + | ||
Exception | ||
BadResponseException.php + | ||
ClientException.php + | ||
ConnectException.php + | ||
GuzzleException.php + | ||
InvalidArgumentException.php + | ||
RequestException.php + | ||
ServerException.php + | ||
TooManyRedirectsException.php + | ||
TransferException.php + | ||
Handler | ||
CurlFactory.php + | ||
CurlFactoryInterface.php + | ||
CurlHandler.php + | ||
CurlMultiHandler.php + | ||
EasyHandle.php + | ||
HeaderProcessor.php + | ||
MockHandler.php + | ||
Proxy.php + | ||
StreamHandler.php + | ||
BodySummarizer.php + | ||
BodySummarizerInterface.php + | ||
Client.php + | ||
ClientInterface.php + | ||
ClientTrait.php + | ||
functions_include.php + | ||
functions.php + | ||
HandlerStack.php + | ||
MessageFormatter.php + | ||
MessageFormatterInterface.php + | ||
Middleware.php + | ||
Pool.php + | ||
PrepareBodyMiddleware.php + | ||
RedirectMiddleware.php + | ||
RequestOptions.php + | ||
RetryMiddleware.php + | ||
TransferStats.php + | ||
Utils.php + | ||
CHANGELOG.md + | ||
composer.json + | ||
LICENSE + | ||
README.md + | ||
UPGRADING.md + | ||
promises | ||
src | ||
AggregateException.php + | ||
CancellationException.php + | ||
Coroutine.php + | ||
Create.php + | ||
Each.php + | ||
EachPromise.php + | ||
FulfilledPromise.php + | ||
Is.php + | ||
Promise.php + | ||
PromiseInterface.php + | ||
PromisorInterface.php + | ||
RejectedPromise.php + | ||
RejectionException.php + | ||
TaskQueue.php + | ||
TaskQueueInterface.php + | ||
Utils.php + | ||
CHANGELOG.md + | ||
composer.json + | ||
LICENSE + | ||
README.md + | ||
psr7 | ||
src | ||
Exception | ||
MalformedUriException.php + | ||
AppendStream.php + | ||
BufferStream.php + | ||
CachingStream.php + | ||
DroppingStream.php + | ||
FnStream.php + | ||
Header.php + | ||
HttpFactory.php + | ||
InflateStream.php + | ||
LazyOpenStream.php + | ||
LimitStream.php + | ||
Message.php + | ||
MessageTrait.php + | ||
MimeType.php + | ||
MultipartStream.php + | ||
NoSeekStream.php + | ||
PumpStream.php + | ||
Query.php + | ||
Request.php + | ||
Response.php + | ||
Rfc7230.php + | ||
ServerRequest.php + | ||
Stream.php + | ||
StreamDecoratorTrait.php + | ||
StreamWrapper.php + | ||
UploadedFile.php + | ||
Uri.php + | ||
UriComparator.php + | ||
UriNormalizer.php + | ||
UriResolver.php + | ||
Utils.php + | ||
CHANGELOG.md + | ||
composer.json + | ||
LICENSE + | ||
README.md + | ||
psr | ||
http-client | ||
src | ||
ClientExceptionInterface.php + | ||
ClientInterface.php + | ||
NetworkExceptionInterface.php + | ||
RequestExceptionInterface.php + | ||
CHANGELOG.md + | ||
composer.json + | ||
LICENSE + | ||
README.md + | ||
http-factory | ||
src | ||
RequestFactoryInterface.php + | ||
ResponseFactoryInterface.php + | ||
ServerRequestFactoryInterface.php + | ||
StreamFactoryInterface.php + | ||
UploadedFileFactoryInterface.php + | ||
UriFactoryInterface.php + | ||
composer.json + | ||
LICENSE + | ||
README.md + | ||
http-message | ||
docs | ||
PSR7-Interfaces.md + | ||
PSR7-Usage.md + | ||
src | ||
MessageInterface.php + | ||
RequestInterface.php + | ||
ResponseInterface.php + | ||
ServerRequestInterface.php + | ||
StreamInterface.php + | ||
UploadedFileInterface.php + | ||
UriInterface.php + | ||
CHANGELOG.md + | ||
composer.json + | ||
LICENSE + | ||
README.md + | ||
ralouphie/getallheaders | ||
src | ||
getallheaders.php + | ||
composer.json + | ||
LICENSE + | ||
README.md + | ||
symfony/deprecation-contracts | ||
.gitignore + | ||
CHANGELOG.md + | ||
composer.json + | ||
function.php + | ||
LICENSE + | ||
README.md + | ||
autoload.php + | ||
.gitignore + | ||
composer.json | ||
composer.lock + | ||
README.md | ||
Add comment 6
Add comment 7 // consider a existing collection called "Users" with a partition key "country"
Add comment 8
Add comment 9 Minus $conn = new \Applab\CosmosDb\CosmosDb('host', 'pk');
Add comment 9 Plus $conn = new \Laysense\CosmosDb\CosmosDb('host', 'pk');
Add comment 10 $conn->setHttpClientOptions(['verify' => false]); // optional: set guzzle client options.
Add comment 11 $db = $conn->selectDB('dbName');
Add comment 12 $collection = $db->selectCollection('collectionName');
Add comment 13
Add comment 14 // insert a record
Add comment 15 Minus $rid = \Applab\CosmosDb\QueryBuilder::instance()
Add comment 15 Plus $rid = \Laysense\CosmosDb\QueryBuilder::instance()
Add comment 16 ->setCollection($collection)
Add comment 17 ->setPartitionKey('country')
Add comment 18 ->save(['id' => '1', 'name' => 'John Doe', 'age' => 22, 'country' => 'Portugal']);
Add comment 20 echo "record inserted: $rid".PHP_EOL;
Add comment 21
Add comment 22 // insert a record
Add comment 23 Minus $rid = \Applab\CosmosDb\QueryBuilder::instance()
Add comment 23 Plus $rid = \Laysense\CosmosDb\QueryBuilder::instance()
Add comment 24 ->setCollection($collection)
Add comment 25 ->setPartitionKey('country')
Add comment 26 ->save(['id' => '2', 'name' => 'Jane doe', 'age' => 35, 'country' => 'Portugal']);
Add comment 28 echo "record inserted: $rid".PHP_EOL;
Add comment 29
Add comment 30 // update a record
Add comment 31 Minus $rid = \Applab\CosmosDb\QueryBuilder::instance()
Add comment 31 Plus $rid = \Laysense\CosmosDb\QueryBuilder::instance()
Add comment 32 ->setCollection($collection)
Add comment 33 ->setPartitionKey('country')
Add comment 34 ->save(["_rid" => $rid, 'id' => '2', 'name' => 'Jane Doe Something', 'age' => 36, 'country' => 'Portugal']);
Add comment 38 echo "get one row as array:".PHP_EOL;
Add comment 39
Add comment 40 // get one row as array
Add comment 41 Minus $res = \Applab\CosmosDb\QueryBuilder::instance()
Add comment 41 Plus $res = \Laysense\CosmosDb\QueryBuilder::instance()
Add comment 42 ->setCollection($collection)
Add comment 43 ->select("c.id, c.name")
Add comment 44 ->where("c.age > @age and c.country = @country")
Add comment 45 ->params(['@age' => 30, '@country' => 'Portugal'])
Add comment 46 ->find(true) // pass true if is cross partition query
Add comment 47 Minus ->toArray();
Add comment 47 Plus ->getjson();;
Add comment 48
Add comment 49 var_dump($res);
Add comment 50
Add comment 51 echo "get 5 rows as array with id as array key:".PHP_EOL;
Add comment 52
Add comment 53 // get top 5 rows as array with id as array key
Add comment 54 Minus $res = \Applab\CosmosDb\QueryBuilder::instance()
Add comment 54 Plus $res = \Laysense\CosmosDb\QueryBuilder::instance()
Add comment 55 ->setCollection($collection)
Add comment 56 ->select("c.id, c.username")
Add comment 57 ->where("c.age > @age and c.country = @country")
Add comment 58 ->params(['@age' => 10, '@country' => 'Portugal'])
Add comment 59 ->limit(5)
Add comment 60 ->findAll() // pass true if is cross partition query
Add comment 61 Minus ->toArray('id');
Add comment 61 Plus ->getjson();
Add comment 62
Add comment 63 var_dump($res);
Add comment 64
Add comment 65 echo "get rows as array of objects with collection alias and cross partition query:".PHP_EOL;
Add comment 66
Add comment 67 // get rows as array of objects with collection alias and cross partition query
Add comment 68 Minus $res = \Applab\CosmosDb\QueryBuilder::instance()
Add comment 68 Plus $res = \Laysense\CosmosDb\QueryBuilder::instance()
Add comment 69 ->setCollection($collection)
Add comment 70 ->select("Users.id, Users.name")
Add comment 71 ->from("Users")
Add comment 72 ->where("Users.age > 30")
Add comment 73 ->findAll(true) // pass true if is cross partition query
Add comment 74 Minus ->toArray();
Add comment 74 Plus ->getjson();
Add comment 75
Add comment 76 var_dump($res);
Add comment 77
Add comment 78 echo "delete one document:".PHP_EOL;
Add comment 79
Add comment 80 // delete one document that match criteria
Add comment 81 Minus $res = \Applab\CosmosDb\QueryBuilder::instance()
Add comment 81 Plus $res = \Laysense\CosmosDb\QueryBuilder::instance()
Add comment 82 ->setCollection($collection)
Add comment 83 ->setPartitionKey('country')
Add comment 84 ->where("c.age > 30 and c.country = 'Portugal'")
Add comment 89 echo "delete all documents:".PHP_EOL;
Add comment 90
Add comment 91 // delete all documents that match criteria
Add comment 92 Minus $res = \Applab\CosmosDb\QueryBuilder::instance()
Add comment 92 Plus $res = \Laysense\CosmosDb\QueryBuilder::instance()
Add comment 93 ->setPartitionKey('country')
Add comment 94 ->setCollection($collection)
Add comment 95 ->where("c.age > 20")
autoload_classmap.php
/vendor/composer/autoload_classmap.php/vendor/composer/autoload_classmap.php
autoload_namespaces.php
/vendor/composer/autoload_namespaces.php/vendor/composer/autoload_namespaces.php
InstalledVersions.php
/vendor/composer/InstalledVersions.php/vendor/composer/InstalledVersions.php
CookieJar.php
/vendor/guzzlehttp/guzzle/src/Cookie/CookieJar.php/vendor/guzzlehttp/guzzle/src/Cookie/CookieJar.php
CookieJarInterface.php
/vendor/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php/vendor/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php
FileCookieJar.php
/vendor/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php/vendor/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php
SessionCookieJar.php
/vendor/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php/vendor/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php
SetCookie.php
/vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php/vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php
BadResponseException.php
/vendor/guzzlehttp/guzzle/src/Exception/BadResponseException.php/vendor/guzzlehttp/guzzle/src/Exception/BadResponseException.php
ClientException.php
/vendor/guzzlehttp/guzzle/src/Exception/ClientException.php/vendor/guzzlehttp/guzzle/src/Exception/ClientException.php
ConnectException.php
/vendor/guzzlehttp/guzzle/src/Exception/ConnectException.php/vendor/guzzlehttp/guzzle/src/Exception/ConnectException.php
GuzzleException.php
/vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php/vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php
InvalidArgumentException.php
/vendor/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php/vendor/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php
RequestException.php
/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php
ServerException.php
/vendor/guzzlehttp/guzzle/src/Exception/ServerException.php/vendor/guzzlehttp/guzzle/src/Exception/ServerException.php
TooManyRedirectsException.php
/vendor/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php/vendor/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php
TransferException.php
/vendor/guzzlehttp/guzzle/src/Exception/TransferException.php/vendor/guzzlehttp/guzzle/src/Exception/TransferException.php
CurlFactory.php
/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php
CurlFactoryInterface.php
/vendor/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php/vendor/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php
CurlHandler.php
/vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php/vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php
CurlMultiHandler.php
/vendor/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php/vendor/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php
EasyHandle.php
/vendor/guzzlehttp/guzzle/src/Handler/EasyHandle.php/vendor/guzzlehttp/guzzle/src/Handler/EasyHandle.php
HeaderProcessor.php
/vendor/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php/vendor/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php
MockHandler.php
/vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php/vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php
Proxy.php
/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php
StreamHandler.php
/vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php/vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php
BodySummarizer.php
/vendor/guzzlehttp/guzzle/src/BodySummarizer.php/vendor/guzzlehttp/guzzle/src/BodySummarizer.php
BodySummarizerInterface.php
/vendor/guzzlehttp/guzzle/src/BodySummarizerInterface.php/vendor/guzzlehttp/guzzle/src/BodySummarizerInterface.php
ClientInterface.php
/vendor/guzzlehttp/guzzle/src/ClientInterface.php/vendor/guzzlehttp/guzzle/src/ClientInterface.php
ClientTrait.php
/vendor/guzzlehttp/guzzle/src/ClientTrait.php/vendor/guzzlehttp/guzzle/src/ClientTrait.php
functions_include.php
/vendor/guzzlehttp/guzzle/src/functions_include.php/vendor/guzzlehttp/guzzle/src/functions_include.php
functions.php
/vendor/guzzlehttp/guzzle/src/functions.php/vendor/guzzlehttp/guzzle/src/functions.php
HandlerStack.php
/vendor/guzzlehttp/guzzle/src/HandlerStack.php/vendor/guzzlehttp/guzzle/src/HandlerStack.php
MessageFormatter.php
/vendor/guzzlehttp/guzzle/src/MessageFormatter.php/vendor/guzzlehttp/guzzle/src/MessageFormatter.php
MessageFormatterInterface.php
/vendor/guzzlehttp/guzzle/src/MessageFormatterInterface.php/vendor/guzzlehttp/guzzle/src/MessageFormatterInterface.php
Middleware.php
/vendor/guzzlehttp/guzzle/src/Middleware.php/vendor/guzzlehttp/guzzle/src/Middleware.php
PrepareBodyMiddleware.php
/vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php/vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php
RedirectMiddleware.php
/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php
RequestOptions.php
/vendor/guzzlehttp/guzzle/src/RequestOptions.php/vendor/guzzlehttp/guzzle/src/RequestOptions.php
RetryMiddleware.php
/vendor/guzzlehttp/guzzle/src/RetryMiddleware.php/vendor/guzzlehttp/guzzle/src/RetryMiddleware.php
TransferStats.php
/vendor/guzzlehttp/guzzle/src/TransferStats.php/vendor/guzzlehttp/guzzle/src/TransferStats.php
AggregateException.php
/vendor/guzzlehttp/promises/src/AggregateException.php/vendor/guzzlehttp/promises/src/AggregateException.php
CancellationException.php
/vendor/guzzlehttp/promises/src/CancellationException.php/vendor/guzzlehttp/promises/src/CancellationException.php
Coroutine.php
/vendor/guzzlehttp/promises/src/Coroutine.php/vendor/guzzlehttp/promises/src/Coroutine.php
EachPromise.php
/vendor/guzzlehttp/promises/src/EachPromise.php/vendor/guzzlehttp/promises/src/EachPromise.php
FulfilledPromise.php
/vendor/guzzlehttp/promises/src/FulfilledPromise.php/vendor/guzzlehttp/promises/src/FulfilledPromise.php
Promise.php
/vendor/guzzlehttp/promises/src/Promise.php/vendor/guzzlehttp/promises/src/Promise.php
PromiseInterface.php
/vendor/guzzlehttp/promises/src/PromiseInterface.php/vendor/guzzlehttp/promises/src/PromiseInterface.php
PromisorInterface.php
/vendor/guzzlehttp/promises/src/PromisorInterface.php/vendor/guzzlehttp/promises/src/PromisorInterface.php
RejectedPromise.php
/vendor/guzzlehttp/promises/src/RejectedPromise.php/vendor/guzzlehttp/promises/src/RejectedPromise.php
RejectionException.php
/vendor/guzzlehttp/promises/src/RejectionException.php/vendor/guzzlehttp/promises/src/RejectionException.php
TaskQueue.php
/vendor/guzzlehttp/promises/src/TaskQueue.php/vendor/guzzlehttp/promises/src/TaskQueue.php
TaskQueueInterface.php
/vendor/guzzlehttp/promises/src/TaskQueueInterface.php/vendor/guzzlehttp/promises/src/TaskQueueInterface.php
MalformedUriException.php
/vendor/guzzlehttp/psr7/src/Exception/MalformedUriException.php/vendor/guzzlehttp/psr7/src/Exception/MalformedUriException.php
AppendStream.php
/vendor/guzzlehttp/psr7/src/AppendStream.php/vendor/guzzlehttp/psr7/src/AppendStream.php
BufferStream.php
/vendor/guzzlehttp/psr7/src/BufferStream.php/vendor/guzzlehttp/psr7/src/BufferStream.php
CachingStream.php
/vendor/guzzlehttp/psr7/src/CachingStream.php/vendor/guzzlehttp/psr7/src/CachingStream.php
DroppingStream.php
/vendor/guzzlehttp/psr7/src/DroppingStream.php/vendor/guzzlehttp/psr7/src/DroppingStream.php
HttpFactory.php
/vendor/guzzlehttp/psr7/src/HttpFactory.php/vendor/guzzlehttp/psr7/src/HttpFactory.php
InflateStream.php
/vendor/guzzlehttp/psr7/src/InflateStream.php/vendor/guzzlehttp/psr7/src/InflateStream.php
LazyOpenStream.php
/vendor/guzzlehttp/psr7/src/LazyOpenStream.php/vendor/guzzlehttp/psr7/src/LazyOpenStream.php
LimitStream.php
/vendor/guzzlehttp/psr7/src/LimitStream.php/vendor/guzzlehttp/psr7/src/LimitStream.php
MessageTrait.php
/vendor/guzzlehttp/psr7/src/MessageTrait.php/vendor/guzzlehttp/psr7/src/MessageTrait.php
MultipartStream.php
/vendor/guzzlehttp/psr7/src/MultipartStream.php/vendor/guzzlehttp/psr7/src/MultipartStream.php
NoSeekStream.php
/vendor/guzzlehttp/psr7/src/NoSeekStream.php/vendor/guzzlehttp/psr7/src/NoSeekStream.php
PumpStream.php
/vendor/guzzlehttp/psr7/src/PumpStream.php/vendor/guzzlehttp/psr7/src/PumpStream.php
ServerRequest.php
/vendor/guzzlehttp/psr7/src/ServerRequest.php/vendor/guzzlehttp/psr7/src/ServerRequest.php
StreamDecoratorTrait.php
/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php
StreamWrapper.php
/vendor/guzzlehttp/psr7/src/StreamWrapper.php/vendor/guzzlehttp/psr7/src/StreamWrapper.php
UploadedFile.php
/vendor/guzzlehttp/psr7/src/UploadedFile.php/vendor/guzzlehttp/psr7/src/UploadedFile.php
UriComparator.php
/vendor/guzzlehttp/psr7/src/UriComparator.php/vendor/guzzlehttp/psr7/src/UriComparator.php
UriNormalizer.php
/vendor/guzzlehttp/psr7/src/UriNormalizer.php/vendor/guzzlehttp/psr7/src/UriNormalizer.php
UriResolver.php
/vendor/guzzlehttp/psr7/src/UriResolver.php/vendor/guzzlehttp/psr7/src/UriResolver.php
ClientExceptionInterface.php
/vendor/psr/http-client/src/ClientExceptionInterface.php/vendor/psr/http-client/src/ClientExceptionInterface.php
ClientInterface.php
/vendor/psr/http-client/src/ClientInterface.php/vendor/psr/http-client/src/ClientInterface.php
NetworkExceptionInterface.php
/vendor/psr/http-client/src/NetworkExceptionInterface.php/vendor/psr/http-client/src/NetworkExceptionInterface.php
RequestExceptionInterface.php
/vendor/psr/http-client/src/RequestExceptionInterface.php/vendor/psr/http-client/src/RequestExceptionInterface.php
RequestFactoryInterface.php
/vendor/psr/http-factory/src/RequestFactoryInterface.php/vendor/psr/http-factory/src/RequestFactoryInterface.php
ResponseFactoryInterface.php
/vendor/psr/http-factory/src/ResponseFactoryInterface.php/vendor/psr/http-factory/src/ResponseFactoryInterface.php
ServerRequestFactoryInterface.php
/vendor/psr/http-factory/src/ServerRequestFactoryInterface.php/vendor/psr/http-factory/src/ServerRequestFactoryInterface.php
StreamFactoryInterface.php
/vendor/psr/http-factory/src/StreamFactoryInterface.php/vendor/psr/http-factory/src/StreamFactoryInterface.php
UploadedFileFactoryInterface.php
/vendor/psr/http-factory/src/UploadedFileFactoryInterface.php/vendor/psr/http-factory/src/UploadedFileFactoryInterface.php
UriFactoryInterface.php
/vendor/psr/http-factory/src/UriFactoryInterface.php/vendor/psr/http-factory/src/UriFactoryInterface.php
PSR7-Interfaces.md
/vendor/psr/http-message/docs/PSR7-Interfaces.md/vendor/psr/http-message/docs/PSR7-Interfaces.md
PSR7-Usage.md
/vendor/psr/http-message/docs/PSR7-Usage.md/vendor/psr/http-message/docs/PSR7-Usage.md
MessageInterface.php
/vendor/psr/http-message/src/MessageInterface.php/vendor/psr/http-message/src/MessageInterface.php
RequestInterface.php
/vendor/psr/http-message/src/RequestInterface.php/vendor/psr/http-message/src/RequestInterface.php
ResponseInterface.php
/vendor/psr/http-message/src/ResponseInterface.php/vendor/psr/http-message/src/ResponseInterface.php
ServerRequestInterface.php
/vendor/psr/http-message/src/ServerRequestInterface.php/vendor/psr/http-message/src/ServerRequestInterface.php
StreamInterface.php
/vendor/psr/http-message/src/StreamInterface.php/vendor/psr/http-message/src/StreamInterface.php
UploadedFileInterface.php
/vendor/psr/http-message/src/UploadedFileInterface.php/vendor/psr/http-message/src/UploadedFileInterface.php
UriInterface.php
/vendor/psr/http-message/src/UriInterface.php/vendor/psr/http-message/src/UriInterface.php
getallheaders.php
/vendor/ralouphie/getallheaders/src/getallheaders.php/vendor/ralouphie/getallheaders/src/getallheaders.php
composer.json
/vendor/ralouphie/getallheaders/composer.json/vendor/ralouphie/getallheaders/composer.json
.gitignore
/vendor/symfony/deprecation-contracts/.gitignore/vendor/symfony/deprecation-contracts/.gitignore
CHANGELOG.md
/vendor/symfony/deprecation-contracts/CHANGELOG.md/vendor/symfony/deprecation-contracts/CHANGELOG.md
composer.json
/vendor/symfony/deprecation-contracts/composer.json/vendor/symfony/deprecation-contracts/composer.json
function.php
/vendor/symfony/deprecation-contracts/function.php/vendor/symfony/deprecation-contracts/function.php
LICENSE
/vendor/symfony/deprecation-contracts/LICENSE/vendor/symfony/deprecation-contracts/LICENSE
README.md
/vendor/symfony/deprecation-contracts/README.md/vendor/symfony/deprecation-contracts/README.md