forked from loupe-php/loupe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.42 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
{
"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-pdo_sqlite": "*",
"ext-intl": "*",
"doctrine/dbal": "^3.5",
"patrickschur/language-detection": "^5.2",
"wamania/php-stemmer": "^3.0",
"doctrine/lexer": "^2.0 || ^3.0",
"voku/portable-utf8": "^6.0",
"mjaschen/phpgeo": "^4.2",
"toflar/state-set-index": "^1.0",
"psr/log": "^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.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"
}
}