Skip to content

Commit 0dbc10b

Browse files
authored
Merge pull request #42 from dlubitz/neos-9
TASK: Declare Neos 9 compatibility
2 parents 6a8c1f8 + f2ab052 commit 0dbc10b

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

README.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
[![SensioLabs Insight](https://insight.sensiolabs.com/projects/dba9eb6e-83de-43f4-80c6-04d273178f37/small.png)](https://insight.sensiolabs.com/projects/dba9eb6e-83de-43f4-80c6-04d273178f37)
2-
[![Code Climate](https://codeclimate.com/github/kitsunet/Flowpack.SimpleSearch/badges/gpa.svg)](https://codeclimate.com/github/kitsunet/Flowpack.SimpleSearch)
1+
# Flowpack.SimpleSearch
32

4-
Flowpack.SimpleSearch
5-
=====================
3+
[![Latest Stable Version](https://poser.pugx.org/flowpack/simplesearch/v/stable)](https://packagist.org/packages/flowpack/simplesearch) [![Total Downloads](https://poser.pugx.org/flowpack/simplesearch/downloads)](https://packagist.org/packages/flowpack/simplesearch)
64

75
A simple php search engine based on SQLite or MySQL. Performance is acceptable but
86
decreases quickly with the amount of entries.
@@ -11,17 +9,13 @@ Depending on the queries you want to perform a sane upper limit is somewhere aro
119

1210
This package has no hard dependencies on anything so could be used in any project.
1311

14-
Code and API are still pretty rough. I just implemented the minimum version. A
15-
higher level query API will follow (see the ContentRepositoryAdaptor for the
16-
direction).
17-
1812
If you look at the code the sqlite storage of properties looks pretty strange but
1913
with SQlite3 the actual storage type is determined per row, so a column can contain
2014
different data types in each row. That should make all those empty rows more or less
2115
acceptable. We are trying to mimic a document database here after all.
2216

23-
Using MySQL
24-
-----------
17+
## Using MySQL
18+
2519

2620
To use MySQL, switch the implementation for the interfaces in your `Objects.yaml`
2721
and configure the DB connection as needed:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Plain PHP search engine using sqlite3 or MySQL as storage backend.",
55
"license": "MIT",
66
"require": {
7-
"neos/flow": "^5.0 || ^6.0 || ^7.0 || ^8.0 || dev-master"
7+
"neos/flow": "^7.3 || ^8.0 || ^9.0 || dev-master"
88
},
99
"autoload": {
1010
"psr-4": {

0 commit comments

Comments
 (0)