├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src ├── Deferred.php ├── Exception ├── CompositeException.php └── LengthException.php ├── Internal ├── CancellationQueue.php ├── FulfilledPromise.php └── RejectedPromise.php ├── Promise.php ├── PromiseInterface.php ├── functions.php └── functions_include.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp/promise/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp/promise/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp/promise/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp/promise/HEAD/composer.json -------------------------------------------------------------------------------- /src/Deferred.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp/promise/HEAD/src/Deferred.php -------------------------------------------------------------------------------- /src/Exception/CompositeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp/promise/HEAD/src/Exception/CompositeException.php -------------------------------------------------------------------------------- /src/Exception/LengthException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp/promise/HEAD/src/Exception/LengthException.php -------------------------------------------------------------------------------- /src/Internal/CancellationQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp/promise/HEAD/src/Internal/CancellationQueue.php -------------------------------------------------------------------------------- /src/Internal/FulfilledPromise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp/promise/HEAD/src/Internal/FulfilledPromise.php -------------------------------------------------------------------------------- /src/Internal/RejectedPromise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp/promise/HEAD/src/Internal/RejectedPromise.php -------------------------------------------------------------------------------- /src/Promise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp/promise/HEAD/src/Promise.php -------------------------------------------------------------------------------- /src/PromiseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp/promise/HEAD/src/PromiseInterface.php -------------------------------------------------------------------------------- /src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp/promise/HEAD/src/functions.php -------------------------------------------------------------------------------- /src/functions_include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp/promise/HEAD/src/functions_include.php --------------------------------------------------------------------------------