PHP, Laravel, e-commerce: Vanilo framework
1–5 of 5 posts
Re: PHP, Laravel, e-commerce: Vanilo framework
#2Re: PHP, Laravel, e-commerce: Vanilo framework
#3I can't see where they handle prices of stuff correctly. As far as I can tell, they are treating prices as floats. You shouldn't treat prices as floats, or you get weird rounding errors sometimes. This is unacceptable when dealing with money.
For client projects we've been using the moneyphp library, but that also fails with rounding when it comes to VAT rates like 19% or 27%. There is a "precise" branch on their github which we have successfully merged into an existing project and solved these nasty rounding issues.
Vanilo will most probably have that included soon.
Re: PHP, Laravel, e-commerce: Vanilo framework
#4Use CLR or JVM where you can control IO services and long-running tasks much better.
Re: PHP, Laravel, e-commerce: Vanilo framework
#5PHP is terrible for e-commerce where it halts on large business transactions, and terrible money handling and its lack of typing and other ecommerce APIs. PHP lacks fine-tuned IO service control, even node-v8 lacks this. Also that facade pattern is disgusting, another reason to avoid PHP. Use CLR or JVM where you can control IO services and long-running tasks much better.