1
0
mirror of https://github.com/danog/amp.git synced 2024-12-02 17:37:50 +01:00
amp/composer.json

70 lines
1.6 KiB
JSON
Raw Normal View History

2013-08-05 22:05:08 +02:00
{
2014-09-23 04:38:32 +02:00
"name": "amphp/amp",
"homepage": "https://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",
"event",
"event-loop"
2014-07-22 17:56:44 +02:00
],
"license": "MIT",
"authors": [
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"
2021-04-04 20:10:23 +02:00
},
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net"
2014-07-22 17:56:44 +02:00
}
],
2021-12-03 21:55:11 +01:00
"minimum-stability": "dev",
"prefer-stable": true,
2014-07-22 17:56:44 +02:00
"require": {
2022-02-24 21:23:10 +01:00
"php": ">=8.1",
2022-11-06 22:09:42 +01:00
"revolt/event-loop": "^1 || ^0.2"
2014-07-22 17:56:44 +02:00
},
"require-dev": {
"ext-json": "*",
2022-02-01 20:30:04 +01:00
"amphp/php-cs-fixer-config": "^2-dev",
"phpunit/phpunit": "^9",
2021-12-03 00:58:44 +01:00
"psalm/phar": "^4.13"
},
2014-07-22 17:56:44 +02:00
"autoload": {
"psr-4": {
2021-12-02 18:20:10 +01:00
"Amp\\": "src"
2014-08-02 08:10:05 +02:00
},
2016-05-21 16:44:52 +02:00
"files": [
2021-12-02 18:20:10 +01:00
"src/functions.php",
"src/Future/functions.php",
"src/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": {
2021-09-06 06:47:06 +02:00
"Amp\\": "test"
2014-09-23 04:38:32 +02:00
}
},
2015-07-27 19:37:05 +02:00
"support": {
"issues": "https://github.com/amphp/amp/issues"
2015-08-18 13:41:13 +02: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"
}
2013-08-05 22:05:08 +02:00
}