2013-08-05 22:05:08 +02:00
|
|
|
{
|
2014-09-23 04:38:32 +02:00
|
|
|
"name": "amphp/amp",
|
2017-06-15 17:50:28 +02:00
|
|
|
"homepage": "http://amphp.org/amp",
|
|
|
|
"description": "A non-blocking concurrency framework for PHP applications.",
|
2014-07-22 17:56:44 +02:00
|
|
|
"keywords": [
|
2014-09-23 04:38:32 +02:00
|
|
|
"async",
|
2016-07-19 06:20:05 +02:00
|
|
|
"asynchronous",
|
2014-09-23 04:38:32 +02:00
|
|
|
"concurrency",
|
|
|
|
"promise",
|
2016-07-19 06:20:05 +02:00
|
|
|
"awaitable",
|
2016-05-21 16:44:52 +02:00
|
|
|
"future",
|
2014-07-22 17:56:44 +02:00
|
|
|
"non-blocking",
|
2017-05-09 12:31:17 +02:00
|
|
|
"event",
|
|
|
|
"event-loop"
|
2014-07-22 17:56:44 +02:00
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Daniel Lowrey",
|
2017-03-10 19:19:32 +01:00
|
|
|
"email": "rdlowrey@php.net"
|
2016-07-19 06:20:05 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Aaron Piotrowski",
|
2017-03-10 19:19:32 +01:00
|
|
|
"email": "aaron@trowski.com"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Bob Weinand",
|
|
|
|
"email": "bobwei9@hotmail.com"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Niklas Keller",
|
|
|
|
"email": "me@kelunik.com"
|
2014-07-22 17:56:44 +02:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2020-09-27 05:22:07 +02:00
|
|
|
"php": ">=8",
|
2021-03-26 22:34:32 +01:00
|
|
|
"ext-fiber": "*",
|
2021-03-27 16:23:32 +01:00
|
|
|
"revolt/event-loop": "dev-microtasks as 1-dev"
|
2014-07-22 17:56:44 +02:00
|
|
|
},
|
2015-04-29 18:53:40 +02:00
|
|
|
"require-dev": {
|
2019-05-14 21:37:08 +02:00
|
|
|
"ext-json": "*",
|
2021-03-26 22:34:32 +01:00
|
|
|
"amphp/phpunit-util": "dev-v2-revolt",
|
2019-02-26 06:09:26 +01:00
|
|
|
"amphp/php-cs-fixer-config": "dev-master",
|
2020-09-26 19:34:39 +02:00
|
|
|
"phpunit/phpunit": "^9",
|
2020-07-14 21:45:35 +02:00
|
|
|
"psalm/phar": "^3.11@dev",
|
2020-03-28 12:23:46 +01:00
|
|
|
"jetbrains/phpstorm-stubs": "^2019.3"
|
2015-04-29 18:53:40 +02:00
|
|
|
},
|
2021-03-26 22:34:32 +01:00
|
|
|
"repositories": [
|
|
|
|
{
|
|
|
|
"type": "vcs",
|
|
|
|
"url": "git@github.com:revolt-php/event-loop.git"
|
|
|
|
}
|
|
|
|
],
|
2014-07-22 17:56:44 +02:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2017-06-15 17:50:28 +02:00
|
|
|
"Amp\\": "lib"
|
2014-08-02 08:10:05 +02:00
|
|
|
},
|
2016-05-21 16:44:52 +02:00
|
|
|
"files": [
|
2017-03-29 17:25:44 +02:00
|
|
|
"lib/functions.php",
|
2020-09-27 05:22:07 +02:00
|
|
|
"lib/Internal/functions.php"
|
2016-05-21 16:44:52 +02:00
|
|
|
]
|
2014-07-22 17:56:44 +02:00
|
|
|
},
|
2014-09-23 04:38:32 +02:00
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
2017-06-15 17:50:28 +02:00
|
|
|
"Amp\\Test\\": "test"
|
2014-09-23 04:38:32 +02:00
|
|
|
}
|
|
|
|
},
|
2015-07-27 19:37:05 +02:00
|
|
|
"support": {
|
2017-06-15 17:50:28 +02:00
|
|
|
"issues": "https://github.com/amphp/amp/issues",
|
|
|
|
"irc": "irc://irc.freenode.org/amphp"
|
2015-08-18 13:41:13 +02:00
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"branch-alias": {
|
2020-03-22 08:13:28 +01:00
|
|
|
"dev-master": "2.x-dev"
|
2015-08-18 13:41:13 +02:00
|
|
|
}
|
2017-12-02 17:14:21 +01:00
|
|
|
},
|
2018-03-16 14:42:32 +01:00
|
|
|
"scripts": {
|
|
|
|
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit",
|
|
|
|
"code-style": "@php ./vendor/bin/php-cs-fixer fix"
|
2015-02-05 14:40:18 +01:00
|
|
|
}
|
2013-08-05 22:05:08 +02:00
|
|
|
}
|