mirror of
https://github.com/guzzle/guzzle.git
synced 2025-02-23 09:34:00 +01:00
* Internationalized domain name (IDN) support * Documentation fix * Tests for base_uri * PHPStan and CI fixes * cs
10 lines
160 B
PHP
10 lines
160 B
PHP
<?php
|
|
|
|
if (!defined('IDNA_DEFAULT')) {
|
|
define('IDNA_DEFAULT', 0);
|
|
}
|
|
|
|
if (!defined('INTL_IDNA_VARIANT_UTS46')) {
|
|
define('INTL_IDNA_VARIANT_UTS46', 1);
|
|
}
|