-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.66 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.66 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
{
"name": "yetisearch/yetisearch",
"description": "A powerful, pure-PHP search engine library with advanced features",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Yetidevworks",
"email": "info@yetidevworks.com"
}
],
"require": {
"php": "^7.4|^8.0|^8.1|^8.2|^8.3|^8.4",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-sqlite3": "*",
"lib-pdo_sqlite-sqlite": ">=3.35.0",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"doctrine/instantiator": "^1.4",
"fakerphp/faker": "^1.19",
"phpstan/phpstan": "^1.0 || ^2.0",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6 || ^4.0",
"symfony/deprecation-contracts": "^2.5"
},
"autoload": {
"psr-4": {
"YetiSearch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"YetiSearch\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test:verbose": "phpunit --testdox --colors=always",
"test:pretty": "phpunit -c phpunit-readable.xml",
"test:coverage": "XDEBUG_MODE=coverage phpunit --coverage-text --colors=always",
"test:coverage-html": "XDEBUG_MODE=coverage phpunit --coverage-html build/coverage",
"test:filter": "phpunit --testdox --colors=always --filter",
"test:watch": "phpunit-watcher watch",
"phpstan": "phpstan analyse src --level 2",
"cs": "phpcs --standard=PSR12 src/",
"cs-fix": "phpcbf --standard=PSR12 src/"
},
"config": {
"sort-packages": true
}
}