Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Common & useful classes, resources, extensions. Based on Symfony framework.

# 0.6.0

1. Support Symfony `7.4.*`

# 0.5.4

1. Add the "File" translation
Expand Down Expand Up @@ -39,7 +43,7 @@ Common & useful classes, resources, extensions. Based on Symfony framework.
enumerations

| Before | After |
|-----------------------------------------------------------------------|---------------------------------------------------------|
|-----------------------------------------------------------------------|---------------------------------------------------------|
| `Meritoo\CommonBundle\Type\DependencyInjection\ConfigurationFileType` | `Meritoo\CommonBundle\Enums\Date\ConfigurationFileType` |
| `Meritoo\CommonBundle\Type\Date\DateLength` | `Meritoo\CommonBundle\Enums\Date\DateLength` |
| `Meritoo\Common\Type\OopVisibilityType` | `Meritoo\Common\Enums\OopVisibility` |
Expand Down Expand Up @@ -123,8 +127,8 @@ Common & useful classes, resources, extensions. Based on Symfony framework.

# 0.2.2

1. Allow installing of [twig/twig](https://packagist.org/packages/twig/twig) package with `2.1` version too
(`^2.1|^3.2` vs `^3.2` only)
1. Allow installing of [twig/twig](https://packagist.org/packages/twig/twig) package with `2.1` version too (`^2.1|^3.2`
vs `^3.2` only)
2. Use PHP `7.4` while running build in Travis CI

# 0.2.1
Expand Down Expand Up @@ -192,8 +196,8 @@ Common & useful classes, resources, extensions. Based on Symfony framework.
5. composer > squizlabs/php_codesniffer package > use ^3.4 (instead of ^2.9)
6. Do not require ext-intl, because is required by meritoo/common-library package
7. Update Kernel used by tests
8. BaseExtension > verify extension of services' configuration file by separate method & in the loadServices() method
(not in loadConfigurationFile() method)
8. BaseExtension > verify extension of services' configuration file by separate method & in the loadServices () method
(not in loadConfigurationFile () method)
9. BaseExtension > prepare flat configuration by separate method
10. BaseExtension > prepare loader of configuration file by separate class

Expand Down Expand Up @@ -266,7 +270,7 @@ Common & useful classes, resources, extensions. Based on Symfony framework.
# 0.1.13

1. BaseExtension > allow to define patterns of keys or paths from configuration that should match to stop loading
parameters (by make getKeysToStopLoadingParametersOn() method protected)
parameters (by make getKeysToStopLoadingParametersOn () method protected)

# 0.1.12

Expand All @@ -291,7 +295,7 @@ Common & useful classes, resources, extensions. Based on Symfony framework.

# 0.1.8

1. Service > FormService > add addFormOptions() method > adds options to the existing options that may be used while
1. Service > FormService > add addFormOptions () method > adds options to the existing options that may be used while
creating a form

# 0.1.7
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.4
0.6.0
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,24 @@
"ext-intl": "*",
"doctrine/annotations": "^2.0",
"meritoo/common-library": "^1.3",
"symfony/form": "^7.2",
"symfony/framework-bundle": "^7.2",
"symfony/twig-bundle": "^7.2",
"symfony/validator": "^7.2"
"symfony/form": "^7.4",
"symfony/framework-bundle": "^7.4",
"symfony/twig-bundle": "^7.4",
"symfony/validator": "^7.4"
},
"require-dev": {
"friends-of-phpspec/phpspec-code-coverage": "^6.1",
"friendsofphp/php-cs-fixer": "^3.8",
"infection/infection": "^0.27.11",
"infection/infection": "^0.29.0",
"php-coveralls/php-coveralls": "^2.5",
"phpspec/phpspec": "^7.2",
"phpspec/phpspec": "^7.4",
"phpstan/phpstan": "^1.6",
"phpunit/phpunit": "^9.5",
"sebastian/phpcpd": "^6.0",
"squizlabs/php_codesniffer": "^3.6",
"symfony/phpunit-bridge": "^7.2",
"symfony/translation": "^7.2",
"vimeo/psalm": "^5.26"
"symfony/phpunit-bridge": "^7.4",
"symfony/translation": "^7.4",
"vimeo/psalm": "^6.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading