-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 965 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 965 Bytes
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
{
"name": "utopia-php/agents",
"description": "A simple PHP AI agents library",
"type": "library",
"keywords": ["php", "ai", "agents", "automation", "machine-learning"],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Utopia PHP",
"email": "team@appwrite.io"
}
],
"autoload": {
"psr-4": {
"Utopia\\Agents\\": "src/Agents"
}
},
"autoload-dev": {
"psr-4": {
"Utopia\\Tests\\Agents\\": "tests/Agents"
}
},
"scripts": {
"check": "./vendor/bin/phpstan analyse --level max src tests",
"lint": "./vendor/bin/pint --test",
"format": "./vendor/bin/pint"
},
"require": {
"php": ">=8.3",
"utopia-php/fetch": "0.5.*"
},
"require-dev": {
"laravel/pint": "^1.18",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^12.0"
}
}