Skip to content

Commit 654aff2

Browse files
Update dependency wyrihaximus/async-test-utilities to v13
1 parent 1f31d68 commit 654aff2

14 files changed

Lines changed: 2075 additions & 1228 deletions

.gitattributes

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,35 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text eol=lf
3+
4+
# These files are binary and should be left untouched
5+
# (binary is a macro for -text -diff)
6+
*.png binary
7+
*.jpg binary
8+
*.jpeg binary
9+
*.gif binary
10+
*.ico binary
11+
*.webp binary
12+
*.bmp binary
13+
*.ttf binary
14+
*.blp binary
15+
*.db2 binary
16+
117
# Ignoring files for distribution archieves
218
.github/ export-ignore
3-
etc/ export-ignore
19+
etc/ci/ export-ignore
20+
etc/dev-app/ export-ignore
21+
etc/qa/ export-ignore
22+
examples/ export-ignore
423
tests/ export-ignore
524
var/ export-ignore
625
.devcontainer.json export-ignore
726
.editorconfig export-ignore
827
.gitattributes export-ignore
928
.gitignore export-ignore
1029
CONTRIBUTING.md export-ignore
11-
infection.json.dist export-ignore
30+
composer.lock export-ignore
1231
Makefile export-ignore
1332
README.md export-ignore
33+
34+
# Diffing
35+
*.php diff=php

.github/renovate.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
2-
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": [
4-
"github>WyriHaximus/renovate-config:php-package"
5-
]
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"github>WyriHaximus/renovate-config:php-package"
5+
],
6+
"constraints": {
7+
"php": "8.4.x",
8+
"composer": "2.x"
9+
}
610
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ permissions:
1717
jobs:
1818
release-managment:
1919
name: Create Release
20-
uses: WyriHaximus/github-workflows/.github/workflows/package-release-managment.yaml@main
20+
uses: WyriHaximus/github-workflows/.github/workflows/package-release-management.yaml@main
2121
with:
2222
milestone: ${{ github.event.milestone.title }}
2323
description: ${{ github.event.milestone.title }}

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Cees-Jan Kiewiet
3+
Copyright (c) 2026 Cees-Jan Kiewiet
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Makefile

Lines changed: 413 additions & 20 deletions
Large diffs are not rendered by default.

composer.json

Lines changed: 54 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,60 @@
11
{
2-
"name": "react-parallel/stubs",
3-
"description": "\ud83e\udecf Stubs (for PHPstan)",
4-
"license": "MIT",
5-
"type": "phpstan-extension",
6-
"authors": [
7-
{
8-
"name": "Cees-Jan Kiewiet",
9-
"email": "ceesjank@gmail.com",
10-
"homepage": "http://wyrihaximus.net/"
11-
}
12-
],
13-
"require": {
14-
"php": "^8.4",
15-
"ext-parallel": "*"
16-
},
17-
"require-dev": {
18-
"wyrihaximus/async-test-utilities": "^10.0.0"
2+
"name": "react-parallel/stubs",
3+
"description": "\ud83e\udecf Stubs (for PHPstan)",
4+
"license": "MIT",
5+
"type": "phpstan-extension",
6+
"authors": [
7+
{
8+
"name": "Cees-Jan Kiewiet",
9+
"email": "ceesjank@gmail.com",
10+
"homepage": "http://wyrihaximus.net/"
11+
}
12+
],
13+
"require": {
14+
"php": "^8.4",
15+
"ext-parallel": "*"
16+
},
17+
"require-dev": {
18+
"wyrihaximus/async-test-utilities": "^13.1.0",
19+
"wyrihaximus/makefiles": "^0.11.0"
20+
},
21+
"config": {
22+
"allow-plugins": {
23+
"dealerdirect/phpcodesniffer-composer-installer": true,
24+
"ergebnis/composer-normalize": true,
25+
"icanhazstring/composer-unused": true,
26+
"infection/extension-installer": true,
27+
"phpstan/extension-installer": true,
28+
"wyrihaximus/makefiles": true,
29+
"wyrihaximus/test-utilities": true
1930
},
20-
"config": {
21-
"allow-plugins": {
22-
"dealerdirect/phpcodesniffer-composer-installer": true,
23-
"ergebnis/composer-normalize": true,
24-
"icanhazstring/composer-unused": true,
25-
"infection/extension-installer": true,
26-
"phpstan/extension-installer": true,
27-
"wyrihaximus/test-utilities": true
28-
},
29-
"platform": {
30-
"php": "8.4.13"
31-
},
32-
"sort-packages": true
31+
"platform": {
32+
"php": "8.4.13"
3333
},
34-
"extra": {
35-
"phpstan": {
36-
"includes": [
37-
"extension.neon"
38-
]
39-
}
34+
"sort-packages": true
35+
},
36+
"extra": {
37+
"phpstan": {
38+
"includes": [
39+
"extension.neon"
40+
]
4041
},
41-
"scripts": {
42-
"post-install-cmd": [
43-
"composer normalize"
44-
],
45-
"post-update-cmd": [
46-
"composer normalize"
47-
]
42+
"wyrihaximus": {
43+
"supported-features": {
44+
"code-style": false,
45+
"composer-dependency-checkers": false,
46+
"static-analysis": false,
47+
"unit-tests": false,
48+
"zts": true
49+
}
4850
}
51+
},
52+
"scripts": {
53+
"post-install-cmd": [
54+
"make on-install-or-update || true"
55+
],
56+
"post-update-cmd": [
57+
"make on-install-or-update || true"
58+
]
59+
}
4960
}

0 commit comments

Comments
 (0)