-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
73 lines (73 loc) · 1.81 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
69
70
71
72
73
{
"name": "typesense/typesense-php",
"description": "PHP client for Typesense Search Server: https://github.com/typesense/typesense",
"type": "library",
"homepage": "https://github.com/typesense/typesense-php",
"license": "Apache-2.0",
"authors": [
{
"name": "Typesense",
"email": "[email protected]",
"homepage": "https://typesense.org",
"role": "Developer"
},
{
"name": "Abdullah Al-Faqeir",
"email": "[email protected]",
"homepage": "https://www.devloops.net",
"role": "Developer"
}
],
"support": {
"docs": "https://typesense.org/api",
"source": "https://github.com/typesense/typesense-php",
"issues": "https://github.com/typesense/typesense-php/issues"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Typesense\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"monolog/monolog": "^2.1 || ^3.0 || ^3.3",
"nyholm/psr7": "^1.3",
"php-http/client-common": "^1.0 || ^2.3",
"php-http/discovery": "^1.0",
"php-http/httplug": "^1.0 || ^2.2",
"psr/http-client-implementation": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^11.2",
"squizlabs/php_codesniffer": "3.*",
"symfony/http-client": "^5.2",
"mockery/mockery": "^1.6"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"allow-plugins": {
"php-http/discovery": true
}
},
"scripts": {
"typesenseServer": [
"Composer\\Config::disableProcessTimeout",
"docker-compose up"
],
"test": "vendor/bin/phpunit --testdox",
"lint": "phpcs -v",
"lint:fix": "phpcbf"
}
}