Skip to content

Commit efac6d4

Browse files
committed
Update to stable reactphp/event-loop v1.2.0 & updated stream and socket
1 parent e7e380e commit efac6d4

File tree

2 files changed

+4
-22
lines changed

2 files changed

+4
-22
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ jobs:
3030
with:
3131
php-version: ${{ matrix.php }}
3232
coverage: xdebug
33-
env:
34-
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3533
- run: composer install
3634
- run: vendor/bin/phpunit --coverage-text
3735
if: ${{ matrix.php >= 7.3 }}
@@ -43,7 +41,6 @@ jobs:
4341
name: PHPUnit (HHVM)
4442
runs-on: ubuntu-18.04
4543
continue-on-error: true
46-
if: false # temporarily skipped until https://github.com/azjezz/setup-hhvm/issues/3 is addressed
4744
steps:
4845
- uses: actions/checkout@v2
4946
- uses: azjezz/setup-hhvm@v1

composer.json

Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -28,33 +28,18 @@
2828
"require": {
2929
"php": ">=5.3.0",
3030
"evenement/evenement": "^3.0 || ^2.0 || ^1.0",
31-
"react/event-loop": "dev-master#78f7f43 as 1.2.0",
32-
"react/stream": "dev-default-loop#e617d63 as 1.2.0"
31+
"react/event-loop": "^1.2",
32+
"react/stream": "^1.2"
3333
},
3434
"require-dev": {
3535
"phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
36-
"react/dns": "dev-default-loop#28e5df1 as 1.8.0",
37-
"react/socket": "dev-default-loop#b471dc7 as 1.8.0",
36+
"react/socket": "^1.8",
3837
"sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
3938
},
4039
"autoload": {
4140
"psr-4": { "React\\ChildProcess\\": "src" }
4241
},
4342
"autoload-dev": {
4443
"psr-4": { "React\\Tests\\ChildProcess\\": "tests" }
45-
},
46-
"repositories": [
47-
{
48-
"type": "vcs",
49-
"url": "https://github.com/clue-labs/dns"
50-
},
51-
{
52-
"type": "vcs",
53-
"url": "https://github.com/clue-labs/socket"
54-
},
55-
{
56-
"type": "vcs",
57-
"url": "https://github.com/clue-labs/stream"
58-
}
59-
]
44+
}
6045
}

0 commit comments

Comments
 (0)