Skip to content

Commit 1a3beda

Browse files
committed
Remove rector
1 parent 0fc59b9 commit 1a3beda

File tree

6 files changed

+5
-25
lines changed

6 files changed

+5
-25
lines changed

.github/workflows/codestyle.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
pull_request:
66

77
jobs:
8-
psalm:
8+
phpcs:
99
name: Code Style
1010
runs-on: ${{ matrix.os }}
1111
strategy:

.github/workflows/security.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php: [ '8.3' ]
16+
php: [ '8.4' ]
1717
os: [ ubuntu-latest ]
1818
steps:
1919
- name: Set Git To Use LF

.github/workflows/static-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
php: [ '8.3' ]
14+
php: [ '8.4' ]
1515
os: [ ubuntu-latest ]
1616
steps:
1717
- name: Set Git To Use LF

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php: [ '8.1', '8.2', '8.3' ]
16+
php: [ '8.1', '8.2', '8.3', '8.4' ]
1717
os: [ ubuntu-latest, macos-latest, windows-latest ]
1818
stability: [ prefer-lowest, prefer-stable ]
1919
steps:

composer.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
"phpstan/phpstan": "^2.1",
2323
"phpstan/phpstan-strict-rules": "^2.0",
2424
"phpunit/phpunit": "^10.5|^11.0",
25-
"rector/rector": "^1.1",
2625
"type-lang/parser": "^1.0"
2726
},
2827
"autoload-dev": {
@@ -56,11 +55,7 @@
5655

5756
"phpcs": "@phpcs:check",
5857
"phpcs:check": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --dry-run --verbose --diff",
59-
"phpcs:fix": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --verbose --diff",
60-
61-
"rector": "@rector:check",
62-
"rector:check": "rector --dry-run --config=rector.php",
63-
"rector:fix": "rector --config=rector.php"
58+
"phpcs:fix": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --verbose --diff"
6459
},
6560
"minimum-stability": "dev",
6661
"prefer-stable": true

rector.php

-15
This file was deleted.

0 commit comments

Comments
 (0)