Lines Matching +full:ini +full:- +full:values
105 …throw new \RuntimeException('GuzzleHttp requires cURL, the allow_url_fopen ini setting, or a custo…
112 * Get the default User-Agent string to use with Guzzle.
122 * First, the openssl.cafile and curl.cainfo php.ini settings are checked.
138 // Red Hat, CentOS, Fedora (provided by the ca-certificates package)
139 '/etc/pki/tls/certs/ca-bundle.crt',
140 // Ubuntu, Debian (provided by the ca-certificates package)
141 '/etc/ssl/certs/ca-certificates.crt',
143 '/usr/local/share/certs/ca-root-nss.crt',
144 // SLES 12 (provided by the ca-certificates package)
145 '/var/lib/ca-certificates/ca-bundle.pem',
149 '/etc/ca-certificates.crt',
151 'C:\\windows\\system32\\curl-ca-bundle.crt',
152 'C:\\windows\\curl-ca-bundle.crt',
179 option: https://docs.guzzlephp.org/en/latest/request-options.html#verify. If
183 on disk, you can set the 'openssl.cafile' PHP ini setting to point to the path
239 // Don't match on empty values.
250 if (\substr($host, -\strlen($area)) === $area) {
271 * @see https://www.php.net/manual/en/function.json-decode.php
292 * @see https://www.php.net/manual/en/function.json-encode.php
325 if ($uri->getHost()) {
326 $asciiHost = self::idnToAsci($uri->getHost(), $options, $info);
348 if ($uri->getHost() !== $asciiHost) {
350 $uri = $uri->withHost($asciiHost);
382 throw new \Error('ext-idn or symfony/polyfill-intl-idn not loaded or too old');