Skip to content

Commit

Permalink
Fix support for Sylius subversions
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrej-kuhnel authored Sep 29, 2021
1 parent 1e34dcf commit de55fec
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
13 changes: 6 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,16 @@ jobs:
steps:
- checkout
- run: composer self-update
- run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/browser-kit:<< parameters.symfony_version >>" --no-interaction --no-update
- run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/debug-bundle:<< parameters.symfony_version >>" --no-interaction --no-update
- run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/dotenv:<< parameters.symfony_version >>" --no-interaction --no-update
- run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/intl:<< parameters.symfony_version >>" --no-interaction --no-update
- run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/web-profiler-bundle:<< parameters.symfony_version >>" --no-interaction --no-update
- run: COMPOSER_MEMORY_LIMIT=-1 composer require "sylius/sylius:<< parameters.sylius_version >>" --no-interaction --no-update
- run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/browser-kit:<< parameters.symfony_version >>.*" --no-interaction --no-update
- run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/debug-bundle:<< parameters.symfony_version >>.*" --no-interaction --no-update
- run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/dotenv:<< parameters.symfony_version >>.*" --no-interaction --no-update
- run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/intl:<< parameters.symfony_version >>.*" --no-interaction --no-update
- run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/web-profiler-bundle:<< parameters.symfony_version >>.*" --no-interaction --no-update
- run: COMPOSER_MEMORY_LIMIT=-1 composer require "sylius/sylius:<< parameters.sylius_version >>.*" --no-interaction --no-update
- run: COMPOSER_MEMORY_LIMIT=-1 composer update --no-interaction --prefer-dist
- run: (cd tests/Application && bin/console doctrine:database:create --env=test -vvv)
- run: (cd tests/Application && bin/console doctrine:schema:create --env=test -vvv)
- run: (cd tests/Application && bin/console cache:warmup --env=test -vvv)
- run: ./bin/ecs.sh
- run: ./bin/phpstan.sh
- run: ./bin/symfony-lint.sh
- run: ./bin/behat
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## v1.2.1 (2021-09-29)

#### Details

- Fix support for Sylius subversions

## v1.2.0 (2021-09-27)

#### Details
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"require": {
"php": "^7.3|^8.0",
"sylius/sylius": "1.7|1.8|1.9|1.10"
"sylius/sylius": "1.7.*|1.8.*|1.9.*|1.10.*"
},
"require-dev": {
"behat/behat": "^3.6.1",
Expand Down

0 comments on commit de55fec

Please sign in to comment.