-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathcomposer.json
More file actions
125 lines (125 loc) · 5.88 KB
/
composer.json
File metadata and controls
125 lines (125 loc) · 5.88 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "boson-php/boson",
"description": "Boson Kernel Monorepo",
"type": "library",
"license": "MIT",
"repositories": [
{"type": "path", "url": "libs/bridge/*"},
{"type": "path", "url": "libs/component/*"},
{"type": "path", "url": "libs/contracts/*"},
{"type": "path", "url": "libs/extension/*"}
],
"require": {
"php": "^8.4",
"boson-php/app-ext-alert": "^0.20",
"boson-php/compiler": "^0.20",
"boson-php/cpu-info": "^0.20",
"boson-php/event-listener-contracts": "^0.20",
"boson-php/globals-provider": "^0.20",
"boson-php/http": "^0.20",
"boson-php/http-body-decoder": "^0.20",
"boson-php/http-bridge": "^0.20",
"boson-php/http-contracts": "^0.20",
"boson-php/http-static-provider": "^0.20",
"boson-php/id-contracts": "^0.20",
"boson-php/laravel-http-bridge": "^0.20",
"boson-php/laravel-provider": "^0.20",
"boson-php/os-info": "^0.20",
"boson-php/pasm": "^0.20",
"boson-php/psr-http-bridge": "^0.20",
"boson-php/runtime": "^0.20",
"boson-php/saucer": "^0.20",
"boson-php/spiral-bridge": "^0.20",
"boson-php/symfony-bundle": "^0.20",
"boson-php/symfony-http-bridge": "^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/value-object-contracts": "^0.20",
"boson-php/weak-types": "^0.20",
"boson-php/webview-ext-battery": "^0.20",
"boson-php/webview-ext-network": "^0.20",
"boson-php/webview-ext-web-components": "^0.20"
},
"require-dev": {
"ffi/var-dumper": "^1.0",
"filp/whoops": "^2.18",
"friendsofphp/php-cs-fixer": "^3.92",
"jetbrains/phpstorm-attributes": "^1.2",
"nyholm/psr7": "^1.8.2",
"phpstan/phpstan": "^2.1.33",
"phpstan/phpstan-strict-rules": "^2.0.7",
"phpunit/phpunit": "^12.5",
"symfony/console": "^6.4|^7.0|^8.0",
"symfony/var-dumper": "^6.4|^7.0|^8.0"
},
"autoload-dev": {
"psr-4": {
"Boson\\Tests\\": "libs/component/runtime/tests",
"Boson\\Bridge\\Http\\Tests\\": "libs/bridge/http-bridge/tests",
"Boson\\Bridge\\Laravel\\Http\\Tests\\": "libs/bridge/laravel-http-bridge/tests",
"Boson\\Bridge\\Laravel\\Provider\\Tests\\": "libs/bridge/laravel-provider/tests",
"Boson\\Bridge\\Psr\\Http\\Tests\\": "libs/bridge/psr-http-bridge/tests",
"Boson\\Bridge\\Spiral\\Tests\\": "libs/bridge/spiral-bridge/tests",
"Boson\\Bridge\\Symfony\\Tests\\": "libs/bridge/symfony-bundle/tests",
"Boson\\Bridge\\Symfony\\Http\\Tests\\": "libs/bridge/symfony-http-bridge/tests",
"Boson\\Component\\Compiler\\Tests\\": "libs/component/compiler/tests",
"Boson\\Component\\CpuInfo\\Tests\\": "libs/component/cpu-info/tests",
"Boson\\Component\\GlobalsProvider\\Tests\\": "libs/component/globals-provider/tests",
"Boson\\Component\\Http\\Tests\\": "libs/component/http/tests",
"Boson\\Component\\Http\\Body\\Tests\\": "libs/component/http-body-decoder/tests",
"Boson\\Component\\Http\\Static\\Tests\\": "libs/component/http-static-provider/tests",
"Boson\\Component\\OsInfo\\Tests\\": "libs/component/os-info/tests",
"Boson\\Component\\Pasm\\Tests\\": "libs/component/pasm/tests",
"Boson\\Component\\Saucer\\Tests\\": "libs/component/saucer/tests",
"Boson\\Component\\Uri\\Tests\\": "libs/component/uri/tests",
"Boson\\Component\\Uri\\Factory\\Tests\\": "libs/component/uri-factory/tests",
"Boson\\Component\\WeakType\\Tests\\": "libs/component/weak-types/tests",
"Boson\\Contracts\\EventListener\\Tests\\": "libs/contracts/event-listener-contracts/tests",
"Boson\\Contracts\\Http\\Tests\\": "libs/contracts/http-contracts/tests",
"Boson\\Contracts\\Id\\Tests\\": "libs/contracts/id-contracts/tests",
"Boson\\Contracts\\Uri\\Tests\\": "libs/contracts/uri-contracts/tests",
"Boson\\Contracts\\Uri\\Factory\\Tests\\": "libs/contracts/uri-factory-contracts/tests",
"Boson\\Contracts\\ValueObject\\Tests\\": "libs/contracts/value-object-contracts/tests",
"Boson\\Api\\Alert\\Tests\\": "libs/extension/app-ext-alert/tests",
"Boson\\WebView\\Api\\Battery\\Tests\\": "libs/extension/webview-ext-battery/tests",
"Boson\\WebView\\Api\\Network\\Tests\\": "libs/extension/webview-ext-network/tests",
"Boson\\WebView\\Api\\WebComponents\\Tests\\": "libs/extension/webview-ext-web-components/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": false,
"preferred-install": {
"*": "dist"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"spiral/composer-publish-plugin": false,
"symfony/runtime": false
}
},
"scripts-aliases": {
"test:unit": ["test", "phpunit", "unit"],
"linter:check": ["linter", "stan"],
"phpcs:check": ["phpcs", "cs", "psr", "per"]
},
"scripts": {
"test:unit": "phpunit --testdox",
"linter:check": "phpstan analyse --configuration phpstan.neon --memory-limit 256M",
"linter:baseline": "@linter:check --generate-baseline",
"phpcs:check": "@phpcs:fix --dry-run",
"phpcs:fix": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --verbose --diff"
},
"minimum-stability": "dev",
"prefer-stable": true
}