https://github.com/dingo/api
Raw File
Tip revision: 4bde8518689f9a27b69618d42a00e2df13f0bda4 authored by Jason Lewis on 28 April 2014, 06:11:32 UTC
Refactoring auth and providing helper methods to access OAuth related details.
Tip revision: 4bde851
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.*"
    },
    "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