Skip to content

Commit a4397a8

Browse files
committed
wip
1 parent 611342d commit a4397a8

File tree

5 files changed

+7
-50
lines changed

5 files changed

+7
-50
lines changed

.github/workflows/formats.yml

-3
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,5 @@ jobs:
3030
- name: Coding Style Checks
3131
run: composer test:lint
3232

33-
- name: Refactor Checks
34-
run: composer test:refactor
35-
3633
- name: Type Checks
3734
run: composer test:types

.github/workflows/tests.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.1, 8.2]
12-
laravel: [10.*, 9.*]
11+
php: [8.1, 8.2, 8.3, 8.4]
12+
laravel: [11.*, 10.*, 9.*]
1313
stability: [prefer-lowest, prefer-stable]
14+
exclude:
15+
- php: 8.1
16+
laravel: 11.*
1417

1518
name: Tests php@${{ matrix.php }} - laravel@${{ matrix.laravel }} - ${{ matrix.stability }}
1619

CONTRIBUTING.md

-6
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,6 @@ Run all tests:
4949
composer test
5050
```
5151

52-
Check code quality:
53-
54-
```bash
55-
composer test:refactor
56-
```
57-
5852
Check types:
5953

6054
```bash

composer.json

+2-6
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,16 @@
1919
],
2020
"require": {
2121
"php": "^8.1.0",
22-
"laravel/framework": "^9.0|^10.0",
22+
"laravel/framework": "^9.0|^10.0|^11.0",
2323
"devmoath/jira-php": "0.*"
2424
},
2525
"require-dev": {
2626
"laravel/pint": "^1.2.0",
2727
"pestphp/pest": "^2.0.0",
28-
"pestphp/pest-plugin-mock": "^2.0.0",
28+
"mockery/mockery": "^1.6",
2929
"phpstan/extension-installer": "^1.2",
3030
"phpstan/phpstan": "^1.8.6",
3131
"phpstan/phpstan-strict-rules": "^1.4",
32-
"rector/rector": "^0.15",
3332
"symfony/var-dumper": "^6.2.0"
3433
},
3534
"autoload": {
@@ -61,14 +60,11 @@
6160
},
6261
"scripts": {
6362
"lint": "pint --preset laravel -v --ansi",
64-
"refactor": "rector --debug --ansi",
6563
"test:lint": "pint --preset laravel --test -v --ansi",
66-
"test:refactor": "rector --dry-run --ansi",
6764
"test:types": "phpstan analyse --ansi",
6865
"test:unit": "pest --colors=always --min=100 --coverage",
6966
"test": [
7067
"@test:lint",
71-
"@test:refactor",
7268
"@test:types",
7369
"@test:unit"
7470
]

rector.php

-33
This file was deleted.

0 commit comments

Comments
 (0)