Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit 48c3155

Browse files
authored
5.0.0 (#1)
* Laravel 9.x.x - update dependencies for Laravel and Lumen 9.x.x compatibility * Update README.md
1 parent 88cf562 commit 48c3155

File tree

4 files changed

+18
-12
lines changed

4 files changed

+18
-12
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: php
22

3-
php: 7.3
3+
php: 8.0
44

55
before_script:
66
- composer self-update

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Changelog
2+
## v.5.0.0
3+
- update dependencies for Laravel and Lumen 9.x.x compatibility
24
## v.4.1.1
35
- add functions
46
* sum()

README.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,20 @@ For more configuration, you can publish configuration file:
2222
Framework | Package | Note
2323
:---------|:--------|:-----
2424
5.8.x | ^1.x.x | No longer maintained.
25-
6.0.x | ^2.x.x |
26-
7.x.x | ^3.x.x |
27-
8.x.x | ^4.x.x |
25+
6.0.x | ^2.x.x | Bug fixes only.
26+
7.x.x | ^3.x.x | Bug fixes only.
27+
8.x.x | ^4.x.x | PHP ^8.0 Supported from 4.1.0
28+
9.x.x | ^5.x.x |
29+
2830
#### Lumen
2931
Framework | Package | Note
3032
:---------|:--------|:-----
3133
5.8.x | ^1.1.x | No longer maintained.
32-
6.0.x | ^2.x.x |
33-
7.x.x | ^3.x.x |
34-
8.x.x | ^4.x.x |
34+
6.0.x | ^2.x.x | Bug fixes only.
35+
7.x.x | ^3.x.x | Bug fixes only.
36+
8.x.x | ^4.x.x | PHP ^8.0 Supported from 4.1.0
37+
9.x.x | ^5.x.x |
38+
3539

3640
### Implementation
3741
To use Repositories, create repository class that:

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
"laravel"
1111
],
1212
"require": {
13-
"php": "^7.3|^8.0",
13+
"php": "^8.0",
1414
"ext-json": "*",
1515
"ext-libxml": "*",
1616
"ext-simplexml": "*",
17-
"illuminate/contracts": "^8.0",
18-
"illuminate/database": "^8.0",
19-
"illuminate/support": "^8.0",
20-
"illuminate/container": "^8.0"
17+
"illuminate/contracts": "^9.0",
18+
"illuminate/database": "^9.0",
19+
"illuminate/support": "^9.0",
20+
"illuminate/container": "^9.0"
2121
},
2222
"require-dev": {
2323
"phpunit/phpunit": "^9.0"

0 commit comments

Comments
 (0)