1
0
mirror of https://github.com/danog/loop.git synced 2024-11-26 20:04:44 +01:00
loop/composer.json

49 lines
1.1 KiB
JSON
Raw Normal View History

2020-07-21 18:06:19 +02:00
{
"name": "danog/loop",
"description": "Loop abstraction for AMPHP.",
"keywords": [
"asynchronous",
"async",
"concurrent",
"multi-threading",
"multi-processing"
],
"homepage": "https://github.com/danog/loop",
"license": "MIT",
"authors": [
{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}
],
"require": {
2022-12-24 14:37:39 +01:00
"php": ">=8.1",
"amphp/amp": "^3"
2020-07-21 18:06:19 +02:00
},
"require-dev": {
2022-12-24 14:37:39 +01:00
"phpunit/phpunit": "^9",
"amphp/phpunit-util": "^3",
"amphp/php-cs-fixer-config": "^2",
"psalm/phar": "dev-master"
2020-07-21 18:06:19 +02:00
},
"autoload": {
"psr-4": {
"danog\\Loop\\": "lib"
}
},
"autoload-dev": {
"psr-4": {
"danog\\Loop\\Test\\": "test"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
2020-07-23 13:26:16 +02:00
"test": "phpdbg -qrr -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit --coverage-text"
2020-07-21 18:06:19 +02:00
}
}