├── .editorconfig ├── .github └── workflows │ └── php.yml ├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── phpcs.xml ├── phpunit.xml.dist ├── phpunit.xml.dist.bak ├── src ├── Lodash │ ├── Auth │ │ ├── Contracts │ │ │ ├── AuthServiceContract.php │ │ │ ├── ClientRepositoryContract.php │ │ │ ├── RefreshTokenBridgeRepositoryContract.php │ │ │ ├── RefreshTokenRepositoryContract.php │ │ │ ├── TokenRepositoryContract.php │ │ │ ├── UserContract.php │ │ │ └── UserRepositoryContract.php │ │ ├── Events │ │ │ ├── StartEmulateEvent.php │ │ │ └── StopEmulateEvent.php │ │ ├── InternalUserProvider.php │ │ ├── Passport │ │ │ ├── Grants │ │ │ │ ├── EmulateUserGrant.php │ │ │ │ ├── GoogleAccessTokenGrant.php │ │ │ │ ├── GoogleIdTokenGrant.php │ │ │ │ ├── Grant.php │ │ │ │ ├── InternalGrant.php │ │ │ │ └── InternalRefreshTokenGrant.php │ │ │ ├── Guards │ │ │ │ ├── RequestGuard.php │ │ │ │ └── TokenGuard.php │ │ │ └── PassportServiceProvider.php │ │ ├── Repositories │ │ │ ├── ClientRepository.php │ │ │ ├── RefreshTokenBridgeRepository.php │ │ │ ├── RefreshTokenRepository.php │ │ │ ├── TokenRepository.php │ │ │ └── UserRepository.php │ │ └── Services │ │ │ └── AuthService.php │ ├── Cache │ │ ├── CacheManager.php │ │ ├── CacheServiceProvider.php │ │ └── RedisStore.php │ ├── Commands │ │ ├── ClearAll.php │ │ ├── Compile.php │ │ ├── DbClear.php │ │ ├── DbDump.php │ │ ├── DbRestore.php │ │ ├── LogClear.php │ │ ├── UserAdd.php │ │ └── UserPassword.php │ ├── Composer │ │ ├── ComposerChecker.php │ │ └── ComposerScripts.php │ ├── Debug │ │ └── DebugServiceProvider.php │ ├── Elasticsearch │ │ ├── ElasticsearchException.php │ │ ├── ElasticsearchManager.php │ │ ├── ElasticsearchManagerContract.php │ │ ├── ElasticsearchQueryContract.php │ │ └── ElasticsearchServiceProvider.php │ ├── Eloquent │ │ ├── Casts │ │ │ └── BinaryUuid.php │ │ ├── ManyToManyPreload.php │ │ ├── UserIdentities.php │ │ ├── UsesUuidAsPrimary.php │ │ └── UuidAsPrimaryContract.php │ ├── Foundation │ │ └── Application.php │ ├── Http │ │ ├── Request.php │ │ ├── Requests │ │ │ └── RestrictsExtraAttributes.php │ │ └── Resources │ │ │ ├── ArrayResource.php │ │ │ ├── ErrorResource.php │ │ │ ├── JsonResource.php │ │ │ ├── JsonResourceCollection.php │ │ │ ├── Response │ │ │ ├── PaginatedResourceResponse.php │ │ │ └── ResourceResponse.php │ │ │ ├── SuccessResource.php │ │ │ ├── TransformableArrayResource.php │ │ │ ├── TransformableContract.php │ │ │ └── TransformsData.php │ ├── Log │ │ └── DateTimeFormatter.php │ ├── Middlewares │ │ ├── ApiLocale.php │ │ ├── SetRequestContext.php │ │ ├── SimpleBasicAuth.php │ │ └── XssSecurity.php │ ├── Queue │ │ ├── QueueServiceProvider.php │ │ └── SqsFifo │ │ │ ├── Connectors │ │ │ └── SqsFifoConnector.php │ │ │ └── SqsFifoQueue.php │ ├── Redis │ │ ├── Connections │ │ │ └── PhpRedisArrayConnection.php │ │ ├── Connectors │ │ │ └── PhpRedisConnector.php │ │ ├── RedisManager.php │ │ └── RedisServiceProvider.php │ ├── ServiceProvider.php │ ├── Support │ │ ├── Arr.php │ │ ├── Declensions.php │ │ ├── Str.php │ │ └── Uuid.php │ ├── Testing │ │ ├── Attributes.php │ │ ├── DataStructuresProvider.php │ │ ├── FakeDataProvider.php │ │ └── Response.php │ └── Validation │ │ ├── StrictTypeValidator.php │ │ └── Validator.php ├── config │ └── config.php └── helpers.php └── tests ├── Bootstrap.php └── Unit ├── Eloquent └── UsesUuidAsPrimaryTest.php ├── Http ├── Requests │ ├── CustomRequest.php │ └── RestrictsExtraAttributesTest.php └── Resources │ ├── ArrayResourceTest.php │ ├── ErrorResourceTest.php │ ├── JsonResourceCollectionTest.php │ ├── User.php │ ├── UserResource.php │ └── UserResourceWithHidden.php ├── Middleware └── SimpleBasicAuthTest.php ├── RedisTest.php ├── ServiceProviderTest.php ├── Support ├── DeclensionsTest.php └── StrTest.php ├── TestCase.php └── Testing ├── AttributesTest.php ├── DataStructuresBuilderTest.php └── ItemStructuresProvider.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/composer.lock -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/phpunit.xml.dist.bak -------------------------------------------------------------------------------- /src/Lodash/Auth/Contracts/AuthServiceContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Contracts/AuthServiceContract.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Contracts/ClientRepositoryContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Contracts/ClientRepositoryContract.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Contracts/RefreshTokenBridgeRepositoryContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Contracts/RefreshTokenBridgeRepositoryContract.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Contracts/RefreshTokenRepositoryContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Contracts/RefreshTokenRepositoryContract.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Contracts/TokenRepositoryContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Contracts/TokenRepositoryContract.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Contracts/UserContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Contracts/UserContract.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Contracts/UserRepositoryContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Contracts/UserRepositoryContract.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Events/StartEmulateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Events/StartEmulateEvent.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Events/StopEmulateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Events/StopEmulateEvent.php -------------------------------------------------------------------------------- /src/Lodash/Auth/InternalUserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/InternalUserProvider.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Passport/Grants/EmulateUserGrant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Passport/Grants/EmulateUserGrant.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Passport/Grants/GoogleAccessTokenGrant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Passport/Grants/GoogleAccessTokenGrant.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Passport/Grants/GoogleIdTokenGrant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Passport/Grants/GoogleIdTokenGrant.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Passport/Grants/Grant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Passport/Grants/Grant.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Passport/Grants/InternalGrant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Passport/Grants/InternalGrant.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Passport/Grants/InternalRefreshTokenGrant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Passport/Grants/InternalRefreshTokenGrant.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Passport/Guards/RequestGuard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Passport/Guards/RequestGuard.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Passport/Guards/TokenGuard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Passport/Guards/TokenGuard.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Passport/PassportServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Passport/PassportServiceProvider.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Repositories/ClientRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Repositories/ClientRepository.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Repositories/RefreshTokenBridgeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Repositories/RefreshTokenBridgeRepository.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Repositories/RefreshTokenRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Repositories/RefreshTokenRepository.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Repositories/TokenRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Repositories/TokenRepository.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Repositories/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Repositories/UserRepository.php -------------------------------------------------------------------------------- /src/Lodash/Auth/Services/AuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Auth/Services/AuthService.php -------------------------------------------------------------------------------- /src/Lodash/Cache/CacheManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Cache/CacheManager.php -------------------------------------------------------------------------------- /src/Lodash/Cache/CacheServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Cache/CacheServiceProvider.php -------------------------------------------------------------------------------- /src/Lodash/Cache/RedisStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Cache/RedisStore.php -------------------------------------------------------------------------------- /src/Lodash/Commands/ClearAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Commands/ClearAll.php -------------------------------------------------------------------------------- /src/Lodash/Commands/Compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Commands/Compile.php -------------------------------------------------------------------------------- /src/Lodash/Commands/DbClear.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Commands/DbClear.php -------------------------------------------------------------------------------- /src/Lodash/Commands/DbDump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Commands/DbDump.php -------------------------------------------------------------------------------- /src/Lodash/Commands/DbRestore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Commands/DbRestore.php -------------------------------------------------------------------------------- /src/Lodash/Commands/LogClear.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Commands/LogClear.php -------------------------------------------------------------------------------- /src/Lodash/Commands/UserAdd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Commands/UserAdd.php -------------------------------------------------------------------------------- /src/Lodash/Commands/UserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Commands/UserPassword.php -------------------------------------------------------------------------------- /src/Lodash/Composer/ComposerChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Composer/ComposerChecker.php -------------------------------------------------------------------------------- /src/Lodash/Composer/ComposerScripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Composer/ComposerScripts.php -------------------------------------------------------------------------------- /src/Lodash/Debug/DebugServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Debug/DebugServiceProvider.php -------------------------------------------------------------------------------- /src/Lodash/Elasticsearch/ElasticsearchException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Elasticsearch/ElasticsearchException.php -------------------------------------------------------------------------------- /src/Lodash/Elasticsearch/ElasticsearchManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Elasticsearch/ElasticsearchManager.php -------------------------------------------------------------------------------- /src/Lodash/Elasticsearch/ElasticsearchManagerContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Elasticsearch/ElasticsearchManagerContract.php -------------------------------------------------------------------------------- /src/Lodash/Elasticsearch/ElasticsearchQueryContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Elasticsearch/ElasticsearchQueryContract.php -------------------------------------------------------------------------------- /src/Lodash/Elasticsearch/ElasticsearchServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Elasticsearch/ElasticsearchServiceProvider.php -------------------------------------------------------------------------------- /src/Lodash/Eloquent/Casts/BinaryUuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Eloquent/Casts/BinaryUuid.php -------------------------------------------------------------------------------- /src/Lodash/Eloquent/ManyToManyPreload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Eloquent/ManyToManyPreload.php -------------------------------------------------------------------------------- /src/Lodash/Eloquent/UserIdentities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Eloquent/UserIdentities.php -------------------------------------------------------------------------------- /src/Lodash/Eloquent/UsesUuidAsPrimary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Eloquent/UsesUuidAsPrimary.php -------------------------------------------------------------------------------- /src/Lodash/Eloquent/UuidAsPrimaryContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Eloquent/UuidAsPrimaryContract.php -------------------------------------------------------------------------------- /src/Lodash/Foundation/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Foundation/Application.php -------------------------------------------------------------------------------- /src/Lodash/Http/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Http/Request.php -------------------------------------------------------------------------------- /src/Lodash/Http/Requests/RestrictsExtraAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Http/Requests/RestrictsExtraAttributes.php -------------------------------------------------------------------------------- /src/Lodash/Http/Resources/ArrayResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Http/Resources/ArrayResource.php -------------------------------------------------------------------------------- /src/Lodash/Http/Resources/ErrorResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Http/Resources/ErrorResource.php -------------------------------------------------------------------------------- /src/Lodash/Http/Resources/JsonResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Http/Resources/JsonResource.php -------------------------------------------------------------------------------- /src/Lodash/Http/Resources/JsonResourceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Http/Resources/JsonResourceCollection.php -------------------------------------------------------------------------------- /src/Lodash/Http/Resources/Response/PaginatedResourceResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Http/Resources/Response/PaginatedResourceResponse.php -------------------------------------------------------------------------------- /src/Lodash/Http/Resources/Response/ResourceResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Http/Resources/Response/ResourceResponse.php -------------------------------------------------------------------------------- /src/Lodash/Http/Resources/SuccessResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Http/Resources/SuccessResource.php -------------------------------------------------------------------------------- /src/Lodash/Http/Resources/TransformableArrayResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Http/Resources/TransformableArrayResource.php -------------------------------------------------------------------------------- /src/Lodash/Http/Resources/TransformableContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Http/Resources/TransformableContract.php -------------------------------------------------------------------------------- /src/Lodash/Http/Resources/TransformsData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Http/Resources/TransformsData.php -------------------------------------------------------------------------------- /src/Lodash/Log/DateTimeFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Log/DateTimeFormatter.php -------------------------------------------------------------------------------- /src/Lodash/Middlewares/ApiLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Middlewares/ApiLocale.php -------------------------------------------------------------------------------- /src/Lodash/Middlewares/SetRequestContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Middlewares/SetRequestContext.php -------------------------------------------------------------------------------- /src/Lodash/Middlewares/SimpleBasicAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Middlewares/SimpleBasicAuth.php -------------------------------------------------------------------------------- /src/Lodash/Middlewares/XssSecurity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Middlewares/XssSecurity.php -------------------------------------------------------------------------------- /src/Lodash/Queue/QueueServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Queue/QueueServiceProvider.php -------------------------------------------------------------------------------- /src/Lodash/Queue/SqsFifo/Connectors/SqsFifoConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Queue/SqsFifo/Connectors/SqsFifoConnector.php -------------------------------------------------------------------------------- /src/Lodash/Queue/SqsFifo/SqsFifoQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Queue/SqsFifo/SqsFifoQueue.php -------------------------------------------------------------------------------- /src/Lodash/Redis/Connections/PhpRedisArrayConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Redis/Connections/PhpRedisArrayConnection.php -------------------------------------------------------------------------------- /src/Lodash/Redis/Connectors/PhpRedisConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Redis/Connectors/PhpRedisConnector.php -------------------------------------------------------------------------------- /src/Lodash/Redis/RedisManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Redis/RedisManager.php -------------------------------------------------------------------------------- /src/Lodash/Redis/RedisServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Redis/RedisServiceProvider.php -------------------------------------------------------------------------------- /src/Lodash/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/ServiceProvider.php -------------------------------------------------------------------------------- /src/Lodash/Support/Arr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Support/Arr.php -------------------------------------------------------------------------------- /src/Lodash/Support/Declensions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Support/Declensions.php -------------------------------------------------------------------------------- /src/Lodash/Support/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Support/Str.php -------------------------------------------------------------------------------- /src/Lodash/Support/Uuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Support/Uuid.php -------------------------------------------------------------------------------- /src/Lodash/Testing/Attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Testing/Attributes.php -------------------------------------------------------------------------------- /src/Lodash/Testing/DataStructuresProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Testing/DataStructuresProvider.php -------------------------------------------------------------------------------- /src/Lodash/Testing/FakeDataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Testing/FakeDataProvider.php -------------------------------------------------------------------------------- /src/Lodash/Testing/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Testing/Response.php -------------------------------------------------------------------------------- /src/Lodash/Validation/StrictTypeValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Validation/StrictTypeValidator.php -------------------------------------------------------------------------------- /src/Lodash/Validation/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/Lodash/Validation/Validator.php -------------------------------------------------------------------------------- /src/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/config/config.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/src/helpers.php -------------------------------------------------------------------------------- /tests/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Bootstrap.php -------------------------------------------------------------------------------- /tests/Unit/Eloquent/UsesUuidAsPrimaryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Unit/Eloquent/UsesUuidAsPrimaryTest.php -------------------------------------------------------------------------------- /tests/Unit/Http/Requests/CustomRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Unit/Http/Requests/CustomRequest.php -------------------------------------------------------------------------------- /tests/Unit/Http/Requests/RestrictsExtraAttributesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Unit/Http/Requests/RestrictsExtraAttributesTest.php -------------------------------------------------------------------------------- /tests/Unit/Http/Resources/ArrayResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Unit/Http/Resources/ArrayResourceTest.php -------------------------------------------------------------------------------- /tests/Unit/Http/Resources/ErrorResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Unit/Http/Resources/ErrorResourceTest.php -------------------------------------------------------------------------------- /tests/Unit/Http/Resources/JsonResourceCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Unit/Http/Resources/JsonResourceCollectionTest.php -------------------------------------------------------------------------------- /tests/Unit/Http/Resources/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Unit/Http/Resources/User.php -------------------------------------------------------------------------------- /tests/Unit/Http/Resources/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Unit/Http/Resources/UserResource.php -------------------------------------------------------------------------------- /tests/Unit/Http/Resources/UserResourceWithHidden.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Unit/Http/Resources/UserResourceWithHidden.php -------------------------------------------------------------------------------- /tests/Unit/Middleware/SimpleBasicAuthTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Unit/Middleware/SimpleBasicAuthTest.php -------------------------------------------------------------------------------- /tests/Unit/RedisTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Unit/RedisTest.php -------------------------------------------------------------------------------- /tests/Unit/ServiceProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Unit/ServiceProviderTest.php -------------------------------------------------------------------------------- /tests/Unit/Support/DeclensionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Unit/Support/DeclensionsTest.php -------------------------------------------------------------------------------- /tests/Unit/Support/StrTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Unit/Support/StrTest.php -------------------------------------------------------------------------------- /tests/Unit/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Unit/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/Testing/AttributesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Unit/Testing/AttributesTest.php -------------------------------------------------------------------------------- /tests/Unit/Testing/DataStructuresBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Unit/Testing/DataStructuresBuilderTest.php -------------------------------------------------------------------------------- /tests/Unit/Testing/ItemStructuresProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/laravel-lodash/HEAD/tests/Unit/Testing/ItemStructuresProvider.php --------------------------------------------------------------------------------