PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Unay Santisteban   On Laravel Eloquent Query Builder   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: On Laravel Eloquent Query Builder
Compose criteria queries using Laravel Eloquent
Author: By
Last change:
Date: 3 months ago
Size: 1,136 bytes
 

Contents

Class file image Download
{ "name": "complex-heart/on-laravel", "description": "Domain driven design tools for Laravel.", "type": "library", "license": "Apache-2.0", "authors": [ { "name": "Unay Santisteban", "email": "usantisteban@othercode.io" } ], "minimum-stability": "stable", "require": { "php": "^8.1.0", "complex-heart/sdk": "^1.0.0", "laravel/framework": "^10.0.0" }, "require-dev": { "pestphp/pest": "*", "pestphp/pest-plugin-faker": "^2.0", "phpstan/phpstan": "*", "mockery/mockery": "^1.6" }, "autoload": { "psr-4": { "ComplexHeart\\": "src/" } }, "autoload-dev": { "psr-4": { "ComplexHeart\\Tests\\": "tests/" } }, "scripts": { "test": "vendor/bin/pest --configuration=phpunit.xml --coverage-clover=coverage.xml --log-junit=test.xml", "test-cov": "vendor/bin/pest --configuration=phpunit.xml --coverage-html=coverage", "analyse": "vendor/bin/phpstan analyse src --no-progress --level=8", "check": [ "@analyse", "@test" ] }, "config": { "allow-plugins": { "pestphp/pest-plugin": true } } }