1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-26 20:34:40 +01:00
parallel/composer.json

63 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2015-07-09 08:33:34 +02:00
{
2016-08-23 23:47:40 +02:00
"name": "amphp/parallel",
"description": "Parallel processing component for Amp.",
2015-07-10 22:15:42 +02:00
"keywords": [
"asynchronous",
"async",
2016-07-20 16:23:50 +02:00
"concurrent",
"multi-threading",
"multi-processing"
2015-07-10 22:15:42 +02:00
],
"homepage": "https://github.com/amphp/parallel",
2015-09-15 04:27:16 +02:00
"license": "MIT",
2015-07-09 08:33:34 +02:00
"authors": [
2015-07-10 22:15:42 +02:00
{
"name": "Aaron Piotrowski",
2016-07-20 16:23:50 +02:00
"email": "aaron@trowski.com"
2015-07-10 22:15:42 +02:00
},
2015-07-09 08:33:34 +02:00
{
"name": "Stephen Coakley",
2015-07-10 22:15:42 +02:00
"email": "me@stephencoakley.com"
2015-07-09 08:33:34 +02:00
}
],
"require": {
2019-08-27 19:17:41 +02:00
"php": ">=7.1",
2017-06-16 06:46:15 +02:00
"amphp/amp": "^2",
2019-08-27 19:17:41 +02:00
"amphp/byte-stream": "^1.6.1",
2017-06-16 06:46:15 +02:00
"amphp/parser": "^1",
"amphp/process": "^1",
2017-12-08 17:31:00 +01:00
"amphp/sync": "^1.0.1"
2015-07-10 22:15:42 +02:00
},
"require-dev": {
2020-02-11 23:18:06 +01:00
"jelix/fakeserverconf": "^1.0",
2019-08-27 19:17:41 +02:00
"phpunit/phpunit": "^8 || ^7",
"amphp/phpunit-util": "^1.1",
2018-10-07 16:50:45 +02:00
"amphp/php-cs-fixer-config": "dev-master"
2015-07-09 08:33:34 +02:00
},
"autoload": {
"psr-4": {
2016-08-23 23:47:40 +02:00
"Amp\\Parallel\\": "lib"
},
"files": [
"lib/Context/functions.php",
"lib/Sync/functions.php",
2016-07-20 16:23:50 +02:00
"lib/Worker/functions.php"
]
2015-07-09 08:33:34 +02:00
},
"autoload-dev": {
"psr-4": {
"Amp\\Parallel\\Example\\": "examples",
2016-08-23 23:47:40 +02:00
"Amp\\Parallel\\Test\\": "test"
2015-07-09 08:33:34 +02:00
}
2017-12-02 13:54:56 +01:00
},
2018-10-07 16:50:45 +02:00
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
2018-10-15 07:17:09 +02:00
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit --coverage-text"
2015-07-09 08:33:34 +02:00
}
}