PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Lucas Marques Dutra   PHP Async   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Async
Run scripts in parallel using the PHP CLI command
Author: By
Last change:
Date: 16 days ago
Size: 1,719 bytes
 

Contents

Class file image Download
{ "name": "terremoth/php-async", "description": "Write async PHP processes or process async files with no phtreads, parallel or reactive libs", "type": "library", "require": { "php": "^8.2", "symfony/process": "^7.2", "laravel/serializable-closure": "^2.0", "ext-shmop": "*", "ext-fileinfo": "*", "ext-zlib": "*" }, "keywords": [ "async", "async-process", "parallel-processing" ], "require-dev": { "phpunit/phpunit": "^10.0", "vimeo/psalm": "^5.0", "nikic/php-parser": "^4.10", "squizlabs/php_codesniffer": "*", "phpmd/phpmd": "@stable" }, "license": "GPL-3.0-or-later", "autoload": { "psr-4": { "Terremoth\\": "src/Terremoth" } }, "autoload-dev": { "psr-4": { "\\Tests\\": "tests/" } }, "authors": [ { "name": "terremoth", "email": "dutra.astro@gmail.com" } ], "minimum-stability": "stable", "scripts": { "fix": "vendor/bin/phpcbf", "lint": "vendor/bin/phpcs --standard=phpcs.xml", "analyze": "vendor/bin/psalm", "test": "vendor/bin/phpunit tests", "mess": "vendor/bin/phpmd src/,tests/,demos/ github cleancode,codesize,controversial,design,naming,unusedcode", "ci": [ "@composer lint", "@composer analyze", "@composer mess", "@composer test" ], "build": [ "@composer fix", "@composer lint", "@composer analyze", "@composer mess", "@composer test" ] } }