Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust dependencies to allow doctrine/orm ^v3.0 #14

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
16 changes: 8 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
CHANGELOG for 1.x
===================
## v1.0.4 - (2024-01-22)

## v1.0.5 - (2024-02-06)
### Added
- Allow `doctrine/orm` ^v3.0

### Changed
- Moved `phpmetrics/phpmetrics` as suggested vendor package becasue it's not on the qualimetry calls command and also because it requires use to do a
downgrade of `nikic/php-parser` from 5.0 to 4.18 on default symfony-docker install which is needed by the `symfony/maker-bundle`

## v1.0.4 - (2024-01-22)
### Added
- `composer.json` : Allow using dama/doctrine-test-bundle version ^6.7 to reduce the need of updating doctrine/dbal

## v1.0.3 - (2024-01-22)

### Added

- `AbstractWebTestCase::loadFixtureFiles` : Add shortcut function to load fixture files

## v1.0.2 - (2024-01-08)

### Added

- `AbstractWebTestCase::assertArrayContainsValues` : Test if an array contains exactly all values of an array of values, no matter there order

## v1.0.1 - (2024-01-04)

### Fix

- Fix passing format 1G to phpstan memory-limit option
8 changes: 5 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,19 @@
],
"require": {
"php": "^8.1",
"dama/doctrine-test-bundle": "^6.7|^7.1",
"doctrine/orm": "^2.13",
"dama/doctrine-test-bundle": "^6.7|^7.1|^8.0",
"doctrine/orm": "^2.13|^3.0",
"liip/test-fixtures-bundle": "^2.4",
"phpmetrics/phpmetrics": "^2.8",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-symfony": "^1.2",
"sebastian/phpcpd": "^6.0",
"squizlabs/php_codesniffer": "^3.7",
"symfony/framework-bundle": "^5.4|^6.2",
"symfony/validator": "^5.4|^6.2"
},
"suggest": {
"phpmetrics/phpmetrics": "Build static analysis from the php in src with make metrics command. Require to have nikic/php-parser ^4.18 to run."
},
"autoload": {
"psr-4": {
"Smart\\StandardBundle\\": "src/"
Expand Down