forked from algolia/algoliasearch-client-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.73 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
63
64
65
66
67
68
{
"name": "algolia/algoliasearch-client-php",
"description": "Algolia Search API Client for PHP",
"keywords": ["algolia", "search", "api", "client", "php"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Algolia Team",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"psr/http-message": "^1.0",
"psr/log": "^1.0",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"fzaninotto/faker": "^1.8",
"phpunit/phpunit": "^8.0 || ^9.0",
"symfony/yaml": "^2.0 || ^4.0"
},
"autoload": {
"psr-4": {
"Algolia\\AlgoliaSearch\\": "src/"
},
"files": [
"src/Http/Psr7/functions.php",
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Algolia\\AlgoliaSearch\\Tests\\": "tests"
}
},
"suggest": {
"guzzlehttp/guzzle": "If you prefer to use Guzzle HTTP client instead of the Http Client implementation provided by the package"
},
"bin": [
"bin/algolia-doctor"
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-2.0": "2.0.x-dev"
}
},
"scripts": {
"lint": "php-cs-fixer fix",
"test:lint": "php-cs-fixer fix -v --dry-run",
"test:unit": "phpunit --colors=always",
"test": [
"@test:lint",
"@test:unit"
]
}
}