Skip to content

Commit 818ac78

Browse files
bors[bot]norkunas
andauthored
Merge #203
203: Drop illuminate/collections r=brunoocasali a=norkunas # Pull Request ## Related issue Fixes #184 ## What does this PR do? - Continues work from #190 I've extracted all necessary methods to a custom Collection class not to break any test. At least the dropped dependency now won't block other dependencies to update in apps. ## PR checklist Please check if your PR fulfills the following requirements: - [x] Does this PR fix an existing issue, or have you listed the changes applied in the PR description (and why they are needed)? - [x] Have you read the contributing guidelines? - [x] Have you made sure that the title is accurate and descriptive of the changes? Co-authored-by: Tomas <[email protected]>
2 parents df904df + f1d22fd commit 818ac78

11 files changed

+448
-22
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ max_line_length = 120
1313

1414
[*.{yml,json}]
1515
indent_size = 2
16+
17+
[*.{neon,neon.dist}]
18+
indent_style = tab

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
"php": "^7.4|^8.0",
2222
"ext-json": "*",
2323
"doctrine/doctrine-bundle": "^2.4",
24-
"illuminate/collections": "^8.47",
2524
"meilisearch/meilisearch-php": "^0.25.0",
2625
"symfony/filesystem": "^4.4 || ^5.0 || ^6.0",
2726
"symfony/property-access": "^4.4 || ^5.0 || ^6.0",

phpstan.neon

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
parameters:
2-
level: 5
3-
paths:
4-
- src
5-
- tests
2+
level: 5
3+
paths:
4+
- src
5+
- tests
6+
ignoreErrors:
7+
- '#Class UnitEnum not found#'

0 commit comments

Comments
 (0)