-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.2 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.2 KB
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
45
46
47
48
49
50
{
"name": "steevanb/php-parallel-processes",
"description": "Call processes in parallel",
"license": "Apache-2.0",
"type": "library",
"authors": [
{
"name": "Steevan BARBOYON",
"email": "steevan.barboyon@gmail.com"
}
],
"require": {
"php": "^8.2",
"ext-pcntl": "*",
"steevanb/php-collection": "^6.0",
"symfony/console": "^7.0 || ^8.0",
"symfony/process": "7.0.0 || >=7.1.5 <8.0.0 || ^8.0"
},
"require-dev": {
"ext-simplexml": "*",
"phpunit/phpunit": "~9.5.0",
"steevanb/php-backtrace": "~2.1.0",
"symfony/var-dumper": "~6.3.0"
},
"autoload": {
"psr-4": {
"Steevanb\\ParallelProcess\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Steevanb\\ParallelProcess\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "8.2.0"
},
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"@rm-composer-lock"
],
"post-update-cmd": [
"@rm-composer-lock"
],
"rm-composer-lock": "rm composer.lock"
}
}