-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
113 lines (113 loc) · 3.5 KB
/
composer.json
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
{
"name": "llm-agents/agents",
"description": "LLM Agents PHP SDK - Autonomous Language Model Agents for PHP",
"license": "MIT",
"type": "library",
"keywords": [
"php",
"agent",
"openai",
"gpt4",
"generative-ai",
"langchain",
"autophp",
"genai",
"anthropic",
"claude",
"claude-ai",
"llm",
"laravel",
"symfony"
],
"authors": [
{
"name": "Pavel Buchnev",
"email": "[email protected]"
},
{
"name": "the dev",
"email": "[email protected]"
}
],
"homepage": "https://github.com/llm-agents-php",
"support": {
"issues": "https://github.com//llm-agents-php/agents/issues",
"source": "https://github.com//llm-agents-php/agents",
"security": "https://github.com//llm-agents-php/agents/blob/master/.github/SECURITY.md"
},
"require": {
"php": "^8.2",
"ramsey/uuid": "^4.7"
},
"require-dev": {
"ergebnis/phpunit-slow-test-detector": "^2.15",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpunit/phpunit": "^10.5",
"psalm/plugin-phpunit": "^0.19.0",
"rector/rector": "^1.2",
"roave/infection-static-analysis-plugin": "^1.35",
"vimeo/psalm": "^5.24",
"wayofdev/cs-fixer-config": "^1.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"LLM\\Agents\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LLM\\Tests\\": "tests/src"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"audit": {
"abandoned": "report"
},
"sort-packages": true
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
}
},
"scripts": {
"cs:diff": "php-cs-fixer fix --dry-run -v --diff",
"cs:fix": "php-cs-fixer fix -v",
"infect": [
"@putenv XDEBUG_MODE=coverage",
"roave-infection-static-analysis-plugin"
],
"infect:ci": [
"@putenv XDEBUG_MODE=coverage",
"roave-infection-static-analysis-plugin --ansi --logger-github --ignore-msi-with-no-mutations --only-covered"
],
"psalm": "psalm --show-info=true",
"psalm:baseline": "psalm --set-baseline=psalm-baseline.xml",
"psalm:ci": "psalm --output-format=github --shepherd --show-info=false --stats --threads=4",
"refactor": "rector process --config=rector.php",
"refactor:ci": "rector process --config=rector.php --dry-run --ansi",
"stan": "phpstan analyse --memory-limit=2G",
"stan:baseline": "phpstan analyse --generate-baseline --memory-limit=2G --allow-empty-baseline",
"stan:ci": "phpstan analyse --memory-limit=2G --error-format=github",
"test": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --color=always"
],
"test:cc": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage --coverage-clover=.build/phpunit/logs/clover.xml"
]
}
}