Results 31 comments of Adrien Brault

@ibraelillo You should be able to specify the id of your service http://jmsyst.com/bundles/JMSDiExtraBundle/master/annotations#service ``` php use JMS\DiExtraBundle\Annotation as DI; /** * @DI\Service("my_relation_provider") */ class CustomRelationProvider { } ``` ``` php...

So, multiple issues: - No bundle configuration to use another [XML Serializer](https://github.com/willdurand/hateoas#xml-serializer) - No bundle configuration to use another [JSON Serializer](https://github.com/willdurand/hateoas#json-serializer) - No bundle configuration to configure [context variables](https://github.com/willdurand/hateoas#expression-evaluatorexpression-language) -...

The issue with the current sorting is that when a graphs is modified, meteor will refresh the DOM for all the graphs. With the suggested sorting, meteor would update only...

I think you can do that with the `device_view` cookie https://github.com/suncat2000/MobileDetectBundle/blob/master/Helper/DeviceView.php#L36

Thanks for this patch. If only the maintainer was around or he gave admin rights to someone ...

It is also better to return an empty array when there is no links. I am not really sure how to address the issue, given that some links are added...

We could easily add the `name` and `attributes` as an expression variable for the route parameters (not elsewhere: embed, exclusion, name, attributes). Though I'm not sure about the feature

@bgaillard I don't like the idea of making the url generator aware of the library's Configuration objects. Here's what I suggest you do: ``` php /** * ... * *...

@giosh94mhz Yes, let's say you do that with this: ``` php /** * ... * * @Hateoas\Relation( * "curies", * attributes = { * "name" = "entity-doc", * "templated" =...

I think the current behaviour is fine. If you pass an associate array, you get an json object. If you need a json array, you can do `array_values(iterator_to_array($collection))`. For example,...