Skip to content

Commit d58bbbd

Browse files
authored
Dont use symfony phpunit-bridge (#120)
* Dont use symfony phpunit-bridge * Fixed road runner lowest * normalize cmposer
1 parent fbf93f5 commit d58bbbd

File tree

15 files changed

+22
-25
lines changed

15 files changed

+22
-25
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,13 @@ jobs:
4747
extensions: swoole
4848

4949
- name: Download dependencies
50-
uses: ramsey/composer-install@v1
50+
uses: ramsey/composer-install@v2
5151
with:
5252
dependency-versions: ${{ matrix.strategy }}
5353
composer-options: --working-dir=src/${{ matrix.package }} --no-interaction --prefer-dist --optimize-autoloader
5454

5555
- name: Run tests
5656
run: |
5757
cd src/${{ matrix.package }}
58-
echo ::group::Install
59-
./vendor/bin/simple-phpunit install
60-
echo ::endgroup::
61-
./vendor/bin/simple-phpunit
58+
./vendor/bin/phpunit
6259

.github/workflows/static.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
tools: phpstan:1.4.6, cs2pr
2828

2929
- name: Download dependencies
30-
uses: ramsey/composer-install@v1
30+
uses: ramsey/composer-install@v2
3131

3232
- name: PHPStan
3333
run: phpstan analyze --no-progress --error-format=checkstyle | cs2pr
@@ -79,7 +79,7 @@ jobs:
7979
tools: vimeo/psalm:4.8.1
8080

8181
- name: Download dependencies
82-
uses: ramsey/composer-install@v1
82+
uses: ramsey/composer-install@v2
8383

8484
- name: Psalm
8585
run: psalm --no-progress --output-format=github

src/bref/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
"require-dev": {
2222
"bref/bref": "^1.3",
2323
"guzzlehttp/test-server": "^0.1",
24+
"phpunit/phpunit": "^9.5",
2425
"symfony/http-foundation": "^5.3 || ^6.0",
25-
"symfony/http-kernel": "^5.4 || ^6.0",
26-
"symfony/phpunit-bridge": "^5.3"
26+
"symfony/http-kernel": "^5.4 || ^6.0"
2727
},
2828
"minimum-stability": "dev",
2929
"prefer-stable": true,

src/google-cloud/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"symfony/runtime": "^5.3 || ^6.0"
1616
},
1717
"require-dev": {
18-
"symfony/phpunit-bridge": "^5.3"
18+
"phpunit/phpunit": "^9.5"
1919
},
2020
"minimum-stability": "dev",
2121
"prefer-stable": true,

src/laravel/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
},
1616
"require-dev": {
1717
"illuminate/http": "^8.33",
18-
"symfony/console": "^4.4 || ^5.2 || ^6.0",
19-
"symfony/phpunit-bridge": "^5.3"
18+
"phpunit/phpunit": "^9.5",
19+
"symfony/console": "^4.4 || ^5.2 || ^6.0"
2020
},
2121
"minimum-stability": "dev",
2222
"prefer-stable": true,

src/psr-17/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"require-dev": {
1919
"nyholm/psr7": "^1.4",
20-
"symfony/phpunit-bridge": "^5.3"
20+
"phpunit/phpunit": "^9.5"
2121
},
2222
"minimum-stability": "dev",
2323
"prefer-stable": true,

src/psr-guzzle/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"symfony/runtime": "^5.3 || ^6.0"
1616
},
1717
"require-dev": {
18-
"symfony/phpunit-bridge": "^5.3"
18+
"phpunit/phpunit": "^9.5"
1919
},
2020
"minimum-stability": "dev",
2121
"prefer-stable": true,

src/psr-laminas/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"symfony/runtime": "^5.3 || ^6.0"
1616
},
1717
"require-dev": {
18-
"symfony/phpunit-bridge": "^5.3"
18+
"phpunit/phpunit": "^9.5"
1919
},
2020
"minimum-stability": "dev",
2121
"prefer-stable": true,

src/psr-nyholm-laminas/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"symfony/runtime": "^5.3 || ^6.0"
1717
},
1818
"require-dev": {
19-
"symfony/phpunit-bridge": "^5.3"
19+
"phpunit/phpunit": "^9.5"
2020
},
2121
"minimum-stability": "dev",
2222
"prefer-stable": true,

src/psr-nyholm/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"symfony/runtime": "^5.3 || ^6.0"
1717
},
1818
"require-dev": {
19-
"symfony/phpunit-bridge": "^5.3"
19+
"phpunit/phpunit": "^9.5"
2020
},
2121
"minimum-stability": "dev",
2222
"prefer-stable": true,

0 commit comments

Comments
 (0)