From a0399bdbf90374b3ba23f52afabc069410b715a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Fri, 2 Sep 2022 16:19:03 +0200 Subject: [PATCH] Update to stable dev dependencies --- .github/workflows/ci.yml | 3 --- composer.json | 24 +++++------------------- 2 files changed, 5 insertions(+), 22 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fafa0ff0..0724232c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,8 +29,6 @@ jobs: with: php-version: ${{ matrix.php }} coverage: xdebug - env: - COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: composer install - run: vendor/bin/phpunit --coverage-text if: ${{ matrix.php >= 7.3 }} @@ -41,7 +39,6 @@ jobs: name: PHPUnit (HHVM) runs-on: ubuntu-18.04 continue-on-error: true - if: false # temporarily skipped until https://github.com/azjezz/setup-hhvm/issues/3 is addressed steps: - uses: actions/checkout@v2 - uses: azjezz/setup-hhvm@v1 diff --git a/composer.json b/composer.json index 3ba8a606..d92ac820 100644 --- a/composer.json +++ b/composer.json @@ -31,16 +31,16 @@ "fig/http-message-util": "^1.1", "psr/http-message": "^1.0", "react/event-loop": "^1.2", - "react/promise": "^3@dev || ^2.3 || ^1.2.1", + "react/promise": "^3 || ^2.3 || ^1.2.1", "react/promise-stream": "^1.4", "react/socket": "^1.12", "react/stream": "^1.2", "ringcentral/psr7": "^1.2" }, "require-dev": { - "clue/http-proxy-react": "dev-promise-v3 as 1.8.0", - "clue/reactphp-ssh-proxy": "dev-promise-v3 as 1.4.0", - "clue/socks-react": "dev-promise-v3 as 1.4.0", + "clue/http-proxy-react": "^1.8", + "clue/reactphp-ssh-proxy": "^1.4", + "clue/socks-react": "^1.4", "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35", "react/async": "^4 || ^3 || ^2", "react/promise-timer": "^1.9" @@ -50,19 +50,5 @@ }, "autoload-dev": { "psr-4": { "React\\Tests\\Http\\": "tests" } - }, - "repositories": [ - { - "type": "vcs", - "url": "https://github.com/clue-labs/reactphp-http-proxy" - }, - { - "type": "vcs", - "url": "https://github.com/clue-labs/reactphp-socks" - }, - { - "type": "vcs", - "url": "https://github.com/clue-labs/reactphp-ssh-proxy" - } - ] + } }