.gitignore
0 → 100644
+5
−0
composer.json
0 → 100644
+28
−0
| Original line number | Diff line number | Diff line |
|---|---|---|
{
|
||
"name": "iqdev/search-dc",
|
||
"description": "Declaring the search structure",
|
||
"minimum-stability": "stable",
|
||
"license": "proprietary",
|
||
"authors": [
|
||
{
|
||
"name": "Pavel Piligrimov",
|
||
"email": "p.piligrimov@iqdev.digital"
|
||
}
|
||
],
|
||
"version": "0.0.1",
|
||
"type": "library",
|
||
"keywords": [
|
||
"search",
|
||
"declaring",
|
||
"php"
|
||
],
|
||
"require": {
|
||
"php": ">=7.4",
|
||
"ramsey/collection": "^1.2"
|
||
},
|
||
"autoload": {
|
||
"psr-4": {
|
||
"IQDEV\\Search\\": "src/Search/"
|
||
}
|
||
}
|
||
} |
src/Search/Document/Document.php
0 → 100644
+15
−0
+21
−0
src/Search/Facet/Facet.php
0 → 100644
+40
−0
Loading