Getting started
Routing and controllers
Command line
Databases (SQL)
Databases (NoSQL)
Security
Packages
Learn more
- Array helper
- Caching
- Command bus
- Date and time
- Events
- File system
- HTML helper
- Humanizer
- Image manipulation
- Internationalization
- Logging
- Number helper
- Pagination
- Sessions
- String helper
- URL builder
- UUID helper
- Validation
- Views
Official packages
Upgrading
This guide takes you through the steps needed to migrate from Mako 5.4.x
to 5.5.x
.
Framework
Response
All methods that were deprecated in 5.4 have been removed. Check out the response docs for information on how to upgrade your application.
Validation
The validation library has been rewritten from scratch to provide an easier way to validate arrays and a simpler way of adding advanced custom validation rules.
There are no breaking changes if you're just using the included validation rules. If you have implemented custom rules then you'll have to re-implement them using the new RuleInterface
. Check out the documentation for details.