1
0
mirror of https://github.com/ToxicCrack/PrintABrick.git synced 2025-05-16 12:20:09 -07:00

Update Symfony to 3.3

This commit is contained in:
Unknown 2017-06-02 02:58:59 +02:00
parent 9527a7d670
commit 7c747b0b9d
6 changed files with 275 additions and 705 deletions

View File

@ -31,7 +31,6 @@ framework:
engines: ['twig'] engines: ['twig']
default_locale: "%locale%" default_locale: "%locale%"
trusted_hosts: ~ trusted_hosts: ~
trusted_proxies: ~
session: session:
# http://symfony.com/doc/current/reference/configuration/framework.html#handler-id # http://symfony.com/doc/current/reference/configuration/framework.html#handler-id
handler_id: session.handler.native_file handler_id: session.handler.native_file

View File

@ -17,10 +17,10 @@ monolog:
type: stream type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log" path: "%kernel.logs_dir%/%kernel.environment%.log"
level: debug level: debug
channels: [!event, !loader] channels: ["!event", "!loader"]
console: console:
type: console type: console
channels: [!event, !doctrine] channels: ["!event", "!doctrine"]
# uncomment to get logging in your browser # uncomment to get logging in your browser
# you may have to allow bigger header sizes in your Web server configuration # you may have to allow bigger header sizes in your Web server configuration
#firephp: #firephp:

View File

@ -12,7 +12,7 @@
}, },
"require": { "require": {
"php": "^7.0", "php": "^7.0",
"symfony/symfony": "3.2.*", "symfony/symfony": "3.3.*",
"doctrine/orm": "^2.5", "doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.6", "doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-cache-bundle": "^1.2", "doctrine/doctrine-cache-bundle": "^1.2",
@ -31,7 +31,7 @@
}, },
"require-dev": { "require-dev": {
"sensio/generator-bundle": "^3.0", "sensio/generator-bundle": "^3.0",
"symfony/phpunit-bridge": "3.3.*@dev", "symfony/phpunit-bridge": "3.3.*",
"phpunit/phpunit": "^6.1", "phpunit/phpunit": "^6.1",
"friendsofphp/php-cs-fixer": "^2.0", "friendsofphp/php-cs-fixer": "^2.0",
"liip/functional-test-bundle": "^1.7", "liip/functional-test-bundle": "^1.7",

967
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -7,7 +7,7 @@ $loader = require __DIR__.'/../app/autoload.php';
include_once __DIR__.'/../var/bootstrap.php.cache'; include_once __DIR__.'/../var/bootstrap.php.cache';
$kernel = new AppKernel('prod', false); $kernel = new AppKernel('prod', false);
$kernel->loadClassCache(); //$kernel->loadClassCache();
//$kernel = new AppCache($kernel); //$kernel = new AppCache($kernel);
// When using the HttpCache, you need to call the method in your front controller instead of relying on the configuration parameter // When using the HttpCache, you need to call the method in your front controller instead of relying on the configuration parameter

View File

@ -23,7 +23,7 @@ $loader = require __DIR__.'/../app/autoload.php';
Debug::enable(); Debug::enable();
$kernel = new AppKernel('dev', true); $kernel = new AppKernel('dev', true);
$kernel->loadClassCache(); //$kernel->loadClassCache();
$request = Request::createFromGlobals(); $request = Request::createFromGlobals();
$response = $kernel->handle($request); $response = $kernel->handle($request);
$response->send(); $response->send();