https://github.com/dingo/api
Raw File
Tip revision: 8160dfb0acf3cbdd66bfc8cddf4cbb4288dbcfb9 authored by Jason Lewis on 19 July 2015, 04:07:42 UTC
Fix tests by adding alias.
Tip revision: 8160dfb
composer.json
{
    "name": "dingo/api",
    "description": "A RESTful API package for the Laravel and Lumen frameworks.",
    "keywords": ["restful", "api", "laravel", "dingo"],
    "license": "BSD-3-Clause",
    "authors": [
        {
            "name": "Jason Lewis",
            "email": "jason.lewis1991@gmail.com"
        }
    ],
    "require": {
        "php": ">=5.5.9",
        "illuminate/routing": "5.1.*",
        "illuminate/support": "5.1.*",
        "dingo/blueprint": "0.1.*",
        "league/fractal": "0.12.*",
        "doctrine/annotations": "1.2.*",
        "phpdocumentor/reflection-docblock": "2.0.*"
    },
    "require-dev": {
        "lucadegasperi/oauth2-server-laravel": "4.1.*",
        "tymon/jwt-auth": "0.5.*",
        "laravel/lumen-framework": "5.1.*",
        "illuminate/auth": "5.1.*",
        "illuminate/cache": "5.1.*",
        "illuminate/events": "5.1.*",
        "illuminate/database": "5.1.*",
        "illuminate/pagination": "5.1.*",
        "illuminate/console": "5.1.*",
        "illuminate/filesystem": "5.1.*",
        "phpunit/phpunit": "~4.0",
        "mockery/mockery": "~0.9",
        "squizlabs/php_codesniffer": "~2.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"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Dingo\\Api\\Tests\\": "tests"
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "0.9-dev"
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true
}
back to top