-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix PHP 8.1 deprecation warnings on Helper and FormHelper - fix deprecation warning when Helper::_entityPath is null - fix `strftime` function deprecation warning on FormHelper::_getDateTimeValue method ref: ARCH-11 * Switch deprecated utf8_encode function to mb_convert_encoding function ref: ARCH-13 * Hide strftime deprecation warning Since CakePHP 2 doesn't require the installation of `intl` PHP extension in it's documentation, I can't use the alternative `IntlDateFormatter::format` because it relies such extension. ref: ARCH-13 * Roll back the use of strftime ref: ARCH-11 * Fix preg_split subject param null deprecated on FormHelper::dateTime * Fix preg_split deprecated null param limit on CakeResponse::checkNotModified * fix: get rid of (some) PHP deprecation warnings - CakeResponse.php strotime() and preg_split() warnings * Ignore hide srtftime function deprecation warning from PHPCS * Fix typo on phpcs ignore comments --------- Co-authored-by: Jan Pešek <jan@sinch.cz>
- Loading branch information
1 parent
a83e9c7
commit 32459b1
Showing
6 changed files
with
35 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.PHONY: bash up down | ||
|
||
up: | ||
docker-compose up -d | ||
|
||
down: | ||
docker-compose down -v | ||
|
||
bash: | ||
docker-compose exec web bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters