Laravel 5 – 11
PHP 7.1+
Repository is archived
No commit activity in last 2 years
No release in over 2 years
Saritasa customizations for Dingo/Api library
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

phpunit/phpunit
^8.5
squizlabs/php_codesniffer
^3.5

Runtime

 Project Readme

Dingo API customization

PHP Unit PHP CodeSniffer codecov Release PHPv Downloads

Custom settings and extensions for Dingo/Api package

See https://github.com/dingo/api

Laravel 5.x/6x

Install the saritasa/dingo-api-custom package:

$ composer require saritasa/dingo-api-custom

If you use Laravel 5.4 or less, or 5.5+ with package discovery disabled, add the BladeDirectivesServiceProvider service provider in config/app.php:

'providers' => array(
    // ...
    Saritasa\DingoApi\SaritasaDingoApiServiceProvider::class,
)

Customizations

Registers CustomArraySerializer instead of ArraySerializer:

  • Does not add 'meta' key for metadata, all metadata output to root.

Registers custom ApiExceptionHandler with specific handling of exceptions, defined in saritasa/php-common package

Changes format of JSON output for handled validation exceptions.

Contributing

  1. Create fork, checkout it
  2. Develop locally as usual. Code must follow PSR-1, PSR-2 - run PHP_CodeSniffer to ensure, that code follows style guides
  3. Cover added functionality with unit tests and run PHPUnit to make sure, that all tests pass
  4. Update README.md to describe new or changed functionality
  5. Add changes description to CHANGES.md file. Use Semantic Versioning convention to determine next version number.
  6. When ready, create pull request

Make shortcuts

If you have GNU Make installed, you can use following shortcuts:

  • make cs (instead of php vendor/bin/phpcs) - run static code analysis with PHP_CodeSniffer to check code style
  • make csfix (instead of php vendor/bin/phpcbf) - fix code style violations with PHP_CodeSniffer automatically, where possible (ex. PSR-2 code formatting violations)
  • make test (instead of php vendor/bin/phpunit) - run tests with PHPUnit
  • make install - instead of composer install
  • make all or just make without parameters - invokes described above install, cs, test tasks sequentially - project will be assembled, checked with linter and tested with one single command

Resources