ahmad-sa3d/json-response-builder

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "saad/json-response-builder",
    "description": "this package semplifies sending API json response by using a standard and unique response structure",
    "type": "library",
    "license": "MIT",
    "authors": [
        {
            "name": "Ahmed Saad",
            "email": "a7mad.sa3d.2014@gmail.com"
        }
    ],

    "require": {
        "php": ">=7.2",
        "illuminate/http": "~7.0"
    },

    "require-dev": {
        "phpunit/phpunit": "^8.0",
        "orchestra/testbench": "~4.0"
    },

    "autoload": {
        "psr-4": {
            "Saad\\JsonResponseBuilder\\": "src/"
        }
    },

    "autoload-dev": {
        "psr-4": {
            "Test\\Unit\\": "tests/unit"
        }
    }
}