Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/experimental/sf' into fix-data…
Browse files Browse the repository at this point in the history
…collector
  • Loading branch information
nanasess committed Dec 27, 2017
2 parents 491b6f6 + d24b208 commit f9d99e7
Show file tree
Hide file tree
Showing 13 changed files with 308 additions and 213 deletions.
2 changes: 1 addition & 1 deletion app/config/eccube/bundles.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle::class => ['all' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
WhiteOctober\PagerfantaBundle\WhiteOctoberPagerfantaBundle::class => ['all' => true],
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'test' => true],
Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['dev' => true],
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
DAMA\DoctrineTestBundle\DAMADoctrineTestBundle::class => ['test' => true],
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
SunCat\MobileDetectBundle\MobileDetectBundle::class => ['all' => true],
Knp\Bundle\PaginatorBundle\KnpPaginatorBundle::class => ['all' => true],
];
6 changes: 6 additions & 0 deletions app/config/eccube/packages/framework.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ framework:
session:
handler_id: session.handler.native_file
save_path: '%kernel.project_dir%/var/sessions/%kernel.environment%'
name: '%env(ECCUBE_COOKIE_NAME)%'
cookie_path: /
cookie_secure: !php/object env(ECCUBE_FORCE_SSL)
gc_maxlifetime: '%env(ECCUBE_COOKIE_LIFETIME)%'
cookie_httponly: true

# When using the HTTP Cache, ESI allows to render page fragments separately
# and with different cache configurations for each fragment
# https://symfony.com/doc/current/book/http_cache.html#edge-side-includes
Expand Down
4 changes: 2 additions & 2 deletions app/config/eccube/services.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Put parameters here that don't need to change on each machine where the app is deployed
# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
parameters:
locale: 'en'
locale: 'ja'
# This parameter defines the codes of the locales (languages) enabled in the application
app_locales: en|fr|de|es|cs|nl|ru|uk|ro|pt_BR|pl|it|ja|id|ca|sl|hr|zh_CN
base_currency_code: 'JPY'
Expand Down Expand Up @@ -39,7 +39,7 @@ services:
resource: '../../../src/Eccube/*'
# you can exclude directories or files
# but if a service is unused, it's removed anyway
exclude: '../../../src/Eccube/{Annotation,Application,Common,ControllerProvider,DI,Entity,Exception,Log,Plugin,Routing,ServiceProvider,Util,Resource}'
exclude: '../../../src/Eccube/{Annotation,Application,Common,ControllerProvider,DI,Entity,Exception,Log,Plugin,Routing,ServiceProvider,Util,Resource,Doctrine/ORM/tools/}'

Eccube\Service\TaxRuleService:
lazy: true
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"egulias/email-validator": "^2.1",
"guzzlehttp/guzzle": "^6.2",
"hirak/prestissimo": "^0.3.7",
"knplabs/knp-paginator-bundle": "^2.7",
"mobiledetect/mobiledetectlib": "^2.8",
"nesbot/carbon": "^1.22",
"pimple/pimple": "^1.1",
Expand Down Expand Up @@ -76,8 +77,7 @@
"symfony/validator": "^3.4",
"symfony/var-dumper": "^3.4",
"symfony/web-profiler-bundle": "^3.4",
"symfony/yaml": "^3.4",
"white-october/pagerfanta-bundle": "^1.1"
"symfony/yaml": "^3.4"
},
"require-dev": {
"dama/doctrine-test-bundle": "^4.0",
Expand Down
258 changes: 136 additions & 122 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f9d99e7

Please sign in to comment.