https://github.com/dingo/api
Raw File
Tip revision: 35585780afff9eb5466732511ad0d046a39d89f2 authored by Jason Lewis on 30 April 2014, 15:23:54 UTC
Renamed from scopes to embeds.
Tip revision: 3558578
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.*",
        "phpunit/phpunit": "~4.0",
        "mockery/mockery": "~0.9"
    },
    "suggest": {
        "dingo/oauth2-server-laravel": "Allows OAuth 2.0 authentication to protect your API.",
        "league/fractal": "Easily output complex, flexible, RESTful data structures."
    },
    "autoload": {
        "psr-4": {
            "Dingo\\Api\\": "src"
        }
    }
}
back to top