-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 2.07 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 2.07 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
{
"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"}
],
"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": {
"phpunit/phpunit": "^11.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"vimeo/psalm": "^6.0 || ^5.0 || dev-master",
"friendsofphp/php-cs-fixer": "^3.0",
"monolog/monolog": "^3.0"
},
"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",
"stan": "phpstan analyze --memory-limit=512M",
"psalm": "psalm --no-cache",
"test": "phpunit --testdox",
"coverage": "phpunit --coverage-text --coverage-clover=coverage.xml",
"gates": [
"@lint",
"@stan",
"@psalm",
"@test"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {}
},
"minimum-stability": "stable",
"prefer-stable": true
}