-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed php 8.1 deprecations * removed deprecations * initial migration to CakePHP 5 * upgrade-cakephp5: updated typehints * upgrade-cakephp5: updated composer.json, updated dependencies, updated code * upgrade-cakephp5: updated gitignore * upgrade-cakephp5: reorganized composer dependencies * upgrade-cakephp5: upgraded code that depends on `cakephp/elastic-search` and `friendsofcake/crud` * updated phpunit dependency to v10 * cc, removed deprecated code * removed deprecated code, updated composer.json * cc * fixing issues reported by phpcs * fixing issues reported by phpstan * refactored rabbitmq connection * cc * fixed issues reported by phpstan * fixed tests, updated README.md, cc * dropped RabbitMQ support * dropped ElasticMappingCommand.php * cc * fixed serialization * updated README.md, updated git push workflow, fixed test * updated README.md --------- Co-authored-by: Marcelo Rocha <contato@omarcelo.com.br>
- Loading branch information
1 parent
c03812d
commit 14afbcc
Showing
53 changed files
with
1,019 additions
and
1,102 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
; This file is for unifying the coding style for different editors and IDEs. | ||
; More information at https://editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.bat] | ||
end_of_line = crlf | ||
|
||
[*.yml] | ||
indent_size = 2 | ||
|
||
[*.twig] | ||
insert_final_newline = false | ||
|
||
[*.neon] | ||
indent_style = tab | ||
|
||
[Makefile] | ||
indent_style = tab |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phive xmlns="https://phar.io/phive"> | ||
<phar name="phpstan" version="1.10.32" installed="1.10.32" location="./tools/phpstan" copy="false"/> | ||
<phar name="psalm" version="5.15.0" installed="5.15.0" location="./tools/psalm" copy="false"/> | ||
</phive> |
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
Oops, something went wrong.