Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Oct 9, 2023
1 parent b23cb93 commit bcc9b35
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- "7.3"
- "7.4"
phpunit:
- "^8.5.21"
- "^8.0"
dependencies:
- "locked"
- "lowest"
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
- "8.0"
- "8.1"
phpunit:
- "^9.5.10"
- "^9.0"
dependencies:
- "locked"
- "lowest"
Expand Down
2 changes: 1 addition & 1 deletion bin/sync
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require __DIR__.'/../vendor/autoload.php';

$files = new Illuminate\Filesystem\Filesystem();

echo ">>>> Checkout branch {$BRANCH}";
echo ">>>> Checkout branch {$BRANCH}".PHP_EOL;

Illuminate\Support\Collection::make([
"git checkout $BRANCH",
Expand Down
2 changes: 1 addition & 1 deletion core
Submodule core updated 38 files
+1 −1 .github/workflows/audits.yaml
+5 −2 .github/workflows/collision-tests.yaml
+4 −1 .github/workflows/coveralls.yaml
+5 −3 .github/workflows/parallel-tests.yaml
+8 −2 .github/workflows/tests.yaml
+18 −0 CHANGELOG-6.x.md
+16 −10 composer.json
+3 −3 laravel/bootstrap/app.php
+0 −2 laravel/server.php
+2 −1 src/Bootstrap/LoadConfiguration.php
+3 −0 src/Bootstrap/LoadEnvironmentVariables.php
+2 −2 src/Concerns/CreatesApplication.php
+2 −1 src/Concerns/Database/HandlesConnections.php
+2 −2 src/Concerns/HandlesDatabases.php
+1 −1 src/Concerns/InteractsWithPublishedFiles.php
+10 −11 src/Concerns/InteractsWithWorkbench.php
+7 −7 src/Concerns/Testing.php
+1 −1 src/Concerns/WithLaravelMigrations.php
+1 −1 src/Console/Commander.php
+3 −1 src/Foundation/Application.php
+3 −0 src/Foundation/Bootstrap/CreateVendorSymlink.php
+1 −1 src/Foundation/Bootstrap/EnsuresDefaultConfiguration.php
+3 −0 src/Foundation/Bootstrap/LoadEnvironmentVariablesFromArray.php
+6 −6 src/Foundation/Bootstrap/LoadMigrationsFromArray.php
+29 −3 src/Foundation/Config.php
+1 −1 src/Foundation/PackageManifest.php
+5 −1 src/Foundation/ParallelRunner.php
+11 −12 src/TestCase.php
+7 −5 src/helpers.php
+3 −3 tests/AssertPublishedFilesTest.php
+0 −1 tests/DefaultConfigurationTest.php
+1 −1 tests/Integrations/CacheRouteTest.php
+1 −1 tests/Integrations/CommandTest.php
+1 −1 tests/Integrations/ConfigTest.php
+1 −1 tests/Integrations/InlineCacheRouteTest.php
+1 −1 tests/Integrations/RequestTest.php
+1 −1 tests/Integrations/RouteTest.php
+1 −1 tests/Integrations/WithFakerTest.php

0 comments on commit bcc9b35

Please sign in to comment.