-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
44 lines (44 loc) · 1.42 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "duncan3dc/fork-helper",
"type": "library",
"description": "Simple class to fork processes in PHP and allow multi-threading",
"keywords": ["fork","process","control","pcntl","multi-threading"],
"homepage": "https://github.com/duncan3dc/fork-helper",
"license": "Apache-2.0",
"authors": [{
"name": "Craig Duncan",
"email": "[email protected]",
"homepage": "https://github.com/duncan3dc",
"role": "Developer"
}],
"require": {
"php": "^7.4 || ^8.0"
},
"suggest": {
"ext-pcntl": "Needed to allow multi-threaded execution of code",
"ext-shmop": "If pcntl is present then shmop is required to handle errors"
},
"require-dev": {
"duncan3dc/object-intruder": "^1.0",
"mockery/mockery": "^1.4",
"phpstan/phpstan": "^0.12.94",
"phpstan/phpstan-mockery": "^0.12.14",
"phpstan/phpstan-phpunit": "^0.12.22",
"squizlabs/php_codesniffer": "^3.6",
"phpunit/phpunit": "^8.5.39"
},
"autoload": {
"psr-4": {"duncan3dc\\Forker\\": "src/"}
},
"autoload-dev": {
"psr-4": {"duncan3dc\\ForkerTests\\": "tests/"}
},
"scripts": {
"test": [
"vendor/bin/phpunit",
"vendor/bin/phpstan analyse --level=max src tests",
"vendor/bin/phpcs --standard=phpcs.xml src tests",
"@composer validate --strict"
]
}
}