sonata-project / SonataMediaBundle

Symfony SonataMediaBundle
https://docs.sonata-project.org/projects/SonataMediaBundle
MIT License
451 stars 495 forks source link

AWS-SDK - MISSING REQUIRED CLIENT CONFIGURATION OPTIONS region and version #1114

Closed binhle410 closed 8 years ago

binhle410 commented 8 years ago

There is a related issue and the reporter reverted the aws-sdk to an older version, this shouldn't be the way to go. I believe SonataMediaBundle should update its source to fix this bug.

Environment

dev and prod

Sonata packages

SonataMediaBundle

$ composer show sonata-project/*
sonata-project/admin-bundle              2.3.10 Symfony SonataAdminBundle
sonata-project/block-bundle              2.2.15 Symfony SonataBlockBundle
sonata-project/cache                     1.0.7  Cache library
sonata-project/classification-bundle     2.2.3  Symfony SonataClassificationBundle
sonata-project/core-bundle               2.3.11 Symfony SonataCoreBundle
sonata-project/datagrid-bundle           2.2    Symfony SonataDatagridBundle
sonata-project/doctrine-extensions       1.0.2  Doctrine2 behavioral extensions
sonata-project/doctrine-orm-admin-bundle 2.3.4  Symfony Sonata / Integrate Doctrine ORM into the SonataAdminBundle
sonata-project/easy-extends-bundle       2.1.10 Symfony SonataEasyExtendsBundle
sonata-project/exporter                  1.7.0  Lightweight Exporter library
sonata-project/intl-bundle               2.2.4  Symfony SonataIntlBundle
sonata-project/media-bundle              2.3.4  Symfony SonataMediaBundle
sonata-project/notification-bundle       2.3.4  Symfony SonataNotificationBundle
sonata-project/translation-bundle        1.1.0  SonataTranslationBundle

Symfony packages

$ composer show symfony/*
symfony/assetic-bundle     v2.8.0  Integrates Assetic into Symfony2
symfony/monolog-bundle     2.11.1  Symfony MonologBundle
symfony/polyfill-apcu      v1.2.0  Symfony polyfill backporting apcu_* functions to lower PHP versions
symfony/polyfill-intl-icu  v1.2.0  Symfony polyfill for intl's ICU-related data and classes
symfony/polyfill-mbstring  v1.2.0  Symfony polyfill for the Mbstring extension
symfony/polyfill-php54     v1.2.0  Symfony polyfill backporting some PHP 5.4+ features to lower PHP versions
symfony/polyfill-php55     v1.2.0  Symfony polyfill backporting some PHP 5.5+ features to lower PHP versions
symfony/polyfill-php56     v1.2.0  Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions
symfony/polyfill-php70     v1.2.0  Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions
symfony/polyfill-util      v1.2.0  Symfony utilities for portability of PHP codes
symfony/security-acl       v2.8.0  Symfony Security Component - ACL (Access Control List)
symfony/swiftmailer-bundle v2.3.11 Symfony SwiftmailerBundle
symfony/symfony            v2.8.10 The Symfony PHP framework

PHP version

$ php -v
PHP 7.0.8 (cli) (built: Jun 21 2016 15:27:20) ( ZTS )
Copyright (c) 1997-2016 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2016 Zend Technologies
    with Xdebug v2.4.1, Copyright (c) 2002-2016, by Derick Rethans

Steps to reproduce

Just install SonataMediaBundle and update all dependencies then clear cache

Expected results

Cache cleared successfully

Actual results

Get error MISSING REQUIRED CLIENT CONFIGURATION OPTIONS exception

php.exe E:\xampp\htdocs\projects\symfony2\inspot\app\console cache:clear --env=dev

  [InvalidArgumentException]                                                          
  Missing required client configuration options ok man?:                              
  region: (string)                                                                    
    A "region" configuration value is required for the "s3" service                   
    (e.g., "us-west-2"). A list of available public regions and endpoints can be      
    found at http://docs.aws.amazon.com/general/latest/gr/rande.html.                 
  version: (string)                                                                   
    A "version" configuration value is required. Specifying a version constraint      
    ensures that your code will not be affected by a breaking change made to the      
    service. For example, when using Amazon S3, you can lock your API version to      
    "2006-03-01".                                                                     

    Your build of the SDK has the following version(s) of "s3": * "2006-03-01"        

    You may provide "latest" to the "version" configuration value to utilize the      
    most recent available API version that your client's API provider can find.       
    Note: Using 'latest' in a production application is not recommended.              

    A list of available API versions can be found on each client's API documentation  
    page: http://docs.aws.amazon.com/aws-sdk-php/v3/api/index.html. If you are        
    unable to load a specific API version, then you may need to update your copy of   
    the SDK.                                                                          

Process finished with exit code 1 at 22:03:09.
Execution time: 9,703 ms.
binhle410 commented 8 years ago

I temporarily fixed the error by adding these to lines

                    'region'           => $config['filesystem']['s3']['region'],
                    'version'           => 'latest'

to

  $container->getDefinition('sonata.media.adapter.service.s3')
                ->replaceArgument(0, array(
                    'secret' => $config['filesystem']['s3']['secretKey'],
                    'key'    => $config['filesystem']['s3']['accessKey']
                ));

in function configureFilesystemAdapter of vendor\sonata-project\media-bundle\DependencyInjection\SonataMediaExtension.php

greg0ire commented 8 years ago

Hi, sorry but as you may already know, Sonata 2 is no longer supported. Please ask us to reopen if you still experience this with Sonata 3.

binhle410 commented 8 years ago

I have upgraded to Sonata Media 3 and this still persist

sonata-project/admin-bundle              3.6.0  The missing Symfony Admin Generator
sonata-project/block-bundle              3.1.1  Symfony SonataBlockBundle
sonata-project/cache                     1.0.7  Cache library
sonata-project/classification-bundle     3.1.0  Symfony SonataClassificationBundle
sonata-project/core-bundle               3.1.1  Symfony SonataCoreBundle
sonata-project/datagrid-bundle           2.2    Symfony SonataDatagridBundle
sonata-project/doctrine-extensions       1.0.2  Doctrine2 behavioral extensions
sonata-project/doctrine-orm-admin-bundle 3.0.5  Symfony Sonata / Integrate Doctrine ORM into the SonataAdminBundle
sonata-project/easy-extends-bundle       2.1.10 Symfony SonataEasyExtendsBundle
sonata-project/exporter                  1.7.0  Lightweight Exporter library
sonata-project/intl-bundle               2.2.4  Symfony SonataIntlBundle
sonata-project/media-bundle              3.2.0  Symfony SonataMediaBundle
sonata-project/notification-bundle       3.0.0  Symfony SonataNotificationBundle
sonata-project/translation-bundle        2.0.2  SonataTranslationBundle

Process finished with exit code 0 at 22:45:16.
Execution time: 4,673 ms.
greg0ire commented 8 years ago

Missing required client configuration options ok man?:

"ok man?" ?!? This is strange… can you try app/console with the -vvv flags? app\console -vvv cache:clear Also, when pasting an error message, make sure you format it properly, with fenced code block (I edited your first post to fix that, and you should try fixing your second post the same way).

binhle410 commented 8 years ago

sorry, lol the "ok man" was just the debug text I added.

here is the app\console -vvv

> php.exe E:\xampp\htdocs\projects\symfony2\inspot\app\console -vvv
[2016-09-05 18:11:07] event.DEBUG: Notified event "console.command" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".  
[2016-09-05 18:11:07] event.DEBUG: Notified event "console.command" to listener "Symfony\Component\HttpKernel\EventListener\DumpListener::configure".  
[2016-09-05 18:11:07] event.DEBUG: Notified event "console.command" to listener "Symfony\Bridge\Monolog\Handler\ConsoleHandler::onCommand".  
[2016-09-05 18:11:07] event.DEBUG: Notified event "console.command" to listener "Symfony\Bridge\Monolog\Handler\ConsoleHandler::onCommand".  
Symfony version 2.8.10 - app/dev/debug

Usage:
  command [options] [arguments]

Options:
  -h, --help               Display this help message
  -q, --quiet              Do not output any message
  -V, --version            Display this application version
      --ansi               Force ANSI output
      --no-ansi            Disable ANSI output
  -n, --no-interaction     Do not ask any interactive question
  -s, --shell              Launch the shell.
      --process-isolation  Launch commands from shell as a separate process.
  -e, --env=ENV            The Environment name. [default: "dev"]
      --no-debug           Switches off debug mode.
  -v|vv|vvv, --verbose     Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug

Available commands:
  help                                 Displays help for a command
  list                                 Lists commands
 api
  api:doc:dump                         
  api:swagger:dump                     Dumps Swagger-compliant API definitions.
 app
  app:update                           Migrate data
 assets
  assets:install                       Installs bundles web assets under a public web directory
 cache
  cache:clear                          Clears the cache
  cache:create-cache-class             Generate the classes.php files
  cache:warmup                         Warms up an empty cache
 config
  config:debug                         Dumps the current configuration for an extension
  config:dump-reference                Dumps the default configuration for an extension
 container
  container:debug                      Displays current services for an application
 debug
  debug:config                         Dumps the current configuration for an extension
  debug:container                      Displays current services for an application
  debug:event-dispatcher               Displays configured listeners for an application
  debug:router                         Displays current routes for an application
  debug:swiftmailer                    Displays current mailers for an application
  debug:translation                    Displays translation messages information
  debug:twig                           Shows a list of twig functions, filters, globals and tests
 demo
  demo:greet                           Greet someone
 doctrine
  doctrine:cache:clear-metadata        Clears all metadata cache for an entity manager
  doctrine:cache:clear-query           Clears all query cache for an entity manager
  doctrine:cache:clear-result          Clears result cache for an entity manager
  doctrine:database:create             Creates the configured database
  doctrine:database:drop               Drops the configured database
  doctrine:database:import             Import SQL file(s) directly to Database.
  doctrine:ensure-production-settings  Verify that Doctrine is properly configured for a production environment.
  doctrine:generate:crud               Generates a CRUD based on a Doctrine entity
  doctrine:generate:entities           Generates entity classes and method stubs from your mapping information
  doctrine:generate:entity             Generates a new Doctrine entity inside a bundle
  doctrine:generate:form               Generates a form type class based on a Doctrine entity
  doctrine:mapping:convert             Convert mapping information between supported formats.
  doctrine:mapping:import              Imports mapping information from an existing database
  doctrine:mapping:info                
  doctrine:query:dql                   Executes arbitrary DQL directly from the command line.
  doctrine:query:sql                   Executes arbitrary SQL directly from the command line.
  doctrine:schema:create               Executes (or dumps) the SQL needed to generate the database schema
  doctrine:schema:drop                 Executes (or dumps) the SQL needed to drop the current database schema
  doctrine:schema:update               Executes (or dumps) the SQL needed to update the database schema to match the current mapping metadata.
  doctrine:schema:validate             Validate the mapping files.
 fos
  fos:user:activate                    Activate a user
  fos:user:change-password             Change the password of a user.
  fos:user:create                      Create a user.
  fos:user:deactivate                  Deactivate a user
  fos:user:demote                      Demote a user by removing a role
  fos:user:promote                     Promotes a user by adding a role
 gaufrette
  gaufrette:filesystem:keys            List all the file keys of a filesystem
 generate
  generate:bundle                      Generates a bundle
  generate:controller                  Generates a controller
  generate:doctrine:crud               Generates a CRUD based on a Doctrine entity
  generate:doctrine:entities           Generates entity classes and method stubs from your mapping information
  generate:doctrine:entity             Generates a new Doctrine entity inside a bundle
  generate:doctrine:form               Generates a form type class based on a Doctrine entity
 jms-job-queue
  jms-job-queue:clean-up               Cleans up jobs which exceed the maximum retention time.
  jms-job-queue:mark-incomplete        Internal command (do not use). It marks jobs as incomplete.
  jms-job-queue:run                    Runs jobs from the queue.
 lint
  lint:twig                            Lints a template and outputs encountered errors
  lint:yaml                            Lints a file and outputs encountered errors
 orm
  orm:convert:mapping                  Convert mapping information between supported formats.
 router
  router:debug                         Displays current routes for an application
  router:dump-apache                   [DEPRECATED] Dumps all routes as Apache rewrite rules
  router:match                         Helps debug routes by simulating a path info match
 security
  security:check                       Checks security issues in your project dependencies
  security:encode-password             Encodes a password.
 server
  server:run                           Runs PHP built-in web server
  server:start                         Starts PHP built-in web server in the background
  server:status                        Outputs the status of the built-in web server for the given address
  server:stop                          Stops PHP's built-in web server that was started with the server:start command
 sonata
  sonata:admin:explain                 Explain an admin service
  sonata:admin:generate                Generates an admin class based on the given model class
  sonata:admin:generate-object-acl     Install ACL for the objects of the Admin Classes.
  sonata:admin:list                    List all admin services available
  sonata:admin:setup-acl               Install ACL for Admin Classes
  sonata:block:debug                   Debug all blocks available, show default settings of each block
  sonata:classification:fix-context    Generate the default context if none defined and attach the context to all elements
  sonata:core:dump-doctrine-metadata   Get information on the current Doctrine's schema
  sonata:core:form-mapping             Get information on the current form mapping
  sonata:easy-extends:dump-mapping     Dump some mapping information (debug only)
  sonata:easy-extends:generate         Create entities used by Sonata's bundles
  sonata:media:add                     Add a media into the database
  sonata:media:add-multiple            Add medias in mass into the database
  sonata:media:clean-uploads           Find orphaned files in media upload directory
  sonata:media:fix-media-context       Generate the default category for each media context
  sonata:media:migrate-json            Migrate all media provider metadata to the doctrine JsonType
  sonata:media:refresh-metadata        Refresh meta information
  sonata:media:remove-thumbnails       Remove uploaded image thumbs
  sonata:media:sync-thumbnails         Sync uploaded image thumbs with new media formats
  sonata:media:update-cdn-status       Refresh CDN status for medias that are in status flushing
 swiftmailer
  swiftmailer:debug                    Displays current mailers for an application
  swiftmailer:email:send               Send simple email message
  swiftmailer:spool:send               Sends emails from the spool
 translation
  translation:debug                    Displays translation messages information
  translation:update                   Updates the translation file
 twig
  twig:debug                           Shows a list of twig functions, filters, globals and tests
  twig:lint                            Lints a template and outputs encountered errors
 yaml
  yaml:lint                            Lints a file and outputs encountered errors

Process finished with exit code 0 at 23:11:07.
Execution time: 3,859 ms.
greg0ire commented 8 years ago

I asked for app\console -vvv cache:clear, ok man?

binhle410 commented 8 years ago

sorry, it's midnight here and I just got it wrong. There you go

> app\console -vvv cache:clear
[2016-09-05 18:19:03] event.DEBUG: Notified event "console.command" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".  
[2016-09-05 18:19:03] event.DEBUG: Notified event "console.command" to listener "Symfony\Component\HttpKernel\EventListener\DumpListener::configure".  
[2016-09-05 18:19:03] event.DEBUG: Notified event "console.command" to listener "Symfony\Bridge\Monolog\Handler\ConsoleHandler::onCommand".  
[2016-09-05 18:19:03] event.DEBUG: Notified event "console.command" to listener "Symfony\Bridge\Monolog\Handler\ConsoleHandler::onCommand".  

 // Clearing the cache for the dev environment with debug true                                                         

 // Warming up cache...                                                                                                

[2016-09-05 18:19:08] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928,"stack":[{"function":"handleError","class":"Symfony\\Component\\Debug\\ErrorHandler","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"function":"trigger_error"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":338,"function":"parseScalar","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":63,"function":"parseSequence","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":537,"function":"parse","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":231,"function":"parseValue","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":364,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":44,"function":"loadFile","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\DelegatingLoader.php","line":45,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\AppKernel.php","line":73,"function":"load","class":"Symfony\\Component\\Config\\Loader\\DelegatingLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2771,"function":"registerContainerConfiguration","class":"AppKernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\cache\\de_\\kernel.tmp","line":29,"function":"buildContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2723,"function":"buildContainer","class":"AppKerne_","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2502,"function":"initializeContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":134,"function":"boot","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":96,"function":"warmup","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Command\\Command.php","line":259,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":863,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":192,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Console\\Application.php","line":92,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":123,"function":"doRun","class":"Symfony\\Bundle\\FrameworkBundle\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\console","line":27,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"}]} 
[2016-09-05 18:19:08] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928,"stack":[{"function":"handleError","class":"Symfony\\Component\\Debug\\ErrorHandler","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"function":"trigger_error"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":338,"function":"parseScalar","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":63,"function":"parseSequence","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":537,"function":"parse","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":231,"function":"parseValue","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":364,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":44,"function":"loadFile","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\DelegatingLoader.php","line":45,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\AppKernel.php","line":73,"function":"load","class":"Symfony\\Component\\Config\\Loader\\DelegatingLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2771,"function":"registerContainerConfiguration","class":"AppKernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\cache\\de_\\kernel.tmp","line":29,"function":"buildContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2723,"function":"buildContainer","class":"AppKerne_","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2502,"function":"initializeContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":134,"function":"boot","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":96,"function":"warmup","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Command\\Command.php","line":259,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":863,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":192,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Console\\Application.php","line":92,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":123,"function":"doRun","class":"Symfony\\Bundle\\FrameworkBundle\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\console","line":27,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"}]} 
[2016-09-05 18:19:08] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:08] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:08] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:08] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:08] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:08] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:08] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:08] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:08] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:08] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:08] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:08] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:08] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:08] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:09] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:09] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:09] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:09] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:09] php.INFO: Not quoting the scalar "@security.authentication.trust_resolver" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928,"stack":[{"function":"handleError","class":"Symfony\\Component\\Debug\\ErrorHandler","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"function":"trigger_error"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":338,"function":"parseScalar","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":63,"function":"parseSequence","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":537,"function":"parse","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":231,"function":"parseValue","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":364,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":44,"function":"loadFile","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\DelegatingLoader.php","line":45,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\AppKernel.php","line":73,"function":"load","class":"Symfony\\Component\\Config\\Loader\\DelegatingLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2771,"function":"registerContainerConfiguration","class":"AppKernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\cache\\de_\\kernel.tmp","line":29,"function":"buildContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2723,"function":"buildContainer","class":"AppKerne_","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2502,"function":"initializeContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":134,"function":"boot","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":96,"function":"warmup","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Command\\Command.php","line":259,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":863,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":192,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Console\\Application.php","line":92,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":123,"function":"doRun","class":"Symfony\\Bundle\\FrameworkBundle\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\console","line":27,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"}]} 
[2016-09-05 18:19:09] php.INFO: Not quoting the scalar "@security.role_hierarchy" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928,"stack":[{"function":"handleError","class":"Symfony\\Component\\Debug\\ErrorHandler","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"function":"trigger_error"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":338,"function":"parseScalar","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":63,"function":"parseSequence","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":537,"function":"parse","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":231,"function":"parseValue","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":364,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":44,"function":"loadFile","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\DelegatingLoader.php","line":45,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\AppKernel.php","line":73,"function":"load","class":"Symfony\\Component\\Config\\Loader\\DelegatingLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2771,"function":"registerContainerConfiguration","class":"AppKernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\cache\\de_\\kernel.tmp","line":29,"function":"buildContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2723,"function":"buildContainer","class":"AppKerne_","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2502,"function":"initializeContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":134,"function":"boot","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":96,"function":"warmup","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Command\\Command.php","line":259,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":863,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":192,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Console\\Application.php","line":92,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":123,"function":"doRun","class":"Symfony\\Bundle\\FrameworkBundle\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\console","line":27,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"}]} 
[2016-09-05 18:19:09] php.INFO: Not quoting the scalar "@security.token_storage" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928,"stack":[{"function":"handleError","class":"Symfony\\Component\\Debug\\ErrorHandler","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"function":"trigger_error"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":338,"function":"parseScalar","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":63,"function":"parseSequence","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":537,"function":"parse","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":231,"function":"parseValue","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":364,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":44,"function":"loadFile","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\DelegatingLoader.php","line":45,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\AppKernel.php","line":73,"function":"load","class":"Symfony\\Component\\Config\\Loader\\DelegatingLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2771,"function":"registerContainerConfiguration","class":"AppKernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\cache\\de_\\kernel.tmp","line":29,"function":"buildContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2723,"function":"buildContainer","class":"AppKerne_","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2502,"function":"initializeContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":134,"function":"boot","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":96,"function":"warmup","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Command\\Command.php","line":259,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":863,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":192,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Console\\Application.php","line":92,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":123,"function":"doRun","class":"Symfony\\Bundle\\FrameworkBundle\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\console","line":27,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"}]} 
[2016-09-05 18:19:09] php.INFO: Not quoting the scalar "@security.authorization_checker" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928,"stack":[{"function":"handleError","class":"Symfony\\Component\\Debug\\ErrorHandler","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"function":"trigger_error"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":338,"function":"parseScalar","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":63,"function":"parseSequence","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":537,"function":"parse","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":231,"function":"parseValue","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":364,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":44,"function":"loadFile","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\DelegatingLoader.php","line":45,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\AppKernel.php","line":73,"function":"load","class":"Symfony\\Component\\Config\\Loader\\DelegatingLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2771,"function":"registerContainerConfiguration","class":"AppKernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\cache\\de_\\kernel.tmp","line":29,"function":"buildContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2723,"function":"buildContainer","class":"AppKerne_","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2502,"function":"initializeContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":134,"function":"boot","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":96,"function":"warmup","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Command\\Command.php","line":259,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":863,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":192,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Console\\Application.php","line":92,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":123,"function":"doRun","class":"Symfony\\Bundle\\FrameworkBundle\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\console","line":27,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"}]} 
[2016-09-05 18:19:09] php.INFO: Not quoting the scalar "@sensio_framework_extra.security.expression_language.default" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928,"stack":[{"function":"handleError","class":"Symfony\\Component\\Debug\\ErrorHandler","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"function":"trigger_error"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":338,"function":"parseScalar","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":63,"function":"parseSequence","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":537,"function":"parse","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":231,"function":"parseValue","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":364,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":44,"function":"loadFile","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\DelegatingLoader.php","line":45,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\AppKernel.php","line":73,"function":"load","class":"Symfony\\Component\\Config\\Loader\\DelegatingLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2771,"function":"registerContainerConfiguration","class":"AppKernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\cache\\de_\\kernel.tmp","line":29,"function":"buildContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2723,"function":"buildContainer","class":"AppKerne_","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2502,"function":"initializeContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":134,"function":"boot","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":96,"function":"warmup","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Command\\Command.php","line":259,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":863,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":192,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Console\\Application.php","line":92,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":123,"function":"doRun","class":"Symfony\\Bundle\\FrameworkBundle\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\console","line":27,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"}]} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@annotation_reader" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928,"stack":[{"function":"handleError","class":"Symfony\\Component\\Debug\\ErrorHandler","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"function":"trigger_error"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":338,"function":"parseScalar","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":63,"function":"parseSequence","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":537,"function":"parse","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":231,"function":"parseValue","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":364,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":44,"function":"loadFile","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\DelegatingLoader.php","line":45,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\AppKernel.php","line":73,"function":"load","class":"Symfony\\Component\\Config\\Loader\\DelegatingLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2771,"function":"registerContainerConfiguration","class":"AppKernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\cache\\de_\\kernel.tmp","line":29,"function":"buildContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2723,"function":"buildContainer","class":"AppKerne_","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2502,"function":"initializeContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":134,"function":"boot","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":96,"function":"warmup","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Command\\Command.php","line":259,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":863,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":192,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Console\\Application.php","line":92,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":123,"function":"doRun","class":"Symfony\\Bundle\\FrameworkBundle\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\console","line":27,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"}]} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:10] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@logger" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@service_container " starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928,"stack":[{"function":"handleError","class":"Symfony\\Component\\Debug\\ErrorHandler","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"function":"trigger_error"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":338,"function":"parseScalar","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":325,"function":"parseSequence","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":63,"function":"parseSequence","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":537,"function":"parse","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":121,"function":"parseValue","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":364,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":44,"function":"loadFile","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\DelegatingLoader.php","line":45,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\AppKernel.php","line":73,"function":"load","class":"Symfony\\Component\\Config\\Loader\\DelegatingLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2771,"function":"registerContainerConfiguration","class":"AppKernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\cache\\de_\\kernel.tmp","line":29,"function":"buildContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2723,"function":"buildContainer","class":"AppKerne_","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2502,"function":"initializeContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":134,"function":"boot","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":96,"function":"warmup","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Command\\Command.php","line":259,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":863,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":192,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Console\\Application.php","line":92,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":123,"function":"doRun","class":"Symfony\\Bundle\\FrameworkBundle\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\console","line":27,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"}]} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@annotation_reader " starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928,"stack":[{"function":"handleError","class":"Symfony\\Component\\Debug\\ErrorHandler","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"function":"trigger_error"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":338,"function":"parseScalar","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":325,"function":"parseSequence","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":63,"function":"parseSequence","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":537,"function":"parse","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":121,"function":"parseValue","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":364,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":44,"function":"loadFile","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\FileLoader.php","line":112,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":105,"function":"import","class":"Symfony\\Component\\Config\\Loader\\FileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":54,"function":"parseImports","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Loader\\DelegatingLoader.php","line":45,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\AppKernel.php","line":73,"function":"load","class":"Symfony\\Component\\Config\\Loader\\DelegatingLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2771,"function":"registerContainerConfiguration","class":"AppKernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\cache\\de_\\kernel.tmp","line":29,"function":"buildContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2723,"function":"buildContainer","class":"AppKerne_","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2502,"function":"initializeContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":134,"function":"boot","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":96,"function":"warmup","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Command\\Command.php","line":259,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":863,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":192,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Console\\Application.php","line":92,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":123,"function":"doRun","class":"Symfony\\Bundle\\FrameworkBundle\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\console","line":27,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"}]} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@annotation_reader " starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@annotation_reader " starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@annotation_reader " starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@annotation_reader " starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:11] php.INFO: Not quoting the scalar "@annotation_reader " starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:28] php.INFO: remember_me.key is deprecated since version 2.8 and will be removed in 3.0. Use remember_me.secret instead. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\Security\\Factory\\RememberMeFactory.php","line":132,"level":28928,"stack":[{"function":"handleError","class":"Symfony\\Component\\Debug\\ErrorHandler","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\Security\\Factory\\RememberMeFactory.php","line":132,"function":"trigger_error"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Definition\\Builder\\ExprBuilder.php","line":231,"function":"Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\Security\\Factory\\{closure}","class":"Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\Security\\Factory\\RememberMeFactory","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Definition\\BaseNode.php","line":250,"function":"Symfony\\Component\\Config\\Definition\\Builder\\{closure}","class":"Symfony\\Component\\Config\\Definition\\Builder\\ExprBuilder","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Definition\\ArrayNode.php","line":307,"function":"normalize","class":"Symfony\\Component\\Config\\Definition\\BaseNode","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Definition\\BaseNode.php","line":264,"function":"normalizeValue","class":"Symfony\\Component\\Config\\Definition\\ArrayNode","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Definition\\PrototypedArrayNode.php","line":269,"function":"normalize","class":"Symfony\\Component\\Config\\Definition\\BaseNode","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Definition\\BaseNode.php","line":264,"function":"normalizeValue","class":"Symfony\\Component\\Config\\Definition\\PrototypedArrayNode","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Definition\\ArrayNode.php","line":307,"function":"normalize","class":"Symfony\\Component\\Config\\Definition\\BaseNode","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Definition\\BaseNode.php","line":264,"function":"normalizeValue","class":"Symfony\\Component\\Config\\Definition\\ArrayNode","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Definition\\Processor.php","line":33,"function":"normalize","class":"Symfony\\Component\\Config\\Definition\\BaseNode","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Config\\Definition\\Processor.php","line":50,"function":"process","class":"Symfony\\Component\\Config\\Definition\\Processor","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Extension\\Extension.php","line":99,"function":"processConfiguration","class":"Symfony\\Component\\Config\\Definition\\Processor","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\SecurityExtension.php","line":59,"function":"processConfiguration","class":"Symfony\\Component\\DependencyInjection\\Extension\\Extension","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationPass.php","line":55,"function":"load","class":"Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\SecurityExtension","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\HttpKernel\\DependencyInjection\\MergeExtensionConfigurationPass.php","line":39,"function":"process","class":"Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationPass","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Compiler\\Compiler.php","line":104,"function":"process","class":"Symfony\\Component\\HttpKernel\\DependencyInjection\\MergeExtensionConfigurationPass","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\ContainerBuilder.php","line":597,"function":"compile","class":"Symfony\\Component\\DependencyInjection\\Compiler\\Compiler","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2724,"function":"compile","class":"Symfony\\Component\\DependencyInjection\\ContainerBuilder","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2502,"function":"initializeContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":134,"function":"boot","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":96,"function":"warmup","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Command\\Command.php","line":259,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":863,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":192,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Console\\Application.php","line":92,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":123,"function":"doRun","class":"Symfony\\Bundle\\FrameworkBundle\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\console","line":27,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"}]} 
[2016-09-05 18:19:31] php.INFO: Not quoting the scalar "@security.http_utils" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928,"stack":[{"function":"handleError","class":"Symfony\\Component\\Debug\\ErrorHandler","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"function":"trigger_error"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":71,"function":"parseScalar","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":537,"function":"parse","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":121,"function":"parseValue","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":364,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":44,"function":"loadFile","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\src\\JobBundle\\DependencyInjection\\JobExtension.php","line":18,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationPass.php","line":55,"function":"load","class":"JobBundle\\DependencyInjection\\JobExtension","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\HttpKernel\\DependencyInjection\\MergeExtensionConfigurationPass.php","line":39,"function":"process","class":"Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationPass","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Compiler\\Compiler.php","line":104,"function":"process","class":"Symfony\\Component\\HttpKernel\\DependencyInjection\\MergeExtensionConfigurationPass","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\ContainerBuilder.php","line":597,"function":"compile","class":"Symfony\\Component\\DependencyInjection\\Compiler\\Compiler","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2724,"function":"compile","class":"Symfony\\Component\\DependencyInjection\\ContainerBuilder","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2502,"function":"initializeContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":134,"function":"boot","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":96,"function":"warmup","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Command\\Command.php","line":259,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":863,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":192,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Console\\Application.php","line":92,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":123,"function":"doRun","class":"Symfony\\Bundle\\FrameworkBundle\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\console","line":27,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"}]} 
[2016-09-05 18:19:31] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:31] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:31] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:31] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:31] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:31] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:31] php.INFO: Not quoting the scalar "@router" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928,"stack":[{"function":"handleError","class":"Symfony\\Component\\Debug\\ErrorHandler","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"function":"trigger_error"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":338,"function":"parseScalar","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":63,"function":"parseSequence","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":537,"function":"parse","class":"Symfony\\Component\\Yaml\\Inline","type":"::"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":231,"function":"parseValue","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":321,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Parser.php","line":223,"function":"parseBlock","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":364,"function":"parse","class":"Symfony\\Component\\Yaml\\Parser","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader.php","line":44,"function":"loadFile","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\src\\UserBundle\\DependencyInjection\\UserExtension.php","line":26,"function":"load","class":"Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationPass.php","line":55,"function":"load","class":"UserBundle\\DependencyInjection\\UserExtension","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\HttpKernel\\DependencyInjection\\MergeExtensionConfigurationPass.php","line":39,"function":"process","class":"Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationPass","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\Compiler\\Compiler.php","line":104,"function":"process","class":"Symfony\\Component\\HttpKernel\\DependencyInjection\\MergeExtensionConfigurationPass","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\DependencyInjection\\ContainerBuilder.php","line":597,"function":"compile","class":"Symfony\\Component\\DependencyInjection\\Compiler\\Compiler","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2724,"function":"compile","class":"Symfony\\Component\\DependencyInjection\\ContainerBuilder","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2502,"function":"initializeContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":134,"function":"boot","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":96,"function":"warmup","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Command\\Command.php","line":259,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":863,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":192,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Console\\Application.php","line":92,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":123,"function":"doRun","class":"Symfony\\Bundle\\FrameworkBundle\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\console","line":27,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"}]} 
[2016-09-05 18:19:31] php.INFO: Not quoting the scalar "@service_container" starting with "@" is deprecated since Symfony 2.8 and will throw a ParseException in 3.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Yaml\\Inline.php","line":259,"level":28928} 
[2016-09-05 18:19:35] php.INFO: The Sonata\MediaBundle\Provider\Pool::addDownloadSecurity method is deprecated since version 3.1 and will be removed in 4.0. {"type":16384,"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\sonata-project\\media-bundle\\Provider\\Pool.php","line":94,"level":28928,"stack":[{"function":"handleError","class":"Symfony\\Component\\Debug\\ErrorHandler","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\sonata-project\\media-bundle\\Provider\\Pool.php","line":94,"function":"trigger_error"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\cache\\de_\\ap_DevDebugProjectContainer.php","line":7720,"function":"addDownloadSecurity","class":"Sonata\\MediaBundle\\Provider\\Pool","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2221,"function":"getSonata_Media_PoolService","class":"ap_DevDebugProjectContainer","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\cache\\de_\\ap_DevDebugProjectContainer.php","line":7979,"function":"get","class":"Symfony\\Component\\DependencyInjection\\Container","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2221,"function":"getSonata_Media_Twig_ExtensionService","class":"ap_DevDebugProjectContainer","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\cache\\de_\\ap_DevDebugProjectContainer.php","line":8816,"function":"get","class":"Symfony\\Component\\DependencyInjection\\Container","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2221,"function":"getTwigService","class":"ap_DevDebugProjectContainer","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\cache\\de_\\ap_DevDebugProjectContainer.php","line":1166,"function":"get","class":"Symfony\\Component\\DependencyInjection\\Container","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2221,"function":"getCacheWarmerService","class":"ap_DevDebugProjectContainer","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2732,"function":"get","class":"Symfony\\Component\\DependencyInjection\\Container","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\bootstrap.php.cache","line":2502,"function":"initializeContainer","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":134,"function":"boot","class":"Symfony\\Component\\HttpKernel\\Kernel","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand.php","line":96,"function":"warmup","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Command\\Command.php","line":259,"function":"execute","class":"Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":863,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":192,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Bundle\\FrameworkBundle\\Console\\Application.php","line":92,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\vendor\\symfony\\symfony\\src\\Symfony\\Component\\Console\\Application.php","line":123,"function":"doRun","class":"Symfony\\Bundle\\FrameworkBundle\\Console\\Application","type":"->"},{"file":"E:\\xampp\\htdocs\\projects\\symfony2\\inspot\\app\\console","line":27,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"}]} 

  [InvalidArgumentException]                                                          
  Missing required client configuration options ok man?:                              
  region: (string)                                                                    
    A "region" configuration value is required for the "s3" service                   
    (e.g., "us-west-2"). A list of available public regions and endpoints can be      
    found at http://docs.aws.amazon.com/general/latest/gr/rande.html.                 
  version: (string)                                                                   
    A "version" configuration value is required. Specifying a version constraint      
    ensures that your code will not be affected by a breaking change made to the      
    service. For example, when using Amazon S3, you can lock your API version to      
    "2006-03-01".                                                                     

    Your build of the SDK has the following version(s) of "s3": * "2006-03-01"        

    You may provide "latest" to the "version" configuration value to utilize the      
    most recent available API version that your client's API provider can find.       
    Note: Using 'latest' in a production application is not recommended.              

    A list of available API versions can be found on each client's API documentation  
    page: http://docs.aws.amazon.com/aws-sdk-php/v3/api/index.html. If you are        
    unable to load a specific API version, then you may need to update your copy of   
    the SDK.                                                                          

Exception trace:
 () at E:\xampp\htdocs\projects\symfony2\inspot\vendor\aws\aws-sdk-php\src\ClientResolver.php:353
 Aws\ClientResolver->throwRequired() at E:\xampp\htdocs\projects\symfony2\inspot\vendor\aws\aws-sdk-php\src\ClientResolver.php:249
 Aws\ClientResolver->resolve() at E:\xampp\htdocs\projects\symfony2\inspot\vendor\aws\aws-sdk-php\src\AwsClient.php:151
 Aws\AwsClient->__construct() at E:\xampp\htdocs\projects\symfony2\inspot\vendor\aws\aws-sdk-php\src\S3\S3Client.php:214
 Aws\S3\S3Client->__construct() at E:\xampp\htdocs\projects\symfony2\inspot\vendor\aws\aws-sdk-php\src\AwsClient.php:315
 Aws\AwsClient::factory() at E:\xampp\htdocs\projects\symfony2\inspot\app\cache\de_\ap_DevDebugProjectContainer.php:7249
 ap_DevDebugProjectContainer->getSonata_Media_Adapter_Service_S3Service() at E:\xampp\htdocs\projects\symfony2\inspot\app\bootstrap.php.cache:2221
 Symfony\Component\DependencyInjection\Container->get() at E:\xampp\htdocs\projects\symfony2\inspot\app\cache\de_\ap_DevDebugProjectContainer.php:7197
 ap_DevDebugProjectContainer->getSonata_Media_Adapter_Filesystem_S3Service() at E:\xampp\htdocs\projects\symfony2\inspot\app\bootstrap.php.cache:2221
 Symfony\Component\DependencyInjection\Container->get() at E:\xampp\htdocs\projects\symfony2\inspot\app\cache\de_\ap_DevDebugProjectContainer.php:7613
 ap_DevDebugProjectContainer->getSonata_Media_Filesystem_S3Service() at E:\xampp\htdocs\projects\symfony2\inspot\app\bootstrap.php.cache:2221
 Symfony\Component\DependencyInjection\Container->get() at E:\xampp\htdocs\projects\symfony2\inspot\app\cache\de_\ap_DevDebugProjectContainer.php:7783
 ap_DevDebugProjectContainer->getSonata_Media_Provider_ImageService() at E:\xampp\htdocs\projects\symfony2\inspot\app\bootstrap.php.cache:2221
 Symfony\Component\DependencyInjection\Container->get() at E:\xampp\htdocs\projects\symfony2\inspot\app\cache\de_\ap_DevDebugProjectContainer.php:7721
 ap_DevDebugProjectContainer->getSonata_Media_PoolService() at E:\xampp\htdocs\projects\symfony2\inspot\app\bootstrap.php.cache:2221
 Symfony\Component\DependencyInjection\Container->get() at E:\xampp\htdocs\projects\symfony2\inspot\app\cache\de_\ap_DevDebugProjectContainer.php:7979
 ap_DevDebugProjectContainer->getSonata_Media_Twig_ExtensionService() at E:\xampp\htdocs\projects\symfony2\inspot\app\bootstrap.php.cache:2221
 Symfony\Component\DependencyInjection\Container->get() at E:\xampp\htdocs\projects\symfony2\inspot\app\cache\de_\ap_DevDebugProjectContainer.php:8816
 ap_DevDebugProjectContainer->getTwigService() at E:\xampp\htdocs\projects\symfony2\inspot\app\bootstrap.php.cache:2221
 Symfony\Component\DependencyInjection\Container->get() at E:\xampp\htdocs\projects\symfony2\inspot\app\cache\de_\ap_DevDebugProjectContainer.php:1166
 ap_DevDebugProjectContainer->getCacheWarmerService() at E:\xampp\htdocs\projects\symfony2\inspot\app\bootstrap.php.cache:2221
 Symfony\Component\DependencyInjection\Container->get() at E:\xampp\htdocs\projects\symfony2\inspot\app\bootstrap.php.cache:2732
 Symfony\Component\HttpKernel\Kernel->initializeContainer() at E:\xampp\htdocs\projects\symfony2\inspot\app\bootstrap.php.cache:2502
 Symfony\Component\HttpKernel\Kernel->boot() at E:\xampp\htdocs\projects\symfony2\inspot\vendor\symfony\symfony\src\Symfony\Bundle\FrameworkBundle\Command\CacheClearCommand.php:134
 Symfony\Bundle\FrameworkBundle\Command\CacheClearCommand->warmup() at E:\xampp\htdocs\projects\symfony2\inspot\vendor\symfony\symfony\src\Symfony\Bundle\FrameworkBundle\Command\CacheClearCommand.php:96
 Symfony\Bundle\FrameworkBundle\Command\CacheClearCommand->execute() at E:\xampp\htdocs\projects\symfony2\inspot\vendor\symfony\symfony\src\Symfony\Component\Console\Command\Command.php:259
 Symfony\Component\Console\Command\Command->run() at E:\xampp\htdocs\projects\symfony2\inspot\vendor\symfony\symfony\src\Symfony\Component\Console\Application.php:863
 Symfony\Component\Console\Application->doRunCommand() at E:\xampp\htdocs\projects\symfony2\inspot\vendor\symfony\symfony\src\Symfony\Component\Console\Application.php:192
 Symfony\Component\Console\Application->doRun() at E:\xampp\htdocs\projects\symfony2\inspot\vendor\symfony\symfony\src\Symfony\Bundle\FrameworkBundle\Console\Application.php:92
 Symfony\Bundle\FrameworkBundle\Console\Application->doRun() at E:\xampp\htdocs\projects\symfony2\inspot\vendor\symfony\symfony\src\Symfony\Component\Console\Application.php:123
 Symfony\Component\Console\Application->run() at E:\xampp\htdocs\projects\symfony2\inspot\app\console:27

cache:clear [--no-warmup] [--no-optional-warmers] [-h|--help] [-q|--quiet] [-v|vv|vvv|--verbose] [-V|--version] [--ansi] [--no-ansi] [-n|--no-interaction] [-s|--shell] [--process-isolation] [-e|--env ENV] [--no-debug] [--] <command>

Process finished with exit code 1 at 23:19:36.
Execution time: 46,216 ms.
greg0ire commented 8 years ago

sorry, it's midnight here and I just got it wrong.

No problem ;)

greg0ire commented 8 years ago

Maybe @nicolasricci can help with this?

greg0ire commented 8 years ago

There is a related issue and the reporter reverted the aws-sdk to an older version, this shouldn't be the way to go.

In the meantime, you should add as many links as you can to this sentence. Do you mean it was in version 3 and was downgraded to version 2?

I believe SonataMediaBundle should update its source to fix this bug.

Do you mean the aws/aws-sdk-php should be upgraded to version 3?

binhle410 commented 8 years ago

It was this issue #860 that I meant. The author downgraded aws-sdk to a lesser version. So, if the aws/aws-sdk-php is updated to version 3 in a "composer update" command, the SonataMediaBundle's S3 config is broken.

Anyway, I have looked into SonataMediaBundle's latest branch and I do see that sdk_version: 3 has to be added to under sonata_media.filesystem.s3

so my config looks like

sonata_media:
    filesystem:
        local:
            directory:  %kernel.root_dir%/../web/uploads/media
            create:     false
#        Amazon s3
        s3:
            sdk_version: 3
            bucket: %s3_bucket_name%
            accessKey: %s3_access_key%
            secretKey: %s3_secret_key%
            region: %s3_region%
            directory: %s3_directory%

Where do I go to update the documentation ?

greg0ire commented 8 years ago

I made a PR about that : https://github.com/sonata-project/dev-kit/pull/203 Can you follow it and give me some feedback?

nicolasricci commented 8 years ago

sorry catching the train a bit late. I think the documentation was up to date regarding the sdk_version (https://raw.githubusercontent.com/sonata-project/SonataMediaBundle/3.x/Resources/doc/reference/amazon_s3.rst) but let me know if you need any more info on the subject

greg0ire commented 8 years ago

Looks up to date indeed. Closing then.

binhle410 commented 8 years ago

How come the change does no reflect on the officail site ? https://sonata-project.org/bundles/media/3-x/doc/reference/amazon_s3.html

greg0ire commented 8 years ago

It must be regenerated from time to time I think, I'll ask @Soullivaneuh

soullivaneuh commented 8 years ago

It's supposed to be regenerated automaticaly every 30 minutes.

I don't have any access of this, please ping @rande for that.

rande commented 8 years ago

There is also a CDN cache for 24h.. but this is not related.

nathandaly commented 6 years ago

2018 and I still don't see the documentation for the sdk_version: 3 config?

OskarStark commented 6 years ago

Feel free to open a PR @nathandaly