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: 7.2.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: 7.3.0
Choose a head ref
Loading
Showing with 307 additions and 247 deletions.
  1. +14 −8 .gitattributes
  2. +14 −6 composer.json
  3. +277 −233 composer.lock
  4. +1 −0 etc/qa/phpstan.neon
  5. +1 −0 rules.neon
22 changes: 14 additions & 8 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
# Ignoring files for distribution archieves
examples/ export-ignore
.github/ export-ignore
etc/ export-ignore
tests/ export-ignore
.dunitconfig export-ignore
.travis.yml export-ignore
.gitignore export-ignore
var/ export-ignore
.devcontainer.json export-ignore
.editorconfig export-ignore
.gitattributes export-ignore
.scrutinizer.yml export-ignore
.styleci.yml export-ignore
appveyor.yml export-ignore
phpunit.xml.dist export-ignore
.gitignore export-ignore
CONTRIBUTING.md export-ignore
composer.lock export-ignore
infection.json.dist export-ignore
Makefile export-ignore
README.md export-ignore

# Diffing
*.php diff=php
20 changes: 14 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -10,10 +10,11 @@
],
"require": {
"php": "^8.2",
"phpunit/phpunit": "^9.6.10",
"react/async": "^4.1.0",
"react/event-loop": "^1.4.0",
"react/promise": "^2.10 || ^3.0",
"phpunit/phpunit": "^9.6.17",
"react/async": "^4.2.0",
"react/event-loop": "^1.5.0",
"react/promise": "^3.1",
"wyrihaximus/phpstan-react": "^1",
"wyrihaximus/test-utilities": "^5.5.4 || ^6"
},
"require-dev": {
@@ -49,12 +50,19 @@
},
"sort-packages": true
},
"extra": {
"unused": [
"wyrihaximus/phpstan-react"
]
},
"scripts": {
"post-install-cmd": [
"composer normalize"
"composer normalize",
"composer update --lock --no-scripts"
],
"post-update-cmd": [
"composer normalize"
"composer normalize",
"composer update --lock --no-scripts"
]
}
}
Loading