Home
last modified time | relevance | path

Searched refs:json (Results 26 – 50 of 450) sorted by path

12345678910>>...18

/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DClient.php510 if ($json = json_decode($token, true)) {
511 $token = $json;
987 $json = file_get_contents($config);
989 if (!$config = json_decode($json, true)) {
/plugin/authgooglesheets/vendor/google/apiclient/src/Http/
H A DREST.php136 $json = json_decode($body, true);
138 return new $expectedClass($json);
172 $json = json_decode($body, true);
174 if (isset($json['error']['errors'])) {
175 return $json['error']['errors'];
/plugin/authgooglesheets/vendor/google/auth/
H A DREADME.md62 putenv('GOOGLE_APPLICATION_CREDENTIALS=/path/to/my/credentials.json');
86 putenv('GOOGLE_APPLICATION_CREDENTIALS=/path/to/my/credentials.json');
139 putenv('GOOGLE_APPLICATION_CREDENTIALS=/path/to/my/credentials.json');
233 putenv('GOOGLE_APPLICATION_CREDENTIALS=/path/to/my/credentials.json');
/plugin/authgooglesheets/vendor/google/auth/src/Credentials/
H A DUserRefreshCredentials.php67 $json = file_get_contents($jsonKey);
68 if (!$jsonKey = json_decode((string) $json, true)) {
/plugin/authgooglesheets/vendor/google/auth/src/
H A DCredentialsLoader.php36 const WELL_KNOWN_PATH = 'gcloud/application_default_credentials.json';
38 const MTLS_WELL_KNOWN_PATH = '.secureConnect/context_aware_metadata.json';
131 throw new \InvalidArgumentException('json key is missing the type field');
H A DIam.php33 const SIGN_BLOB_PATH = '%s:signBlob?alt=json';
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md556 * Fixed an issue with using the `json` request option for POST requests
561 * Added a `json` request option to easily serialize JSON payloads.
942 * Bug fix: `Guzzle\Http\Message\Response::json()` now allows scalar values to be returned
1024 * composer.json tweaks
1041 * Added json and xml methods to Response to make it easier to parse JSON and XML response data into…
1123 * Added a `json` parameter location
H A DREADME.md27 echo $response->getHeaderLine('content-type'); # 'application/json; charset=utf8'
H A DUPGRADING.md966 <command name="list_groups" method="GET" uri="groups.json">
973 <command name="create_group" method="POST" uri="groups.json">
997 ```json
1005 "uri": "groups.json",
1010 "uri": "search.json?query=\"{query} type:group\"",
1023 "uri": "groups.json",
1036 "static": "application/json"
1042 "uri": "groups/{id}.json",
1055 "uri": "groups/{id}.json",
1068 "uri": "groups/{id}.json",
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Cookie/
H A DFileCookieJar.php51 $json = [];
55 $json[] = $cookie->toArray();
59 $jsonStr = \GuzzleHttp\json_encode($json);
75 $json = file_get_contents($filename);
76 if (false === $json) {
78 } elseif ($json === '') {
82 $data = \GuzzleHttp\json_decode($json, true);
84 foreach (json_decode($json, true) as $cookie) {
H A DSessionCookieJar.php44 $json = [];
48 $json[] = $cookie->toArray();
52 $_SESSION[$this->sessionKey] = json_encode($json);
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A Dfunctions.php291 * @param string $json JSON data to parse
301 function json_decode($json, $assoc = false, $depth = 512, $options = 0) argument
303 $data = \json_decode($json, $assoc, $depth, $options);
326 $json = \json_encode($value, $options, $depth);
333 return $json;
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md54 …* Added JSON_PARTIAL_OUTPUT_ON_ERROR to default json encoding flags, to avoid dropping entire cont…
69 * Fixed removing of json encoding options
77 …* Added `JSON_INVALID_UTF8_SUBSTITUTE` to default json flags, so that invalid UTF8 characters now …
81 …addJsonEncodeOption and removeJsonEncodeOption are now public to allow modifying default json flags
102 …* Fixed json encoding across all handlers to always attempt recovery of non-UTF-8 strings instead …
142 …* Added DateTimeImmutable support, all record datetime are now immutable, and will toString/json s…
188 …* Fixed json encoding across all handlers to always attempt recovery of non-UTF-8 strings instead …
475 * Added stack traces output when normalizing exceptions (json output & co)
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DWildfireFormatter.php98 $json = $this->toJson([
111 strlen($json),
112 $json
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DChromePHPHandler.php60 protected static $json = [ variable in Monolog\\Handler\\ChromePHPHandler
99 self::$json['rows'] = array_merge(self::$json['rows'], $messages);
124 self::$json['rows'][] = $record['formatted'];
148 self::$json['request_uri'] = $_SERVER['REQUEST_URI'] ?? '';
151 … $json = Utils::jsonEncode(self::$json, Utils::DEFAULT_JSON_FLAGS & ~JSON_UNESCAPED_UNICODE, true);
152 $data = base64_encode(utf8_encode($json));
165 … self::$json['rows'][count(self::$json['rows']) - 1] = $this->getFormatter()->format($record);
166 $json = Utils::jsonEncode(self::$json, null, true);
167 $data = base64_encode(utf8_encode($json));
H A DCouchDBHandler.php61 'header' => 'Content-type: application/json',
H A DCubeHandler.php160 'Content-Type: application/json',
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/
H A DUtils.php86 $json = @json_encode($data, $encodeFlags);
87 if (false === $json) {
91 return $json;
94 $json = json_encode($data, $encodeFlags);
95 if (false === $json) {
96 $json = self::handleJsonError(json_last_error(), $data);
99 return $json;
134 $json = json_encode($data, $encodeFlags);
136 if ($json === false) {
140 return $json;
/plugin/authorstats/
H A Dhelper.php49 $json = json_encode($authors, true);
50 file_put_contents($this->summaryfile, $json);
65 $json = json_encode($pages, true);
66 file_put_contents($this->basedir . "/" . $loginname . ".json", $json);
/plugin/autotweet2/
H A Daction.php177 $json = substr( $res1, $res2['header_size'] ) ; // Got data (such as JSON)
181 msg('[Debug] Body(JSON): ' . $json);
/plugin/barcodes/
H A Dcomposer.lock694 "ext-json": "*",
/plugin/barcodes/vendor/jucksearm/php-barcode/
H A DREADME.md30 You can also edit your project's `composer.json` file to require `jucksearm/php-barcode`.
/plugin/batchedit/
H A Djs.cookie.js112 if (!this.json && cookie.charAt(0) === '"') {
122 if (this.json) {
148 json: true
/plugin/bookmarkfile/
H A Dsyntax.php133 private function parseFirefoxJSON(array $json) argument
136 if ($json['root'] == 'placesRoot') {
137 $pos = $json['children'];
139 $pos = $json;
193 $json = file_get_contents($filename);
195 $json_bookmarks = json_decode($json, true);
/plugin/bugzillaint/action/
H A Dfetch.php49 $json = new JSON();
51 print $json->encode( $result );

12345678910>>...18