https://github.com/dingo/api
Raw File
Tip revision: 5fbfb5d590ed4e65dcacd30b68c21c27e5066dca authored by Hunter Skrasek on 21 August 2016, 18:10:37 UTC
Revert "Aim to fix a bug which caused exception responses to be logged, and"
Tip revision: 5fbfb5d
composer.json
{
    "name": "dingo/api",
    "description": "A RESTful API package for the Laravel and Lumen frameworks.",
    "keywords": [
        "api",
        "dingo",
        "laravel",
        "restful"
    ],
    "license": "BSD-3-Clause",
    "authors": [
        {
            "name": "Jason Lewis",
            "email": "jason.lewis1991@gmail.com"
        }
    ],
    "require": {
        "php": "^5.5.9 || ^7.0",
        "dingo/blueprint": "0.2.*",
        "doctrine/annotations": "1.2.*",
        "illuminate/routing": "5.1.* || 5.2.*",
        "illuminate/support": "5.1.* || 5.2.*",
        "league/fractal": ">=0.12.0"
    },
    "require-dev": {
        "illuminate/auth": "5.1.* || 5.2.*",
        "illuminate/cache": "5.1.* || 5.2.*",
        "illuminate/console": "5.1.* || 5.2.*",
        "illuminate/database": "5.1.* || 5.2.*",
        "illuminate/events": "5.1.* || 5.2.*",
        "illuminate/filesystem": "5.1.* || 5.2.*",
        "illuminate/log": "5.1.* || 5.2.*",
        "illuminate/pagination": "5.1.* || 5.2.*",
        "laravel/lumen-framework": "5.1.* || 5.2.*",
        "lucadegasperi/oauth2-server-laravel": "5.0.*",
        "mockery/mockery": "~0.9",
        "phpunit/phpunit": "^4.8 || ^5.0",
        "squizlabs/php_codesniffer": "~2.0",
        "tymon/jwt-auth": "1.0.*"
    },
    "suggest": {
        "lucadegasperi/oauth2-server-laravel": "Protect your API with OAuth 2.0.",
        "tymon/jwt-auth": "Protect your API with JSON Web Tokens"
    },
    "autoload": {
        "psr-4": {
            "Dingo\\Api\\": "src/"
        },
        "files": [
            "src/helpers.php"
        ]
    },
    "autoload-dev": {
        "psr-4": {
            "Dingo\\Api\\Tests\\": "tests/"
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "1.0-dev"
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true
}
back to top