-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
87 lines (87 loc) · 2.38 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "schranz-search/seal-typesense-adapter",
"description": "An adapter to support typesense in schranz-search/seal search abstraction.",
"type": "library",
"license": "MIT",
"keywords": [
"schranz-search",
"schranz-search-adapter",
"seal-adapter",
"search-client",
"typesense"
],
"autoload": {
"psr-4": {
"Schranz\\Search\\SEAL\\Adapter\\Typesense\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Schranz\\Search\\SEAL\\Adapter\\Typesense\\Tests\\": "tests"
}
},
"authors": [
{
"name": "Alexander Schranz",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"schranz-search/seal": "^0.6",
"typesense/typesense-php": "^4.8.1",
"symfony/http-client": "^5.4 || ^6.0 || ^7.0",
"psr/container": "^1.0 || ^2.0"
},
"require-dev": {
"php-http/curl-client": "^2.0",
"php-http/discovery": "^1.14",
"php-cs-fixer/shim": "^3.51",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.3",
"rector/rector": "^1.0"
},
"conflict": {
"monolog/monolog": "<2.0"
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpunit"
],
"phpstan": "@php vendor/bin/phpstan analyze",
"lint-rector": "@php vendor/bin/rector process --dry-run",
"lint-php-cs": "@php vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"lint": [
"@phpstan",
"@lint-php-cs",
"@lint-rector",
"@lint-composer"
],
"lint-composer": "@composer validate --strict",
"rector": "@php vendor/bin/rector process",
"php-cs-fix": "@php vendor/bin/php-cs-fixer fix",
"fix": [
"@rector",
"@php-cs-fix"
]
},
"repositories": [
{
"type": "path",
"url": "./../*",
"options": {
"symlink": true
}
}
],
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"php-http/discovery": true,
"phpstan/extension-installer": true
}
}
}