mirror of
https://github.com/danog/asyncConstruct.git
synced 2024-11-26 10:44:38 +01:00
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "danog/async-construct",
|
|
"description": "Async class constructor and wakeup functions for AMPHP.",
|
|
"keywords": [
|
|
"asynchronous",
|
|
"async",
|
|
"concurrent",
|
|
"multi-threading",
|
|
"multi-processing"
|
|
],
|
|
"homepage": "https://github.com/danog/asyncConstruct",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Daniil Gentili",
|
|
"email": "daniil@daniil.it"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.1",
|
|
"amphp/amp": "^2"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^7 | ^8 | ^9",
|
|
"amphp/phpunit-util": "^1.3",
|
|
"amphp/php-cs-fixer-config": "dev-master",
|
|
"vimeo/psalm": "dev-master"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"danog\\": "lib"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"danog\\Test\\": "test"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"check": [
|
|
"@cs",
|
|
"@test"
|
|
],
|
|
"cs": "php-cs-fixer fix -v --diff --dry-run",
|
|
"cs-fix": "php-cs-fixer fix -v --diff",
|
|
"test": "phpdbg -qrr -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit --coverage-text"
|
|
}
|
|
}
|