-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.43 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
{
"name": "innmind/operating-system",
"type": "library",
"description": "Abstraction for the whole system the script is operating in",
"keywords": ["operating system", "abstraction"],
"homepage": "http://github.com/Innmind/OperatingSystem",
"license": "MIT",
"authors": [
{
"name": "Baptiste Langlade",
"email": "[email protected]"
}
],
"support": {
"issues": "http://github.com/Innmind/OperatingSystem/issues"
},
"require": {
"php": "~8.2",
"innmind/time-continuum": "~3.0",
"innmind/server-status": "~4.0",
"innmind/server-control": "~5.0",
"innmind/filesystem": "~7.1",
"innmind/socket": "~6.0",
"innmind/http-transport": "~7.2",
"innmind/time-warp": "~3.0",
"innmind/signals": "~3.0",
"innmind/file-watch": "~4.0",
"innmind/stream": "~4.0",
"formal/access-layer": "~4.0",
"innmind/io": "~2.7"
},
"autoload": {
"psr-4": {
"Innmind\\OperatingSystem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Innmind\\OperatingSystem\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "~10.2",
"innmind/url": "~4.0",
"innmind/ip": "~3.0",
"vimeo/psalm": "~5.15",
"innmind/black-box": "~5.5",
"innmind/coding-standard": "~2.0"
}
}