Skip to content

Commit edfb8c7

Browse files
authored
Merge pull request #297 from pfz/sylius-1.7
Update to sylius 1.7
2 parents d7c6ddd + d01c60f commit edfb8c7

File tree

6 files changed

+33
-21
lines changed

6 files changed

+33
-21
lines changed

.travis.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,16 @@ matrix:
3333
php: 7.3
3434
env:
3535
- DEPENDENCY_VERSIONS="sylius/sylius:1.6.*"
36-
36+
# Sylius 1.7
37+
-
38+
php: 7.3
39+
env:
40+
- DEPENDENCY_VERSIONS="sylius/sylius:1.7.*"
41+
-
42+
php: 7.4
43+
env:
44+
- DEPENDENCY_VERSIONS="sylius/sylius:1.7.*"
45+
3746
cache:
3847
yarn: true
3948
directories:

composer.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
"description": "CMS plugin for Sylius applications.",
1010
"license": "MIT",
1111
"require": {
12-
"php": "^7.2",
12+
"php": "^7.3",
1313
"league/csv": "^9.1",
1414
"friendsofsymfony/ckeditor-bundle": "^1.1|^2.0",
1515
"stefandoorn/sitemap-plugin": "^1.0",
16-
"sylius/sylius": "^1.4"
16+
"sylius/sylius": "^1.7"
1717
},
1818
"require-dev": {
19-
"behat/behat": "^3.4",
20-
"behat/mink": "^1.7@dev",
19+
"behat/behat": "^3.6",
20+
"behat/mink": "^1.7",
2121
"behat/mink-browserkit-driver": "^1.3",
2222
"behat/mink-extension": "^2.2",
2323
"behat/mink-selenium2-driver": "^1.3",
@@ -28,20 +28,20 @@
2828
"lakion/mink-debug-extension": "^1.2.3",
2929
"lchrusciel/api-test-case": "^3.0",
3030
"matthiasnoback/symfony-config-test": "^3.0",
31-
"phpspec/phpspec": "^5.0",
31+
"phpspec/phpspec": "^6.0",
3232
"phpstan/phpstan-doctrine": "^0.10",
3333
"phpstan/phpstan-shim": "^0.10",
3434
"phpstan/phpstan-symfony": "^0.10",
3535
"phpstan/phpstan-webmozart-assert": "^0.10",
3636
"phpunit/phpunit": "^6.5",
3737
"sensiolabs/security-checker": "^5.0",
38-
"sylius-labs/coding-standard": "^2.0",
39-
"symfony/browser-kit": "^3.4|^4.1",
40-
"symfony/debug-bundle": "^3.4|^4.1",
41-
"symfony/dotenv": "^4.2",
42-
"symfony/intl": "^3.4|^4.1",
43-
"symfony/web-profiler-bundle": "^3.4|^4.1",
44-
"symfony/web-server-bundle": "^3.4|^4.1"
38+
"sylius-labs/coding-standard": "^3.0",
39+
"symfony/browser-kit": "^4.4",
40+
"symfony/debug-bundle": "^4.4",
41+
"symfony/dotenv": "^4.4",
42+
"symfony/intl": "^4.4",
43+
"symfony/web-profiler-bundle": "^4.4",
44+
"symfony/web-server-bundle": "^4.4"
4545
},
4646
"conflict": {
4747
"symfony/symfony": "4.1.8",

tests/Application/config/bundles.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@
3131
Sylius\Bundle\ResourceBundle\SyliusResourceBundle::class => ['all' => true],
3232
Sylius\Bundle\GridBundle\SyliusGridBundle::class => ['all' => true],
3333
winzou\Bundle\StateMachineBundle\winzouStateMachineBundle::class => ['all' => true],
34-
Sonata\CoreBundle\SonataCoreBundle::class => ['all' => true],
3534
Sonata\BlockBundle\SonataBlockBundle::class => ['all' => true],
36-
Sonata\IntlBundle\SonataIntlBundle::class => ['all' => true],
3735
Bazinga\Bundle\HateoasBundle\BazingaHateoasBundle::class => ['all' => true],
3836
JMS\SerializerBundle\JMSSerializerBundle::class => ['all' => true],
3937
FOS\RestBundle\FOSRestBundle::class => ['all' => true],
@@ -44,7 +42,6 @@
4442
Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle::class => ['all' => true],
4543
WhiteOctober\PagerfantaBundle\WhiteOctoberPagerfantaBundle::class => ['all' => true],
4644
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
47-
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['all' => true],
4845
Sylius\Bundle\FixturesBundle\SyliusFixturesBundle::class => ['all' => true],
4946
Sylius\Bundle\PayumBundle\SyliusPayumBundle::class => ['all' => true],
5047
Sylius\Bundle\ThemeBundle\SyliusThemeBundle::class => ['all' => true],

tests/Application/config/packages/sonata_core.yaml

Lines changed: 0 additions & 4 deletions
This file was deleted.

tests/Application/config/packages/twig.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,11 @@ twig:
44
strict_variables: '%kernel.debug%'
55
form_themes:
66
- '@FOSCKEditor/Form/ckeditor_widget.html.twig'
7+
8+
services:
9+
_defaults:
10+
public: false
11+
autowire: true
12+
autoconfigure: true
13+
14+
Twig\Extra\Intl\IntlExtension: ~

tests/Application/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
"dependencies": {
33
"babel-polyfill": "^6.26.0",
4+
"chart.js": "^2.9.3",
45
"jquery": "^3.2.0",
56
"lightbox2": "^2.9.0",
6-
"semantic-ui-css": "^2.2.0"
7+
"semantic-ui-css": "^2.2.0",
8+
"slick-carousel": "^1.8.1"
79
},
810
"devDependencies": {
911
"babel-core": "^6.26.3",

0 commit comments

Comments
 (0)