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 5, 2023
1 parent b2106fa commit f8b262e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core
Submodule core updated 31 files
+1 −8 .github/workflows/strict-tests.yaml
+1 −19 .github/workflows/tests.yaml
+13 −0 CHANGELOG-7.x.md
+13 −0 CHANGELOG-8.x.md
+1 −0 laravel/config/mail.php
+1 −0 phpunit.xml
+5 −0 src/Concerns/HandlesDatabases.php
+145 −0 src/Concerns/InteractsWithMigrations.php
+2 −3 src/Concerns/Testing.php
+3 −79 src/Concerns/WithLaravelMigrations.php
+0 −64 src/Concerns/WithLoadMigrationsFrom.php
+32 −0 src/Foundation/Console/Actions/Action.php
+50 −0 src/Foundation/Console/Actions/DeleteDirectories.php
+52 −0 src/Foundation/Console/Actions/DeleteFiles.php
+51 −0 src/Foundation/Console/Actions/EnsureDirectoryExists.php
+58 −0 src/Foundation/Console/Actions/GeneratesFile.php
+0 −0 src/Foundation/Console/Actions/stubs/.gitkeep
+3 −0 src/Foundation/Console/Concerns/InteractsWithIO.php
+10 −12 src/Foundation/Console/CreateSqliteDbCommand.php
+5 −15 src/Foundation/Console/DropSqliteDbCommand.php
+24 −73 src/Foundation/Console/PurgeSkeletonCommand.php
+4 −2 src/Foundation/Console/TestCommand.php
+1 −2 src/TestCase.php
+5 −5 tests/CommanderTest.php
+44 −0 tests/Databases/MigrateWithLaravelMigrationsTest.php
+34 −0 tests/Foundation/Console/Actions/DeleteDirectoriesTest.php
+34 −0 tests/Foundation/Console/Actions/DeleteFilesTest.php
+37 −0 tests/Foundation/Console/Actions/EnsureDirectoryExistsTest.php
+87 −0 tests/Foundation/Console/Actions/GeneratesFileTest.php
+1 −1 tests/Foundation/Console/CreateSqliteDbCommandTest.php
+1 −1 tests/Foundation/Console/DropSqliteDbCommandTest.php

0 comments on commit f8b262e

Please sign in to comment.