Skip to content

Commit bb47bf7

Browse files
committed
update formating
1 parent 173d3fd commit bb47bf7

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/phpstan.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup PHP
1919
uses: shivammathur/setup-php@v2
2020
with:
21-
php-version: '8.1'
21+
php-version: '8.2'
2222
coverage: none
2323

2424
- name: Install composer dependencies

composer.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
"illuminate/contracts": "^11.0"
2222
},
2323
"require-dev": {
24-
"laravel/pint": "^1.14",
25-
"nunomaduro/collision": "^8.1.1",
26-
"larastan/larastan": "^2.9",
24+
"laravel/pint": "^v1.15.1",
25+
"nunomaduro/collision": "^v8.1.1",
26+
"larastan/larastan": "^v2.9.2",
2727
"orchestra/testbench": "^9.0.0",
28-
"pestphp/pest": "^2.34",
29-
"pestphp/pest-plugin-arch": "^2.7",
30-
"pestphp/pest-plugin-laravel": "^2.3",
28+
"pestphp/pest": "^v2.34",
29+
"pestphp/pest-plugin-arch": "^v2.7.0",
30+
"pestphp/pest-plugin-laravel": "^v2.3.0",
3131
"phpstan/extension-installer": "^1.3",
3232
"phpstan/phpstan-deprecation-rules": "^1.1",
3333
"phpstan/phpstan-phpunit": "^1.3",

src/EloquentDatatableServiceProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace Designbycode\EloquentDatatable;
44

5+
use Designbycode\EloquentDatatable\Commands\EloquentDatatableCommand;
56
use Spatie\LaravelPackageTools\Package;
67
use Spatie\LaravelPackageTools\PackageServiceProvider;
7-
use Designbycode\EloquentDatatable\Commands\EloquentDatatableCommand;
88

99
class EloquentDatatableServiceProvider extends PackageServiceProvider
1010
{

tests/TestCase.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace Designbycode\EloquentDatatable\Tests;
44

5+
use Designbycode\EloquentDatatable\EloquentDatatableServiceProvider;
56
use Illuminate\Database\Eloquent\Factories\Factory;
67
use Orchestra\Testbench\TestCase as Orchestra;
7-
use Designbycode\EloquentDatatable\EloquentDatatableServiceProvider;
88

99
class TestCase extends Orchestra
1010
{

0 commit comments

Comments
 (0)