-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.02 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
{
"name": "php-llm/fabric-pattern",
"type": "library",
"description": "Slim PHP wrapper for Daniel Miessler's fabric pattern",
"license": "MIT",
"authors": [
{
"name": "Christopher Hertel",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"danielmiessler/fabric": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^11.2"
},
"autoload": {
"psr-4": {
"PhpLlm\\FabricPattern\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpLlm\\FabricPattern\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "danielmiessler/fabric",
"version": "1.4.0",
"dist": {
"url": "https://github.com/danielmiessler/fabric/archive/refs/tags/1.4.0.zip",
"type": "zip"
}
}
}
]
}