Skip to content

Commit 9bc34da

Browse files
Bumped version to 4.1.0
1 parent a3385a2 commit 9bc34da

File tree

6 files changed

+34
-29
lines changed

6 files changed

+34
-29
lines changed

.github/workflows/php-cs-fixer.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
name: Check & fix styling
22

3-
on: [push,pull_request]
3+
on: [ push,pull_request ]
44

55
jobs:
66
php-cs-fixer:
77
name: PHP-CS-Fixer
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
11-
- name: PHP-CS-Fixer
12-
uses: docker://oskarstark/php-cs-fixer-ga
13-
with:
14-
args: --config=.php-cs-fixer.dist --allow-risky=yes
10+
- uses: actions/checkout@v2
11+
- name: PHP-CS-Fixer
12+
uses: docker://oskarstark/php-cs-fixer-ga
13+
with:
14+
args: --config=.php-cs-fixer.dist --allow-risky=yes
1515

16-
- name: Commit changes
17-
uses: stefanzweifel/git-auto-commit-action@v4
18-
with:
19-
commit_message: Fix styling
16+
- name: Commit changes
17+
uses: stefanzweifel/git-auto-commit-action@v4
18+
with:
19+
commit_message: Fix styling

.github/workflows/run-tests.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@ 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.*
18+
carbon: ^2.63
1519
- laravel: 10.*
1620
testbench: 8.*
17-
- laravel: 9.*
18-
testbench: 7.*
19-
exclude:
20-
- laravel: 10.*
21-
php: 8.0
21+
carbon: ^2.63
2222

2323
steps:
2424
- name: Checkout code
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626

2727
- name: Setup PHP
2828
uses: shivammathur/setup-php@v2
@@ -34,8 +34,8 @@ jobs:
3434

3535
- name: Install dependencies
3636
run: |
37-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
38-
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
37+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.carbon }}" --no-interaction --no-update
38+
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
3939
4040
- name: Run test suite
4141
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
@@ -14,6 +14,7 @@ Many web applications require users to verify their mobile phone numbers before
1414

1515
Laravel | LaravelMobileVerification
1616
:---------|:----------
17+
11.0.x | 4.1.x
1718
10.0.x | 4.0.x
1819
9.0.x | 3.0.x
1920
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"

0 commit comments

Comments
 (0)