Skip to content

Commit b34eb02

Browse files
authored
Try #195:
2 parents e1abc90 + 7da0a50 commit b34eb02

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Also, see our [Documentation](https://docs.meilisearch.com/learn/tutorials/getti
4848

4949
## 🤖 Compatibility with Meilisearch
5050

51-
This package only guarantees the compatibility with the [version v0.28.0 of Meilisearch](https://github.com/meilisearch/meilisearch/releases/tag/v0.28.0).
51+
This package only guarantees the compatibility with the [version v0.29.0 of Meilisearch](https://github.com/meilisearch/meilisearch/releases/tag/v0.29.0).
5252

5353
## 💡 Learn More
5454

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"ext-json": "*",
2323
"doctrine/doctrine-bundle": "^2.4",
2424
"illuminate/collections": "^8.47",
25-
"meilisearch/meilisearch-php": "^0.24.2",
25+
"meilisearch/meilisearch-php": "^0.25.0",
2626
"symfony/filesystem": "^4.4 || ^5.0 || ^6.0",
2727
"symfony/property-access": "^4.4 || ^5.0 || ^6.0",
2828
"symfony/serializer": "^4.4 || ^5.0 || ^6.0"

tests/Entity/Comment.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ class Comment
2929

3030
/**
3131
* @var string
32+
*
3233
* @ORM\Column(type="text")
3334
* min=5,
3435
* minMessage="comment.too_short",
@@ -41,6 +42,7 @@ class Comment
4142

4243
/**
4344
* @var \DateTime
45+
*
4446
* @ORM\Column(type="datetime")
4547
* @Groups({"searchable"})
4648
*/

tests/Entity/Post.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ class Post
4545

4646
/**
4747
* @var Comment[]|Collection
48+
*
4849
* @ORM\OneToMany(
4950
* targetEntity="Comment",
5051
* mappedBy="post",

0 commit comments

Comments
 (0)