Dep: update
주로 PHAN
This commit is contained in:
Vendored
+23
-4
@@ -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"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+3
@@ -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()
|
||||
{
|
||||
|
||||
Vendored
+1
-1
@@ -16,5 +16,5 @@ class Version
|
||||
/**
|
||||
* Full version number.
|
||||
*/
|
||||
const VERSION = '5.1.0';
|
||||
const VERSION = '5.1.2';
|
||||
}
|
||||
|
||||
Vendored
+4
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user