Skip to content

Commit c19ffdf

Browse files
committed
prepare compose with new tag
1 parent 266f332 commit c19ffdf

File tree

5 files changed

+570
-1676
lines changed

5 files changed

+570
-1676
lines changed

.github/workflows/phpunit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
php_version: '8.2'
2323

2424
- name: Run tests & generate Coverage
25-
run: bin/phpunit functional --coverage-html var/coverage
25+
run: bin/phpunit --coverage-html var/coverage
2626

2727
- name: Store coverage files
2828
uses: actions/upload-artifact@v3

.github/workflows/rector.yaml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,7 @@ jobs:
99
if: github.repository == 'php-etl/fast-map-plugin'
1010
runs-on: ubuntu-latest
1111
steps:
12-
# workaround for missing secret in fork PRs - see https://github.com/actions/checkout/issues/298
13-
# see https://github.com/rectorphp/rector/commit/d395e1c28b8e6a56711dcc2e10490a82965850e4
14-
-
15-
if: github.event.pull_request.head.repo.full_name == github.repository
16-
uses: actions/checkout@v3
17-
with:
18-
# Must be used to trigger workflow after push
19-
token: ${{ secrets.ACCESS_TOKEN }}
20-
21-
# in forks, the token is not available - so we cannot use it
22-
-
23-
if: github.event.pull_request.head.repo.full_name != github.repository
24-
uses: actions/checkout@v3
12+
- uses: actions/checkout@v3
2513

2614
-
2715
uses: shivammathur/setup-php@v2

composer.json

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,17 @@
1515
"php": "^8.2",
1616
"ext-json": "*",
1717
"nikic/php-parser": "^4.10",
18-
"symfony/config": "^5.2 || ^6.0",
19-
"php-etl/fast-map-config": "^0.5@dev",
20-
"php-etl/configurator-contracts": "^0.6@dev",
21-
"php-etl/packaging-contracts": "^0.2@dev",
22-
"php-etl/satellite-toolbox": "^0.4@dev"
18+
"symfony/config": "^6.0",
19+
"php-etl/fast-map-config": "^0.5.0",
20+
"php-etl/configurator-contracts": "^0.7.0",
21+
"php-etl/packaging-contracts": "^0.3.0",
22+
"php-etl/satellite-toolbox": "^0.5.0"
2323
},
2424
"require-dev": {
25-
"phpunit/phpunit": "^9.5 || ^10.0",
25+
"phpunit/phpunit": "^10.0",
2626
"phpunit/php-invoker": "*",
27-
"johnkary/phpunit-speedtrap": "*",
28-
"mybuilder/phpunit-accelerator": "*",
29-
"phpspec/phpspec": "^7.0",
30-
"friends-of-phpspec/phpspec-code-coverage": "*",
31-
"adlawson/vfs": "dev-develop",
32-
"php-etl/bucket": "^0.3@dev",
33-
"php-etl/phpunit-extension": "^0.5@dev",
27+
"php-etl/bucket": "^0.3.0",
28+
"php-etl/phpunit-extension": "^0.5.0",
3429
"friendsofphp/php-cs-fixer": "^3.0",
3530
"phpstan/phpstan": "^1.10",
3631
"rector/rector": "^0.15"
@@ -47,8 +42,7 @@
4742
},
4843
"extra": {
4944
"branch-alias": {
50-
"dev-main": "0.8.x-dev",
51-
"dev-feature/qualityflow-improvments": "0.8.x-dev"
45+
"dev-main": "0.8.x-dev"
5246
},
5347
"gyroscops": {
5448
"plugins": ["Kiboko\\Plugin\\FastMap\\Service"]

0 commit comments

Comments
 (0)