forked from wpai-inc/anthropic-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 814 Bytes
/
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
{
"name": "wpai-inc/anthropic-sdk-php",
"description": "This library provides convenient access to the Anthropic REST API from server-side PHP",
"type": "library",
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.8",
"illuminate/support": "^9.52|^10.0|^11.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"WpAi\\Anthropic\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"WpAi\\Anthropic\\Providers\\AnthropicServiceProvider"
],
"aliases": {
"Anthropic": "WpAi\\Anthropic\\Facades\\Anthropic"
}
}
},
"authors": [
{
"name": "Greg Hunt",
"email": "[email protected]"
}
]
}