Dep: update

주로 PHAN
This commit is contained in:
2021-08-06 22:39:09 +09:00
parent 5310c2e7f6
commit b306601c72
1098 changed files with 92137 additions and 33228 deletions
+23 -4
View File
@@ -16,7 +16,7 @@
"homepage": "http://sabre.io/event/",
"license": "BSD-3-Clause",
"require": {
"php": "^7.1"
"php": "^7.1 || ^8.0"
},
"authors": [
{
@@ -40,11 +40,30 @@
"lib/Promise/functions.php"
]
},
"autoload-dev": {
"psr-4" : {
"Sabre\\Event\\" : "tests/Event"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.16.1",
"phpunit/phpunit" : "^7 || ^8"
"phpstan/phpstan": "^0.12",
"phpunit/phpunit" : "^7.5 || ^8.5 || ^9.0"
},
"config" : {
"bin-dir" : "bin/"
"scripts": {
"phpstan": [
"phpstan analyse lib tests"
],
"cs-fixer": [
"php-cs-fixer fix"
],
"phpunit": [
"phpunit --configuration tests/phpunit.xml"
],
"test": [
"composer phpstan",
"composer cs-fixer",
"composer phpunit"
]
}
}
+3
View File
@@ -22,6 +22,8 @@ use Throwable;
* @copyright Copyright (C) fruux GmbH (https://fruux.com/)
* @author Evert Pot (http://evertpot.com/)
* @license http://sabre.io/license/ Modified BSD License
*
* @psalm-template TReturn
*/
class Promise
{
@@ -168,6 +170,7 @@ class Promise
* chain.
*
* @return mixed
* @psalm-return TReturn
*/
public function wait()
{
+1 -1
View File
@@ -16,5 +16,5 @@ class Version
/**
* Full version number.
*/
const VERSION = '5.1.0';
const VERSION = '5.1.2';
}
+4
View File
@@ -44,6 +44,10 @@ use Throwable;
*
* @return \Sabre\Event\Promise
*
* @psalm-template TReturn
* @psalm-param callable():\Generator<mixed, mixed, mixed, TReturn> $gen
* @psalm-return Promise<TReturn>
*
* @copyright Copyright (C) fruux GmbH (https://fruux.com/)
* @author Evert Pot (http://evertpot.com/)
* @license http://sabre.io/license/ Modified BSD License