forked from SoftCreatR/php-perplexity-ai-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.25 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
{
"name": "softcreatr/php-perplexity-ai-sdk",
"description": "A powerful and easy-to-use PHP SDK for the pplx API, allowing seamless integration of advanced AI-powered features into your PHP projects.",
"license": "ISC",
"type": "library",
"version": "1.1.0",
"keywords": [
"perplexity",
"ai",
"llama",
"mistral",
"replit",
"gpt",
"gpt-3",
"gpt-4",
"artificial-intelligence",
"machine-learning",
"natural-language-processing",
"nlp",
"php",
"sdk",
"api-wrapper",
"pplx",
"perplexity"
],
"authors": [
{
"name": "Sascha Greuel",
"email": "hello@1-2.dev"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"psr/http-client": "^2.0",
"psr/http-factory": "^2.0",
"psr/http-message": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"guzzlehttp/guzzle": "^7",
"phpunit/phpunit": "^9"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"SoftCreatR\\PerplexityAI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SoftCreatR\\PerplexityAI\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"phpcsf": "php-cs-fixer fix",
"test": "phpunit"
}
}