├── .gitignore ├── .styleci.yml ├── LICENSE ├── README.md ├── composer.json └── src ├── Builder.php ├── Collection.php ├── Concerns ├── GuardsAttributes.php ├── HasAttributes.php ├── HasEvents.php ├── HasGlobalScopes.php ├── HasRelationships.php ├── HasTimestamps.php ├── HidesAttributes.php └── QueriesRelationships.php ├── Factory.php ├── FactoryBuilder.php ├── FirequentServiceProvider.php ├── Firestore ├── Builder.php ├── ConnectionResolver.php └── FirestoreConnection.php ├── HigherOrderBuilderProxy.php ├── JsonEncodingException.php ├── MassAssignmentException.php ├── Model.php ├── ModelNotFoundException.php ├── QueueEntityResolver.php ├── RelationNotFoundException.php ├── Relations ├── BelongsTo.php ├── BelongsToMany.php ├── Concerns │ ├── AsPivot.php │ ├── InteractsWithPivotTable.php │ └── SupportsDefaultModels.php ├── HasMany.php ├── HasManyThrough.php ├── HasOne.php ├── HasOneOrMany.php ├── HasOneThrough.php ├── MorphMany.php ├── MorphOne.php ├── MorphOneOrMany.php ├── MorphPivot.php ├── MorphTo.php ├── MorphToMany.php ├── Pivot.php └── Relation.php ├── Scope.php ├── SoftDeletes.php └── SoftDeletingScope.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/.styleci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/composer.json -------------------------------------------------------------------------------- /src/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Builder.php -------------------------------------------------------------------------------- /src/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Collection.php -------------------------------------------------------------------------------- /src/Concerns/GuardsAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Concerns/GuardsAttributes.php -------------------------------------------------------------------------------- /src/Concerns/HasAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Concerns/HasAttributes.php -------------------------------------------------------------------------------- /src/Concerns/HasEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Concerns/HasEvents.php -------------------------------------------------------------------------------- /src/Concerns/HasGlobalScopes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Concerns/HasGlobalScopes.php -------------------------------------------------------------------------------- /src/Concerns/HasRelationships.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Concerns/HasRelationships.php -------------------------------------------------------------------------------- /src/Concerns/HasTimestamps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Concerns/HasTimestamps.php -------------------------------------------------------------------------------- /src/Concerns/HidesAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Concerns/HidesAttributes.php -------------------------------------------------------------------------------- /src/Concerns/QueriesRelationships.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Concerns/QueriesRelationships.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/FactoryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/FactoryBuilder.php -------------------------------------------------------------------------------- /src/FirequentServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/FirequentServiceProvider.php -------------------------------------------------------------------------------- /src/Firestore/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Firestore/Builder.php -------------------------------------------------------------------------------- /src/Firestore/ConnectionResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Firestore/ConnectionResolver.php -------------------------------------------------------------------------------- /src/Firestore/FirestoreConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Firestore/FirestoreConnection.php -------------------------------------------------------------------------------- /src/HigherOrderBuilderProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/HigherOrderBuilderProxy.php -------------------------------------------------------------------------------- /src/JsonEncodingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/JsonEncodingException.php -------------------------------------------------------------------------------- /src/MassAssignmentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/MassAssignmentException.php -------------------------------------------------------------------------------- /src/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Model.php -------------------------------------------------------------------------------- /src/ModelNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/ModelNotFoundException.php -------------------------------------------------------------------------------- /src/QueueEntityResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/QueueEntityResolver.php -------------------------------------------------------------------------------- /src/RelationNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/RelationNotFoundException.php -------------------------------------------------------------------------------- /src/Relations/BelongsTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Relations/BelongsTo.php -------------------------------------------------------------------------------- /src/Relations/BelongsToMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Relations/BelongsToMany.php -------------------------------------------------------------------------------- /src/Relations/Concerns/AsPivot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Relations/Concerns/AsPivot.php -------------------------------------------------------------------------------- /src/Relations/Concerns/InteractsWithPivotTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Relations/Concerns/InteractsWithPivotTable.php -------------------------------------------------------------------------------- /src/Relations/Concerns/SupportsDefaultModels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Relations/Concerns/SupportsDefaultModels.php -------------------------------------------------------------------------------- /src/Relations/HasMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Relations/HasMany.php -------------------------------------------------------------------------------- /src/Relations/HasManyThrough.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Relations/HasManyThrough.php -------------------------------------------------------------------------------- /src/Relations/HasOne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Relations/HasOne.php -------------------------------------------------------------------------------- /src/Relations/HasOneOrMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Relations/HasOneOrMany.php -------------------------------------------------------------------------------- /src/Relations/HasOneThrough.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Relations/HasOneThrough.php -------------------------------------------------------------------------------- /src/Relations/MorphMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Relations/MorphMany.php -------------------------------------------------------------------------------- /src/Relations/MorphOne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Relations/MorphOne.php -------------------------------------------------------------------------------- /src/Relations/MorphOneOrMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Relations/MorphOneOrMany.php -------------------------------------------------------------------------------- /src/Relations/MorphPivot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Relations/MorphPivot.php -------------------------------------------------------------------------------- /src/Relations/MorphTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Relations/MorphTo.php -------------------------------------------------------------------------------- /src/Relations/MorphToMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Relations/MorphToMany.php -------------------------------------------------------------------------------- /src/Relations/Pivot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Relations/Pivot.php -------------------------------------------------------------------------------- /src/Relations/Relation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Relations/Relation.php -------------------------------------------------------------------------------- /src/Scope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/Scope.php -------------------------------------------------------------------------------- /src/SoftDeletes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/SoftDeletes.php -------------------------------------------------------------------------------- /src/SoftDeletingScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firevel/firequent/HEAD/src/SoftDeletingScope.php --------------------------------------------------------------------------------