-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
96 lines (96 loc) · 2.85 KB
/
composer.json
File metadata and controls
96 lines (96 loc) · 2.85 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
{
"name": "arcp/arcp",
"description": "PHP reference implementation of the Agent Runtime Control Protocol (ARCP) v1.0",
"type": "library",
"license": "Apache-2.0",
"keywords": ["arcp", "agent", "runtime", "protocol", "websocket", "stdio"],
"homepage": "https://github.com/arcp/php-sdk",
"authors": [
{"name": "ARCP Contributors"}
],
"support": {
"issues": "https://github.com/arcp/php-sdk/issues",
"source": "https://github.com/arcp/php-sdk",
"docs": "https://github.com/arcp/php-sdk/tree/main/docs"
},
"require": {
"php": ">=8.4",
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"ext-mbstring": "*",
"ext-json": "*",
"amphp/amp": "^3.0",
"amphp/pipeline": "^1.0",
"amphp/socket": "^2.0",
"amphp/websocket": "^2.0",
"amphp/websocket-client": "^2.0",
"amphp/websocket-server": "^4.0",
"amphp/byte-stream": "^2.0",
"amphp/process": "^2.0",
"amphp/sync": "^2.0",
"revolt/event-loop": "^1.0",
"psr/log": "^3.0",
"firebase/php-jwt": "^7.0",
"symfony/uid": "^7.0",
"justinrainbow/json-schema": "^6.0",
"symfony/console": "^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"infection/infection": "^0.30",
"monolog/monolog": "^3.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^11.0",
"rector/rector": "^2.0",
"vimeo/psalm": "^6.0 || ^5.0 || dev-master"
},
"autoload": {
"psr-4": {
"Arcp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Arcp\\Tests\\": "tests/"
}
},
"bin": ["bin/arcp"],
"scripts": {
"lint": "php-cs-fixer fix --dry-run --diff",
"format": "php-cs-fixer fix",
"fix": "@format",
"stan": "phpstan analyze --memory-limit=512M",
"psalm": "psalm --no-cache",
"rector": "rector process --dry-run",
"rector:fix": "rector process",
"size-check": "php tools/size-check.php src",
"infection": "infection --threads=max --min-msi=80 --min-covered-msi=80",
"test": "phpunit --testdox",
"coverage": "phpunit --coverage-text --coverage-clover=coverage.xml",
"audit": "composer audit",
"gates": [
"@lint",
"@stan",
"@psalm",
"@test"
],
"all": [
"@lint",
"@stan",
"@psalm",
"@rector",
"@size-check",
"@test",
"@audit"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}