├── LICENSE ├── composer.json └── src ├── ErrorHandler.php ├── Exception ├── ExceptionInterface.php └── UnhandledPromiseRejection.php ├── Executor.php └── Promise.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazervel/promise/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazervel/promise/HEAD/composer.json -------------------------------------------------------------------------------- /src/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazervel/promise/HEAD/src/ErrorHandler.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazervel/promise/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/UnhandledPromiseRejection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazervel/promise/HEAD/src/Exception/UnhandledPromiseRejection.php -------------------------------------------------------------------------------- /src/Executor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazervel/promise/HEAD/src/Executor.php -------------------------------------------------------------------------------- /src/Promise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazervel/promise/HEAD/src/Promise.php --------------------------------------------------------------------------------