Skip to content

Commit 5e0053d

Browse files
committed
Laravel 9 support
1 parent 9c3a278 commit 5e0053d

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
php: [7.3, 7.4, 8.0]
11+
php: [8.0, 8.1]
1212
stability: [prefer-lowest, prefer-stable]
1313

1414
name: PHP ${{ matrix.php }} / ${{ matrix.stability }}

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
Laravel-specific and pure PHP Helper Functions.
1717

1818
| Laravel | Helper Functions |
19-
| ------- | :-------------------------------------------------------------------------: |
19+
|---------|-----------------------------------------------------------------------------|
20+
| 9.x | [9.x](https://github.com/dmitry-ivanov/laravel-helper-functions/tree/9.x) |
2021
| 8.x | [8.x](https://github.com/dmitry-ivanov/laravel-helper-functions/tree/8.x) |
2122
| 7.x | [7.x](https://github.com/dmitry-ivanov/laravel-helper-functions/tree/7.x) |
2223
| 6.x | [6.x](https://github.com/dmitry-ivanov/laravel-helper-functions/tree/6.x) |

composer.json

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,21 @@
1212
"email": "dmitry.g.ivanov@gmail.com"
1313
}],
1414
"require": {
15-
"php": "^7.3|^8.0",
15+
"php": "^8.0.2",
1616
"ext-dom": "*",
17-
"ext-json": "*",
1817
"ext-simplexml": "*",
19-
"illuminate/support": "^8.0",
20-
"nesbot/carbon": "^2.17",
21-
"symfony/filesystem": "^5.1",
22-
"symfony/finder": "^5.1",
23-
"symfony/process": "^5.1",
24-
"symfony/var-dumper": "^5.1",
18+
"illuminate/support": "^9.0",
19+
"nesbot/carbon": "^2.53.1",
20+
"symfony/filesystem": "^6.0",
21+
"symfony/finder": "^6.0",
22+
"symfony/process": "^6.0",
23+
"symfony/var-dumper": "^6.0",
2524
"spatie/array-to-xml": "^3.0"
2625
},
2726
"require-dev": {
28-
"phpunit/phpunit": "^9.1",
29-
"mockery/mockery": "^1.3.1",
30-
"illuminated/testing-tools": "^8.0"
27+
"phpunit/phpunit": "^9.5.10",
28+
"mockery/mockery": "^1.4.4",
29+
"illuminated/testing-tools": "^9.0"
3130
},
3231
"autoload": {
3332
"files": [

0 commit comments

Comments
 (0)