pmaxs / silex-locale

Silex service provider to adjust locale/language via url
4 stars 0 forks source link

NotFoundHttpException in root path #1

Closed cybtow closed 8 years ago

cybtow commented 8 years ago

Since I did composer update, if I load the root path, for instance:

http://192.168.2.11/web/index_dev.php/es/ or http://192.168.2.11/web/index_dev.php/en/

This exception is shown:

NotFoundHttpException in HttpKernel.php line 137: Unable to find the controller for path "/es/". The route is wrongly configured.

But with other paths, it works well (http://192.168.2.11/web/index_dev.php/es/test)

I am using silex 2.0.3 and silex-locale 2.0.10, and I am using it in this way:

    $app->register(new \Silex\Provider\LocaleServiceProvider());
    $app->register(new \Silex\Provider\TranslationServiceProvider());
    $app->register(new \Pmaxs\Silex\Locale\Provider\LocaleServiceProvider());

    $app['locale_fallbacks'] = array('en');
    $app['locale.locales'] = array('es','en');
    $app['locale.default_locale'] = 'en';
    $app['locale.resolve_by_host'] = 0;
    $app['locale.exclude_routes'] = ['^_'];

    $app->get('/', function (Request $request) use ($app) {
        return new Response($app['twig']->render('index/index.html.twig', []));
    })->bind('homepage');

    $app->get('/test', function(Request $request, $_locale) use ($app) {
        return new Response($_locale, 200);
    })->bind('test');

With this composer.lock all works well:

{ "readme": [ "This file locks the dependencies of your project to a known state", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], "hash": "45013ccdb7dd38ab8717ebe4720a706b", "content-hash": "17ee88d09f13b7a542cac3547bca6c43", "packages": [ { "name": "deralex/yaml-config-service-provider", "version": "2.0.x-dev", "source": { "type": "git", "url": "https://github.com/deralex/YamlConfigServiceProvider.git", "reference": "6a55520dd4825ee3c0d24ba721757c34013047d4" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/deralex/YamlConfigServiceProvider/zipball/6a55520dd4825ee3c0d24ba721757c34013047d4", "reference": "6a55520dd4825ee3c0d24ba721757c34013047d4", "shasum": "" }, "require": { "pimple/pimple": "~3.0", "symfony/yaml": "~2.4" }, "require-dev": { "phpspec/phpspec": "2.0.@dev" }, "suggest": { "symfony/yaml": "~2.4" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.0-dev" } }, "autoload": { "psr-0": { "DerAlex\Pimple": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Alexander Kluth", "email": "contact@alexanderkluth.com" } ], "description": "Silex ServiceProvider for using YAML configuration files", "keywords": [ "pimple", "silex" ], "time": "2015-03-10 13:55:26" }, { "name": "dflydev/doctrine-orm-service-provider", "version": "v2.0.1", "source": { "type": "git", "url": "https://github.com/dflydev/dflydev-doctrine-orm-service-provider.git", "reference": "84b3f4887a999cbd017010f758122d8409cccac0" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/dflydev/dflydev-doctrine-orm-service-provider/zipball/84b3f4887a999cbd017010f758122d8409cccac0", "reference": "84b3f4887a999cbd017010f758122d8409cccac0", "shasum": "" }, "require": { "doctrine/orm": "~2.3", "php": ">=5.3.3", "pimple/pimple": ">=2.1,<4" }, "type": "library", "extra": { "branch-alias": { "dev-master": "2.0.x-dev" } }, "autoload": { "psr-4": { "Dflydev\Provider\DoctrineOrm\": "src/Dflydev/Provider/DoctrineOrm" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Dragonfly Development Inc.", "email": "info@dflydev.com", "homepage": "http://dflydev.com" }, { "name": "Beau Simensen", "email": "beau@dflydev.com", "homepage": "http://beausimensen.com" } ], "description": "Doctrine ORM Service Provider", "homepage": "http://dflydev.com/projects/doctrine-orm-service-provider/", "keywords": [ "cilex", "doctrine", "orm", "pimple", "silex" ], "time": "2015-09-07 12:14:46" }, { "name": "doctrine/annotations", "version": "v1.2.7", "source": { "type": "git", "url": "https://github.com/doctrine/annotations.git", "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535", "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535", "shasum": "" }, "require": { "doctrine/lexer": "1.", "php": ">=5.3.2" }, "require-dev": { "doctrine/cache": "1.", "phpunit/phpunit": "4." }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.3.x-dev" } }, "autoload": { "psr-0": { "Doctrine\Common\Annotations\": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Roman Borschel", "email": "roman@code-factory.org" }, { "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" } ], "description": "Docblock Annotations Parser", "homepage": "http://www.doctrine-project.org", "keywords": [ "annotations", "docblock", "parser" ], "time": "2015-08-31 12:32:49" }, { "name": "doctrine/cache", "version": "v1.6.0", "source": { "type": "git", "url": "https://github.com/doctrine/cache.git", "reference": "f8af318d14bdb0eff0336795b428b547bd39ccb6" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/cache/zipball/f8af318d14bdb0eff0336795b428b547bd39ccb6", "reference": "f8af318d14bdb0eff0336795b428b547bd39ccb6", "shasum": "" }, "require": { "php": "~5.5|~7.0" }, "conflict": { "doctrine/common": ">2.2,<2.4" }, "require-dev": { "phpunit/phpunit": "~4.8|~5.0", "predis/predis": "~1.0", "satooshi/php-coveralls": "~0.6" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.6.x-dev" } }, "autoload": { "psr-4": { "Doctrine\Common\Cache\": "lib/Doctrine/Common/Cache" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Roman Borschel", "email": "roman@code-factory.org" }, { "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" } ], "description": "Caching library offering an object-oriented API for many cache backends", "homepage": "http://www.doctrine-project.org", "keywords": [ "cache", "caching" ], "time": "2015-12-31 16:37:02" }, { "name": "doctrine/collections", "version": "v1.3.0", "source": { "type": "git", "url": "https://github.com/doctrine/collections.git", "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/collections/zipball/6c1e4eef75f310ea1b3e30945e9f06e652128b8a", "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a", "shasum": "" }, "require": { "php": ">=5.3.2" }, "require-dev": { "phpunit/phpunit": "~4.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.2.x-dev" } }, "autoload": { "psr-0": { "Doctrine\Common\Collections\": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Roman Borschel", "email": "roman@code-factory.org" }, { "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" } ], "description": "Collections Abstraction library", "homepage": "http://www.doctrine-project.org", "keywords": [ "array", "collections", "iterator" ], "time": "2015-04-14 22:21:58" }, { "name": "doctrine/common", "version": "v2.6.1", "source": { "type": "git", "url": "https://github.com/doctrine/common.git", "reference": "a579557bc689580c19fee4e27487a67fe60defc0" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/common/zipball/a579557bc689580c19fee4e27487a67fe60defc0", "reference": "a579557bc689580c19fee4e27487a67fe60defc0", "shasum": "" }, "require": { "doctrine/annotations": "1.", "doctrine/cache": "1.", "doctrine/collections": "1.", "doctrine/inflector": "1.", "doctrine/lexer": "1.", "php": "~5.5|~7.0" }, "require-dev": { "phpunit/phpunit": "~4.8|~5.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "2.7.x-dev" } }, "autoload": { "psr-4": { "Doctrine\Common\": "lib/Doctrine/Common" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Roman Borschel", "email": "roman@code-factory.org" }, { "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" } ], "description": "Common Library for Doctrine projects", "homepage": "http://www.doctrine-project.org", "keywords": [ "annotations", "collections", "eventmanager", "persistence", "spl" ], "time": "2015-12-25 13:18:31" }, { "name": "doctrine/dbal", "version": "v2.5.5", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", "reference": "9f8c05cd5225a320d56d4bfdb4772f10d045a0c9" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/dbal/zipball/9f8c05cd5225a320d56d4bfdb4772f10d045a0c9", "reference": "9f8c05cd5225a320d56d4bfdb4772f10d045a0c9", "shasum": "" }, "require": { "doctrine/common": ">=2.4,<2.7-dev", "php": ">=5.3.2" }, "require-dev": { "phpunit/phpunit": "4.", "symfony/console": "2.||^3.0" }, "suggest": { "symfony/console": "For helpful console commands such as SQL execution and import of files." }, "bin": [ "bin/doctrine-dbal" ], "type": "library", "extra": { "branch-alias": { "dev-master": "2.5.x-dev" } }, "autoload": { "psr-0": { "Doctrine\DBAL\": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Roman Borschel", "email": "roman@code-factory.org" }, { "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" } ], "description": "Database Abstraction Layer", "homepage": "http://www.doctrine-project.org", "keywords": [ "database", "dbal", "persistence", "queryobject" ], "time": "2016-09-09 19:13:33" }, { "name": "doctrine/inflector", "version": "v1.1.0", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", "reference": "90b2128806bfde671b6952ab8bea493942c1fdae" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae", "reference": "90b2128806bfde671b6952ab8bea493942c1fdae", "shasum": "" }, "require": { "php": ">=5.3.2" }, "require-dev": { "phpunit/phpunit": "4._" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.1.x-dev" } }, "autoload": { "psr-0": { "Doctrine\Common\Inflector\": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Roman Borschel", "email": "roman@code-factory.org" }, { "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" } ], "description": "Common String Manipulations with regard to casing and singular/plural rules.", "homepage": "http://www.doctrine-project.org", "keywords": [ "inflection", "pluralize", "singularize", "string" ], "time": "2015-11-06 14:35:42" }, { "name": "doctrine/instantiator", "version": "1.0.5", "source": { "type": "git", "url": "https://github.com/doctrine/instantiator.git", "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d", "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d", "shasum": "" }, "require": { "php": ">=5.3,<8.0-DEV" }, "require-dev": { "athletic/athletic": "~0.1.8", "ext-pdo": "", "ext-phar": "", "phpunit/phpunit": "~4.0", "squizlabs/phpcodesniffer": "~2.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.0.x-dev" } }, "autoload": { "psr-4": { "Doctrine\Instantiator\": "src/Doctrine/Instantiator/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Marco Pivetta", "email": "ocramius@gmail.com", "homepage": "http://ocramius.github.com/" } ], "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", "homepage": "https://github.com/doctrine/instantiator", "keywords": [ "constructor", "instantiate" ], "time": "2015-06-14 21:17:01" }, { "name": "doctrine/lexer", "version": "v1.0.1", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c", "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c", "shasum": "" }, "require": { "php": ">=5.3.2" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.0.x-dev" } }, "autoload": { "psr-0": { "Doctrine\Common\Lexer\": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Roman Borschel", "email": "roman@code-factory.org" }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" } ], "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.", "homepage": "http://www.doctrine-project.org", "keywords": [ "lexer", "parser" ], "time": "2014-09-09 13:34:57" }, { "name": "doctrine/orm", "version": "v2.5.5", "source": { "type": "git", "url": "https://github.com/doctrine/doctrine2.git", "reference": "73e4be7c7b3ba26f96b781a40b33feba4dfa6d45" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/73e4be7c7b3ba26f96b781a40b33feba4dfa6d45", "reference": "73e4be7c7b3ba26f96b781a40b33feba4dfa6d45", "shasum": "" }, "require": { "doctrine/cache": "~1.4", "doctrine/collections": "~1.2", "doctrine/common": ">=2.5-dev,<2.7-dev", "doctrine/dbal": ">=2.5-dev,<2.6-dev", "doctrine/instantiator": "~1.0.1", "ext-pdo": "*", "php": ">=5.4", "symfony/console": "~2.5|~3.0" }, "require-dev": { "phpunit/phpunit": "~4.0", "symfony/yaml": "~2.3|~3.0" }, "suggest": { "symfony/yaml": "If you want to use YAML Metadata Mapping Driver" }, "bin": [ "bin/doctrine", "bin/doctrine.php" ], "type": "library", "extra": { "branch-alias": { "dev-master": "2.6.x-dev" } }, "autoload": { "psr-0": { "Doctrine\ORM\": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Roman Borschel", "email": "roman@code-factory.org" }, { "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" } ], "description": "Object-Relational-Mapper for PHP", "homepage": "http://www.doctrine-project.org", "keywords": [ "database", "orm" ], "time": "2016-09-10 18:51:13" }, { "name": "jaybizzle/crawler-detect", "version": "v1.2.20", "source": { "type": "git", "url": "https://github.com/JayBizzle/Crawler-Detect.git", "reference": "451b217fe79adb9459476231f80b2517d4d404f7" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/451b217fe79adb9459476231f80b2517d4d404f7", "reference": "451b217fe79adb9459476231f80b2517d4d404f7", "shasum": "" }, "require": { "php": ">=5.3.0" }, "require-dev": { "phpunit/phpunit": "" }, "type": "library", "autoload": { "psr-4": { "Jaybizzle\CrawlerDetect\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Mark Beech", "email": "m@rkbee.ch", "role": "Developer" } ], "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent", "homepage": "https://github.com/JayBizzle/Crawler-Detect/", "keywords": [ "crawler", "crawler detect", "crawler detector", "crawlerdetect", "php crawler detect" ], "time": "2016-10-11 20:57:56" }, { "name": "monolog/monolog", "version": "1.21.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", "reference": "f42fbdfd53e306bda545845e4dbfd3e72edb4952" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f42fbdfd53e306bda545845e4dbfd3e72edb4952", "reference": "f42fbdfd53e306bda545845e4dbfd3e72edb4952", "shasum": "" }, "require": { "php": ">=5.3.0", "psr/log": "~1.0" }, "provide": { "psr/log-implementation": "1.0.0" }, "require-dev": { "aws/aws-sdk-php": "^2.4.9", "doctrine/couchdb": "~1.0@dev", "graylog2/gelf-php": "~1.0", "jakub-onderka/php-parallel-lint": "0.9", "php-amqplib/php-amqplib": "~2.4", "php-console/php-console": "^3.1.3", "phpunit/phpunit": "~4.5", "phpunit/phpunit-mock-objects": "2.3.0", "ruflin/elastica": ">=0.90 <3.0", "sentry/sentry": "^0.13", "swiftmailer/swiftmailer": "~5.3" }, "suggest": { "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", "doctrine/couchdb": "Allow sending log messages to a CouchDB server", "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", "ext-mongo": "Allow sending log messages to a MongoDB server", "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver", "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", "php-console/php-console": "Allow sending log messages to Google Chrome", "rollbar/rollbar": "Allow sending log messages to Rollbar", "ruflin/elastica": "Allow sending log messages to an Elastic Search server", "sentry/sentry": "Allow sending log messages to a Sentry server" }, "type": "library", "extra": { "branch-alias": { "dev-master": "2.0.x-dev" } }, "autoload": { "psr-4": { "Monolog\": "src/Monolog" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Jordi Boggiano", "email": "j.boggiano@seld.be", "homepage": "http://seld.be" } ], "description": "Sends your logs to files, sockets, inboxes, databases and various web services", "homepage": "http://github.com/Seldaek/monolog", "keywords": [ "log", "logging", "psr-3" ], "time": "2016-07-29 03:23:52" }, { "name": "oyejorge/less.php", "version": "v1.7.0.10", "source": { "type": "git", "url": "https://github.com/oyejorge/less.php.git", "reference": "a1e2d3c20794b37ac4d0baeb24613e579584033b" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/oyejorge/less.php/zipball/a1e2d3c20794b37ac4d0baeb24613e579584033b", "reference": "a1e2d3c20794b37ac4d0baeb24613e579584033b", "shasum": "" }, "require": { "php": ">=5.3" }, "require-dev": { "phpunit/phpunit": "~4.8.18" }, "bin": [ "bin/lessc" ], "type": "library", "autoload": { "psr-0": { "Less": "lib/" }, "classmap": [ "lessc.inc.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "Apache-2.0" ], "authors": [ { "name": "Matt Agar", "homepage": "https://github.com/agar" }, { "name": "Martin Jantošovič", "homepage": "https://github.com/Mordred" }, { "name": "Josh Schmidt", "homepage": "https://github.com/oyejorge" } ], "description": "PHP port of the Javascript version of LESS http://lesscss.org", "homepage": "http://lessphp.gpeasy.com", "keywords": [ "css", "less", "less.js", "lesscss", "php", "stylesheet" ], "time": "2015-12-30 05:47:36" }, { "name": "paragonie/random_compat", "version": "v2.0.2", "source": { "type": "git", "url": "https://github.com/paragonie/random_compat.git", "reference": "088c04e2f261c33bed6ca5245491cfca69195ccf" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/paragonie/random_compat/zipball/088c04e2f261c33bed6ca5245491cfca69195ccf", "reference": "088c04e2f261c33bed6ca5245491cfca69195ccf", "shasum": "" }, "require": { "php": ">=5.2.0" }, "require-dev": { "phpunit/phpunit": "4.|5." }, "suggest": { "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." }, "type": "library", "autoload": { "files": [ "lib/random.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Paragon Initiative Enterprises", "email": "security@paragonie.com", "homepage": "https://paragonie.com" } ], "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", "keywords": [ "csprng", "pseudorandom", "random" ], "time": "2016-04-03 06:00:07" }, { "name": "pimple/pimple", "version": "v3.0.2", "source": { "type": "git", "url": "https://github.com/silexphp/Pimple.git", "reference": "a30f7d6e57565a2e1a316e1baf2a483f788b258a" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a30f7d6e57565a2e1a316e1baf2a483f788b258a", "reference": "a30f7d6e57565a2e1a316e1baf2a483f788b258a", "shasum": "" }, "require": { "php": ">=5.3.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0.x-dev" } }, "autoload": { "psr-0": { "Pimple": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" } ], "description": "Pimple, a simple Dependency Injection Container", "homepage": "http://pimple.sensiolabs.org", "keywords": [ "container", "dependency injection" ], "time": "2015-09-11 15:10:35" }, { "name": "pmaxs/silex-locale", "version": "2.0.10", "source": { "type": "git", "url": "https://github.com/pmaxs/silex-locale.git", "reference": "b893cde18a642cf061b28e4388d8fa33dea4449b" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/pmaxs/silex-locale/zipball/b893cde18a642cf061b28e4388d8fa33dea4449b", "reference": "b893cde18a642cf061b28e4388d8fa33dea4449b", "shasum": "" }, "require": { "php": ">=5.4.0" }, "require-dev": { "symfony/var-dumper": "^3.1" }, "type": "library", "autoload": { "psr-4": { "Pmaxs\Silex\Locale\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "description": "Silex service provider to adjust locale/language via url", "homepage": "https://github.com/pmaxs/silex-locale", "keywords": [ "locale", "silex", "symfony" ], "time": "2016-09-25 10:23:48" }, { "name": "psr/log", "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", "shasum": "" }, "require": { "php": ">=5.3.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.0.x-dev" } }, "autoload": { "psr-4": { "Psr\Log\": "Psr/Log/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "PHP-FIG", "homepage": "http://www.php-fig.org/" } ], "description": "Common interface for logging libraries", "homepage": "https://github.com/php-fig/log", "keywords": [ "log", "psr", "psr-3" ], "time": "2016-10-10 12:19:37" }, { "name": "silex/silex", "version": "v2.0.3", "source": { "type": "git", "url": "https://github.com/silexphp/Silex.git", "reference": "fd0852ebfa0a4cf1e17d746bb81962ec69bbb6d1" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/silexphp/Silex/zipball/fd0852ebfa0a4cf1e17d746bb81962ec69bbb6d1", "reference": "fd0852ebfa0a4cf1e17d746bb81962ec69bbb6d1", "shasum": "" }, "require": { "php": ">=5.5.9", "pimple/pimple": "~3.0", "symfony/event-dispatcher": "~2.8|^3.0", "symfony/http-foundation": "~2.8|^3.0", "symfony/http-kernel": "~2.8|^3.0", "symfony/routing": "~2.8|^3.0" }, "replace": { "silex/api": "self.version", "silex/providers": "self.version" }, "require-dev": { "doctrine/dbal": "~2.2", "monolog/monolog": "^1.4.1", "swiftmailer/swiftmailer": "~5", "symfony/asset": "~2.8|^3.0", "symfony/browser-kit": "~2.8|^3.0", "symfony/config": "~2.8|^3.0", "symfony/css-selector": "~2.8|^3.0", "symfony/debug": "~2.8|^3.0", "symfony/doctrine-bridge": "~2.8|^3.0", "symfony/dom-crawler": "~2.8|^3.0", "symfony/expression-language": "~2.8|^3.0", "symfony/finder": "~2.8|^3.0", "symfony/form": "~2.8|^3.0", "symfony/intl": "~2.8|^3.0", "symfony/monolog-bridge": "~2.8|^3.0", "symfony/options-resolver": "~2.8|^3.0", "symfony/phpunit-bridge": "~2.8|^3.0", "symfony/process": "~2.8|^3.0", "symfony/security": "~2.8|^3.0", "symfony/serializer": "~2.8|^3.0", "symfony/translation": "~2.8|^3.0", "symfony/twig-bridge": "~2.8|^3.0", "symfony/validator": "~2.8|^3.0", "symfony/var-dumper": "~2.8|^3.0", "twig/twig": "~1.8|~2.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "2.0.x-dev" } }, "autoload": { "psr-4": { "Silex\": "src/Silex" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Igor Wiedler", "email": "igor@wiedler.ch" } ], "description": "The PHP micro-framework based on the Symfony Components", "homepage": "http://silex.sensiolabs.org", "keywords": [ "microframework" ], "time": "2016-08-22 17:50:21" }, { "name": "silex/web-profiler", "version": "v2.0.3", "target-dir": "Silex/Provider", "source": { "type": "git", "url": "https://github.com/silexphp/Silex-WebProfiler.git", "reference": "690937ad788dfeb471afce9dd30bd3bcd61ea7ae" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/silexphp/Silex-WebProfiler/zipball/690937ad788dfeb471afce9dd30bd3bcd61ea7ae", "reference": "690937ad788dfeb471afce9dd30bd3bcd61ea7ae", "shasum": "" }, "require": { "silex/silex": "^2.0", "symfony/stopwatch": "^2.8|^3.0", "symfony/twig-bridge": "^2.8|^3.0", "symfony/web-profiler-bundle": "^2.8|^3.0" }, "conflict": { "symfony/web-profiler-bundle": "3.1.0" }, "require-dev": { "symfony/browser-kit": "^2.8|^3.0", "symfony/css-selector": "^2.8|^3.0", "symfony/debug-bundle": "^2.8|^3.0", "symfony/security": "^2.8|^3.0", "symfony/security-bundle": "^2.8|^3.0", "symfony/translation": "^2.8|^3.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "2.0.x-dev" } }, "autoload": { "psr-0": { "Silex\Provider\": "" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" } ], "description": "A WebProfiler for Silex", "homepage": "http://silex.sensiolabs.org/", "time": "2016-09-30 00:42:55" }, { "name": "symfony/asset", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/asset.git", "reference": "967518f63a096593064c26ae1201a76a58caf216" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/asset/zipball/967518f63a096593064c26ae1201a76a58caf216", "reference": "967518f63a096593064c26ae1201a76a58caf216", "shasum": "" }, "require": { "php": ">=5.5.9" }, "require-dev": { "symfony/http-foundation": "~2.8|~3.0" }, "suggest": { "symfony/http-foundation": "" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Asset\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Asset Component", "homepage": "https://symfony.com", "time": "2016-09-24 15:56:48" }, { "name": "symfony/browser-kit", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", "reference": "387ea8715ab56b34bc4c5c315c87324f1ac414a9" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/browser-kit/zipball/387ea8715ab56b34bc4c5c315c87324f1ac414a9", "reference": "387ea8715ab56b34bc4c5c315c87324f1ac414a9", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/dom-crawler": "~2.8|~3.0" }, "require-dev": { "symfony/css-selector": "~2.8|~3.0", "symfony/process": "~2.8|~3.0" }, "suggest": { "symfony/process": "" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\BrowserKit\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony BrowserKit Component", "homepage": "https://symfony.com", "time": "2016-07-26 08:03:56" }, { "name": "symfony/class-loader", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/class-loader.git", "reference": "00c66ca2de5a9a367706826338df721529a07ca8" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/class-loader/zipball/00c66ca2de5a9a367706826338df721529a07ca8", "reference": "00c66ca2de5a9a367706826338df721529a07ca8", "shasum": "" }, "require": { "php": ">=5.5.9" }, "require-dev": { "symfony/finder": "~2.8|~3.0", "symfony/polyfill-apcu": "~1.1" }, "suggest": { "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\ClassLoader\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony ClassLoader Component", "homepage": "https://symfony.com", "time": "2016-07-10 08:04:44" }, { "name": "symfony/config", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/config.git", "reference": "a7547322f85ab81f6bcb0cd0c6d3abfd0c55d19c" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/config/zipball/a7547322f85ab81f6bcb0cd0c6d3abfd0c55d19c", "reference": "a7547322f85ab81f6bcb0cd0c6d3abfd0c55d19c", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/filesystem": "~2.8|~3.0" }, "suggest": { "symfony/yaml": "To use the yaml reference dumper" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Config\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Config Component", "homepage": "https://symfony.com", "time": "2016-07-26 08:03:56" }, { "name": "symfony/console", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/console.git", "reference": "926061e74229e935d3c5b4e9ba87237316c6693f" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/console/zipball/926061e74229e935d3c5b4e9ba87237316c6693f", "reference": "926061e74229e935d3c5b4e9ba87237316c6693f", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/polyfill-mbstring": "~1.0" }, "require-dev": { "psr/log": "~1.0", "symfony/event-dispatcher": "~2.8|~3.0", "symfony/process": "~2.8|~3.0" }, "suggest": { "psr/log": "For using the console logger", "symfony/event-dispatcher": "", "symfony/process": "" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Console\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Console Component", "homepage": "https://symfony.com", "time": "2016-07-30 07:22:48" }, { "name": "symfony/css-selector", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", "reference": "b8999c1f33c224b2b66b38253f5e3a838d0d0115" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/css-selector/zipball/b8999c1f33c224b2b66b38253f5e3a838d0d0115", "reference": "b8999c1f33c224b2b66b38253f5e3a838d0d0115", "shasum": "" }, "require": { "php": ">=5.5.9" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\CssSelector\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Jean-François Simon", "email": "jeanfrancois.simon@sensiolabs.com" }, { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", "time": "2016-06-29 05:40:00" }, { "name": "symfony/debug", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", "reference": "697c527acd9ea1b2d3efac34d9806bf255278b0a" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/debug/zipball/697c527acd9ea1b2d3efac34d9806bf255278b0a", "reference": "697c527acd9ea1b2d3efac34d9806bf255278b0a", "shasum": "" }, "require": { "php": ">=5.5.9", "psr/log": "~1.0" }, "conflict": { "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2" }, "require-dev": { "symfony/class-loader": "~2.8|~3.0", "symfony/http-kernel": "~2.8|~3.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Debug\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", "time": "2016-07-30 07:22:48" }, { "name": "symfony/doctrine-bridge", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/doctrine-bridge.git", "reference": "210b9f6b4f70d4874682693749a95507fc949363" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/210b9f6b4f70d4874682693749a95507fc949363", "reference": "210b9f6b4f70d4874682693749a95507fc949363", "shasum": "" }, "require": { "doctrine/common": "~2.4", "php": ">=5.5.9", "symfony/polyfill-mbstring": "~1.0" }, "require-dev": { "doctrine/data-fixtures": "1.0._", "doctrine/dbal": "~2.4", "doctrine/orm": "~2.4,>=2.4.5", "symfony/dependency-injection": "~2.8|~3.0", "symfony/expression-language": "~2.8|~3.0", "symfony/form": "~3.0,>=3.0.5", "symfony/http-kernel": "~2.8|~3.0", "symfony/property-access": "~2.8|~3.0", "symfony/property-info": "~2.8|3.0", "symfony/security": "~2.8|~3.0", "symfony/stopwatch": "~2.8|~3.0", "symfony/translation": "~2.8|~3.0", "symfony/validator": "~2.8|~3.0" }, "suggest": { "doctrine/data-fixtures": "", "doctrine/dbal": "", "doctrine/orm": "", "symfony/form": "", "symfony/property-info": "", "symfony/validator": "" }, "type": "symfony-bridge", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Bridge\Doctrine\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Doctrine Bridge", "homepage": "https://symfony.com", "time": "2016-09-29 01:19:09" }, { "name": "symfony/dom-crawler", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", "reference": "bb7395e8b1db3654de82b9f35d019958276de4d7" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/bb7395e8b1db3654de82b9f35d019958276de4d7", "reference": "bb7395e8b1db3654de82b9f35d019958276de4d7", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/polyfill-mbstring": "~1.0" }, "require-dev": { "symfony/css-selector": "~2.8|~3.0" }, "suggest": { "symfony/css-selector": "" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\DomCrawler\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", "time": "2016-08-05 08:37:39" }, { "name": "symfony/event-dispatcher", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", "reference": "c0c00c80b3a69132c4e55c3e7db32b4a387615e5" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/c0c00c80b3a69132c4e55c3e7db32b4a387615e5", "reference": "c0c00c80b3a69132c4e55c3e7db32b4a387615e5", "shasum": "" }, "require": { "php": ">=5.5.9" }, "require-dev": { "psr/log": "~1.0", "symfony/config": "~2.8|~3.0", "symfony/dependency-injection": "~2.8|~3.0", "symfony/expression-language": "~2.8|~3.0", "symfony/stopwatch": "~2.8|~3.0" }, "suggest": { "symfony/dependency-injection": "", "symfony/http-kernel": "" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\EventDispatcher\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", "time": "2016-07-19 10:45:57" }, { "name": "symfony/filesystem", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", "reference": "682fd8fdb3135fdf05fc496a01579ccf6c85c0e5" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/filesystem/zipball/682fd8fdb3135fdf05fc496a01579ccf6c85c0e5", "reference": "682fd8fdb3135fdf05fc496a01579ccf6c85c0e5", "shasum": "" }, "require": { "php": ">=5.5.9" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Filesystem\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Filesystem Component", "homepage": "https://symfony.com", "time": "2016-09-14 00:18:46" }, { "name": "symfony/finder", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", "reference": "3eb4e64c6145ef8b92adefb618a74ebdde9e3fe9" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/finder/zipball/3eb4e64c6145ef8b92adefb618a74ebdde9e3fe9", "reference": "3eb4e64c6145ef8b92adefb618a74ebdde9e3fe9", "shasum": "" }, "require": { "php": ">=5.5.9" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Finder\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", "time": "2016-06-29 05:40:00" }, { "name": "symfony/form", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/form.git", "reference": "a5fa824ab947eb3a965994d32d19aff7c5f4d96c" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/form/zipball/a5fa824ab947eb3a965994d32d19aff7c5f4d96c", "reference": "a5fa824ab947eb3a965994d32d19aff7c5f4d96c", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/event-dispatcher": "~2.8|~3.0", "symfony/intl": "~2.8|~3.0", "symfony/options-resolver": "~2.8|~3.0", "symfony/polyfill-mbstring": "~1.0", "symfony/property-access": "~2.8|~3.0" }, "conflict": { "symfony/doctrine-bridge": "<2.7", "symfony/framework-bundle": "<2.7", "symfony/twig-bridge": "<2.7" }, "require-dev": { "doctrine/collections": "~1.0", "symfony/dependency-injection": "~2.8|~3.0", "symfony/http-foundation": "~2.8|~3.0", "symfony/http-kernel": "~2.8|~3.0", "symfony/security-csrf": "~2.8|~3.0", "symfony/translation": "~2.8|~3.0", "symfony/validator": "~2.8|~3.0" }, "suggest": { "symfony/framework-bundle": "For templating with PHP.", "symfony/security-csrf": "For protecting forms against CSRF attacks.", "symfony/twig-bridge": "For templating with Twig.", "symfony/validator": "For form validation." }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Form\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Form Component", "homepage": "https://symfony.com", "time": "2016-07-26 08:03:56" }, { "name": "symfony/http-foundation", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", "reference": "5114f1becca9f29e3af94374f1689c83c1aa3d97" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5114f1becca9f29e3af94374f1689c83c1aa3d97", "reference": "5114f1becca9f29e3af94374f1689c83c1aa3d97", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/polyfill-mbstring": "~1.1" }, "require-dev": { "symfony/expression-language": "~2.8|~3.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\HttpFoundation\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com", "time": "2016-09-21 20:55:10" }, { "name": "symfony/http-kernel", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", "reference": "dc339d6eebadfa6e39c52868b4d4a715eff13c69" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/http-kernel/zipball/dc339d6eebadfa6e39c52868b4d4a715eff13c69", "reference": "dc339d6eebadfa6e39c52868b4d4a715eff13c69", "shasum": "" }, "require": { "php": ">=5.5.9", "psr/log": "~1.0", "symfony/debug": "~2.8|~3.0", "symfony/event-dispatcher": "~2.8|~3.0", "symfony/http-foundation": "~2.8.8|~3.0.8|~3.1.2|~3.2" }, "conflict": { "symfony/config": "<2.8" }, "require-dev": { "symfony/browser-kit": "~2.8|~3.0", "symfony/class-loader": "~2.8|~3.0", "symfony/config": "~2.8|~3.0", "symfony/console": "~2.8|~3.0", "symfony/css-selector": "~2.8|~3.0", "symfony/dependency-injection": "~2.8|~3.0", "symfony/dom-crawler": "~2.8|~3.0", "symfony/expression-language": "~2.8|~3.0", "symfony/finder": "~2.8|~3.0", "symfony/process": "~2.8|~3.0", "symfony/routing": "~2.8|~3.0", "symfony/stopwatch": "~2.8|~3.0", "symfony/templating": "~2.8|~3.0", "symfony/translation": "~2.8|~3.0", "symfony/var-dumper": "~2.8|~3.0" }, "suggest": { "symfony/browser-kit": "", "symfony/class-loader": "", "symfony/config": "", "symfony/console": "", "symfony/dependency-injection": "", "symfony/finder": "", "symfony/var-dumper": "" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\HttpKernel\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com", "time": "2016-10-03 19:01:06" }, { "name": "symfony/inflector", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/inflector.git", "reference": "1ea83acdd81053bdf35ccf3ee91f01b243664b61" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/inflector/zipball/1ea83acdd81053bdf35ccf3ee91f01b243664b61", "reference": "1ea83acdd81053bdf35ccf3ee91f01b243664b61", "shasum": "" }, "require": { "php": ">=5.5.9" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Inflector\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Bernhard Schussek", "email": "bschussek@gmail.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Inflector Component", "homepage": "https://symfony.com", "keywords": [ "inflection", "pluralize", "singularize", "string", "symfony", "words" ], "time": "2016-06-08 11:24:07" }, { "name": "symfony/intl", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/intl.git", "reference": "1dc47c14187c0e7b7dfe8ae3b8dbde9b60b6d96b" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/intl/zipball/1dc47c14187c0e7b7dfe8ae3b8dbde9b60b6d96b", "reference": "1dc47c14187c0e7b7dfe8ae3b8dbde9b60b6d96b", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/polyfill-intl-icu": "~1.0" }, "require-dev": { "symfony/filesystem": "~2.8|~3.0" }, "suggest": { "ext-intl": "to use the component with locales other than \"en\"" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Intl\": "" }, "classmap": [ "Resources/stubs" ], "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Bernhard Schussek", "email": "bschussek@gmail.com" }, { "name": "Eriksen Costa", "email": "eriksen.costa@infranology.com.br" }, { "name": "Igor Wiedler", "email": "igor@wiedler.ch" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.", "homepage": "https://symfony.com", "keywords": [ "i18n", "icu", "internationalization", "intl", "l10n", "localization" ], "time": "2016-09-06 11:02:40" }, { "name": "symfony/monolog-bridge", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/monolog-bridge.git", "reference": "2c83bef77a350d113c74bdc90b39b1a45e848b3e" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/2c83bef77a350d113c74bdc90b39b1a45e848b3e", "reference": "2c83bef77a350d113c74bdc90b39b1a45e848b3e", "shasum": "" }, "require": { "monolog/monolog": "~1.11", "php": ">=5.5.9", "symfony/http-kernel": "~2.8|~3.0" }, "require-dev": { "symfony/console": "~2.8|~3.0", "symfony/event-dispatcher": "~2.8|~3.0" }, "suggest": { "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings. You need version ~2.3 of the console for it.", "symfony/event-dispatcher": "Needed when using log messages in console commands.", "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel." }, "type": "symfony-bridge", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Bridge\Monolog\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Monolog Bridge", "homepage": "https://symfony.com", "time": "2016-06-29 05:40:00" }, { "name": "symfony/options-resolver", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", "reference": "30605874d99af0cde6c41fd39e18546330c38100" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/options-resolver/zipball/30605874d99af0cde6c41fd39e18546330c38100", "reference": "30605874d99af0cde6c41fd39e18546330c38100", "shasum": "" }, "require": { "php": ">=5.5.9" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\OptionsResolver\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony OptionsResolver Component", "homepage": "https://symfony.com", "keywords": [ "config", "configuration", "options" ], "time": "2016-05-12 15:59:27" }, { "name": "symfony/polyfill-intl-icu", "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-icu.git", "reference": "0f8dc2c45f69f8672379e9210bca4a115cd5146f" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/0f8dc2c45f69f8672379e9210bca4a115cd5146f", "reference": "0f8dc2c45f69f8672379e9210bca4a115cd5146f", "shasum": "" }, "require": { "php": ">=5.3.3", "symfony/intl": "~2.3|~3.0" }, "suggest": { "ext-intl": "For best performance" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.2-dev" } }, "autoload": { "files": [ "bootstrap.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony polyfill for intl's ICU-related data and classes", "homepage": "https://symfony.com", "keywords": [ "compatibility", "icu", "intl", "polyfill", "portable", "shim" ], "time": "2016-05-18 14:26:46" }, { "name": "symfony/polyfill-mbstring", "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", "reference": "dff51f72b0706335131b00a7f49606168c582594" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/dff51f72b0706335131b00a7f49606168c582594", "reference": "dff51f72b0706335131b00a7f49606168c582594", "shasum": "" }, "require": { "php": ">=5.3.3" }, "suggest": { "ext-mbstring": "For best performance" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.2-dev" } }, "autoload": { "psr-4": { "Symfony\Polyfill\Mbstring\": "" }, "files": [ "bootstrap.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony polyfill for the Mbstring extension", "homepage": "https://symfony.com", "keywords": [ "compatibility", "mbstring", "polyfill", "portable", "shim" ], "time": "2016-05-18 14:26:46" }, { "name": "symfony/polyfill-php56", "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php56.git", "reference": "3edf57a8fbf9a927533344cef65ad7e1cf31030a" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/3edf57a8fbf9a927533344cef65ad7e1cf31030a", "reference": "3edf57a8fbf9a927533344cef65ad7e1cf31030a", "shasum": "" }, "require": { "php": ">=5.3.3", "symfony/polyfill-util": "~1.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.2-dev" } }, "autoload": { "psr-4": { "Symfony\Polyfill\Php56\": "" }, "files": [ "bootstrap.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", "polyfill", "portable", "shim" ], "time": "2016-05-18 14:26:46" }, { "name": "symfony/polyfill-php70", "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php70.git", "reference": "a42f4b6b05ed458910f8af4c4e1121b0101b2d85" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/a42f4b6b05ed458910f8af4c4e1121b0101b2d85", "reference": "a42f4b6b05ed458910f8af4c4e1121b0101b2d85", "shasum": "" }, "require": { "paragonie/random_compat": "~1.0|~2.0", "php": ">=5.3.3" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.2-dev" } }, "autoload": { "psr-4": { "Symfony\Polyfill\Php70\": "" }, "files": [ "bootstrap.php" ], "classmap": [ "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", "polyfill", "portable", "shim" ], "time": "2016-05-18 14:26:46" }, { "name": "symfony/polyfill-util", "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-util.git", "reference": "ef830ce3d218e622b221d6bfad42c751d974bf99" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/ef830ce3d218e622b221d6bfad42c751d974bf99", "reference": "ef830ce3d218e622b221d6bfad42c751d974bf99", "shasum": "" }, "require": { "php": ">=5.3.3" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.2-dev" } }, "autoload": { "psr-4": { "Symfony\Polyfill\Util\": "" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony utilities for portability of PHP codes", "homepage": "https://symfony.com", "keywords": [ "compat", "compatibility", "polyfill", "shim" ], "time": "2016-05-18 14:26:46" }, { "name": "symfony/process", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/process.git", "reference": "768debc5996f599c4372b322d9061dba2a4bf505" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/process/zipball/768debc5996f599c4372b322d9061dba2a4bf505", "reference": "768debc5996f599c4372b322d9061dba2a4bf505", "shasum": "" }, "require": { "php": ">=5.5.9" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Process\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Process Component", "homepage": "https://symfony.com", "time": "2016-07-28 11:13:34" }, { "name": "symfony/property-access", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/property-access.git", "reference": "6d7212a9bcaacb2c46ed401d0bbaf56c975ab640" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/property-access/zipball/6d7212a9bcaacb2c46ed401d0bbaf56c975ab640", "reference": "6d7212a9bcaacb2c46ed401d0bbaf56c975ab640", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/inflector": "~3.1", "symfony/polyfill-php70": "~1.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\PropertyAccess\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony PropertyAccess Component", "homepage": "https://symfony.com", "keywords": [ "access", "array", "extraction", "index", "injection", "object", "property", "property path", "reflection" ], "time": "2016-08-15 13:15:28" }, { "name": "symfony/routing", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", "reference": "8edf62498a1a4c57ba317664a4b698339c10cdf6" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/routing/zipball/8edf62498a1a4c57ba317664a4b698339c10cdf6", "reference": "8edf62498a1a4c57ba317664a4b698339c10cdf6", "shasum": "" }, "require": { "php": ">=5.5.9" }, "conflict": { "symfony/config": "<2.8" }, "require-dev": { "doctrine/annotations": "~1.0", "doctrine/common": "~2.2", "psr/log": "~1.0", "symfony/config": "~2.8|~3.0", "symfony/expression-language": "~2.8|~3.0", "symfony/http-foundation": "~2.8|~3.0", "symfony/yaml": "~2.8|~3.0" }, "suggest": { "doctrine/annotations": "For using the annotation loader", "symfony/config": "For using the all-in-one router or any loader", "symfony/dependency-injection": "For loading routes from a service", "symfony/expression-language": "For using expression matching", "symfony/http-foundation": "For using a Symfony Request object", "symfony/yaml": "For using the YAML loader" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Routing\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Routing Component", "homepage": "https://symfony.com", "keywords": [ "router", "routing", "uri", "url" ], "time": "2016-08-16 14:58:24" }, { "name": "symfony/security", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/security.git", "reference": "e00948e5ae59fb98477b8b9868aa00646e8d5e23" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/security/zipball/e00948e5ae59fb98477b8b9868aa00646e8d5e23", "reference": "e00948e5ae59fb98477b8b9868aa00646e8d5e23", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/event-dispatcher": "~2.8|~3.0", "symfony/http-foundation": "~2.8|~3.0", "symfony/http-kernel": "~2.8|~3.0", "symfony/polyfill-php56": "~1.0", "symfony/polyfill-php70": "~1.0", "symfony/polyfill-util": "~1.0", "symfony/property-access": "~2.8|~3.0" }, "replace": { "symfony/security-core": "self.version", "symfony/security-csrf": "self.version", "symfony/security-guard": "self.version", "symfony/security-http": "self.version" }, "require-dev": { "psr/log": "~1.0", "symfony/expression-language": "~2.8|~3.0", "symfony/finder": "~2.8|~3.0", "symfony/ldap": "~2.8|~3.0", "symfony/polyfill-intl-icu": "~1.0", "symfony/routing": "~2.8|~3.0", "symfony/validator": "~2.8|~3.0" }, "suggest": { "symfony/expression-language": "For using the expression voter", "symfony/form": "", "symfony/ldap": "For using the LDAP user and authentication providers", "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs", "symfony/validator": "For using the user password constraint" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Security\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Security Component", "homepage": "https://symfony.com", "time": "2016-07-17 13:54:30" }, { "name": "symfony/stopwatch", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", "reference": "bb42806b12c5f89db4ebf64af6741afe6d8457e1" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/stopwatch/zipball/bb42806b12c5f89db4ebf64af6741afe6d8457e1", "reference": "bb42806b12c5f89db4ebf64af6741afe6d8457e1", "shasum": "" }, "require": { "php": ">=5.5.9" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Stopwatch\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Stopwatch Component", "homepage": "https://symfony.com", "time": "2016-06-29 05:41:56" }, { "name": "symfony/translation", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", "reference": "93013a18d272e59dab8e67f583155b78c68947eb" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/translation/zipball/93013a18d272e59dab8e67f583155b78c68947eb", "reference": "93013a18d272e59dab8e67f583155b78c68947eb", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/polyfill-mbstring": "~1.0" }, "conflict": { "symfony/config": "<2.8" }, "require-dev": { "psr/log": "~1.0", "symfony/config": "~2.8|~3.0", "symfony/intl": "~2.8|~3.0", "symfony/yaml": "~2.8|~3.0" }, "suggest": { "psr/log": "To use logging capability in translator", "symfony/config": "", "symfony/yaml": "" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Translation\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", "time": "2016-09-06 11:02:40" }, { "name": "symfony/twig-bridge", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/twig-bridge.git", "reference": "64bebdd119e3626da1c53e44ee5dfb95ad0d7791" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/64bebdd119e3626da1c53e44ee5dfb95ad0d7791", "reference": "64bebdd119e3626da1c53e44ee5dfb95ad0d7791", "shasum": "" }, "require": { "php": ">=5.5.9", "twig/twig": "~1.26|~2.0" }, "require-dev": { "symfony/asset": "~2.8|~3.0", "symfony/console": "~2.8|~3.0", "symfony/expression-language": "~2.8|~3.0", "symfony/finder": "~2.8|~3.0", "symfony/form": "~3.0.4", "symfony/http-kernel": "~2.8|~3.0", "symfony/polyfill-intl-icu": "~1.0", "symfony/routing": "~2.8|~3.0", "symfony/security": "~2.8|~3.0", "symfony/security-acl": "~2.8|~3.0", "symfony/stopwatch": "~2.8|~3.0", "symfony/templating": "~2.8|~3.0", "symfony/translation": "~2.8|~3.0", "symfony/var-dumper": "~2.8.9|~3.0.9|~3.1.3|~3.2", "symfony/yaml": "~2.8|~3.0" }, "suggest": { "symfony/asset": "For using the AssetExtension", "symfony/expression-language": "For using the ExpressionExtension", "symfony/finder": "", "symfony/form": "For using the FormExtension", "symfony/http-kernel": "For using the HttpKernelExtension", "symfony/routing": "For using the RoutingExtension", "symfony/security": "For using the SecurityExtension", "symfony/stopwatch": "For using the StopwatchExtension", "symfony/templating": "For using the TwigEngine", "symfony/translation": "For using the TranslationExtension", "symfony/var-dumper": "For using the DumpExtension", "symfony/yaml": "For using the YamlExtension" }, "type": "symfony-bridge", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Bridge\Twig\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Twig Bridge", "homepage": "https://symfony.com", "time": "2016-10-03 15:50:10" }, { "name": "symfony/validator", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/validator.git", "reference": "929de96597a8133de0f6a6207a8d196e6d52bd80" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/validator/zipball/929de96597a8133de0f6a6207a8d196e6d52bd80", "reference": "929de96597a8133de0f6a6207a8d196e6d52bd80", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/polyfill-mbstring": "~1.0", "symfony/translation": "~2.8|~3.0" }, "require-dev": { "doctrine/annotations": "~1.0", "doctrine/cache": "~1.0", "egulias/email-validator": "~1.2,>=1.2.1", "symfony/config": "~2.8|~3.0", "symfony/expression-language": "~2.8|~3.0", "symfony/http-foundation": "~2.8|~3.0", "symfony/intl": "~2.8|~3.0", "symfony/yaml": "~2.8|~3.0" }, "suggest": { "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.", "doctrine/cache": "For using the default cached annotation reader and metadata cache.", "egulias/email-validator": "Strict (RFC compliant) email validation", "symfony/config": "", "symfony/expression-language": "For using the Expression validator", "symfony/http-foundation": "", "symfony/intl": "", "symfony/property-access": "For using the Expression validator", "symfony/yaml": "" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Validator\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Validator Component", "homepage": "https://symfony.com", "time": "2016-07-26 08:03:56" }, { "name": "symfony/web-profiler-bundle", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/web-profiler-bundle.git", "reference": "a13cdaa4821d681d029efc505bae86c918ca504f" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/a13cdaa4821d681d029efc505bae86c918ca504f", "reference": "a13cdaa4821d681d029efc505bae86c918ca504f", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/http-kernel": "~3.1", "symfony/routing": "~2.8|~3.0", "symfony/twig-bridge": "~2.8|~3.0" }, "require-dev": { "symfony/config": "~2.8|~3.0", "symfony/console": "~2.8|~3.0", "symfony/dependency-injection": "~2.8|~3.0", "symfony/stopwatch": "~2.8|~3.0" }, "type": "symfony-bundle", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Bundle\WebProfilerBundle\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony WebProfilerBundle", "homepage": "https://symfony.com", "time": "2016-09-06 11:02:40" }, { "name": "symfony/yaml", "version": "2.8.x-dev", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", "reference": "e7540734bad981fe59f8ef14b6fc194ae9df8d9c" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/yaml/zipball/e7540734bad981fe59f8ef14b6fc194ae9df8d9c", "reference": "e7540734bad981fe59f8ef14b6fc194ae9df8d9c", "shasum": "" }, "require": { "php": ">=5.3.9" }, "type": "library", "extra": { "branch-alias": { "dev-master": "2.8-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Yaml\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", "time": "2016-09-02 01:57:56" }, { "name": "twig/twig", "version": "v1.26.1", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", "reference": "a09d8ee17ac1cfea29ed60c83960ad685c6a898d" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/twigphp/Twig/zipball/a09d8ee17ac1cfea29ed60c83960ad685c6a898d", "reference": "a09d8ee17ac1cfea29ed60c83960ad685c6a898d", "shasum": "" }, "require": { "php": ">=5.2.7" }, "require-dev": { "symfony/debug": "~2.7", "symfony/phpunit-bridge": "~2.7" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.26-dev" } }, "autoload": { "psr-0": { "Twig_": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "BSD-3-Clause" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com", "homepage": "http://fabien.potencier.org", "role": "Lead Developer" }, { "name": "Armin Ronacher", "email": "armin.ronacher@active-4.com", "role": "Project Founder" }, { "name": "Twig Team", "homepage": "http://twig.sensiolabs.org/contributors", "role": "Contributors" } ], "description": "Twig, the flexible, fast, and secure template language for PHP", "homepage": "http://twig.sensiolabs.org", "keywords": [ "templating" ], "time": "2016-10-05 18:57:41" } ], "packages-dev": [], "aliases": [], "minimum-stability": "stable", "stability-flags": { "symfony/yaml": 20, "deralex/yaml-config-service-provider": 20 }, "prefer-stable": false, "prefer-lowest": false, "platform": { "php": ">=7.0" }, "platform-dev": [] }

But with this one the exception is shown:

{ "readme": [ "This file locks the dependencies of your project to a known state", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], "hash": "45013ccdb7dd38ab8717ebe4720a706b", "content-hash": "17ee88d09f13b7a542cac3547bca6c43", "packages": [ { "name": "deralex/yaml-config-service-provider", "version": "2.0.x-dev", "source": { "type": "git", "url": "https://github.com/deralex/YamlConfigServiceProvider.git", "reference": "6a55520dd4825ee3c0d24ba721757c34013047d4" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/deralex/YamlConfigServiceProvider/zipball/6a55520dd4825ee3c0d24ba721757c34013047d4", "reference": "6a55520dd4825ee3c0d24ba721757c34013047d4", "shasum": "" }, "require": { "pimple/pimple": "~3.0", "symfony/yaml": "~2.4" }, "require-dev": { "phpspec/phpspec": "2.0.@dev" }, "suggest": { "symfony/yaml": "~2.4" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.0-dev" } }, "autoload": { "psr-0": { "DerAlex\Pimple": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Alexander Kluth", "email": "contact@alexanderkluth.com" } ], "description": "Silex ServiceProvider for using YAML configuration files", "keywords": [ "pimple", "silex" ], "time": "2015-03-10 13:55:26" }, { "name": "dflydev/doctrine-orm-service-provider", "version": "v2.0.1", "source": { "type": "git", "url": "https://github.com/dflydev/dflydev-doctrine-orm-service-provider.git", "reference": "84b3f4887a999cbd017010f758122d8409cccac0" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/dflydev/dflydev-doctrine-orm-service-provider/zipball/84b3f4887a999cbd017010f758122d8409cccac0", "reference": "84b3f4887a999cbd017010f758122d8409cccac0", "shasum": "" }, "require": { "doctrine/orm": "~2.3", "php": ">=5.3.3", "pimple/pimple": ">=2.1,<4" }, "type": "library", "extra": { "branch-alias": { "dev-master": "2.0.x-dev" } }, "autoload": { "psr-4": { "Dflydev\Provider\DoctrineOrm\": "src/Dflydev/Provider/DoctrineOrm" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Dragonfly Development Inc.", "email": "info@dflydev.com", "homepage": "http://dflydev.com" }, { "name": "Beau Simensen", "email": "beau@dflydev.com", "homepage": "http://beausimensen.com" } ], "description": "Doctrine ORM Service Provider", "homepage": "http://dflydev.com/projects/doctrine-orm-service-provider/", "keywords": [ "cilex", "doctrine", "orm", "pimple", "silex" ], "time": "2015-09-07 12:14:46" }, { "name": "doctrine/annotations", "version": "v1.2.7", "source": { "type": "git", "url": "https://github.com/doctrine/annotations.git", "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535", "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535", "shasum": "" }, "require": { "doctrine/lexer": "1.", "php": ">=5.3.2" }, "require-dev": { "doctrine/cache": "1.", "phpunit/phpunit": "4." }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.3.x-dev" } }, "autoload": { "psr-0": { "Doctrine\Common\Annotations\": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Roman Borschel", "email": "roman@code-factory.org" }, { "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" } ], "description": "Docblock Annotations Parser", "homepage": "http://www.doctrine-project.org", "keywords": [ "annotations", "docblock", "parser" ], "time": "2015-08-31 12:32:49" }, { "name": "doctrine/cache", "version": "v1.6.0", "source": { "type": "git", "url": "https://github.com/doctrine/cache.git", "reference": "f8af318d14bdb0eff0336795b428b547bd39ccb6" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/cache/zipball/f8af318d14bdb0eff0336795b428b547bd39ccb6", "reference": "f8af318d14bdb0eff0336795b428b547bd39ccb6", "shasum": "" }, "require": { "php": "~5.5|~7.0" }, "conflict": { "doctrine/common": ">2.2,<2.4" }, "require-dev": { "phpunit/phpunit": "~4.8|~5.0", "predis/predis": "~1.0", "satooshi/php-coveralls": "~0.6" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.6.x-dev" } }, "autoload": { "psr-4": { "Doctrine\Common\Cache\": "lib/Doctrine/Common/Cache" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Roman Borschel", "email": "roman@code-factory.org" }, { "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" } ], "description": "Caching library offering an object-oriented API for many cache backends", "homepage": "http://www.doctrine-project.org", "keywords": [ "cache", "caching" ], "time": "2015-12-31 16:37:02" }, { "name": "doctrine/collections", "version": "v1.3.0", "source": { "type": "git", "url": "https://github.com/doctrine/collections.git", "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/collections/zipball/6c1e4eef75f310ea1b3e30945e9f06e652128b8a", "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a", "shasum": "" }, "require": { "php": ">=5.3.2" }, "require-dev": { "phpunit/phpunit": "~4.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.2.x-dev" } }, "autoload": { "psr-0": { "Doctrine\Common\Collections\": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Roman Borschel", "email": "roman@code-factory.org" }, { "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" } ], "description": "Collections Abstraction library", "homepage": "http://www.doctrine-project.org", "keywords": [ "array", "collections", "iterator" ], "time": "2015-04-14 22:21:58" }, { "name": "doctrine/common", "version": "v2.6.1", "source": { "type": "git", "url": "https://github.com/doctrine/common.git", "reference": "a579557bc689580c19fee4e27487a67fe60defc0" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/common/zipball/a579557bc689580c19fee4e27487a67fe60defc0", "reference": "a579557bc689580c19fee4e27487a67fe60defc0", "shasum": "" }, "require": { "doctrine/annotations": "1.", "doctrine/cache": "1.", "doctrine/collections": "1.", "doctrine/inflector": "1.", "doctrine/lexer": "1.", "php": "~5.5|~7.0" }, "require-dev": { "phpunit/phpunit": "~4.8|~5.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "2.7.x-dev" } }, "autoload": { "psr-4": { "Doctrine\Common\": "lib/Doctrine/Common" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Roman Borschel", "email": "roman@code-factory.org" }, { "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" } ], "description": "Common Library for Doctrine projects", "homepage": "http://www.doctrine-project.org", "keywords": [ "annotations", "collections", "eventmanager", "persistence", "spl" ], "time": "2015-12-25 13:18:31" }, { "name": "doctrine/dbal", "version": "v2.5.5", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", "reference": "9f8c05cd5225a320d56d4bfdb4772f10d045a0c9" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/dbal/zipball/9f8c05cd5225a320d56d4bfdb4772f10d045a0c9", "reference": "9f8c05cd5225a320d56d4bfdb4772f10d045a0c9", "shasum": "" }, "require": { "doctrine/common": ">=2.4,<2.7-dev", "php": ">=5.3.2" }, "require-dev": { "phpunit/phpunit": "4.", "symfony/console": "2.||^3.0" }, "suggest": { "symfony/console": "For helpful console commands such as SQL execution and import of files." }, "bin": [ "bin/doctrine-dbal" ], "type": "library", "extra": { "branch-alias": { "dev-master": "2.5.x-dev" } }, "autoload": { "psr-0": { "Doctrine\DBAL\": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Roman Borschel", "email": "roman@code-factory.org" }, { "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" } ], "description": "Database Abstraction Layer", "homepage": "http://www.doctrine-project.org", "keywords": [ "database", "dbal", "persistence", "queryobject" ], "time": "2016-09-09 19:13:33" }, { "name": "doctrine/inflector", "version": "v1.1.0", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", "reference": "90b2128806bfde671b6952ab8bea493942c1fdae" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae", "reference": "90b2128806bfde671b6952ab8bea493942c1fdae", "shasum": "" }, "require": { "php": ">=5.3.2" }, "require-dev": { "phpunit/phpunit": "4._" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.1.x-dev" } }, "autoload": { "psr-0": { "Doctrine\Common\Inflector\": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Roman Borschel", "email": "roman@code-factory.org" }, { "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" } ], "description": "Common String Manipulations with regard to casing and singular/plural rules.", "homepage": "http://www.doctrine-project.org", "keywords": [ "inflection", "pluralize", "singularize", "string" ], "time": "2015-11-06 14:35:42" }, { "name": "doctrine/instantiator", "version": "1.0.5", "source": { "type": "git", "url": "https://github.com/doctrine/instantiator.git", "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d", "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d", "shasum": "" }, "require": { "php": ">=5.3,<8.0-DEV" }, "require-dev": { "athletic/athletic": "~0.1.8", "ext-pdo": "", "ext-phar": "", "phpunit/phpunit": "~4.0", "squizlabs/phpcodesniffer": "~2.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.0.x-dev" } }, "autoload": { "psr-4": { "Doctrine\Instantiator\": "src/Doctrine/Instantiator/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Marco Pivetta", "email": "ocramius@gmail.com", "homepage": "http://ocramius.github.com/" } ], "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", "homepage": "https://github.com/doctrine/instantiator", "keywords": [ "constructor", "instantiate" ], "time": "2015-06-14 21:17:01" }, { "name": "doctrine/lexer", "version": "v1.0.1", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c", "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c", "shasum": "" }, "require": { "php": ">=5.3.2" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.0.x-dev" } }, "autoload": { "psr-0": { "Doctrine\Common\Lexer\": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Roman Borschel", "email": "roman@code-factory.org" }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" } ], "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.", "homepage": "http://www.doctrine-project.org", "keywords": [ "lexer", "parser" ], "time": "2014-09-09 13:34:57" }, { "name": "doctrine/orm", "version": "v2.5.5", "source": { "type": "git", "url": "https://github.com/doctrine/doctrine2.git", "reference": "73e4be7c7b3ba26f96b781a40b33feba4dfa6d45" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/73e4be7c7b3ba26f96b781a40b33feba4dfa6d45", "reference": "73e4be7c7b3ba26f96b781a40b33feba4dfa6d45", "shasum": "" }, "require": { "doctrine/cache": "~1.4", "doctrine/collections": "~1.2", "doctrine/common": ">=2.5-dev,<2.7-dev", "doctrine/dbal": ">=2.5-dev,<2.6-dev", "doctrine/instantiator": "~1.0.1", "ext-pdo": "*", "php": ">=5.4", "symfony/console": "~2.5|~3.0" }, "require-dev": { "phpunit/phpunit": "~4.0", "symfony/yaml": "~2.3|~3.0" }, "suggest": { "symfony/yaml": "If you want to use YAML Metadata Mapping Driver" }, "bin": [ "bin/doctrine", "bin/doctrine.php" ], "type": "library", "extra": { "branch-alias": { "dev-master": "2.6.x-dev" } }, "autoload": { "psr-0": { "Doctrine\ORM\": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Roman Borschel", "email": "roman@code-factory.org" }, { "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" } ], "description": "Object-Relational-Mapper for PHP", "homepage": "http://www.doctrine-project.org", "keywords": [ "database", "orm" ], "time": "2016-09-10 18:51:13" }, { "name": "jaybizzle/crawler-detect", "version": "v1.2.20", "source": { "type": "git", "url": "https://github.com/JayBizzle/Crawler-Detect.git", "reference": "451b217fe79adb9459476231f80b2517d4d404f7" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/451b217fe79adb9459476231f80b2517d4d404f7", "reference": "451b217fe79adb9459476231f80b2517d4d404f7", "shasum": "" }, "require": { "php": ">=5.3.0" }, "require-dev": { "phpunit/phpunit": "" }, "type": "library", "autoload": { "psr-4": { "Jaybizzle\CrawlerDetect\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Mark Beech", "email": "m@rkbee.ch", "role": "Developer" } ], "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent", "homepage": "https://github.com/JayBizzle/Crawler-Detect/", "keywords": [ "crawler", "crawler detect", "crawler detector", "crawlerdetect", "php crawler detect" ], "time": "2016-10-11 20:57:56" }, { "name": "monolog/monolog", "version": "1.21.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", "reference": "f42fbdfd53e306bda545845e4dbfd3e72edb4952" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f42fbdfd53e306bda545845e4dbfd3e72edb4952", "reference": "f42fbdfd53e306bda545845e4dbfd3e72edb4952", "shasum": "" }, "require": { "php": ">=5.3.0", "psr/log": "~1.0" }, "provide": { "psr/log-implementation": "1.0.0" }, "require-dev": { "aws/aws-sdk-php": "^2.4.9", "doctrine/couchdb": "~1.0@dev", "graylog2/gelf-php": "~1.0", "jakub-onderka/php-parallel-lint": "0.9", "php-amqplib/php-amqplib": "~2.4", "php-console/php-console": "^3.1.3", "phpunit/phpunit": "~4.5", "phpunit/phpunit-mock-objects": "2.3.0", "ruflin/elastica": ">=0.90 <3.0", "sentry/sentry": "^0.13", "swiftmailer/swiftmailer": "~5.3" }, "suggest": { "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", "doctrine/couchdb": "Allow sending log messages to a CouchDB server", "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", "ext-mongo": "Allow sending log messages to a MongoDB server", "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver", "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", "php-console/php-console": "Allow sending log messages to Google Chrome", "rollbar/rollbar": "Allow sending log messages to Rollbar", "ruflin/elastica": "Allow sending log messages to an Elastic Search server", "sentry/sentry": "Allow sending log messages to a Sentry server" }, "type": "library", "extra": { "branch-alias": { "dev-master": "2.0.x-dev" } }, "autoload": { "psr-4": { "Monolog\": "src/Monolog" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Jordi Boggiano", "email": "j.boggiano@seld.be", "homepage": "http://seld.be" } ], "description": "Sends your logs to files, sockets, inboxes, databases and various web services", "homepage": "http://github.com/Seldaek/monolog", "keywords": [ "log", "logging", "psr-3" ], "time": "2016-07-29 03:23:52" }, { "name": "oyejorge/less.php", "version": "v1.7.0.10", "source": { "type": "git", "url": "https://github.com/oyejorge/less.php.git", "reference": "a1e2d3c20794b37ac4d0baeb24613e579584033b" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/oyejorge/less.php/zipball/a1e2d3c20794b37ac4d0baeb24613e579584033b", "reference": "a1e2d3c20794b37ac4d0baeb24613e579584033b", "shasum": "" }, "require": { "php": ">=5.3" }, "require-dev": { "phpunit/phpunit": "~4.8.18" }, "bin": [ "bin/lessc" ], "type": "library", "autoload": { "psr-0": { "Less": "lib/" }, "classmap": [ "lessc.inc.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "Apache-2.0" ], "authors": [ { "name": "Matt Agar", "homepage": "https://github.com/agar" }, { "name": "Martin Jantošovič", "homepage": "https://github.com/Mordred" }, { "name": "Josh Schmidt", "homepage": "https://github.com/oyejorge" } ], "description": "PHP port of the Javascript version of LESS http://lesscss.org", "homepage": "http://lessphp.gpeasy.com", "keywords": [ "css", "less", "less.js", "lesscss", "php", "stylesheet" ], "time": "2015-12-30 05:47:36" }, { "name": "paragonie/random_compat", "version": "v2.0.2", "source": { "type": "git", "url": "https://github.com/paragonie/random_compat.git", "reference": "088c04e2f261c33bed6ca5245491cfca69195ccf" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/paragonie/random_compat/zipball/088c04e2f261c33bed6ca5245491cfca69195ccf", "reference": "088c04e2f261c33bed6ca5245491cfca69195ccf", "shasum": "" }, "require": { "php": ">=5.2.0" }, "require-dev": { "phpunit/phpunit": "4.|5." }, "suggest": { "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." }, "type": "library", "autoload": { "files": [ "lib/random.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Paragon Initiative Enterprises", "email": "security@paragonie.com", "homepage": "https://paragonie.com" } ], "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", "keywords": [ "csprng", "pseudorandom", "random" ], "time": "2016-04-03 06:00:07" }, { "name": "pimple/pimple", "version": "v3.0.2", "source": { "type": "git", "url": "https://github.com/silexphp/Pimple.git", "reference": "a30f7d6e57565a2e1a316e1baf2a483f788b258a" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a30f7d6e57565a2e1a316e1baf2a483f788b258a", "reference": "a30f7d6e57565a2e1a316e1baf2a483f788b258a", "shasum": "" }, "require": { "php": ">=5.3.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0.x-dev" } }, "autoload": { "psr-0": { "Pimple": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" } ], "description": "Pimple, a simple Dependency Injection Container", "homepage": "http://pimple.sensiolabs.org", "keywords": [ "container", "dependency injection" ], "time": "2015-09-11 15:10:35" }, { "name": "pmaxs/silex-locale", "version": "2.0.10", "source": { "type": "git", "url": "https://github.com/pmaxs/silex-locale.git", "reference": "b893cde18a642cf061b28e4388d8fa33dea4449b" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/pmaxs/silex-locale/zipball/b893cde18a642cf061b28e4388d8fa33dea4449b", "reference": "b893cde18a642cf061b28e4388d8fa33dea4449b", "shasum": "" }, "require": { "php": ">=5.4.0" }, "require-dev": { "symfony/var-dumper": "^3.1" }, "type": "library", "autoload": { "psr-4": { "Pmaxs\Silex\Locale\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "description": "Silex service provider to adjust locale/language via url", "homepage": "https://github.com/pmaxs/silex-locale", "keywords": [ "locale", "silex", "symfony" ], "time": "2016-09-25 10:23:48" }, { "name": "psr/log", "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", "shasum": "" }, "require": { "php": ">=5.3.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.0.x-dev" } }, "autoload": { "psr-4": { "Psr\Log\": "Psr/Log/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "PHP-FIG", "homepage": "http://www.php-fig.org/" } ], "description": "Common interface for logging libraries", "homepage": "https://github.com/php-fig/log", "keywords": [ "log", "psr", "psr-3" ], "time": "2016-10-10 12:19:37" }, { "name": "silex/silex", "version": "v2.0.3", "source": { "type": "git", "url": "https://github.com/silexphp/Silex.git", "reference": "fd0852ebfa0a4cf1e17d746bb81962ec69bbb6d1" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/silexphp/Silex/zipball/fd0852ebfa0a4cf1e17d746bb81962ec69bbb6d1", "reference": "fd0852ebfa0a4cf1e17d746bb81962ec69bbb6d1", "shasum": "" }, "require": { "php": ">=5.5.9", "pimple/pimple": "~3.0", "symfony/event-dispatcher": "~2.8|^3.0", "symfony/http-foundation": "~2.8|^3.0", "symfony/http-kernel": "~2.8|^3.0", "symfony/routing": "~2.8|^3.0" }, "replace": { "silex/api": "self.version", "silex/providers": "self.version" }, "require-dev": { "doctrine/dbal": "~2.2", "monolog/monolog": "^1.4.1", "swiftmailer/swiftmailer": "~5", "symfony/asset": "~2.8|^3.0", "symfony/browser-kit": "~2.8|^3.0", "symfony/config": "~2.8|^3.0", "symfony/css-selector": "~2.8|^3.0", "symfony/debug": "~2.8|^3.0", "symfony/doctrine-bridge": "~2.8|^3.0", "symfony/dom-crawler": "~2.8|^3.0", "symfony/expression-language": "~2.8|^3.0", "symfony/finder": "~2.8|^3.0", "symfony/form": "~2.8|^3.0", "symfony/intl": "~2.8|^3.0", "symfony/monolog-bridge": "~2.8|^3.0", "symfony/options-resolver": "~2.8|^3.0", "symfony/phpunit-bridge": "~2.8|^3.0", "symfony/process": "~2.8|^3.0", "symfony/security": "~2.8|^3.0", "symfony/serializer": "~2.8|^3.0", "symfony/translation": "~2.8|^3.0", "symfony/twig-bridge": "~2.8|^3.0", "symfony/validator": "~2.8|^3.0", "symfony/var-dumper": "~2.8|^3.0", "twig/twig": "~1.8|~2.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "2.0.x-dev" } }, "autoload": { "psr-4": { "Silex\": "src/Silex" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Igor Wiedler", "email": "igor@wiedler.ch" } ], "description": "The PHP micro-framework based on the Symfony Components", "homepage": "http://silex.sensiolabs.org", "keywords": [ "microframework" ], "time": "2016-08-22 17:50:21" }, { "name": "silex/web-profiler", "version": "v2.0.3", "target-dir": "Silex/Provider", "source": { "type": "git", "url": "https://github.com/silexphp/Silex-WebProfiler.git", "reference": "690937ad788dfeb471afce9dd30bd3bcd61ea7ae" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/silexphp/Silex-WebProfiler/zipball/690937ad788dfeb471afce9dd30bd3bcd61ea7ae", "reference": "690937ad788dfeb471afce9dd30bd3bcd61ea7ae", "shasum": "" }, "require": { "silex/silex": "^2.0", "symfony/stopwatch": "^2.8|^3.0", "symfony/twig-bridge": "^2.8|^3.0", "symfony/web-profiler-bundle": "^2.8|^3.0" }, "conflict": { "symfony/web-profiler-bundle": "3.1.0" }, "require-dev": { "symfony/browser-kit": "^2.8|^3.0", "symfony/css-selector": "^2.8|^3.0", "symfony/debug-bundle": "^2.8|^3.0", "symfony/security": "^2.8|^3.0", "symfony/security-bundle": "^2.8|^3.0", "symfony/translation": "^2.8|^3.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "2.0.x-dev" } }, "autoload": { "psr-0": { "Silex\Provider\": "" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" } ], "description": "A WebProfiler for Silex", "homepage": "http://silex.sensiolabs.org/", "time": "2016-09-30 00:42:55" }, { "name": "symfony/asset", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/asset.git", "reference": "967518f63a096593064c26ae1201a76a58caf216" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/asset/zipball/967518f63a096593064c26ae1201a76a58caf216", "reference": "967518f63a096593064c26ae1201a76a58caf216", "shasum": "" }, "require": { "php": ">=5.5.9" }, "require-dev": { "symfony/http-foundation": "~2.8|~3.0" }, "suggest": { "symfony/http-foundation": "" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Asset\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Asset Component", "homepage": "https://symfony.com", "time": "2016-09-24 15:56:48" }, { "name": "symfony/browser-kit", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", "reference": "387ea8715ab56b34bc4c5c315c87324f1ac414a9" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/browser-kit/zipball/387ea8715ab56b34bc4c5c315c87324f1ac414a9", "reference": "387ea8715ab56b34bc4c5c315c87324f1ac414a9", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/dom-crawler": "~2.8|~3.0" }, "require-dev": { "symfony/css-selector": "~2.8|~3.0", "symfony/process": "~2.8|~3.0" }, "suggest": { "symfony/process": "" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\BrowserKit\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony BrowserKit Component", "homepage": "https://symfony.com", "time": "2016-07-26 08:03:56" }, { "name": "symfony/class-loader", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/class-loader.git", "reference": "00c66ca2de5a9a367706826338df721529a07ca8" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/class-loader/zipball/00c66ca2de5a9a367706826338df721529a07ca8", "reference": "00c66ca2de5a9a367706826338df721529a07ca8", "shasum": "" }, "require": { "php": ">=5.5.9" }, "require-dev": { "symfony/finder": "~2.8|~3.0", "symfony/polyfill-apcu": "~1.1" }, "suggest": { "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\ClassLoader\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony ClassLoader Component", "homepage": "https://symfony.com", "time": "2016-07-10 08:04:44" }, { "name": "symfony/config", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/config.git", "reference": "a7547322f85ab81f6bcb0cd0c6d3abfd0c55d19c" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/config/zipball/a7547322f85ab81f6bcb0cd0c6d3abfd0c55d19c", "reference": "a7547322f85ab81f6bcb0cd0c6d3abfd0c55d19c", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/filesystem": "~2.8|~3.0" }, "suggest": { "symfony/yaml": "To use the yaml reference dumper" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Config\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Config Component", "homepage": "https://symfony.com", "time": "2016-07-26 08:03:56" }, { "name": "symfony/console", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/console.git", "reference": "926061e74229e935d3c5b4e9ba87237316c6693f" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/console/zipball/926061e74229e935d3c5b4e9ba87237316c6693f", "reference": "926061e74229e935d3c5b4e9ba87237316c6693f", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/polyfill-mbstring": "~1.0" }, "require-dev": { "psr/log": "~1.0", "symfony/event-dispatcher": "~2.8|~3.0", "symfony/process": "~2.8|~3.0" }, "suggest": { "psr/log": "For using the console logger", "symfony/event-dispatcher": "", "symfony/process": "" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Console\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Console Component", "homepage": "https://symfony.com", "time": "2016-07-30 07:22:48" }, { "name": "symfony/css-selector", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", "reference": "b8999c1f33c224b2b66b38253f5e3a838d0d0115" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/css-selector/zipball/b8999c1f33c224b2b66b38253f5e3a838d0d0115", "reference": "b8999c1f33c224b2b66b38253f5e3a838d0d0115", "shasum": "" }, "require": { "php": ">=5.5.9" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\CssSelector\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Jean-François Simon", "email": "jeanfrancois.simon@sensiolabs.com" }, { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", "time": "2016-06-29 05:40:00" }, { "name": "symfony/debug", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", "reference": "697c527acd9ea1b2d3efac34d9806bf255278b0a" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/debug/zipball/697c527acd9ea1b2d3efac34d9806bf255278b0a", "reference": "697c527acd9ea1b2d3efac34d9806bf255278b0a", "shasum": "" }, "require": { "php": ">=5.5.9", "psr/log": "~1.0" }, "conflict": { "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2" }, "require-dev": { "symfony/class-loader": "~2.8|~3.0", "symfony/http-kernel": "~2.8|~3.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Debug\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", "time": "2016-07-30 07:22:48" }, { "name": "symfony/doctrine-bridge", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/doctrine-bridge.git", "reference": "210b9f6b4f70d4874682693749a95507fc949363" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/210b9f6b4f70d4874682693749a95507fc949363", "reference": "210b9f6b4f70d4874682693749a95507fc949363", "shasum": "" }, "require": { "doctrine/common": "~2.4", "php": ">=5.5.9", "symfony/polyfill-mbstring": "~1.0" }, "require-dev": { "doctrine/data-fixtures": "1.0._", "doctrine/dbal": "~2.4", "doctrine/orm": "~2.4,>=2.4.5", "symfony/dependency-injection": "~2.8|~3.0", "symfony/expression-language": "~2.8|~3.0", "symfony/form": "~3.0,>=3.0.5", "symfony/http-kernel": "~2.8|~3.0", "symfony/property-access": "~2.8|~3.0", "symfony/property-info": "~2.8|3.0", "symfony/security": "~2.8|~3.0", "symfony/stopwatch": "~2.8|~3.0", "symfony/translation": "~2.8|~3.0", "symfony/validator": "~2.8|~3.0" }, "suggest": { "doctrine/data-fixtures": "", "doctrine/dbal": "", "doctrine/orm": "", "symfony/form": "", "symfony/property-info": "", "symfony/validator": "" }, "type": "symfony-bridge", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Bridge\Doctrine\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Doctrine Bridge", "homepage": "https://symfony.com", "time": "2016-09-29 01:19:09" }, { "name": "symfony/dom-crawler", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", "reference": "bb7395e8b1db3654de82b9f35d019958276de4d7" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/bb7395e8b1db3654de82b9f35d019958276de4d7", "reference": "bb7395e8b1db3654de82b9f35d019958276de4d7", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/polyfill-mbstring": "~1.0" }, "require-dev": { "symfony/css-selector": "~2.8|~3.0" }, "suggest": { "symfony/css-selector": "" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\DomCrawler\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", "time": "2016-08-05 08:37:39" }, { "name": "symfony/event-dispatcher", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", "reference": "c0c00c80b3a69132c4e55c3e7db32b4a387615e5" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/c0c00c80b3a69132c4e55c3e7db32b4a387615e5", "reference": "c0c00c80b3a69132c4e55c3e7db32b4a387615e5", "shasum": "" }, "require": { "php": ">=5.5.9" }, "require-dev": { "psr/log": "~1.0", "symfony/config": "~2.8|~3.0", "symfony/dependency-injection": "~2.8|~3.0", "symfony/expression-language": "~2.8|~3.0", "symfony/stopwatch": "~2.8|~3.0" }, "suggest": { "symfony/dependency-injection": "", "symfony/http-kernel": "" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\EventDispatcher\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", "time": "2016-07-19 10:45:57" }, { "name": "symfony/filesystem", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", "reference": "682fd8fdb3135fdf05fc496a01579ccf6c85c0e5" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/filesystem/zipball/682fd8fdb3135fdf05fc496a01579ccf6c85c0e5", "reference": "682fd8fdb3135fdf05fc496a01579ccf6c85c0e5", "shasum": "" }, "require": { "php": ">=5.5.9" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Filesystem\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Filesystem Component", "homepage": "https://symfony.com", "time": "2016-09-14 00:18:46" }, { "name": "symfony/finder", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", "reference": "3eb4e64c6145ef8b92adefb618a74ebdde9e3fe9" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/finder/zipball/3eb4e64c6145ef8b92adefb618a74ebdde9e3fe9", "reference": "3eb4e64c6145ef8b92adefb618a74ebdde9e3fe9", "shasum": "" }, "require": { "php": ">=5.5.9" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Finder\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", "time": "2016-06-29 05:40:00" }, { "name": "symfony/form", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/form.git", "reference": "a5fa824ab947eb3a965994d32d19aff7c5f4d96c" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/form/zipball/a5fa824ab947eb3a965994d32d19aff7c5f4d96c", "reference": "a5fa824ab947eb3a965994d32d19aff7c5f4d96c", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/event-dispatcher": "~2.8|~3.0", "symfony/intl": "~2.8|~3.0", "symfony/options-resolver": "~2.8|~3.0", "symfony/polyfill-mbstring": "~1.0", "symfony/property-access": "~2.8|~3.0" }, "conflict": { "symfony/doctrine-bridge": "<2.7", "symfony/framework-bundle": "<2.7", "symfony/twig-bridge": "<2.7" }, "require-dev": { "doctrine/collections": "~1.0", "symfony/dependency-injection": "~2.8|~3.0", "symfony/http-foundation": "~2.8|~3.0", "symfony/http-kernel": "~2.8|~3.0", "symfony/security-csrf": "~2.8|~3.0", "symfony/translation": "~2.8|~3.0", "symfony/validator": "~2.8|~3.0" }, "suggest": { "symfony/framework-bundle": "For templating with PHP.", "symfony/security-csrf": "For protecting forms against CSRF attacks.", "symfony/twig-bridge": "For templating with Twig.", "symfony/validator": "For form validation." }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Form\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Form Component", "homepage": "https://symfony.com", "time": "2016-07-26 08:03:56" }, { "name": "symfony/http-foundation", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", "reference": "5114f1becca9f29e3af94374f1689c83c1aa3d97" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5114f1becca9f29e3af94374f1689c83c1aa3d97", "reference": "5114f1becca9f29e3af94374f1689c83c1aa3d97", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/polyfill-mbstring": "~1.1" }, "require-dev": { "symfony/expression-language": "~2.8|~3.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\HttpFoundation\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com", "time": "2016-09-21 20:55:10" }, { "name": "symfony/http-kernel", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", "reference": "dc339d6eebadfa6e39c52868b4d4a715eff13c69" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/http-kernel/zipball/dc339d6eebadfa6e39c52868b4d4a715eff13c69", "reference": "dc339d6eebadfa6e39c52868b4d4a715eff13c69", "shasum": "" }, "require": { "php": ">=5.5.9", "psr/log": "~1.0", "symfony/debug": "~2.8|~3.0", "symfony/event-dispatcher": "~2.8|~3.0", "symfony/http-foundation": "~2.8.8|~3.0.8|~3.1.2|~3.2" }, "conflict": { "symfony/config": "<2.8" }, "require-dev": { "symfony/browser-kit": "~2.8|~3.0", "symfony/class-loader": "~2.8|~3.0", "symfony/config": "~2.8|~3.0", "symfony/console": "~2.8|~3.0", "symfony/css-selector": "~2.8|~3.0", "symfony/dependency-injection": "~2.8|~3.0", "symfony/dom-crawler": "~2.8|~3.0", "symfony/expression-language": "~2.8|~3.0", "symfony/finder": "~2.8|~3.0", "symfony/process": "~2.8|~3.0", "symfony/routing": "~2.8|~3.0", "symfony/stopwatch": "~2.8|~3.0", "symfony/templating": "~2.8|~3.0", "symfony/translation": "~2.8|~3.0", "symfony/var-dumper": "~2.8|~3.0" }, "suggest": { "symfony/browser-kit": "", "symfony/class-loader": "", "symfony/config": "", "symfony/console": "", "symfony/dependency-injection": "", "symfony/finder": "", "symfony/var-dumper": "" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\HttpKernel\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com", "time": "2016-10-03 19:01:06" }, { "name": "symfony/inflector", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/inflector.git", "reference": "1ea83acdd81053bdf35ccf3ee91f01b243664b61" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/inflector/zipball/1ea83acdd81053bdf35ccf3ee91f01b243664b61", "reference": "1ea83acdd81053bdf35ccf3ee91f01b243664b61", "shasum": "" }, "require": { "php": ">=5.5.9" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Inflector\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Bernhard Schussek", "email": "bschussek@gmail.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Inflector Component", "homepage": "https://symfony.com", "keywords": [ "inflection", "pluralize", "singularize", "string", "symfony", "words" ], "time": "2016-06-08 11:24:07" }, { "name": "symfony/intl", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/intl.git", "reference": "1dc47c14187c0e7b7dfe8ae3b8dbde9b60b6d96b" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/intl/zipball/1dc47c14187c0e7b7dfe8ae3b8dbde9b60b6d96b", "reference": "1dc47c14187c0e7b7dfe8ae3b8dbde9b60b6d96b", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/polyfill-intl-icu": "~1.0" }, "require-dev": { "symfony/filesystem": "~2.8|~3.0" }, "suggest": { "ext-intl": "to use the component with locales other than \"en\"" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Intl\": "" }, "classmap": [ "Resources/stubs" ], "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Bernhard Schussek", "email": "bschussek@gmail.com" }, { "name": "Eriksen Costa", "email": "eriksen.costa@infranology.com.br" }, { "name": "Igor Wiedler", "email": "igor@wiedler.ch" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.", "homepage": "https://symfony.com", "keywords": [ "i18n", "icu", "internationalization", "intl", "l10n", "localization" ], "time": "2016-09-06 11:02:40" }, { "name": "symfony/monolog-bridge", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/monolog-bridge.git", "reference": "2c83bef77a350d113c74bdc90b39b1a45e848b3e" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/2c83bef77a350d113c74bdc90b39b1a45e848b3e", "reference": "2c83bef77a350d113c74bdc90b39b1a45e848b3e", "shasum": "" }, "require": { "monolog/monolog": "~1.11", "php": ">=5.5.9", "symfony/http-kernel": "~2.8|~3.0" }, "require-dev": { "symfony/console": "~2.8|~3.0", "symfony/event-dispatcher": "~2.8|~3.0" }, "suggest": { "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings. You need version ~2.3 of the console for it.", "symfony/event-dispatcher": "Needed when using log messages in console commands.", "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel." }, "type": "symfony-bridge", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Bridge\Monolog\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Monolog Bridge", "homepage": "https://symfony.com", "time": "2016-06-29 05:40:00" }, { "name": "symfony/options-resolver", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", "reference": "30605874d99af0cde6c41fd39e18546330c38100" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/options-resolver/zipball/30605874d99af0cde6c41fd39e18546330c38100", "reference": "30605874d99af0cde6c41fd39e18546330c38100", "shasum": "" }, "require": { "php": ">=5.5.9" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\OptionsResolver\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony OptionsResolver Component", "homepage": "https://symfony.com", "keywords": [ "config", "configuration", "options" ], "time": "2016-05-12 15:59:27" }, { "name": "symfony/polyfill-intl-icu", "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-icu.git", "reference": "0f8dc2c45f69f8672379e9210bca4a115cd5146f" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/0f8dc2c45f69f8672379e9210bca4a115cd5146f", "reference": "0f8dc2c45f69f8672379e9210bca4a115cd5146f", "shasum": "" }, "require": { "php": ">=5.3.3", "symfony/intl": "~2.3|~3.0" }, "suggest": { "ext-intl": "For best performance" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.2-dev" } }, "autoload": { "files": [ "bootstrap.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony polyfill for intl's ICU-related data and classes", "homepage": "https://symfony.com", "keywords": [ "compatibility", "icu", "intl", "polyfill", "portable", "shim" ], "time": "2016-05-18 14:26:46" }, { "name": "symfony/polyfill-mbstring", "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", "reference": "dff51f72b0706335131b00a7f49606168c582594" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/dff51f72b0706335131b00a7f49606168c582594", "reference": "dff51f72b0706335131b00a7f49606168c582594", "shasum": "" }, "require": { "php": ">=5.3.3" }, "suggest": { "ext-mbstring": "For best performance" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.2-dev" } }, "autoload": { "psr-4": { "Symfony\Polyfill\Mbstring\": "" }, "files": [ "bootstrap.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony polyfill for the Mbstring extension", "homepage": "https://symfony.com", "keywords": [ "compatibility", "mbstring", "polyfill", "portable", "shim" ], "time": "2016-05-18 14:26:46" }, { "name": "symfony/polyfill-php56", "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php56.git", "reference": "3edf57a8fbf9a927533344cef65ad7e1cf31030a" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/3edf57a8fbf9a927533344cef65ad7e1cf31030a", "reference": "3edf57a8fbf9a927533344cef65ad7e1cf31030a", "shasum": "" }, "require": { "php": ">=5.3.3", "symfony/polyfill-util": "~1.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.2-dev" } }, "autoload": { "psr-4": { "Symfony\Polyfill\Php56\": "" }, "files": [ "bootstrap.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", "polyfill", "portable", "shim" ], "time": "2016-05-18 14:26:46" }, { "name": "symfony/polyfill-php70", "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php70.git", "reference": "a42f4b6b05ed458910f8af4c4e1121b0101b2d85" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/a42f4b6b05ed458910f8af4c4e1121b0101b2d85", "reference": "a42f4b6b05ed458910f8af4c4e1121b0101b2d85", "shasum": "" }, "require": { "paragonie/random_compat": "~1.0|~2.0", "php": ">=5.3.3" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.2-dev" } }, "autoload": { "psr-4": { "Symfony\Polyfill\Php70\": "" }, "files": [ "bootstrap.php" ], "classmap": [ "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", "polyfill", "portable", "shim" ], "time": "2016-05-18 14:26:46" }, { "name": "symfony/polyfill-util", "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-util.git", "reference": "ef830ce3d218e622b221d6bfad42c751d974bf99" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/ef830ce3d218e622b221d6bfad42c751d974bf99", "reference": "ef830ce3d218e622b221d6bfad42c751d974bf99", "shasum": "" }, "require": { "php": ">=5.3.3" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.2-dev" } }, "autoload": { "psr-4": { "Symfony\Polyfill\Util\": "" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony utilities for portability of PHP codes", "homepage": "https://symfony.com", "keywords": [ "compat", "compatibility", "polyfill", "shim" ], "time": "2016-05-18 14:26:46" }, { "name": "symfony/process", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/process.git", "reference": "768debc5996f599c4372b322d9061dba2a4bf505" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/process/zipball/768debc5996f599c4372b322d9061dba2a4bf505", "reference": "768debc5996f599c4372b322d9061dba2a4bf505", "shasum": "" }, "require": { "php": ">=5.5.9" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Process\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Process Component", "homepage": "https://symfony.com", "time": "2016-07-28 11:13:34" }, { "name": "symfony/property-access", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/property-access.git", "reference": "6d7212a9bcaacb2c46ed401d0bbaf56c975ab640" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/property-access/zipball/6d7212a9bcaacb2c46ed401d0bbaf56c975ab640", "reference": "6d7212a9bcaacb2c46ed401d0bbaf56c975ab640", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/inflector": "~3.1", "symfony/polyfill-php70": "~1.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\PropertyAccess\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony PropertyAccess Component", "homepage": "https://symfony.com", "keywords": [ "access", "array", "extraction", "index", "injection", "object", "property", "property path", "reflection" ], "time": "2016-08-15 13:15:28" }, { "name": "symfony/routing", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", "reference": "8edf62498a1a4c57ba317664a4b698339c10cdf6" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/routing/zipball/8edf62498a1a4c57ba317664a4b698339c10cdf6", "reference": "8edf62498a1a4c57ba317664a4b698339c10cdf6", "shasum": "" }, "require": { "php": ">=5.5.9" }, "conflict": { "symfony/config": "<2.8" }, "require-dev": { "doctrine/annotations": "~1.0", "doctrine/common": "~2.2", "psr/log": "~1.0", "symfony/config": "~2.8|~3.0", "symfony/expression-language": "~2.8|~3.0", "symfony/http-foundation": "~2.8|~3.0", "symfony/yaml": "~2.8|~3.0" }, "suggest": { "doctrine/annotations": "For using the annotation loader", "symfony/config": "For using the all-in-one router or any loader", "symfony/dependency-injection": "For loading routes from a service", "symfony/expression-language": "For using expression matching", "symfony/http-foundation": "For using a Symfony Request object", "symfony/yaml": "For using the YAML loader" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Routing\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Routing Component", "homepage": "https://symfony.com", "keywords": [ "router", "routing", "uri", "url" ], "time": "2016-08-16 14:58:24" }, { "name": "symfony/security", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/security.git", "reference": "e00948e5ae59fb98477b8b9868aa00646e8d5e23" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/security/zipball/e00948e5ae59fb98477b8b9868aa00646e8d5e23", "reference": "e00948e5ae59fb98477b8b9868aa00646e8d5e23", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/event-dispatcher": "~2.8|~3.0", "symfony/http-foundation": "~2.8|~3.0", "symfony/http-kernel": "~2.8|~3.0", "symfony/polyfill-php56": "~1.0", "symfony/polyfill-php70": "~1.0", "symfony/polyfill-util": "~1.0", "symfony/property-access": "~2.8|~3.0" }, "replace": { "symfony/security-core": "self.version", "symfony/security-csrf": "self.version", "symfony/security-guard": "self.version", "symfony/security-http": "self.version" }, "require-dev": { "psr/log": "~1.0", "symfony/expression-language": "~2.8|~3.0", "symfony/finder": "~2.8|~3.0", "symfony/ldap": "~2.8|~3.0", "symfony/polyfill-intl-icu": "~1.0", "symfony/routing": "~2.8|~3.0", "symfony/validator": "~2.8|~3.0" }, "suggest": { "symfony/expression-language": "For using the expression voter", "symfony/form": "", "symfony/ldap": "For using the LDAP user and authentication providers", "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs", "symfony/validator": "For using the user password constraint" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Security\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Security Component", "homepage": "https://symfony.com", "time": "2016-07-17 13:54:30" }, { "name": "symfony/stopwatch", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", "reference": "bb42806b12c5f89db4ebf64af6741afe6d8457e1" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/stopwatch/zipball/bb42806b12c5f89db4ebf64af6741afe6d8457e1", "reference": "bb42806b12c5f89db4ebf64af6741afe6d8457e1", "shasum": "" }, "require": { "php": ">=5.5.9" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Stopwatch\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Stopwatch Component", "homepage": "https://symfony.com", "time": "2016-06-29 05:41:56" }, { "name": "symfony/translation", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", "reference": "93013a18d272e59dab8e67f583155b78c68947eb" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/translation/zipball/93013a18d272e59dab8e67f583155b78c68947eb", "reference": "93013a18d272e59dab8e67f583155b78c68947eb", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/polyfill-mbstring": "~1.0" }, "conflict": { "symfony/config": "<2.8" }, "require-dev": { "psr/log": "~1.0", "symfony/config": "~2.8|~3.0", "symfony/intl": "~2.8|~3.0", "symfony/yaml": "~2.8|~3.0" }, "suggest": { "psr/log": "To use logging capability in translator", "symfony/config": "", "symfony/yaml": "" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Translation\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", "time": "2016-09-06 11:02:40" }, { "name": "symfony/twig-bridge", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/twig-bridge.git", "reference": "64bebdd119e3626da1c53e44ee5dfb95ad0d7791" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/64bebdd119e3626da1c53e44ee5dfb95ad0d7791", "reference": "64bebdd119e3626da1c53e44ee5dfb95ad0d7791", "shasum": "" }, "require": { "php": ">=5.5.9", "twig/twig": "~1.26|~2.0" }, "require-dev": { "symfony/asset": "~2.8|~3.0", "symfony/console": "~2.8|~3.0", "symfony/expression-language": "~2.8|~3.0", "symfony/finder": "~2.8|~3.0", "symfony/form": "~3.0.4", "symfony/http-kernel": "~2.8|~3.0", "symfony/polyfill-intl-icu": "~1.0", "symfony/routing": "~2.8|~3.0", "symfony/security": "~2.8|~3.0", "symfony/security-acl": "~2.8|~3.0", "symfony/stopwatch": "~2.8|~3.0", "symfony/templating": "~2.8|~3.0", "symfony/translation": "~2.8|~3.0", "symfony/var-dumper": "~2.8.9|~3.0.9|~3.1.3|~3.2", "symfony/yaml": "~2.8|~3.0" }, "suggest": { "symfony/asset": "For using the AssetExtension", "symfony/expression-language": "For using the ExpressionExtension", "symfony/finder": "", "symfony/form": "For using the FormExtension", "symfony/http-kernel": "For using the HttpKernelExtension", "symfony/routing": "For using the RoutingExtension", "symfony/security": "For using the SecurityExtension", "symfony/stopwatch": "For using the StopwatchExtension", "symfony/templating": "For using the TwigEngine", "symfony/translation": "For using the TranslationExtension", "symfony/var-dumper": "For using the DumpExtension", "symfony/yaml": "For using the YamlExtension" }, "type": "symfony-bridge", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Bridge\Twig\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Twig Bridge", "homepage": "https://symfony.com", "time": "2016-10-03 15:50:10" }, { "name": "symfony/validator", "version": "v3.0.9", "source": { "type": "git", "url": "https://github.com/symfony/validator.git", "reference": "929de96597a8133de0f6a6207a8d196e6d52bd80" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/validator/zipball/929de96597a8133de0f6a6207a8d196e6d52bd80", "reference": "929de96597a8133de0f6a6207a8d196e6d52bd80", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/polyfill-mbstring": "~1.0", "symfony/translation": "~2.8|~3.0" }, "require-dev": { "doctrine/annotations": "~1.0", "doctrine/cache": "~1.0", "egulias/email-validator": "~1.2,>=1.2.1", "symfony/config": "~2.8|~3.0", "symfony/expression-language": "~2.8|~3.0", "symfony/http-foundation": "~2.8|~3.0", "symfony/intl": "~2.8|~3.0", "symfony/yaml": "~2.8|~3.0" }, "suggest": { "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.", "doctrine/cache": "For using the default cached annotation reader and metadata cache.", "egulias/email-validator": "Strict (RFC compliant) email validation", "symfony/config": "", "symfony/expression-language": "For using the Expression validator", "symfony/http-foundation": "", "symfony/intl": "", "symfony/property-access": "For using the Expression validator", "symfony/yaml": "" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.0-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Validator\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Validator Component", "homepage": "https://symfony.com", "time": "2016-07-26 08:03:56" }, { "name": "symfony/web-profiler-bundle", "version": "v3.1.5", "source": { "type": "git", "url": "https://github.com/symfony/web-profiler-bundle.git", "reference": "a13cdaa4821d681d029efc505bae86c918ca504f" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/a13cdaa4821d681d029efc505bae86c918ca504f", "reference": "a13cdaa4821d681d029efc505bae86c918ca504f", "shasum": "" }, "require": { "php": ">=5.5.9", "symfony/http-kernel": "~3.1", "symfony/routing": "~2.8|~3.0", "symfony/twig-bridge": "~2.8|~3.0" }, "require-dev": { "symfony/config": "~2.8|~3.0", "symfony/console": "~2.8|~3.0", "symfony/dependency-injection": "~2.8|~3.0", "symfony/stopwatch": "~2.8|~3.0" }, "type": "symfony-bundle", "extra": { "branch-alias": { "dev-master": "3.1-dev" } }, "autoload": { "psr-4": { "Symfony\Bundle\WebProfilerBundle\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony WebProfilerBundle", "homepage": "https://symfony.com", "time": "2016-09-06 11:02:40" }, { "name": "symfony/yaml", "version": "2.8.x-dev", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", "reference": "e7540734bad981fe59f8ef14b6fc194ae9df8d9c" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/yaml/zipball/e7540734bad981fe59f8ef14b6fc194ae9df8d9c", "reference": "e7540734bad981fe59f8ef14b6fc194ae9df8d9c", "shasum": "" }, "require": { "php": ">=5.3.9" }, "type": "library", "extra": { "branch-alias": { "dev-master": "2.8-dev" } }, "autoload": { "psr-4": { "Symfony\Component\Yaml\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", "time": "2016-09-02 01:57:56" }, { "name": "twig/twig", "version": "v1.26.1", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", "reference": "a09d8ee17ac1cfea29ed60c83960ad685c6a898d" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/twigphp/Twig/zipball/a09d8ee17ac1cfea29ed60c83960ad685c6a898d", "reference": "a09d8ee17ac1cfea29ed60c83960ad685c6a898d", "shasum": "" }, "require": { "php": ">=5.2.7" }, "require-dev": { "symfony/debug": "~2.7", "symfony/phpunit-bridge": "~2.7" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.26-dev" } }, "autoload": { "psr-0": { "Twig_": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "BSD-3-Clause" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com", "homepage": "http://fabien.potencier.org", "role": "Lead Developer" }, { "name": "Armin Ronacher", "email": "armin.ronacher@active-4.com", "role": "Project Founder" }, { "name": "Twig Team", "homepage": "http://twig.sensiolabs.org/contributors", "role": "Contributors" } ], "description": "Twig, the flexible, fast, and secure template language for PHP", "homepage": "http://twig.sensiolabs.org", "keywords": [ "templating" ], "time": "2016-10-05 18:57:41" } ], "packages-dev": [], "aliases": [], "minimum-stability": "stable", "stability-flags": { "symfony/yaml": 20, "deralex/yaml-config-service-provider": 20 }, "prefer-stable": false, "prefer-lowest": false, "platform": { "php": ">=7.0" }, "platform-dev": [] }

cybtow commented 8 years ago

Finally, I have discovered:

I have checked your version 2.0.10 with silex 2.0.1, 2.0.2 and 2.0.3 and the error is produced. Your version 2.0.4 is valid for silex 2.0.1, 2.0.2 and 2.0.3.

pmaxs commented 8 years ago

I've fixed this bug. Check, pls

cybtow commented 8 years ago

Now, the exception is not shown. But there is other problem. The function path() in Twig does not include the $_locale automatically (this works well in your version 2.0.4).

Twig {{ path('hello_name', {'name': 'juan'}) }} in 2.0.4 --> http://.../index_dev.php/es/hello/juan/
Twig {{ path('hello_name', {'name': 'juan'}) }} in 2.0.11 --> http://.../index_dev.php/hello/juan/
pmaxs commented 8 years ago

Locale is not included in path if it is default, es is default locale.

cybtow commented 8 years ago

Sorry, I wrote bad the configuration. This is the correct one: $app['locale_fallbacks'] = array('en'); $app['locale.locales'] = array('es','en'); $app['locale.default_locale'] = 'en'; $app['locale.resolve_by_host'] = 0; $app['locale.excluderoutes'] = ['^'];

With 2.0.4 I can see the 'es' in the generated url, but with 2.0.11 not. (i am using my same source code in these tests, I only change your version library, and I can see changes in the generated url).

pmaxs commented 8 years ago

Provide current url, route description and code for generating url, please

cybtow commented 8 years ago

I have run the tests again and now it works. Maybe cache problem? I have tested again in a clean browser with the restarted served and the new version 2.1.0 is working correctly.

pmaxs commented 8 years ago

I've updated package and description about url generation