1
0
mirror of https://github.com/danog/amp.git synced 2024-12-03 09:57:51 +01:00
amp/composer.json

23 lines
501 B
JSON
Raw Normal View History

2016-01-20 11:56:02 +01:00
{
"name": "async-interop/event-loop",
"description": "An event loop interface for interoperability.",
2016-01-20 11:56:02 +01:00
"keywords": ["event", "loop", "async", "interop"],
"license": "MIT",
"require": {
"php": ">=5.5.0"
2016-01-20 11:56:02 +01:00
},
2016-05-16 11:33:04 +02:00
"require-dev": {
"phpunit/phpunit": "^4|^5"
},
2016-01-20 11:56:02 +01:00
"autoload": {
"psr-4": {
"Interop\\Async\\": "src"
2016-01-20 11:56:02 +01:00
}
2016-05-15 17:25:16 +02:00
},
"autoload-dev": {
"psr-4": {
"Interop\\Async\\Loop\\Test\\": "test"
2016-05-15 17:25:16 +02:00
}
2016-01-20 11:56:02 +01:00
}
}