1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 12:35:02 +01:00
amp/composer.json
Bob Weinand b197b2c07d Put Loop::execute() $callback into Driver::defer()
This also ensures that potential throwing in the callback will be handled inside a potential error handler instead of immediately falling through.
2016-05-26 23:45:27 +02:00

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"
}
}
}