-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 819 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 819 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
{
"name": "phpro/agent-rules",
"description": "Declarative rule engine for conversational agents and interactive workflows",
"type": "library",
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
"azjezz/psl": "^4.2"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Phpro\\AgentRules\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phpro\\AgentRules\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Toon Verwerft",
"email": "toon.verwerft@phpro.be"
}
],
"require-dev": {
"carthage-software/mago": "^1.1.0",
"phpunit/phpunit": "^12.5"
},
"config": {
"allow-plugins": {
"carthage-software/mago": true
}
}
}