Skip to content

Commit ffecd5d

Browse files
Merge pull request #55 from TheDragonCode/andrey-helldar-patch-1
Added Laravel 13 compatibility
2 parents c500a7a + 31efe9b commit ffecd5d

2 files changed

Lines changed: 10 additions & 7 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [ "8.2", "8.3", "8.4" ]
13-
laravel: [ "11.0", "12.0" ]
12+
php: [ "8.2", "8.3", "8.4", "8.5" ]
13+
laravel: [ "11.0", "12.0", "13.0" ]
14+
exclude:
15+
- laravel: "13.0"
16+
php: "8.2"
1417

1518
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}
1619

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@
3636
],
3737
"require": {
3838
"php": "^8.2",
39-
"illuminate/collections": "^11.0 || ^12.0"
39+
"illuminate/collections": "^11.0 || ^12.0 || ^13.0"
4040
},
4141
"require-dev": {
4242
"dragon-code/codestyler": "^6.0",
4343
"fakerphp/faker": "^1.21",
44-
"illuminate/database": "^11.0 || ^12.0",
45-
"pestphp/pest": "^3.8",
46-
"symfony/var-dumper": "^7.0"
44+
"illuminate/database": "^11.0 || ^12.0 || ^13.0",
45+
"pestphp/pest": "^3.8 || ^4.0",
46+
"symfony/var-dumper": "^7.0 || ^8.0"
4747
},
4848
"minimum-stability": "stable",
4949
"prefer-stable": true,
@@ -87,4 +87,4 @@
8787
"@test"
8888
]
8989
}
90-
}
90+
}

0 commit comments

Comments
 (0)