-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
81 lines (81 loc) · 2.12 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
{
"name": "cmsig/seal-read-write-adapter",
"description": "An adapter to support to split read and write operations for the cmsig/seal package.",
"type": "library",
"license": "MIT",
"keywords": [
"cmsig",
"seal",
"seal-adapter",
"search-client"
],
"autoload": {
"psr-4": {
"CmsIg\\Seal\\Adapter\\ReadWrite\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CmsIg\\Seal\\Adapter\\ReadWrite\\Tests\\": "tests"
}
},
"authors": [
{
"name": "Alexander Schranz",
"email": "alexander@sulu.io"
}
],
"require": {
"php": "^8.1",
"cmsig/seal": "^0.6",
"psr/container": "^1.0 || ^2.0"
},
"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-read-write-adapter": "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"
]
},
"repositories": [
{
"type": "path",
"url": "./../*",
"options": {
"symlink": true
}
}
],
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}