forked from PHP-CMSIG/search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
126 lines (126 loc) · 3.96 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "schranz-search/spiral-bridge",
"description": "An integration of schranz-search search abstraction into Spiral Framework.",
"type": "library",
"license": "MIT",
"keywords": [
"search-client",
"search-abstraction",
"abstraction",
"search",
"search-client",
"search-abstraction",
"schranz-search",
"elasticsearch",
"opensearch",
"meilisearch",
"typesense",
"solr",
"redisearch",
"algolia",
"loupe",
"integration",
"module",
"spiral-bridge",
"bridge",
"sprial"
],
"autoload": {
"psr-4": {
"Schranz\\Search\\Integration\\Spiral\\": "src"
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Schranz\\Search\\Integration\\Spiral\\Tests\\": "tests"
}
},
"authors": [
{
"name": "Alexander Schranz",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"spiral/boot": "^3.6",
"spiral/config": "^3.6",
"spiral/console": "^3.6",
"spiral/core": "^3.6",
"schranz-search/seal": "^0.2"
},
"require-dev": {
"php-cs-fixer/shim": "^3.15",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.3",
"rector/rector": "^0.18.1",
"schranz-search/seal-algolia-adapter": "^0.2",
"schranz-search/seal-elasticsearch-adapter": "^0.2",
"schranz-search/seal-loupe-adapter": "^0.2",
"schranz-search/seal-meilisearch-adapter": "^0.2",
"schranz-search/seal-memory-adapter": "^0.2",
"schranz-search/seal-multi-adapter": "^0.2",
"schranz-search/seal-opensearch-adapter": "^0.2",
"schranz-search/seal-read-write-adapter": "^0.2",
"schranz-search/seal-redisearch-adapter": "^0.2",
"schranz-search/seal-solr-adapter": "^0.2",
"schranz-search/seal-typesense-adapter": "^0.2"
},
"conflict": {
"schranz-search/seal-algolia-adapter": "<0.2, >=0.3",
"schranz-search/seal-elasticsearch-adapter": "<0.2, >=0.3",
"schranz-search/seal-loupe-adapter": "<0.2, >=0.3",
"schranz-search/seal-meilisearch-adapter": "<0.2, >=0.3",
"schranz-search/seal-memory-adapter": "<0.2, >=0.3",
"schranz-search/seal-multi-adapter": "<0.2, >=0.3",
"schranz-search/seal-opensearch-adapter": "<0.2, >=0.3",
"schranz-search/seal-read-write-adapter": "<0.2, >=0.3",
"schranz-search/seal-redisearch-adapter": "<0.2, >=0.3",
"schranz-search/seal-solr-adapter": "<0.2, >=0.3",
"schranz-search/seal-typesense-adapter": "<0.2, >=0.3"
},
"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": "./../../packages/*",
"options": {
"symlink": true
}
}
],
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"spiral/composer-publish-plugin": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
}
}