wiki-grav/plugins/tntsearch/vendor/teamtnt/tntsearch/composer.json
2023-06-05 10:56:01 +02:00

42 lines
1009 B
JSON

{
"name": "teamtnt/tntsearch",
"type": "library",
"description": "A fully featured full text search engine written in PHP",
"keywords": [
"teamtnt",
"tntsearch",
"search",
"fulltext",
"geosearch",
"text classification",
"bm25",
"stemming",
"fuzzy search"
],
"homepage": "https://github.com/teamtnt/tntsearch",
"license": "MIT",
"authors": [{
"name": "Nenad Tičarić",
"email": "nticaric@gmail.com",
"homepage": "http://www.tntstudio.us",
"role": "Developer"
}],
"require": {
"php": "~7.1|^8",
"ext-pdo_sqlite": "*",
"ext-sqlite3": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "7.*|8.*|9.*",
"symfony/var-dumper": "^4|^5.2"
},
"autoload": {
"psr-4": {
"TeamTNT\\TNTSearch\\": "src"
},
"files": [
"helper/helpers.php"
]
}
}