Skip to content

Commit e1bc530

Browse files
Merge branch 'release-4.1.0'
2 parents ca16ea0 + cecc3cb commit e1bc530

File tree

6 files changed

+23
-24
lines changed

6 files changed

+23
-24
lines changed

.github/workflows/run-tests.yml

+10-14
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,22 @@ on: [ push, pull_request ]
55
jobs:
66
test:
77
runs-on: ubuntu-latest
8-
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
8+
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
99
strategy:
10+
fail-fast: false
1011
matrix:
11-
php: [8.2, 8.1, 8.0]
12-
laravel: [9.*, 10.*]
13-
dependency-version: [prefer-lowest, prefer-stable]
12+
php: [ 8.3, 8.2 ]
13+
laravel: [ 10.*, 11.* ]
14+
stability: [ prefer-stable ]
1415
include:
16+
- laravel: 11.*
17+
testbench: 9.*
1518
- laravel: 10.*
1619
testbench: 8.*
17-
carbon: ^2.63
18-
- laravel: 9.*
19-
testbench: 7.*
20-
carbon: ^2.63
21-
exclude:
22-
- laravel: 10.*
23-
php: 8.0
2420

2521
steps:
2622
- name: Checkout code
27-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2824

2925
- name: Setup PHP
3026
uses: shivammathur/setup-php@v2
@@ -36,8 +32,8 @@ jobs:
3632

3733
- name: Install dependencies
3834
run: |
39-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.carbon }}" --no-interaction --no-update
40-
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
35+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
36+
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
4137
4238
- name: Run test suite
4339
run: composer test

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 4.1.0 - 2023-03-29
2+
- Add support for Laravel 11.x
3+
- Laravel 9 is deprecated
4+
15
## 4.0.0 - 2023-03-29
26
- Add support for Laravel V10
37

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Many web applications require users to verify their mobile phone numbers before
1515

1616
Laravel | LaravelMobileVerification
1717
:---------|:----------
18+
11.0.x | 4.1.x
1819
10.0.x | 4.0.x
1920
9.0.x | 3.0.x
2021
6.0.x to 8.0x | 2.0.x

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.0
1+
4.1.0

composer.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fouladgar/laravel-mobile-verification",
3-
"description": "",
3+
"description": "This package provides convenient methods for making token code, sending and verifying mobile phone verification requests.",
44
"keywords": [
55
"mobile-verification",
66
"mobile-verifier",
@@ -22,13 +22,13 @@
2222
],
2323
"license": "MIT",
2424
"require": {
25-
"php": "^8.0",
26-
"illuminate/database": "^9.0|^10.0",
27-
"illuminate/support": "^9.0|^10.0",
28-
"illuminate/notifications": "^9.0.2|^10.0"
25+
"php": "^8.2",
26+
"illuminate/database": "^10.0|^11.0",
27+
"illuminate/support": "^10.0|^11.0",
28+
"illuminate/notifications": "^10.0|^11.0"
2929
},
3030
"require-dev": {
31-
"phpunit/phpunit": "^9.3",
31+
"phpunit/phpunit": "^10.5.17",
3232
"orchestra/testbench": "^7.0|^8.0",
3333
"mockery/mockery": "^1.4",
3434
"php-coveralls/php-coveralls": "^2.1"

src/EventServiceProvider.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@ class EventServiceProvider extends ServiceProvider
1414
{
1515
/**
1616
* Register any other events for your application.
17-
*
18-
* @return void
1917
*/
20-
public function boot()
18+
public function boot(): void
2119
{
2220
if (config('mobile_verifier.queue.connection') === 'sync') {
2321
Event::listen(Registered::class, SendMobileVerificationNotification::class);

0 commit comments

Comments
 (0)