Getting started
Routing and controllers
Command line
Databases (SQL)
Databases (NoSQL)
Security
Packages
Learn more
- Array helper
- Caching
- Collections
- 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 6.2.x
to 6.3.x
. The release does not contain any breaking changes but there are a couple of deprecations. Follow this upgrade guide to future-proof your application.
Redirects
The Redirect::multipleChoices()
, Redirect::notModified()
and Redirect::useProxy()
methods have been deprecated and will be removed in Mako 7.0
.
Uploaded files
The UploadedFile::getName()
and UploadedFile::getReportedType()
are deprecated and will be removed in Mako 7.0
. You can replace the method calls with UploadedFile::getReportedFilename()
and UploadedFile::getReportedMimeType()
.
Validation rules
The max_filesize
and mimetype
rules have been deprecated and will be removed in Mako 7.0
. They have been renamed to max_file_size
and mime_type
.