cakephp2-php8/README.md

31 lines
877 B
Markdown
Raw Normal View History

2021-02-24 22:54:42 +00:00
# Fork of CakePHP 2 with support for PHP8
2021-02-24 22:54:42 +00:00
For original README content please check original repository: https://github.com/cakephp/cakephp/tree/2.x
2021-02-24 22:54:42 +00:00
## Installation
2021-02-24 22:54:42 +00:00
This repository **is not** available in packagist, therefore your project's `composer.json` must be changed to point to custom repository.
2021-02-24 22:54:42 +00:00
Example configuration:
```
{
"require": {
"cakephp/cakephp": "dev-master as 2.10.24",
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/kamilwylegala/cakephp2-php8"
}
]
}
```
2021-02-24 22:54:42 +00:00
It means that composer will look at `master` branch of repository configured under `repositories` to resolve update of `cakephp/cakephp` package.
2021-02-24 22:54:42 +00:00
## Changelog
2021-02-24 22:54:42 +00:00
**2021-02-24**
2021-02-24 22:54:42 +00:00
- Fixed ErrorHandler accordingly to PHP8 migration guide. Otherwise, error handler is logging too much and doesn't respect configured `error_reporting`.