-
-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Mior Muhammad Zaki <[email protected]>
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule core
updated
22 files
+1 −1 | .github/workflows/audits.yaml | |
+2 −2 | .github/workflows/collision-tests.yaml | |
+1 −1 | .github/workflows/coveralls.yaml | |
+1 −2 | .github/workflows/parallel-tests.yaml | |
+1 −1 | .github/workflows/tests.yaml | |
+11 −0 | CHANGELOG-6.x.md | |
+19 −0 | CHANGELOG-7.x.md | |
+29 −0 | src/Attributes/FeaturesCollection.php | |
+44 −0 | src/Attributes/RequiresEnv.php | |
+37 −0 | src/Attributes/WithConfig.php | |
+47 −0 | src/Attributes/WithEnv.php | |
+34 −14 | src/Concerns/CreatesApplication.php | |
+3 −2 | src/Concerns/HandlesAttributes.php | |
+16 −29 | src/Concerns/HandlesDatabases.php | |
+11 −13 | src/Concerns/HandlesRoutes.php | |
+40 −0 | src/Concerns/HandlesTestingFeature.php | |
+18 −2 | src/Console/Commander.php | |
+0 −1 | src/Foundation/Application.php | |
+25 −0 | src/Foundation/Env.php | |
+16 −0 | tests/Attributes/RequiresEnvTest.php | |
+22 −0 | tests/Attributes/WithConfigTest.php | |
+23 −0 | tests/Attributes/WithEnvTest.php |