-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
50 lines (50 loc) · 1.54 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
{
"name": "loupe/loupe",
"description": "A full text search engine with tokenization, stemming, typo tolerance, filters and geo support based on only PHP and SQLite",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Loupe\\Loupe\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Loupe\\Loupe\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Yanick Witschi",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-intl": "*",
"ext-mbstring": "*",
"doctrine/dbal": "^3.9 || ^4.0",
"wamania/php-stemmer": "^3.0",
"doctrine/lexer": "^2.0 || ^3.0",
"mjaschen/phpgeo": "^5.0 || ^6.0",
"toflar/state-set-index": "^3.0",
"psr/log": "^2.0 || ^3.0",
"nitotm/efficient-language-detector": "^3.0"
},
"require-dev": {
"symfony/var-dumper": "^6.2",
"symfony/filesystem": "^6.2",
"symplify/easy-coding-standard": "11.2.4.72",
"symfony/finder": "^6.2",
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^2.0"
},
"scripts": {
"tests": "@php vendor/bin/phpunit",
"unit-tests": "@php vendor/bin/phpunit --testsuite=unit",
"functional-tests": "@php vendor/bin/phpunit --testsuite=functional",
"cs-fixer": "@php vendor/bin/ecs check --fix",
"ci-cs-fixer": "@php vendor/bin/ecs check",
"phpstan": "@php vendor/bin/phpstan analyse"
}
}