Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/strict-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
- "~12.3.0"
- "~12.4.0"
- "~12.5.0"
- "~13.0.0"
experimental:
- false
exclude:
Expand All @@ -44,6 +45,8 @@ jobs:
phpunit: "~12.4.0"
- php: 8.2
phpunit: "~12.5.0"
- php: 8.2
phpunit: "~13.0.0"

name: PHP${{ matrix.php }} / PHPUnit:${{ matrix.phpunit }} ⬆️

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
- "~12.3.0"
- "~12.4.0"
- "~12.5.0"
- "~13.0.0"
dependencies:
- "highest"
- "lowest"
Expand All @@ -50,6 +51,8 @@ jobs:
phpunit: "~12.4.0"
- php: 8.2
phpunit: "~12.5.0"
- php: 8.2
phpunit: "~13.0.0"

name: PHP:${{ matrix.php }} / PHPUnit:${{ matrix.phpunit }} / OS:${{ matrix.os }} ${{ matrix.dependencies == 'highest' && '⬆️' || '⬇️' }}

Expand Down
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"laravel/serializable-closure": "^1.3|^2.0.4",
"mockery/mockery": "^1.6.10",
"phpstan/phpstan": "^2.1.19",
"phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1",
"phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1|^13.0.0",
"spatie/laravel-ray": "^1.42.0",
"symfony/process": "^7.2.0",
"symfony/yaml": "^7.2.0",
Expand All @@ -60,7 +60,7 @@
"laravel/framework": "<12.40.0|>=13.0.0",
"laravel/serializable-closure": "<1.3.0|>=2.0.0 <2.0.3|>=3.0.0",
"nunomaduro/collision": "<8.0.0|>=9.0.0",
"phpunit/phpunit": "<10.5.35|>=11.0.0 <11.5.3|12.0.0|>=12.6.0"
"phpunit/phpunit": "<10.5.35|>=11.0.0 <11.5.3|12.0.0|>=13.1.0"
},
"suggest": {
"ext-pcntl": "Required to use all features of the console signal trapping.",
Expand All @@ -70,7 +70,7 @@
"mockery/mockery": "Allow using Mockery for testing (^1.6).",
"nunomaduro/collision": "Allow using Laravel style tests output and parallel testing (^8.0).",
"orchestra/testbench-dusk": "Allow using Laravel Dusk for testing (^10.0).",
"phpunit/phpunit": "Allow using PHPUnit for testing (^10.5.35|^11.5.3|^12.0.1).",
"phpunit/phpunit": "Allow using PHPUnit for testing (^10.5.35|^11.5.3|^12.0.1|^13.0.0).",
"symfony/process": "Required to use Orchestra\\Testbench\\remote function (^7.2).",
"symfony/yaml": "Required for Testbench CLI (^7.2).",
"vlucas/phpdotenv": "Required for Testbench CLI (^5.6.1)."
Expand All @@ -80,6 +80,7 @@
"block-insecure": false
},
"preferred-install": {
"laravel/framework": "source",
"*": "auto"
},
"sort-packages": true
Expand Down
Loading