-
Notifications
You must be signed in to change notification settings - Fork 3
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
Allow Symfony 7.0 #17
Changes from all commits
db8e2e9
d6c85fc
898c84e
db387a6
4e2bcae
5279958
ef8df44
ddf2c86
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,31 +17,31 @@ | |
} | ||
], | ||
"require": { | ||
"php": "^7.3 || ^8.0", | ||
"ext-mongodb": "^1.1.5", | ||
"facile-it/mongodb-bundle": "^0.6 || ^1.0.0", | ||
"mongodb/mongodb": "^1.1.0", | ||
"php": "^7.4 || ^8.1", | ||
"ext-mongodb": "^1.6", | ||
"facile-it/mongodb-bundle": "^1.6", | ||
"mongodb/mongodb": "^1.5", | ||
"symfony/deprecation-contracts": "^2.1", | ||
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0", | ||
"symfony/messenger": "^4.4 || ^5.0 || ^6.0" | ||
"symfony/framework-bundle": "^5.0 || ^6.0 || ^7.0", | ||
"symfony/messenger": "^5.0 || ^6.0 || ^7.0" | ||
Comment on lines
+25
to
+26
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are we dropping Symfony 4.4? If we do, we should bump up to 5.4, the other 5.x minors are not LTS. |
||
}, | ||
"require-dev": { | ||
"facile-it/facile-coding-standard": "^0.4.1", | ||
"facile-it/facile-coding-standard": "^1.2.0", | ||
"facile-it/symfony-functional-testcase": "^1.0", | ||
"infection/infection": "^0.18", | ||
"jangregor/phpstan-prophecy": "^0.8.0", | ||
"infection/infection": "^0.23", | ||
"jangregor/phpstan-prophecy": "^1.0", | ||
"phpspec/prophecy-phpunit": "^2.0", | ||
"phpstan/extension-installer": "^1.0", | ||
"phpstan/phpstan": "^0.12.25", | ||
"phpstan/phpstan-phpunit": "^0.12.8", | ||
"phpunit/phpunit": "^9.5.2", | ||
"symfony/browser-kit": "^4.4 || ^5.0 || ^6.0", | ||
"phpstan/extension-installer": "^1.3", | ||
"phpstan/phpstan": "^1.10", | ||
"phpstan/phpstan-phpunit": "^1.3", | ||
"phpunit/phpunit": "^9.6.13", | ||
"symfony/browser-kit": "^5.0 || ^6.0 || ^7.0", | ||
"symfony/flex": "^1.12", | ||
"symfony/phpunit-bridge": "^5.2.4", | ||
"symfony/property-access": "^4.4 || ^5.0 || ^6.0", | ||
"symfony/property-info": "^4.4 || ^5.0 || ^6.0", | ||
"symfony/serializer": "^4.4 || ^5.0 || ^6.0", | ||
"symfony/yaml": "^4.4 || ^5.0 || ^6.0" | ||
"symfony/phpunit-bridge": "7.0", | ||
"symfony/property-access": "^5.0 || ^6.0 || ^7.0", | ||
"symfony/property-info": "^5.0 || ^6.0 || ^7.0", | ||
"symfony/serializer": "^5.0 || ^6.0 || ^7.0", | ||
"symfony/yaml": "^5.0 || ^6.0 || ^7.0" | ||
}, | ||
"minimum-stability": "stable", | ||
"autoload": { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ services: | |
depends_on: | ||
- mongo | ||
mongo: | ||
image: mongo:3.4.2 | ||
image: mongo:4.4 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are we dropping support to Mongo below 4.4? We need proper changelog details. |
||
tmpfs: | ||
- /data/db:uid=1001 | ||
environment: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM php:7.3-alpine | ||
FROM php:7.4-alpine | ||
|
||
RUN apk --no-cache add \ | ||
$PHPIZE_DEPS \ | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,13 +10,13 @@ services: | |
- [ | ||
'@Symfony\Component\Serializer\Normalizer\ArrayDenormalizer', | ||
'@Symfony\Component\Serializer\Normalizer\DateTimeNormalizer', | ||
'@Facile\MongoDbMessenger\Tests\End2End\App\SuppressDeprecationNormalizer' | ||
'@Symfony\Component\Serializer\Normalizer\ObjectNormalizer' | ||
] | ||
- ['@Symfony\Component\Serializer\Encoder\JsonEncoder'] | ||
|
||
Symfony\Component\Serializer\Normalizer\ArrayDenormalizer: ~ | ||
Symfony\Component\Serializer\Normalizer\DateTimeNormalizer: ~ | ||
Facile\MongoDbMessenger\Tests\End2End\App\SuppressDeprecationNormalizer: ~ | ||
Symfony\Component\Serializer\Normalizer\ObjectNormalizer: ~ | ||
Symfony\Component\Serializer\Encoder\JsonEncoder: ~ | ||
Comment on lines
10
to
20
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since we dropped the specific normalizer, maybe we can drop the whole service definition? Or it's just temporary to see if we can solve the deprecations? |
||
|
||
framework: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is duplicated, it may not work correctly like this.