-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 1.94 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
{
"name": "cmsig/seal",
"description": "Search Engine Abstraction Layer",
"type": "library",
"license": "MIT",
"keywords": [
"abstraction",
"search",
"search-client",
"search-abstraction",
"cmsig",
"seal",
"elasticsearch",
"opensearch",
"meilisearch",
"typesense",
"solr",
"redisearch",
"algolia"
],
"autoload": {
"psr-4": {
"CmsIg\\Seal\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CmsIg\\Seal\\Tests\\": "tests"
}
},
"authors": [
{
"name": "Alexander Schranz",
"email": "alexander@sulu.io"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"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"
},
"replace": {
"schranz-search/seal": "self.version"
},
"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"
]
},
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}