DASPRiD / Dash

Flexible PSR-7 compliant HTTP router
BSD 2-Clause "Simplified" License
29 stars 9 forks source link

Zend Uri #55

Closed harikt closed 9 years ago

harikt commented 9 years ago

Hi @DASPRiD ,

I was looking into dash, and noticed it is making use of zf2 uri component.

Is it really needed?

If you look uri, it makes use of

    "zendframework/zend-escaper": "self.version",
    "zendframework/zend-validator": "self.version"

I have looked at some of the routing libraries like aura, symfony etc. But haven't noticed something like a uri is really needed. Is there any extra behavior I am missing to understand ?

It may be good if router can reduce the amount of components which are not really needed.

Thank you

DASPRiD commented 9 years ago

This is solved with the refactoring #54, where we solely rely on PSR-7 now which supplies an URI interface.

harikt commented 9 years ago

Closing in favor of #54.