mirror of
https://github.com/danog/process.git
synced 2024-11-26 20:24:43 +01:00
57 lines
1.5 KiB
JSON
57 lines
1.5 KiB
JSON
{
|
|
"name": "amphp/process",
|
|
"homepage": "https://github.com/amphp/process",
|
|
"description": "A fiber-aware process manager based on Amp and Revolt.",
|
|
"require": {
|
|
"php": ">=8",
|
|
"amphp/amp": "^3",
|
|
"amphp/byte-stream": "^2",
|
|
"amphp/sync": "^2",
|
|
"revolt/event-loop": "^0.1.1"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9",
|
|
"amphp/phpunit-util": "^3",
|
|
"amphp/php-cs-fixer-config": "dev-master",
|
|
"psalm/phar": "^4.15",
|
|
"jetbrains/phpstorm-attributes": "^1.0"
|
|
},
|
|
"prefer-stable": true,
|
|
"minimum-stability": "beta",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Bob Weinand",
|
|
"email": "bobwei9@hotmail.com"
|
|
},
|
|
{
|
|
"name": "Aaron Piotrowski",
|
|
"email": "aaron@trowski.com"
|
|
},
|
|
{
|
|
"name": "Niklas Keller",
|
|
"email": "me@kelunik.com"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Amp\\Process\\": "src"
|
|
},
|
|
"files": ["src/functions.php"]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Amp\\Process\\Test\\": "test"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"check": [
|
|
"@cs",
|
|
"@test"
|
|
],
|
|
"cs": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -v --diff --dry-run",
|
|
"cs-fix": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -v --diff",
|
|
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit --coverage-text"
|
|
}
|
|
}
|