Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Maximilian Görmar
selbstzeugnisse-hab
Commits
f8ac57cf
Commit
f8ac57cf
authored
Oct 09, 2019
by
David Maus
Browse files
Update dependencies
parent
807905cd
Changes
1000
Expand all
Hide whitespace changes
Inline
Side-by-side
Too many changes to show.
To preserve performance only
20 of 1000+
files are displayed.
Plain diff
Email patch
composer.lock
View file @
f8ac57cf
This diff is collapsed.
Click to expand it.
vendor/composer/ClassLoader.php
View file @
f8ac57cf
...
...
@@ -279,7 +279,7 @@ class ClassLoader
*/
public
function
setApcuPrefix
(
$apcuPrefix
)
{
$this
->
apcuPrefix
=
function_exists
(
'apcu_fetch'
)
&&
ini_get
(
'apc.enabled'
)
?
$apcuPrefix
:
null
;
$this
->
apcuPrefix
=
function_exists
(
'apcu_fetch'
)
&&
filter_var
(
ini_get
(
'apc.enabled'
)
,
FILTER_VALIDATE_BOOLEAN
)
?
$apcuPrefix
:
null
;
}
/**
...
...
@@ -374,10 +374,14 @@ class ClassLoader
$first
=
$class
[
0
];
if
(
isset
(
$this
->
prefixLengthsPsr4
[
$first
]))
{
foreach
(
$this
->
prefixLengthsPsr4
[
$first
]
as
$prefix
=>
$length
)
{
if
(
0
===
strpos
(
$class
,
$prefix
))
{
foreach
(
$this
->
prefixDirsPsr4
[
$prefix
]
as
$dir
)
{
if
(
file_exists
(
$file
=
$dir
.
DIRECTORY_SEPARATOR
.
substr
(
$logicalPathPsr4
,
$length
)))
{
$subPath
=
$class
;
while
(
false
!==
$lastPos
=
strrpos
(
$subPath
,
'\\'
))
{
$subPath
=
substr
(
$subPath
,
0
,
$lastPos
);
$search
=
$subPath
.
'\\'
;
if
(
isset
(
$this
->
prefixDirsPsr4
[
$search
]))
{
$pathEnd
=
DIRECTORY_SEPARATOR
.
substr
(
$logicalPathPsr4
,
$lastPos
+
1
);
foreach
(
$this
->
prefixDirsPsr4
[
$search
]
as
$dir
)
{
if
(
file_exists
(
$file
=
$dir
.
$pathEnd
))
{
return
$file
;
}
}
...
...
vendor/composer/LICENSE
View file @
f8ac57cf
Copyright (c)
2016
Nils Adermann, Jordi Boggiano
Copyright (c) Nils Adermann, Jordi Boggiano
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
...
...
vendor/composer/autoload_classmap.php
View file @
f8ac57cf
...
...
@@ -6,11 +6,5 @@ $vendorDir = dirname(dirname(__FILE__));
$baseDir
=
dirname
(
$vendorDir
);
return
array
(
'ArithmeticError'
=>
$vendorDir
.
'/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php'
,
'AssertionError'
=>
$vendorDir
.
'/symfony/polyfill-php70/Resources/stubs/AssertionError.php'
,
'DivisionByZeroError'
=>
$vendorDir
.
'/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php'
,
'Error'
=>
$vendorDir
.
'/symfony/polyfill-php70/Resources/stubs/Error.php'
,
'ParseError'
=>
$vendorDir
.
'/symfony/polyfill-php70/Resources/stubs/ParseError.php'
,
'SessionUpdateTimestampHandlerInterface'
=>
$vendorDir
.
'/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php'
,
'TypeError'
=>
$vendorDir
.
'/symfony/polyfill-php70/Resources/stubs/TypeError.php'
,
'JsonException'
=>
$vendorDir
.
'/symfony/polyfill-php73/Resources/stubs/JsonException.php'
,
);
vendor/composer/autoload_files.php
View file @
f8ac57cf
...
...
@@ -6,9 +6,12 @@ $vendorDir = dirname(dirname(__FILE__));
$baseDir
=
dirname
(
$vendorDir
);
return
array
(
'5255c38a0faeba867671b61dfda6d864'
=>
$vendorDir
.
'/paragonie/random_compat/lib/random.php'
,
'023d27dca8066ef29e6739335ea73bad'
=>
$vendorDir
.
'/symfony/polyfill-php70/bootstrap.php'
,
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a'
=>
$vendorDir
.
'/symfony/polyfill-mbstring/bootstrap.php'
,
'25072dd6e2470089de65ae7bf11d3109'
=>
$vendorDir
.
'/symfony/polyfill-php72/bootstrap.php'
,
'f598d06aa772fa33d905e87be6398fb1'
=>
$vendorDir
.
'/symfony/polyfill-intl-idn/bootstrap.php'
,
'320cde22f66dd4f5d3fd621d3e88b98f'
=>
$vendorDir
.
'/symfony/polyfill-ctype/bootstrap.php'
,
'0d59ee240a4cd96ddbb4ff164fccea4d'
=>
$vendorDir
.
'/symfony/polyfill-php73/bootstrap.php'
,
'7b11c4dc42b3b3023073cb14e519683c'
=>
$vendorDir
.
'/ralouphie/getallheaders/src/getallheaders.php'
,
'c964ee0ededf28c96ebd9db5099ef910'
=>
$vendorDir
.
'/guzzlehttp/promises/src/functions_include.php'
,
'a0edc8309cc5e1d60e3047b5df6b7052'
=>
$vendorDir
.
'/guzzlehttp/psr7/src/functions_include.php'
,
'37a3dc5111fe8f707ab4c132ef1dbc62'
=>
$vendorDir
.
'/guzzlehttp/guzzle/src/functions_include.php'
,
...
...
vendor/composer/autoload_psr4.php
View file @
f8ac57cf
...
...
@@ -7,9 +7,14 @@ $baseDir = dirname($vendorDir);
return
array
(
'Twig\\'
=>
array
(
$vendorDir
.
'/twig/twig/src'
),
'Symfony\\Polyfill\\Php70\\'
=>
array
(
$vendorDir
.
'/symfony/polyfill-php70'
),
'Symfony\\Polyfill\\Php73\\'
=>
array
(
$vendorDir
.
'/symfony/polyfill-php73'
),
'Symfony\\Polyfill\\Php72\\'
=>
array
(
$vendorDir
.
'/symfony/polyfill-php72'
),
'Symfony\\Polyfill\\Mbstring\\'
=>
array
(
$vendorDir
.
'/symfony/polyfill-mbstring'
),
'Symfony\\Polyfill\\Intl\\Idn\\'
=>
array
(
$vendorDir
.
'/symfony/polyfill-intl-idn'
),
'Symfony\\Polyfill\\Ctype\\'
=>
array
(
$vendorDir
.
'/symfony/polyfill-ctype'
),
'Symfony\\Contracts\\EventDispatcher\\'
=>
array
(
$vendorDir
.
'/symfony/event-dispatcher-contracts'
),
'Symfony\\Component\\Routing\\'
=>
array
(
$vendorDir
.
'/symfony/routing'
),
'Symfony\\Component\\Mime\\'
=>
array
(
$vendorDir
.
'/symfony/mime'
),
'Symfony\\Component\\HttpKernel\\'
=>
array
(
$vendorDir
.
'/symfony/http-kernel'
),
'Symfony\\Component\\HttpFoundation\\'
=>
array
(
$vendorDir
.
'/symfony/http-foundation'
),
'Symfony\\Component\\EventDispatcher\\'
=>
array
(
$vendorDir
.
'/symfony/event-dispatcher'
),
...
...
vendor/composer/autoload_static.php
View file @
f8ac57cf
...
...
@@ -7,9 +7,12 @@ namespace Composer\Autoload;
class
ComposerStaticInit8a9318ad96e1e6602a968c996fe31931
{
public
static
$files
=
array
(
'5255c38a0faeba867671b61dfda6d864'
=>
__DIR__
.
'/..'
.
'/paragonie/random_compat/lib/random.php'
,
'023d27dca8066ef29e6739335ea73bad'
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-php70/bootstrap.php'
,
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a'
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-mbstring/bootstrap.php'
,
'25072dd6e2470089de65ae7bf11d3109'
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-php72/bootstrap.php'
,
'f598d06aa772fa33d905e87be6398fb1'
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-intl-idn/bootstrap.php'
,
'320cde22f66dd4f5d3fd621d3e88b98f'
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-ctype/bootstrap.php'
,
'0d59ee240a4cd96ddbb4ff164fccea4d'
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-php73/bootstrap.php'
,
'7b11c4dc42b3b3023073cb14e519683c'
=>
__DIR__
.
'/..'
.
'/ralouphie/getallheaders/src/getallheaders.php'
,
'c964ee0ededf28c96ebd9db5099ef910'
=>
__DIR__
.
'/..'
.
'/guzzlehttp/promises/src/functions_include.php'
,
'a0edc8309cc5e1d60e3047b5df6b7052'
=>
__DIR__
.
'/..'
.
'/guzzlehttp/psr7/src/functions_include.php'
,
'37a3dc5111fe8f707ab4c132ef1dbc62'
=>
__DIR__
.
'/..'
.
'/guzzlehttp/guzzle/src/functions_include.php'
,
...
...
@@ -22,9 +25,14 @@ class ComposerStaticInit8a9318ad96e1e6602a968c996fe31931
),
'S'
=>
array
(
'Symfony\\Polyfill\\Php70\\'
=>
23
,
'Symfony\\Polyfill\\Php73\\'
=>
23
,
'Symfony\\Polyfill\\Php72\\'
=>
23
,
'Symfony\\Polyfill\\Mbstring\\'
=>
26
,
'Symfony\\Polyfill\\Intl\\Idn\\'
=>
26
,
'Symfony\\Polyfill\\Ctype\\'
=>
23
,
'Symfony\\Contracts\\EventDispatcher\\'
=>
34
,
'Symfony\\Component\\Routing\\'
=>
26
,
'Symfony\\Component\\Mime\\'
=>
23
,
'Symfony\\Component\\HttpKernel\\'
=>
29
,
'Symfony\\Component\\HttpFoundation\\'
=>
33
,
'Symfony\\Component\\EventDispatcher\\'
=>
34
,
...
...
@@ -55,18 +63,38 @@ class ComposerStaticInit8a9318ad96e1e6602a968c996fe31931
array
(
0
=>
__DIR__
.
'/..'
.
'/twig/twig/src'
,
),
'Symfony\\Polyfill\\Php7
0
\\'
=>
'Symfony\\Polyfill\\Php7
3
\\'
=>
array
(
0
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-php70'
,
0
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-php73'
,
),
'Symfony\\Polyfill\\Php72\\'
=>
array
(
0
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-php72'
,
),
'Symfony\\Polyfill\\Mbstring\\'
=>
array
(
0
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-mbstring'
,
),
'Symfony\\Polyfill\\Intl\\Idn\\'
=>
array
(
0
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-intl-idn'
,
),
'Symfony\\Polyfill\\Ctype\\'
=>
array
(
0
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-ctype'
,
),
'Symfony\\Contracts\\EventDispatcher\\'
=>
array
(
0
=>
__DIR__
.
'/..'
.
'/symfony/event-dispatcher-contracts'
,
),
'Symfony\\Component\\Routing\\'
=>
array
(
0
=>
__DIR__
.
'/..'
.
'/symfony/routing'
,
),
'Symfony\\Component\\Mime\\'
=>
array
(
0
=>
__DIR__
.
'/..'
.
'/symfony/mime'
,
),
'Symfony\\Component\\HttpKernel\\'
=>
array
(
0
=>
__DIR__
.
'/..'
.
'/symfony/http-kernel'
,
...
...
@@ -150,13 +178,7 @@ class ComposerStaticInit8a9318ad96e1e6602a968c996fe31931
);
public
static
$classMap
=
array
(
'ArithmeticError'
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php'
,
'AssertionError'
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-php70/Resources/stubs/AssertionError.php'
,
'DivisionByZeroError'
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php'
,
'Error'
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-php70/Resources/stubs/Error.php'
,
'ParseError'
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-php70/Resources/stubs/ParseError.php'
,
'SessionUpdateTimestampHandlerInterface'
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php'
,
'TypeError'
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-php70/Resources/stubs/TypeError.php'
,
'JsonException'
=>
__DIR__
.
'/..'
.
'/symfony/polyfill-php73/Resources/stubs/JsonException.php'
,
);
public
static
function
getInitializer
(
ClassLoader
$loader
)
...
...
vendor/composer/installed.json
View file @
f8ac57cf
This diff is collapsed.
Click to expand it.
vendor/guzzlehttp/guzzle/CHANGELOG.md
View file @
f8ac57cf
# CHANGELOG
# Change Log
## 6.3.3 - 2018-04-22
*
Fix: Default headers when decode_content is specified
## 6.3.2 - 2018-03-26
*
Fix: Release process
## 6.3.1 - 2018-03-26
*
Bug fix: Parsing 0 epoch expiry times in cookies
[
#2014
](
https://github.com/guzzle/guzzle/pull/2014
)
*
Improvement: Better ConnectException detection
[
#2012
](
https://github.com/guzzle/guzzle/pull/2012
)
*
Bug fix: Malformed domain that contains a "/"
[
#1999
](
https://github.com/guzzle/guzzle/pull/1999
)
*
Bug fix: Undefined offset when a cookie has no first key-value pair
[
#1998
](
https://github.com/guzzle/guzzle/pull/1998
)
*
Improvement: Support PHPUnit 6
[
#1953
](
https://github.com/guzzle/guzzle/pull/1953
)
*
Bug fix: Support empty headers
[
#1915
](
https://github.com/guzzle/guzzle/pull/1915
)
*
Bug fix: Ignore case during header modifications
[
#1916
](
https://github.com/guzzle/guzzle/pull/1916
)
+
Minor code cleanups, documentation fixes and clarifications.
## 6.3.0 - 2017-06-22
...
...
vendor/guzzlehttp/guzzle/LICENSE
View file @
f8ac57cf
Copyright (c) 2011-201
6
Michael Dowling, https://github.com/mtdowling <mtdowling@gmail.com>
Copyright (c) 2011-201
8
Michael Dowling, https://github.com/mtdowling <mtdowling@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
...
...
vendor/guzzlehttp/guzzle/README.md
View file @
f8ac57cf
Guzzle, PHP HTTP client
=======================
[

](https://travis-ci.org/guzzle/guzzle)
[

](https://github.com/guzzle/guzzle/releases)
[

](https://travis-ci.org/guzzle/guzzle)
[

](https://packagist.org/packages/guzzlehttp/guzzle)
Guzzle is a PHP HTTP client that makes it easy to send HTTP requests and
trivial to integrate with web services.
...
...
vendor/guzzlehttp/guzzle/composer.json
View file @
f8ac57cf
...
...
@@ -19,7 +19,7 @@
},
"require-dev"
:
{
"ext-curl"
:
"*"
,
"phpunit/phpunit"
:
"^4.
0
|| ^5.0"
,
"phpunit/phpunit"
:
"^4.
8.35
|| ^5.
7 || ^6.4 || ^7.
0"
,
"psr/log"
:
"^1.0"
},
"autoload"
:
{
...
...
@@ -38,7 +38,7 @@
},
"extra"
:
{
"branch-alias"
:
{
"dev-master"
:
"6.
2
-dev"
"dev-master"
:
"6.
3
-dev"
}
}
}
vendor/guzzlehttp/guzzle/src/Client.php
View file @
f8ac57cf
...
...
@@ -290,7 +290,14 @@ class Client implements ClientInterface
*/
private
function
applyOptions
(
RequestInterface
$request
,
array
&
$options
)
{
$modify
=
[];
$modify
=
[
'set_headers'
=>
[],
];
if
(
isset
(
$options
[
'headers'
]))
{
$modify
[
'set_headers'
]
=
$options
[
'headers'
];
unset
(
$options
[
'headers'
]);
}
if
(
isset
(
$options
[
'form_params'
]))
{
if
(
isset
(
$options
[
'multipart'
]))
{
...
...
@@ -302,6 +309,8 @@ class Client implements ClientInterface
}
$options
[
'body'
]
=
http_build_query
(
$options
[
'form_params'
],
''
,
'&'
);
unset
(
$options
[
'form_params'
]);
// Ensure that we don't have the header in different case and set the new value.
$options
[
'_conditional'
]
=
Psr7\_caseless_remove
([
'Content-Type'
],
$options
[
'_conditional'
]);
$options
[
'_conditional'
][
'Content-Type'
]
=
'application/x-www-form-urlencoded'
;
}
...
...
@@ -313,24 +322,19 @@ class Client implements ClientInterface
if
(
isset
(
$options
[
'json'
]))
{
$options
[
'body'
]
=
\
GuzzleHttp\json_encode
(
$options
[
'json'
]);
unset
(
$options
[
'json'
]);
// Ensure that we don't have the header in different case and set the new value.
$options
[
'_conditional'
]
=
Psr7\_caseless_remove
([
'Content-Type'
],
$options
[
'_conditional'
]);
$options
[
'_conditional'
][
'Content-Type'
]
=
'application/json'
;
}
if
(
!
empty
(
$options
[
'decode_content'
])
&&
$options
[
'decode_content'
]
!==
true
)
{
// Ensure that we don't have the header in different case and set the new value.
$options
[
'_conditional'
]
=
Psr7\_caseless_remove
([
'Accept-Encoding'
],
$options
[
'_conditional'
]);
$modify
[
'set_headers'
][
'Accept-Encoding'
]
=
$options
[
'decode_content'
];
}
if
(
isset
(
$options
[
'headers'
]))
{
if
(
isset
(
$modify
[
'set_headers'
]))
{
$modify
[
'set_headers'
]
=
$options
[
'headers'
]
+
$modify
[
'set_headers'
];
}
else
{
$modify
[
'set_headers'
]
=
$options
[
'headers'
];
}
unset
(
$options
[
'headers'
]);
}
if
(
isset
(
$options
[
'body'
]))
{
if
(
is_array
(
$options
[
'body'
]))
{
$this
->
invalidBody
();
...
...
@@ -344,6 +348,8 @@ class Client implements ClientInterface
$type
=
isset
(
$value
[
2
])
?
strtolower
(
$value
[
2
])
:
'basic'
;
switch
(
$type
)
{
case
'basic'
:
// Ensure that we don't have the header in different case and set the new value.
$modify
[
'set_headers'
]
=
Psr7\_caseless_remove
([
'Authorization'
],
$modify
[
'set_headers'
]);
$modify
[
'set_headers'
][
'Authorization'
]
=
'Basic '
.
base64_encode
(
"
$value[0]:$value[1]
"
);
break
;
...
...
@@ -382,6 +388,8 @@ class Client implements ClientInterface
$request
=
Psr7\modify_request
(
$request
,
$modify
);
if
(
$request
->
getBody
()
instanceof
Psr7\MultipartStream
)
{
// Use a multipart/form-data POST if a Content-Type is not set.
// Ensure that we don't have the header in different case and set the new value.
$options
[
'_conditional'
]
=
Psr7\_caseless_remove
([
'Content-Type'
],
$options
[
'_conditional'
]);
$options
[
'_conditional'
][
'Content-Type'
]
=
'multipart/form-data; boundary='
.
$request
->
getBody
()
->
getBoundary
();
}
...
...
vendor/guzzlehttp/guzzle/src/ClientInterface.php
View file @
f8ac57cf
...
...
@@ -12,7 +12,7 @@ use Psr\Http\Message\UriInterface;
*/
interface
ClientInterface
{
const
VERSION
=
'6.
2.1
'
;
const
VERSION
=
'6.
3.3
'
;
/**
* Send an HTTP request.
...
...
vendor/guzzlehttp/guzzle/src/Cookie/CookieJar.php
View file @
f8ac57cf
...
...
@@ -95,11 +95,11 @@ class CookieJar implements CookieJarInterface
public
function
getCookieByName
(
$name
)
{
// don't allow a null name
if
(
$name
===
null
)
{
if
(
$name
===
null
)
{
return
null
;
}
foreach
(
$this
->
cookies
as
$cookie
)
{
if
(
$cookie
->
getName
()
!==
null
&&
strcasecmp
(
$cookie
->
getName
(),
$name
)
===
0
)
{
foreach
(
$this
->
cookies
as
$cookie
)
{
if
(
$cookie
->
getName
()
!==
null
&&
strcasecmp
(
$cookie
->
getName
(),
$name
)
===
0
)
{
return
$cookie
;
}
}
...
...
vendor/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php
View file @
f8ac57cf
...
...
@@ -15,7 +15,7 @@ class SessionCookieJar extends CookieJar
/**
* Create a new SessionCookieJar object
*
* @param string $sessionKey Session key name to store the cookie
* @param string $sessionKey Session key name to store the cookie
* data in session
* @param bool $storeSessionCookies Set to true to store session cookies
* in the cookie jar.
...
...
vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php
View file @
f8ac57cf
...
...
@@ -35,14 +35,13 @@ class SetCookie
$data
=
self
::
$defaults
;
// Explode the cookie string using a series of semicolons
$pieces
=
array_filter
(
array_map
(
'trim'
,
explode
(
';'
,
$cookie
)));
// The name of the cookie (first kvp) must include an equal sign.
if
(
empty
(
$pieces
)
||
!
strpos
(
$pieces
[
0
],
'='
))
{
// The name of the cookie (first kvp) must
exist and
include an equal sign.
if
(
empty
(
$pieces
[
0
]
)
||
!
strpos
(
$pieces
[
0
],
'='
))
{
return
new
self
(
$data
);
}
// Add the cookie pieces into the parsed data array
foreach
(
$pieces
as
$part
)
{
$cookieParts
=
explode
(
'='
,
$part
,
2
);
$key
=
trim
(
$cookieParts
[
0
]);
$value
=
isset
(
$cookieParts
[
1
])
...
...
@@ -349,7 +348,7 @@ class SetCookie
return
false
;
}
return
(
bool
)
preg_match
(
'/\.'
.
preg_quote
(
$cookieDomain
)
.
'$/'
,
$domain
);
return
(
bool
)
preg_match
(
'/\.'
.
preg_quote
(
$cookieDomain
,
'/'
)
.
'$/'
,
$domain
);
}
/**
...
...
@@ -359,7 +358,7 @@ class SetCookie
*/
public
function
isExpired
()
{
return
$this
->
getExpires
()
&&
time
()
>
$this
->
getExpires
();
return
$this
->
getExpires
()
!==
null
&&
time
()
>
$this
->
getExpires
();
}
/**
...
...
@@ -378,8 +377,8 @@ class SetCookie
// Check if any of the invalid characters are present in the cookie name
if
(
preg_match
(
'/[\x00-\x20\x22\x28-\x29\x2c\x2f\x3a-\x40\x5c\x7b\x7d\x7f]/'
,
$name
)
)
{
$name
)
)
{
return
'Cookie name must not contain invalid characters: ASCII '
.
'Control characters (0-31;127), space, tab and the '
.
'following characters: ()<>@,;:\"/?={}'
;
...
...
vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php
View file @
f8ac57cf
<?php
namespace
GuzzleHttp\Exception
;
/**
* @method string getMessage()
* @method \Throwable|null getPrevious()
* @method mixed getCode()
* @method string getFile()
* @method int getLine()
* @method array getTrace()
* @method string getTraceAsString()
*/
interface
GuzzleException
{}
vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php
View file @
f8ac57cf
...
...
@@ -4,7 +4,6 @@ namespace GuzzleHttp\Handler;
use
GuzzleHttp\Exception\RequestException
;
use
GuzzleHttp\Exception\ConnectException
;
use
GuzzleHttp\Promise\FulfilledPromise
;
use
GuzzleHttp\Promise\RejectedPromise
;
use
GuzzleHttp\Psr7
;
use
GuzzleHttp\Psr7\LazyOpenStream
;
use
GuzzleHttp\TransferStats
;
...
...
@@ -288,7 +287,14 @@ class CurlFactory implements CurlFactoryInterface
{
foreach
(
$conf
[
'_headers'
]
as
$name
=>
$values
)
{
foreach
(
$values
as
$value
)
{
$conf
[
CURLOPT_HTTPHEADER
][]
=
"
$name
:
$value
"
;
$value
=
(
string
)
$value
;
if
(
$value
===
''
)
{
// cURL requires a special format for empty headers.
// See https://github.com/guzzle/guzzle/issues/1882 for more details.
$conf
[
CURLOPT_HTTPHEADER
][]
=
"
$name
;"
;
}
else
{
$conf
[
CURLOPT_HTTPHEADER
][]
=
"
$name
:
$value
"
;
}
}
}
...
...
@@ -388,7 +394,7 @@ class CurlFactory implements CurlFactoryInterface
if
(
isset
(
$options
[
'force_ip_resolve'
]))
{
if
(
'v4'
===
$options
[
'force_ip_resolve'
])
{
$conf
[
CURLOPT_IPRESOLVE
]
=
CURL_IPRESOLVE_V4
;
}
else
if
(
'v6'
===
$options
[
'force_ip_resolve'
])
{
}
elseif
(
'v6'
===
$options
[
'force_ip_resolve'
])
{
$conf
[
CURLOPT_IPRESOLVE
]
=
CURL_IPRESOLVE_V6
;
}
}
...
...
vendor/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php
View file @
f8ac57cf
...
...
@@ -65,7 +65,9 @@ class CurlMultiHandler
$promise
=
new
Promise
(
[
$this
,
'execute'
],
function
()
use
(
$id
)
{
return
$this
->
cancel
(
$id
);
}
function
()
use
(
$id
)
{
return
$this
->
cancel
(
$id
);
}
);
$this
->
addRequest
([
'easy'
=>
$easy
,
'deferred'
=>
$promise
]);
...
...
Prev
1
2
3
4
5
…
50
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment