Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Dec 14, 2023
1 parent 3bbe095 commit ca3a76d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"php": "^8.1",
"composer-runtime-api": "^2.2",
"fakerphp/faker": "^1.21",
"laravel/framework": "^10.23.1",
"laravel/framework": "^10.37.3",
"mockery/mockery": "^1.5.1",
"orchestra/testbench-core": "^8.17",
"orchestra/testbench-core": "8.x-dev",
"orchestra/workbench": "^1.2 || ^8.2",
"phpunit/phpunit": "^9.6 || ^10.1",
"symfony/process": "^6.2",
Expand Down
2 changes: 1 addition & 1 deletion core
Submodule core updated 37 files
+1 −1 .github/workflows/audits.yaml
+2 −2 .github/workflows/collision-tests.yaml
+1 −1 .github/workflows/coveralls.yaml
+1 −1 .github/workflows/parallel-tests.yaml
+1 −1 .github/workflows/strict-tests.yaml
+2 −2 .github/workflows/tests.yaml
+8 −0 CHANGELOG-7.x.md
+8 −0 CHANGELOG-8.x.md
+3 −3 composer.json
+29 −0 src/Attributes/CallbackCollection.php
+44 −0 src/Attributes/RequiresEnv.php
+37 −0 src/Attributes/WithConfig.php
+47 −0 src/Attributes/WithEnv.php
+12 −8 src/Concerns/ApplicationTestingHooks.php
+41 −18 src/Concerns/CreatesApplication.php
+3 −2 src/Concerns/HandlesAttributes.php
+31 −28 src/Concerns/HandlesDatabases.php
+18 −12 src/Concerns/HandlesRoutes.php
+48 −0 src/Concerns/HandlesTestingFeature.php
+52 −8 src/Concerns/InteractsWithPHPUnit.php
+45 −0 src/Concerns/InteractsWithPest.php
+1 −0 src/Concerns/InteractsWithWorkbench.php
+54 −33 src/Concerns/Testing.php
+18 −2 src/Console/Commander.php
+2 −0 src/Console/Kernel.php
+2 −0 src/Exceptions/Handler.php
+1 −3 src/Foundation/Console/Concerns/InteractsWithIO.php
+1 −3 src/Foundation/Console/TestFallbackCommand.php
+25 −0 src/Foundation/Env.php
+5 −1 src/Foundation/TestbenchServiceProvider.php
+2 −0 src/TestCase.php
+16 −0 tests/Attributes/RequiresEnvTest.php
+22 −0 tests/Attributes/WithConfigTest.php
+23 −0 tests/Attributes/WithEnvTest.php
+3 −0 tests/Foundation/EnvTest.php
+20 −0 tests/Integrations/CacheRouteTest.php
+1 −0 tests/TestCaseTest.php

0 comments on commit ca3a76d

Please sign in to comment.