Skip to content

Commit b8c37cb

Browse files
committed
rename phpstan jobs
1 parent 444adf9 commit b8c37cb

File tree

12 files changed

+3431
-3610
lines changed

12 files changed

+3431
-3610
lines changed

.github/workflows/phpstan-5.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: PHPStan level 5
22
on: push
33
jobs:
4-
phpstan:
4+
phpstan5:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v3

.github/workflows/phpstan-6.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: PHPStan level 6
22
on: push
33
jobs:
4-
phpstan:
4+
phpstan6:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v3

.github/workflows/phpstan-7.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: PHPStan level 7
22
on: push
33
jobs:
4-
phpstan:
4+
phpstan7:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v3

.github/workflows/phpstan-8.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: PHPStan level 8
22
on: push
33
jobs:
4-
phpstan:
4+
phpstan8:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v3

.github/workflows/phpunit.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99
with:
1010
php-version: '8.2'
1111
tools: composer:v2
12+
extension: pdo
1213
coverage: pcov
1314
- uses: actions/cache@v3
1415
with:
@@ -22,7 +23,7 @@ jobs:
2223
php_version: '8.2'
2324

2425
- name: Run tests & generate Coverage
25-
run: bin/phpunit functional --coverage-html var/coverage
26+
run: bin/phpunit --coverage-html var/coverage
2627

2728
- name: Store coverage files
2829
uses: actions/upload-artifact@v3

composer.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@
1414
"require": {
1515
"php": "^8.2",
1616
"nikic/php-parser": "^4.10",
17-
"symfony/config": "^5.2 || ^6.0",
18-
"symfony/expression-language": "^5.2 || ^6.0",
19-
"php-etl/configurator-contracts": "^0.6@dev",
20-
"php-etl/satellite-toolbox": "^0.4@dev",
21-
"php-etl/fast-map-plugin": "^0.8@dev",
22-
"php-etl/packaging": "^0.2@dev"
17+
"symfony/config": "^6.0",
18+
"symfony/expression-language": "^6.0",
19+
"php-etl/configurator-contracts": "^0.7.0",
20+
"php-etl/satellite-toolbox": "^0.5.0",
21+
"php-etl/fast-map-plugin": "^0.8.0",
22+
"php-etl/packaging": "^0.3.0",
23+
"ext-pdo": "*"
2324
},
2425
"require-dev": {
25-
"phpunit/phpunit": "^9.5 || ^10.0",
26-
"php-etl/phpunit-extension": "^0.5@dev",
27-
"adlawson/vfs": "^0.12.1",
26+
"phpunit/phpunit": "^10.0",
27+
"php-etl/phpunit-extension": "^0.5.0",
2828
"phpstan/phpstan": "^1.10",
29-
"php-etl/sql-flow": "^0.2@dev",
29+
"php-etl/sql-flow": "^0.2.0",
3030
"friendsofphp/php-cs-fixer": "^3.0",
3131
"mikey179/vfsstream": "^1.6",
3232
"infection/infection": "^0.26.18",

0 commit comments

Comments
 (0)