mirror of
https://github.com/danog/amp.git
synced 2024-11-27 12:35:02 +01:00
b197b2c07d
This also ensures that potential throwing in the callback will be handled inside a potential error handler instead of immediately falling through.
23 lines
501 B
JSON
23 lines
501 B
JSON
{
|
|
"name": "async-interop/event-loop",
|
|
"description": "An event loop interface for interoperability.",
|
|
"keywords": ["event", "loop", "async", "interop"],
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": ">=5.5.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^4|^5"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Interop\\Async\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Interop\\Async\\Loop\\Test\\": "test"
|
|
}
|
|
}
|
|
}
|