GithubHelp home page GithubHelp logo

nilportugues / laravel5-hal-json Goto Github PK

View Code? Open in Web Editor NEW
15.0 2.0 8.0 51 KB

Laravel 5 HAL+JSON API Transformer Package

Home Page: http://nilportugues.com

License: MIT License

PHP 100.00%
laravel lumen laravel5 php php7 hal xml json api jsonapi transformer marshaller serializer serialization microservice microservices

laravel5-hal-json's Issues

Allow multiple files

Ditch the single file and let the extension read all files in a config directory.

This is already being done in the symfony2 bundles

routes without id don't work

lumen.ERROR: exception 'NilPortugues\Api\Mapping\MappingException' with message 'Could not find "id_properties" property with data .

but an api should have such routes ;)
I tried to test your work with the entry point of my API. "/api"

What is the undocumented way?

Load mappings from classes

Create a new loading method, as asked by many in the Laravel community, using classes.

The haljson.php file in config/ dir loads the classes in an array, this gets parsed and then cached producing the same results as now.

Good thing about this approach is that mappings can sit with code instead of sitting in the configuration side.


use Acme\Domain\Dummy\Post;

class PostModelMapping extends ApiMapping
{
     public function getClass() {
         return Post::class;
    }

     public function getAlias() {
         return "";
    }

     public function getIdProperties() {
         return ['postId'];
    }

     public function getAliasedProperties() {
         return [
           'author' => 'author',
            'title' => 'headline',
            'content' => 'body',
         ];
    }

     public function getHideProperties() {
         return [];
    }

   //etc....
}

support Laravel 5.5

Hey,

since the Service provider check for the laravel version, and till today it does not support v5.5, do you have any plan to do so?

thanks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.