forked from loupe-php/loupe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.48 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
{
"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": "*",
"doctrine/dbal": "^3.6",
"wamania/php-stemmer": "^3.0",
"doctrine/lexer": "^2.0 || ^3.0",
"voku/portable-utf8": "^6.0",
"mjaschen/phpgeo": "^4.2",
"toflar/state-set-index": "^2.0.1",
"psr/log": "^3.0",
"nitotm/efficient-language-detector": "^2.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",
"phpstan/phpstan": "^1.10"
},
"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",
"phpstan": "@php vendor/bin/phpstan analyse"
}
}