-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
93 lines (93 loc) · 2.21 KB
/
composer.json
File metadata and controls
93 lines (93 loc) · 2.21 KB
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
{
"name": "zendevio/bmpm",
"description": "Modern PHP 8.4+ implementation of the Beider-Morse Phonetic Matching (BMPM) algorithm for multilingual name matching",
"type": "library",
"license": "GPL-3.0-or-later",
"keywords": [
"phonetic",
"matching",
"names",
"soundex",
"beider-morse",
"bmpm",
"genealogy",
"linguistics",
"transliteration"
],
"authors": [
{
"name": "Alexander Beider",
"role": "Original Algorithm Author"
},
{
"name": "Stephen P. Morse",
"homepage": "https://stevemorse.org",
"role": "Original Algorithm Author"
},
{
"name": "Alin M. Gheorghe",
"homepage": "https://zendev.io",
"role": "PHP 8.4+ Implementation"
}
],
"homepage": "https://github.com/zendevio/bmpm-php",
"support": {
"issues": "https://github.com/zendevio/bmpm-php/issues",
"source": "https://github.com/zendevio/bmpm-php"
},
"require": {
"php": "^8.4",
"ext-mbstring": "*",
"ext-intl": "*",
"ext-json": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.50",
"infection/infection": "^0.31.9",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^12.0",
"rector/rector": "^2.0"
},
"autoload": {
"psr-4": {
"Zendevio\\BMPM\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Zendevio\\BMPM\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage",
"analyse": "phpstan analyse src tests --level=max --memory-limit=512M",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"rector": "rector process",
"rector:dry": "rector process --dry-run",
"infection": "infection --min-msi=80 --min-covered-msi=80 --threads=max",
"security": "composer audit",
"check": [
"@cs-check",
"@analyse",
"@test"
],
"ci": [
"@security",
"@cs-check",
"@analyse",
"@test",
"@infection"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}