Skip to content

Commit

Permalink
PHP 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jhaoda committed Aug 8, 2021
1 parent cb37a4c commit e36576a
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .styleci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
preset: laravel

disabled:
- simplified_null_return
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ language: php
php:
- '7.2'
- '7.3'
- '7.4'
- '8.0'

env:
matrix:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to `smsc-ru` will be documented in this file

## 3.2.0 - 2021-09-08

- Updated to support PHP 8.0
- Fix wrong namespace in some test classes

## 3.1.0 - 2020-09-12

- Updated to support Laravel 8
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}
],
"require": {
"php": "^7.2",
"php": ">=7.2",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.0.1",
Expand Down
2 changes: 1 addition & 1 deletion tests/SmscRuApiTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace NotificationChannel\SmscRu\Tests;
namespace NotificationChannels\SmscRu\Test;

use NotificationChannels\SmscRu\SmscRuApi;
use PHPUnit\Framework\TestCase;
Expand Down
2 changes: 1 addition & 1 deletion tests/SmscRuChannelTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace NotificationChannel\SmscRu\Tests;
namespace NotificationChannels\SmscRu\Test;

use Illuminate\Notifications\Notifiable;
use Illuminate\Notifications\Notification;
Expand Down

0 comments on commit e36576a

Please sign in to comment.