Skip to content

Commit 76a8383

Browse files
committed
updated to first alpha of wyrihaximus/async-test-utilities v2
1 parent 215ac75 commit 76a8383

4 files changed

Lines changed: 84 additions & 107 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: Continuous Integration
22
on:
33
push:
44
pull_request:
5-
schedule:
6-
- cron: '0 0 * * 0'
75
jobs:
86
composer-install:
97
strategy:

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ else
99
DOCKER_RUN=docker run --rm -it \
1010
-v `pwd`:`pwd` \
1111
-w `pwd` \
12-
"wyrihaximusnet/php:7.4-zts-alpine3.10-dev"
12+
"wyrihaximusnet/php:7.4-zts-alpine3.11-dev"
1313
endif
1414

1515
all: lint cs-fix cs stan psalm composer-require-checker composer-unused
@@ -27,10 +27,10 @@ stan:
2727
$(DOCKER_RUN) vendor/bin/phpstan analyse src --level max --ansi -c phpstan.neon
2828

2929
psalm:
30-
$(DOCKER_RUN) vendor/bin/psalm --threads=$(nproc)
30+
$(DOCKER_RUN) vendor/bin/psalm --threads=$(nproc) --shepherd --stats src
3131

3232
composer-require-checker:
33-
$(DOCKER_RUN) vendor/bin/composer-require-checker --ignore-parse-errors --ansi -vvv
33+
$(DOCKER_RUN) vendor/bin/composer-require-checker --ignore-parse-errors --ansi -vvv --config-file=composer-require-checker.json
3434

3535
composer-unused:
3636
$(DOCKER_RUN) composer unused --ansi

composer.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,11 @@
1717
"react-parallel/contracts": "^1.0",
1818
"react/event-loop": "^1.1",
1919
"react/promise": "^2.7",
20-
"thecodingmachine/safe": "v1.0.0 as v0.1.17",
21-
"wyrihaximus/async-test-utilities": "^1.1",
20+
"wyrihaximus/async-test-utilities": "^2.0.0-alpha1",
2221
"wyrihaximus/iterator-or-array-to-array": "^1.1",
2322
"wyrihaximus/pool-info": "^1.0"
2423
},
25-
"require-dev": {
26-
"wyrihaximus/async-test-utilities": "dev-update-to-test-utilities-2.0 as 1.999.999",
27-
"wyrihaximus/coding-standard": "dev-master",
28-
"wyrihaximus/test-utilities": "dev-swap-cs-toolkit"
29-
},
24+
"require-dev": {},
3025
"config": {
3126
"platform": {
3227
"php": "7.4"
@@ -43,7 +38,7 @@
4338
"ReactParallel\\Tests\\": "src/"
4439
}
4540
},
46-
"minimum-stability": "beta",
41+
"minimum-stability": "dev",
4742
"prefer-stable": true,
4843
"scripts": {
4944
"post-install-cmd": [

0 commit comments

Comments
 (0)