-
Notifications
You must be signed in to change notification settings - Fork 115
/
composer.json
42 lines (42 loc) · 1.28 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": "algolia/algoliasearch-client-php",
"version": "4.11.2",
"description": "API powering the features of Algolia.",
"keywords": ["algolia", "search", "api", "client", "php"],
"type": "library",
"homepage": "https://github.com/algolia/algoliasearch-client-php",
"license": "MIT",
"authors": [
{
"name": "Algolia Team",
"homepage": "https://alg.li/support"
}
],
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/psr7": "^2.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0 || ^3.5.0",
"phpunit/phpunit": "^11.0",
"vlucas/phpdotenv": "^5.4",
"phpstan/phpstan": "^1.12"
},
"autoload": {
"psr-4": { "Algolia\\AlgoliaSearch\\" : "lib/" },
"files": [
"lib/Http/Psr7/functions.php"
]
},
"suggest": {
"guzzlehttp/guzzle": "If you prefer to use Guzzle HTTP client instead of the Http Client implementation provided by the package"
},
"minimum-stability": "dev",
"prefer-stable": true
}