https://github.com/dingo/api
Raw File
Tip revision: dfcb0d22b314d159cffdf76f0736f09ddd0a235a authored by Jason Lewis on 12 May 2014, 12:32:54 UTC
Minor adjustments and clarifying some tests for future reference.
Tip revision: dfcb0d2
composer.json
{
    "name": "dingo/api",
    "description": "A RESTful API package for the Laravel framework.",
    "keywords": ["restful", "api", "laravel", "dingo"],
    "license": "BSD-3-Clause",
    "authors": [
        {
            "name": "Jason Lewis",
            "email": "jason.lewis1991@gmail.com"
        }
    ],
    "require": {
        "php": ">=5.4.0",
        "illuminate/support": "4.1.*",
        "league/fractal": "~0.7"
    },
    "require-dev": {
        "dingo/oauth2-server-laravel": "0.2.*",
        "lucadegasperi/oauth2-server-laravel": "1.0.*",
        "illuminate/routing": "4.1.*",
        "illuminate/events": "4.1.*",
        "illuminate/auth": "4.1.*",
        "illuminate/database": "4.1.*",
        "illuminate/pagination": "4.1.*",
        "phpunit/phpunit": "~4.0",
        "mockery/mockery": "~0.9"
    },
    "suggest": {
        "dingo/oauth2-server-laravel": "Use the Dingo OAuth 2.0 server to protect your API.",
        "lucadegasperi/oauth2-server-laravel": "Use the League OAuth 2.0 server to protect your API."
    },
    "autoload": {
        "psr-4": {
            "Dingo\\Api\\": "src"
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "0.3-dev"
        }
    }
}
back to top