-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.27 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
45
46
47
48
49
50
51
{
"name": "wyrihaximus/cpu-core-detector",
"description": "Detect how many CPU cores are available",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com"
}
],
"require": {
"php": "^7.4 || ^8",
"react/child-process": "^0.5 || ^0.4 || ^0.6",
"react/event-loop": "^1.1",
"react/promise": "^2.8",
"tivie/php-os-detector": "^1.0",
"wyrihaximus/react-child-process-promise": "^2 || ^3",
"wyrihaximus/ticking-promise": "^1.5 || ^2"
},
"require-dev": {
"wyrihaximus/async-test-utilities": "^3.3 || ^4.0",
"wyrihaximus/test-utilities": "^3"
},
"config": {
"platform": {
"php": "7.4.7"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"WyriHaximus\\CpuCoreDetector\\": "src/"
},
"files": [
"src/functions_include.php"
]
},
"autoload-dev": {
"psr-4": {
"WyriHaximus\\CpuCoreDetector\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
]
}
}