├── .github ├── FUNDING.yaml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── tests.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── bin ├── release.sh └── test.sh ├── composer.json ├── docs ├── README.md └── commands │ ├── make-action.md │ ├── make-adr-action.md │ ├── make-builder.md │ ├── make-cast.md │ ├── make-collection.md │ ├── make-command.md │ ├── make-controller.md │ ├── make-data.md │ ├── make-enum.md │ ├── make-event.md │ ├── make-job.md │ ├── make-listener.md │ ├── make-model.md │ ├── make-observer.md │ ├── make-policy.md │ ├── make-process.md │ ├── make-provider.md │ ├── make-query.md │ ├── make-request.md │ ├── make-resource.md │ ├── make-rule.md │ ├── make-scope.md │ └── publish-gate.md ├── phpstan.neon ├── phpunit.xml ├── pint.json ├── src ├── Actions │ ├── CopyAndRefactorDirectoryAction.php │ ├── CopyAndRefactorFileAction.php │ ├── CopyDirectoryAction.php │ ├── CopyFileAction.php │ ├── CreateDirectoryAction.php │ ├── CreateFileAction.php │ ├── DeletePathAction.php │ ├── MoveAndRefactorFileAction.php │ ├── MoveFileAction.php │ ├── NormalizePathAction.php │ └── RefactorFileAction.php ├── Affiliation.php ├── Commands │ ├── Abstracts │ │ ├── ApplicationCommand.php │ │ ├── BaseCommand.php │ │ ├── DomainCommand.php │ │ └── SupportCommand.php │ ├── MakeActionCommand.php │ ├── MakeAdrActionCommand.php │ ├── MakeBuilderCommand.php │ ├── MakeCastCommand.php │ ├── MakeCollectionCommand.php │ ├── MakeCommandCommand.php │ ├── MakeControllerCommand.php │ ├── MakeDataTransferObjectCommand.php │ ├── MakeEnumCommand.php │ ├── MakeEventCommand.php │ ├── MakeJobCommand.php │ ├── MakeListenerCommand.php │ ├── MakeModelCommand.php │ ├── MakeObserverCommand.php │ ├── MakePolicyCommand.php │ ├── MakeProcessCommand.php │ ├── MakeQueryCommand.php │ ├── MakeRequestCommand.php │ ├── MakeResourceCommand.php │ ├── MakeRuleCommand.php │ ├── MakeScopeCommand.php │ ├── MakeServiceProviderCommand.php │ └── PublishBeyondGateCommand.php ├── Exceptions │ ├── AlreadyExistsException.php │ ├── InvalidNameException.php │ └── RequiredPackagesAreMissingException.php ├── LaravelBeyondServiceProvider.php ├── NameResolver.php ├── Type.php └── helper.php ├── stubs ├── action.stub ├── beyond.gate.stub ├── builder.stub ├── cast.stub ├── collection.plain.stub ├── collection.stub ├── command.stub ├── controller.api.stub ├── controller.invokable.stub ├── controller.stub ├── data-transfer-object.stub ├── enum.stub ├── event.stub ├── job.stub ├── job.sync.stub ├── listener.stub ├── middleware.stub ├── model.stub ├── observer.stub ├── policy.stub ├── process.stub ├── query.stub ├── request.stub ├── resource.collection.stub ├── resource.stub ├── rule.stub ├── scope.stub └── service.provider.stub └── tests ├── BaseTest.php ├── Commands ├── MakeActionCommandTest.php ├── MakeAdrActionCommandTest.php ├── MakeBuilderCommandTest.php ├── MakeCastCommandTest.php ├── MakeCollectionCommandTest.php ├── MakeCommandCommandTest.php ├── MakeControllerCommandTest.php ├── MakeDataTransferObjectCommandTest.php ├── MakeEnumCommandTest.php ├── MakeEventCommandTest.php ├── MakeJobCommandTest.php ├── MakeListenerCommandTest.php ├── MakeModelCommandTest.php ├── MakeObserverCommandTest.php ├── MakePolicyCommandTest.php ├── MakeProcessCommandTest.php ├── MakeQueryCommandTest.php ├── MakeRequestCommandTest.php ├── MakeResourceCommandTest.php ├── MakeRuleCommandTest.php ├── MakeScopeCommandTest.php ├── MakeServiceProviderCommandTest.php └── PublishBeyondGateCommandTest.php └── TestCase.php /.github/FUNDING.yaml: -------------------------------------------------------------------------------- 1 | github: [akrillia] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/README.md -------------------------------------------------------------------------------- /bin/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/bin/release.sh -------------------------------------------------------------------------------- /bin/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/bin/test.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/composer.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/commands/make-action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-action.md -------------------------------------------------------------------------------- /docs/commands/make-adr-action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-adr-action.md -------------------------------------------------------------------------------- /docs/commands/make-builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-builder.md -------------------------------------------------------------------------------- /docs/commands/make-cast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-cast.md -------------------------------------------------------------------------------- /docs/commands/make-collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-collection.md -------------------------------------------------------------------------------- /docs/commands/make-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-command.md -------------------------------------------------------------------------------- /docs/commands/make-controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-controller.md -------------------------------------------------------------------------------- /docs/commands/make-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-data.md -------------------------------------------------------------------------------- /docs/commands/make-enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-enum.md -------------------------------------------------------------------------------- /docs/commands/make-event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-event.md -------------------------------------------------------------------------------- /docs/commands/make-job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-job.md -------------------------------------------------------------------------------- /docs/commands/make-listener.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-listener.md -------------------------------------------------------------------------------- /docs/commands/make-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-model.md -------------------------------------------------------------------------------- /docs/commands/make-observer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-observer.md -------------------------------------------------------------------------------- /docs/commands/make-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-policy.md -------------------------------------------------------------------------------- /docs/commands/make-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-process.md -------------------------------------------------------------------------------- /docs/commands/make-provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-provider.md -------------------------------------------------------------------------------- /docs/commands/make-query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-query.md -------------------------------------------------------------------------------- /docs/commands/make-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-request.md -------------------------------------------------------------------------------- /docs/commands/make-resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-resource.md -------------------------------------------------------------------------------- /docs/commands/make-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-rule.md -------------------------------------------------------------------------------- /docs/commands/make-scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/make-scope.md -------------------------------------------------------------------------------- /docs/commands/publish-gate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/docs/commands/publish-gate.md -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/phpunit.xml -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/pint.json -------------------------------------------------------------------------------- /src/Actions/CopyAndRefactorDirectoryAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Actions/CopyAndRefactorDirectoryAction.php -------------------------------------------------------------------------------- /src/Actions/CopyAndRefactorFileAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Actions/CopyAndRefactorFileAction.php -------------------------------------------------------------------------------- /src/Actions/CopyDirectoryAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Actions/CopyDirectoryAction.php -------------------------------------------------------------------------------- /src/Actions/CopyFileAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Actions/CopyFileAction.php -------------------------------------------------------------------------------- /src/Actions/CreateDirectoryAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Actions/CreateDirectoryAction.php -------------------------------------------------------------------------------- /src/Actions/CreateFileAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Actions/CreateFileAction.php -------------------------------------------------------------------------------- /src/Actions/DeletePathAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Actions/DeletePathAction.php -------------------------------------------------------------------------------- /src/Actions/MoveAndRefactorFileAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Actions/MoveAndRefactorFileAction.php -------------------------------------------------------------------------------- /src/Actions/MoveFileAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Actions/MoveFileAction.php -------------------------------------------------------------------------------- /src/Actions/NormalizePathAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Actions/NormalizePathAction.php -------------------------------------------------------------------------------- /src/Actions/RefactorFileAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Actions/RefactorFileAction.php -------------------------------------------------------------------------------- /src/Affiliation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Affiliation.php -------------------------------------------------------------------------------- /src/Commands/Abstracts/ApplicationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/Abstracts/ApplicationCommand.php -------------------------------------------------------------------------------- /src/Commands/Abstracts/BaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/Abstracts/BaseCommand.php -------------------------------------------------------------------------------- /src/Commands/Abstracts/DomainCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/Abstracts/DomainCommand.php -------------------------------------------------------------------------------- /src/Commands/Abstracts/SupportCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/Abstracts/SupportCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeActionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeActionCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeAdrActionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeAdrActionCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeBuilderCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeBuilderCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeCastCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeCastCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeCollectionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeCollectionCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeCommandCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeCommandCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeControllerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeControllerCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeDataTransferObjectCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeDataTransferObjectCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeEnumCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeEnumCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeEventCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeEventCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeJobCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeJobCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeListenerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeListenerCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeModelCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeModelCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeObserverCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeObserverCommand.php -------------------------------------------------------------------------------- /src/Commands/MakePolicyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakePolicyCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeProcessCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeProcessCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeQueryCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeQueryCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeRequestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeRequestCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeResourceCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeResourceCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeRuleCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeRuleCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeScopeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeScopeCommand.php -------------------------------------------------------------------------------- /src/Commands/MakeServiceProviderCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/MakeServiceProviderCommand.php -------------------------------------------------------------------------------- /src/Commands/PublishBeyondGateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Commands/PublishBeyondGateCommand.php -------------------------------------------------------------------------------- /src/Exceptions/AlreadyExistsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Exceptions/AlreadyExistsException.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidNameException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Exceptions/InvalidNameException.php -------------------------------------------------------------------------------- /src/Exceptions/RequiredPackagesAreMissingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Exceptions/RequiredPackagesAreMissingException.php -------------------------------------------------------------------------------- /src/LaravelBeyondServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/LaravelBeyondServiceProvider.php -------------------------------------------------------------------------------- /src/NameResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/NameResolver.php -------------------------------------------------------------------------------- /src/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/Type.php -------------------------------------------------------------------------------- /src/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/src/helper.php -------------------------------------------------------------------------------- /stubs/action.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/action.stub -------------------------------------------------------------------------------- /stubs/beyond.gate.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/beyond.gate.stub -------------------------------------------------------------------------------- /stubs/builder.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/builder.stub -------------------------------------------------------------------------------- /stubs/cast.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/cast.stub -------------------------------------------------------------------------------- /stubs/collection.plain.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/collection.plain.stub -------------------------------------------------------------------------------- /stubs/collection.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/collection.stub -------------------------------------------------------------------------------- /stubs/command.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/command.stub -------------------------------------------------------------------------------- /stubs/controller.api.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/controller.api.stub -------------------------------------------------------------------------------- /stubs/controller.invokable.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/controller.invokable.stub -------------------------------------------------------------------------------- /stubs/controller.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/controller.stub -------------------------------------------------------------------------------- /stubs/data-transfer-object.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/data-transfer-object.stub -------------------------------------------------------------------------------- /stubs/enum.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/enum.stub -------------------------------------------------------------------------------- /stubs/event.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/event.stub -------------------------------------------------------------------------------- /stubs/job.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/job.stub -------------------------------------------------------------------------------- /stubs/job.sync.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/job.sync.stub -------------------------------------------------------------------------------- /stubs/listener.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/listener.stub -------------------------------------------------------------------------------- /stubs/middleware.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/middleware.stub -------------------------------------------------------------------------------- /stubs/model.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/model.stub -------------------------------------------------------------------------------- /stubs/observer.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/observer.stub -------------------------------------------------------------------------------- /stubs/policy.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/policy.stub -------------------------------------------------------------------------------- /stubs/process.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/process.stub -------------------------------------------------------------------------------- /stubs/query.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/query.stub -------------------------------------------------------------------------------- /stubs/request.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/request.stub -------------------------------------------------------------------------------- /stubs/resource.collection.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/resource.collection.stub -------------------------------------------------------------------------------- /stubs/resource.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/resource.stub -------------------------------------------------------------------------------- /stubs/rule.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/rule.stub -------------------------------------------------------------------------------- /stubs/scope.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/scope.stub -------------------------------------------------------------------------------- /stubs/service.provider.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/stubs/service.provider.stub -------------------------------------------------------------------------------- /tests/BaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/BaseTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeActionCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeActionCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeAdrActionCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeAdrActionCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeBuilderCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeBuilderCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeCastCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeCastCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeCollectionCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeCollectionCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeCommandCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeCommandCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeControllerCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeControllerCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeDataTransferObjectCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeDataTransferObjectCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeEnumCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeEnumCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeEventCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeEventCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeJobCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeJobCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeListenerCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeListenerCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeModelCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeModelCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeObserverCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeObserverCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakePolicyCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakePolicyCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeProcessCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeProcessCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeQueryCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeQueryCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeRequestCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeRequestCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeResourceCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeResourceCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeRuleCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeRuleCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeScopeCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeScopeCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/MakeServiceProviderCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/MakeServiceProviderCommandTest.php -------------------------------------------------------------------------------- /tests/Commands/PublishBeyondGateCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/Commands/PublishBeyondGateCommandTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkrilliA/laravel-beyond/HEAD/tests/TestCase.php --------------------------------------------------------------------------------