-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 1.98 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 1.98 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "boson-php/runtime",
"description": "Boson WebView runtime library",
"type": "library",
"license": "MIT",
"homepage": "https://bosonphp.com",
"support": {
"issues": "https://github.com/boson-php/boson/issues",
"source": "https://github.com/boson-php/runtime"
},
"authors": [
{
"name": "Kirill Nesmeyanov",
"email": "nesk@xakep.ru"
}
],
"require": {
"php": "^8.4",
"ext-ffi": "*",
"ext-iconv": "*",
"boson-php/cpu-info": "^0.20",
"boson-php/event-listener-contracts": "^0.20",
"boson-php/http": "^0.20",
"boson-php/http-contracts": "^0.20",
"boson-php/id-contracts": "^0.20",
"boson-php/value-object-contracts": "^0.20",
"boson-php/os-info": "^0.20",
"boson-php/saucer": "^0.20",
"boson-php/uri": "^0.20",
"boson-php/uri-contracts": "^0.20",
"boson-php/uri-factory": "^0.20",
"boson-php/uri-factory-contracts": "^0.20",
"boson-php/weak-types": "^0.20",
"psr/container": "^2.0",
"psr/event-dispatcher": "^1.0",
"react/promise": "^3.0",
"internal/destroy": "^1.0"
},
"autoload": {
"psr-4": {
"Boson\\": "src"
}
},
"require-dev": {
"filp/whoops": "^2.18",
"phpunit/phpunit": "^12.0"
},
"autoload-dev": {
"psr-4": {
"Boson\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.20.x-dev",
"dev-main": "0.20.x-dev"
}
},
"config": {
"sort-packages": true,
"platform-check": true,
"bin-compat": "full",
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
},
"suggest": {
"filp/whoops": "Required for friendly error pages in development (^2.18)"
},
"minimum-stability": "dev",
"prefer-stable": true
}