https://github.com/dingo/api
Revision d46792602a838d399dc2c84642bb1cddde1a6183 authored by Thilanga Pitigala on 23 February 2018, 23:27:41 UTC, committed by GitHub on 23 February 2018, 23:27:41 UTC
* rate limit: Limit should apply to all routes

Exceeding the rate limit should return 403 for all further requests; the route of the request should not matter.

The current behavior is such that exceeding the rate limit will only 403 that particular route.

* Updated dev master alias and blueprint version

* Fixed dingo blueprint version

* Added missing abstract method

* Added missing abstract method

* Stoped double handling exceptions

* Apply fixes from StyleCI

* Updated to add missing abstract method
1 parent ac29865
Raw File
Tip revision: d46792602a838d399dc2c84642bb1cddde1a6183 authored by Thilanga Pitigala on 23 February 2018, 23:27:41 UTC
Fix broken Travis (#1531)
Tip revision: d467926
readme.md
![](https://cloud.githubusercontent.com/assets/829059/9216039/82be51cc-40f6-11e5-88f5-f0cbd07bcc39.png)

The Dingo API package is meant to provide you, the developer, with a set of tools to help you easily and quickly build your own API. While the goal of this package is to remain as flexible as possible it still won't cover all situations and solve all problems.

[![Build Status](https://img.shields.io/travis/dingo/api/master.svg?style=flat-square)](https://travis-ci.org/dingo/api)
[![License](https://img.shields.io/packagist/l/dingo/api.svg?style=flat-square)](LICENSE)
[![Development Version](https://img.shields.io/packagist/vpre/dingo/api.svg?style=flat-square)](https://packagist.org/packages/dingo/api)
[![Monthly Installs](https://img.shields.io/packagist/dm/dingo/api.svg?style=flat-square)](https://packagist.org/packages/dingo/api)
[![StyleCI](https://styleci.io/repos/18673522/shield)](https://styleci.io/repos/18673522)

## Features

This package provides tools for the following, and more:

- Content Negotiation
- Multiple Authentication Adapters
- API Versioning
- Rate Limiting
- Response Transformers and Formatters
- Error and Exception Handling
- Internal Requests
- API Blueprint Documentation

## Documentation

Please refer to our extensive [Wiki documentation](https://github.com/dingo/api/wiki) for more information.

## Support

For answers you may not find in the Wiki, avoid posting issues. Feel free to ask for support on the dedicated [Slack](https://larachat.slack.com/messages/api/) room. Make sure to mention **@jasonlewis** so he is notified.

## License

This package is licensed under the [BSD 3-Clause license](http://opensource.org/licenses/BSD-3-Clause).
back to top