-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.03 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "phpstreamserver/symfony",
"description": "Symfony bundle for PHPStreamServer",
"keywords": [
"phpstreamserver",
"symfony",
"runtime",
"php-runtime"
],
"homepage": "https://phpstreamserver.dev",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Anton Zenkov",
"email": "anton.z@live.com",
"homepage": "https://github.com/luzrain/",
"role": "Developer"
}
],
"require": {
"php": ">=8.2",
"ext-pcntl": "*",
"ext-posix": "*",
"phpstreamserver/core": "^0.8",
"phpstreamserver/http-server": "^0.8",
"symfony/config": "^7.0|^8.0",
"symfony/dependency-injection": "^7.0|^8.0",
"symfony/http-kernel": "^7.0|^8.0",
"symfony/runtime": "^7.0|^8.0",
"symfony/dotenv": "^7.0|^8.0",
"amphp/pipeline": "^1.2"
},
"autoload": {
"psr-4": {
"PHPStreamServer\\Symfony\\": "src/"
}
}
}