Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: WyriHaximus/php-async-test-utilities
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6.0.0
Choose a base ref
...
head repository: WyriHaximus/php-async-test-utilities
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6.1.0
Choose a head ref
  • 8 commits
  • 4 files changed
  • 2 contributors

Commits on Jan 16, 2023

  1. Bump phpunit/phpunit from 9.5.27 to 9.5.28

    Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 9.5.27 to 9.5.28.
    - [Release notes](https://github.com/sebastianbergmann/phpunit/releases)
    - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/9.5.28/ChangeLog-9.5.md)
    - [Commits](sebastianbergmann/phpunit@9.5.27...9.5.28)
    
    ---
    updated-dependencies:
    - dependency-name: phpunit/phpunit
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Jan 16, 2023
    Copy the full SHA
    162f164 View commit details

Commits on Feb 2, 2023

  1. Merge pull request #181 from WyriHaximus/dependabot/composer/phpunit/…

    …phpunit-9.5.28
    
    Bump phpunit/phpunit from 9.5.27 to 9.5.28
    WyriHaximus authored Feb 2, 2023
    Copy the full SHA
    d1cf7ea View commit details

Commits on Feb 3, 2023

  1. Bump phpunit/phpunit from 9.5.28 to 9.6.1

    Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 9.5.28 to 9.6.1.
    - [Release notes](https://github.com/sebastianbergmann/phpunit/releases)
    - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/main/ChangeLog-9.6.md)
    - [Commits](sebastianbergmann/phpunit@9.5.28...9.6.1)
    
    ---
    updated-dependencies:
    - dependency-name: phpunit/phpunit
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Feb 3, 2023
    Copy the full SHA
    0218f78 View commit details

Commits on Feb 4, 2023

  1. Merge pull request #183 from WyriHaximus/dependabot/composer/phpunit/…

    …phpunit-9.6.1
    
    Bump phpunit/phpunit from 9.5.28 to 9.6.1
    WyriHaximus authored Feb 4, 2023
    Copy the full SHA
    2463fec View commit details
  2. Bump wyrihaximus/test-utilities from 5.3.1 to 5.4.0

    Bumps [wyrihaximus/test-utilities](https://github.com/WyriHaximus/php-test-utilities) from 5.3.1 to 5.4.0.
    - [Release notes](https://github.com/WyriHaximus/php-test-utilities/releases)
    - [Commits](WyriHaximus/php-test-utilities@5.3.1...5.4.0)
    
    ---
    updated-dependencies:
    - dependency-name: wyrihaximus/test-utilities
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Feb 4, 2023
    Copy the full SHA
    7b4a579 View commit details
  3. Merge pull request #184 from WyriHaximus/dependabot/composer/wyrihaxi…

    …mus/test-utilities-5.4.0
    
    Bump wyrihaximus/test-utilities from 5.3.1 to 5.4.0
    WyriHaximus authored Feb 4, 2023
    Copy the full SHA
    ee38a4d View commit details
  4. Copy the full SHA
    c1c24b4 View commit details
  5. Merge pull request #182 from WyriHaximus/deprecate-await-functions

    Deprecate await* functions
    WyriHaximus authored Feb 4, 2023
    Copy the full SHA
    4a387e2 View commit details
Showing with 257 additions and 245 deletions.
  1. +2 −2 composer.json
  2. +249 −243 composer.lock
  3. +3 −0 etc/qa/phpstan.neon
  4. +3 −0 src/AsyncTestCase.php
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -10,11 +10,11 @@
],
"require": {
"php": "^8.2",
"phpunit/phpunit": "^9.5.27",
"phpunit/phpunit": "^9.6.1",
"react/async": "^4.0",
"react/event-loop": "^1.3.0",
"react/promise": "^2.9.",
"wyrihaximus/test-utilities": "^5.3.1"
"wyrihaximus/test-utilities": "^5.4.0"
},
"require-dev": {
"wyrihaximus/iterator-or-array-to-array": "^1.2"
Loading