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 Sep 20, 2023
1 parent 33fdcc8 commit 8f9876c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bin/sync
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?php

$workingPath = getcwd();
$BRANCH = '7.x';
$BRANCH = '8.x';

require __DIR__.'/../vendor/autoload.php';

Expand All @@ -11,7 +11,7 @@ $files = new Illuminate\Filesystem\Filesystem();
echo ">>>> Checkout branch {$BRANCH}";

Illuminate\Support\Collection::make([
"git checkout $BRANCH",
"git checkout develop",
"git submodule init",
"git submodule foreach git reset --hard HEAD",
"git submodule foreach git checkout $BRANCH",
Expand Down
2 changes: 1 addition & 1 deletion core
Submodule core updated 91 files
+0 −1 .github/workflows/audits.yaml
+16 −10 .github/workflows/collision-tests.yaml
+13 −1 .github/workflows/coveralls.yaml
+14 −10 .github/workflows/parallel-tests.yaml
+67 −0 .github/workflows/strict-tests.yaml
+71 −6 .github/workflows/tests.yaml
+33 −0 .github/workflows/update-skeleton.yaml
+0 −771 CHANGELOG-6.x.md
+462 −0 CHANGELOG-8.x.md
+2 −6 README.md
+41 −5 bin/sync
+16 −19 composer.json
+1 −0 laravel/.env.example
+4 −31 laravel/config/app.php
+2 −2 laravel/config/auth.php
+1 −0 laravel/config/broadcasting.php
+1 −0 laravel/config/cache.php
+1 −1 laravel/config/database.php
+9 −0 laravel/config/logging.php
+9 −1 laravel/config/mail.php
+16 −0 laravel/config/queue.php
+0 −20 laravel/lang/en/auth.php
+0 −19 laravel/lang/en/pagination.php
+0 −22 laravel/lang/en/passwords.php
+0 −184 laravel/lang/en/validation.php
+2 −6 laravel/migrations/2014_10_12_000000_testbench_create_users_table.php
+4 −8 laravel/migrations/2014_10_12_100000_testbench_create_password_reset_tokens_table.php
+2 −6 laravel/migrations/2019_08_19_000000_testbench_create_failed_jobs_table.php
+82 −74 laravel/resources/views/welcome.blade.php
+2 −3 laravel/tests/CreatesApplication.php
+1 −0 phpstan.neon.dist
+16 −19 phpunit.xml
+3 −31 src/Bootstrap/HandleExceptions.php
+1 −2 src/Concerns/CreatesApplication.php
+12 −2 src/Concerns/InteractsWithPHPUnit.php
+0 −1 src/Concerns/Testing.php
+0 −1 src/Database/MigrateProcessor.php
+1 −18 src/Exceptions/Handler.php
+34 −9 src/Exceptions/PHPUnitErrorException.php
+2 −4 src/Factories/UserFactory.php
+4 −4 src/Foundation/Application.php
+1 −1 src/Foundation/Bootstrap/CreateVendorSymlink.php
+1 −1 src/Foundation/Bootstrap/LoadMigrationsFromArray.php
+2 −7 src/Foundation/Bootstrap/StartWorkbench.php
+15 −3 src/Foundation/Console/TestCommand.php
+16 −4 src/Foundation/Console/TestFallbackCommand.php
+24 −9 src/Foundation/PackageManifest.php
+7 −5 src/Foundation/TestbenchServiceProvider.php
+8 −6 src/Http/Kernel.php
+2 −4 src/Http/Middleware/Authenticate.php
+10 −7 src/Http/Middleware/RedirectIfAuthenticated.php
+3 −2 src/Http/Middleware/TrimStrings.php
+1 −1 src/Http/Middleware/TrustHosts.php
+56 −0 src/PHPUnit/TestCase.php
+1 −18 src/TestCase.php
+0 −26 src/Workbench/Composer.php
+0 −27 src/Workbench/Console/CreateSqliteDbCommand.php
+0 −27 src/Workbench/Console/DropSqliteDbCommand.php
+0 −235 src/Workbench/Console/InstallCommand.php
+0 −0 src/Workbench/Console/stubs/.gitkeep
+0 −2 src/Workbench/Console/stubs/testbench.yaml
+0 −27 src/Workbench/Events/WorkbenchInstallEnded.php
+0 −25 src/Workbench/Events/WorkbenchInstallStarted.php
+0 −102 src/Workbench/Http/Controllers/WorkbenchController.php
+0 −37 src/Workbench/Http/Middleware/CatchDefaultRoute.php
+0 −60 src/Workbench/WorkbenchServiceProvider.php
+24 −4 src/helpers.php
+1 −7 testbench
+4 −3 tests/ApplicationTest.php
+5 −1 tests/CacheRouteTest.php
+1 −1 tests/CommanderTest.php
+2 −1 tests/ConfigTest.php
+1 −1 tests/DiscoverPackagesTest.php
+43 −0 tests/Factories/UserFactoryTest.php
+76 −0 tests/Foundation/PackageManifestTest.php
+4 −2 tests/HelpersTest.php
+13 −1 tests/InlineCacheRouteTest.php
+1 −1 tests/Integrations/AggregateServiceProviderTest.php
+1 −1 tests/Integrations/CustomConfigurationTest.php
+4 −4 tests/Integrations/DispatchJobTest.php
+46 −0 tests/Integrations/EnvironmentVariablesTest.php
+61 −0 tests/PhpUnit10DeprecationsTest.php
+5 −19 tests/PhpUnit9DeprecationsTest.php
+12 −3 tests/RequestTest.php
+8 −21 tests/RouteTest.php
+6 −1 tests/TestCaseTest.php
+1 −3 tests/TestbenchTest.php
+0 −60 tests/Workbench/Console/CreateSqliteDbCommandTest.php
+0 −60 tests/Workbench/Console/DropSqliteDbCommandTest.php
+0 −183 tests/Workbench/Http/Controllers/WorkbenchControllerTest.php
+0 −97 tests/Workbench/Http/Middleware/CatchDefaultRouteTest.php

0 comments on commit 8f9876c

Please sign in to comment.