-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
61 lines (61 loc) · 1.24 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
{
"name": "softcreatr/php-perplexity-ai-sdk",
"description": "A powerful and easy-to-use PHP SDK for the pplx (Perplexity) API, allowing seamless integration of advanced AI-powered features into your PHP projects..",
"license": "ISC",
"type": "library",
"version": "2.0.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"
],
"authors": [
{
"name": "Sascha Greuel",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"psr/http-client": "*",
"psr/http-factory": "*",
"psr/http-message": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": ">=3",
"guzzlehttp/guzzle": ">=7",
"phpunit/phpunit": ">=10"
},
"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"
}
}