mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
[SF7] Add Symfony 7 support for Taxation bundle (#16403)
| Q | A |-----------------|----- | Branch? | symfony-7 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Related tickets | | License | MIT <!-- - Bug fixes must be submitted against the 1.12 or 1.13 branches - Features and deprecations must be submitted against the 1.14 branch - Features, removing deprecations and BC breaks must be submitted against the 2.0 branch - Make sure that the correct base branch is set To be sure you are not breaking any Backward Compatibilities, check the documentation: https://docs.sylius.com/en/latest/book/organization/backward-compatibility-promise.html --> After 
This commit is contained in:
commit
34febfa8cb
2 changed files with 12 additions and 3 deletions
4
src/Sylius/Bundle/TaxationBundle/.gitignore
vendored
4
src/Sylius/Bundle/TaxationBundle/.gitignore
vendored
|
|
@ -5,4 +5,8 @@ composer.phar
|
|||
composer.lock
|
||||
|
||||
test/app/cache
|
||||
test/app/db.sql
|
||||
test/app/logs
|
||||
test/var
|
||||
|
||||
/.phpunit.result.cache
|
||||
|
|
|
|||
|
|
@ -30,18 +30,20 @@
|
|||
"php": "^8.2",
|
||||
"stof/doctrine-extensions-bundle": "^1.4",
|
||||
"sylius/registry": "^1.6",
|
||||
"sylius/resource-bundle": "^1.10",
|
||||
"sylius/resource-bundle": "^1.10 || dev-symfony-7",
|
||||
"sylius/taxation": "^2.0",
|
||||
"symfony/clock": "^6.4.0 || ^7.0",
|
||||
"symfony/framework-bundle": "^6.4.1 || ^7.0"
|
||||
},
|
||||
"conflict": {
|
||||
"doctrine/orm": ">= 2.16.0",
|
||||
"doctrine/orm": ">= 3.0.0",
|
||||
"stof/doctrine-extensions-bundle": "1.8.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"doctrine/orm": "^2.13",
|
||||
"matthiasnoback/symfony-dependency-injection-test": "^4.2",
|
||||
"friendsofsymfony/rest-bundle": "^3.0",
|
||||
"jms/serializer-bundle": "^5.0",
|
||||
"matthiasnoback/symfony-dependency-injection-test": "^5.1",
|
||||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^9.5",
|
||||
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
|
||||
|
|
@ -57,6 +59,9 @@
|
|||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-main": "2.0-dev"
|
||||
},
|
||||
"symfony": {
|
||||
"require": "7.0.*"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue