Skip to content
Snippets Groups Projects
installed.json 351 KiB
Newer Older
bcweaver's avatar
bcweaver committed
            {
                "name": "Nicolas Grekas",
                "email": "p@tchwork.com"
            },
            {
                "name": "Symfony Community",
                "homepage": "https://symfony.com/contributors"
            }
        ],
        "description": "Symfony mechanism for exploring and dumping PHP variables",
        "homepage": "https://symfony.com",
        "keywords": [
            "debug",
            "dump"
        ]
    },
    {
        "name": "symfony/yaml",
        "version": "v3.4.14",
        "version_normalized": "3.4.14.0",
        "source": {
            "type": "git",
            "url": "https://github.com/symfony/yaml.git",
            "reference": "810af2d35fc72b6cf5c01116806d2b65ccaaf2e2"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/symfony/yaml/zipball/810af2d35fc72b6cf5c01116806d2b65ccaaf2e2",
            "reference": "810af2d35fc72b6cf5c01116806d2b65ccaaf2e2",
            "shasum": ""
        },
        "require": {
            "php": "^5.5.9|>=7.0.8",
            "symfony/polyfill-ctype": "~1.8"
        },
        "conflict": {
            "symfony/console": "<3.4"
        },
        "require-dev": {
            "symfony/console": "~3.4|~4.0"
        },
        "suggest": {
            "symfony/console": "For validating YAML files using the lint command"
        },
        "time": "2018-07-26T11:19:56+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "3.4-dev"
            }
        },
        "installation-source": "dist",
        "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"
    },
    {
        "name": "twig/extensions",
        "version": "v1.5.2",
        "version_normalized": "1.5.2.0",
        "source": {
            "type": "git",
            "url": "https://github.com/twigphp/Twig-extensions.git",
            "reference": "2c1a86526d0044065220d1b51ac08348bea5ca82"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/2c1a86526d0044065220d1b51ac08348bea5ca82",
            "reference": "2c1a86526d0044065220d1b51ac08348bea5ca82",
            "shasum": ""
        },
        "require": {
            "twig/twig": "^1.27|^2.0"
        },
        "require-dev": {
            "symfony/phpunit-bridge": "^3.4",
            "symfony/translation": "^2.7|^3.4"
        },
        "suggest": {
            "symfony/translation": "Allow the time_diff output to be translated"
        },
        "time": "2018-05-22T13:26:07+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "1.5-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-0": {
                "Twig_Extensions_": "lib/"
            },
            "psr-4": {
                "Twig\\Extensions\\": "src/"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Fabien Potencier",
                "email": "fabien@symfony.com"
            }
        ],
        "description": "Common additional features for Twig that do not directly belong in core",
        "keywords": [
            "i18n",
            "text"
        ]
    },
    {
        "name": "twig/twig",
        "version": "v1.35.3",
        "version_normalized": "1.35.3.0",
        "source": {
            "type": "git",
            "url": "https://github.com/twigphp/Twig.git",
            "reference": "b48680b6eb7d16b5025b9bfc4108d86f6b8af86f"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/twigphp/Twig/zipball/b48680b6eb7d16b5025b9bfc4108d86f6b8af86f",
            "reference": "b48680b6eb7d16b5025b9bfc4108d86f6b8af86f",
            "shasum": ""
        },
        "require": {
            "php": ">=5.3.3"
        },
        "require-dev": {
            "psr/container": "^1.0",
            "symfony/debug": "^2.7",
            "symfony/phpunit-bridge": "^3.3"
        },
        "time": "2018-03-20T04:25:58+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "1.35-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-0": {
                "Twig_": "lib/"
            },
            "psr-4": {
                "Twig\\": "src/"
            }
        },
        "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"
        ]
    },
bcweaver's avatar
bcweaver committed
    {
        "name": "typo3/phar-stream-wrapper",
        "version": "v2.0.1",
        "version_normalized": "2.0.1.0",
        "source": {
            "type": "git",
            "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
            "reference": "0469d9fefa0146ea4299d3b11cfbb76faa7045bf"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/0469d9fefa0146ea4299d3b11cfbb76faa7045bf",
            "reference": "0469d9fefa0146ea4299d3b11cfbb76faa7045bf",
            "shasum": ""
        },
        "require": {
            "php": "^5.3.3|^7.0"
        },
        "require-dev": {
            "phpunit/phpunit": "^4.8.36"
        },
        "time": "2018-10-18T08:46:28+00:00",
        "type": "library",
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "TYPO3\\PharStreamWrapper\\": "src/"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "description": "Interceptors for PHP's native phar:// stream handling",
        "homepage": "https://typo3.org/",
        "keywords": [
            "phar",
            "php",
            "security",
            "stream-wrapper"
        ]
    },
bcweaver's avatar
bcweaver committed
10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795
    {
        "name": "webflo/drupal-core-strict",
        "version": "8.5.6",
        "version_normalized": "8.5.6.0",
        "source": {
            "type": "git",
            "url": "https://github.com/webflo/drupal-core-strict.git",
            "reference": "e95610956f961f4421fd9a36849dcd6e2b55f4fe"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/webflo/drupal-core-strict/zipball/e95610956f961f4421fd9a36849dcd6e2b55f4fe",
            "reference": "e95610956f961f4421fd9a36849dcd6e2b55f4fe",
            "shasum": ""
        },
        "require": {
            "asm89/stack-cors": "1.2.0",
            "composer/installers": "v1.5.0",
            "composer/semver": "1.4.2",
            "doctrine/annotations": "v1.2.7",
            "doctrine/cache": "v1.6.1",
            "doctrine/collections": "v1.3.0",
            "doctrine/common": "v2.6.2",
            "doctrine/inflector": "v1.1.0",
            "doctrine/lexer": "v1.0.1",
            "easyrdf/easyrdf": "0.9.1",
            "egulias/email-validator": "1.2.14",
            "guzzlehttp/guzzle": "6.3.0",
            "guzzlehttp/promises": "v1.3.1",
            "guzzlehttp/psr7": "1.4.2",
            "masterminds/html5": "2.3.0",
            "paragonie/random_compat": "v2.0.11",
            "psr/container": "1.0.0",
            "psr/http-message": "1.0.1",
            "psr/log": "1.0.2",
            "stack/builder": "v1.0.5",
            "symfony-cmf/routing": "1.4.1",
            "symfony/class-loader": "v3.4.14",
            "symfony/console": "v3.4.14",
            "symfony/debug": "v3.4.14",
            "symfony/dependency-injection": "v3.4.14",
            "symfony/event-dispatcher": "v3.4.14",
            "symfony/http-foundation": "v3.4.14",
            "symfony/http-kernel": "v3.4.14",
            "symfony/polyfill-ctype": "v1.8.0",
            "symfony/polyfill-iconv": "v1.8.0",
            "symfony/polyfill-mbstring": "v1.8.0",
            "symfony/polyfill-php70": "v1.8.0",
            "symfony/process": "v3.4.14",
            "symfony/psr-http-message-bridge": "v1.0.2",
            "symfony/routing": "v3.4.14",
            "symfony/serializer": "v3.4.14",
            "symfony/translation": "v3.4.14",
            "symfony/validator": "v3.4.14",
            "symfony/yaml": "v3.4.14",
            "twig/twig": "v1.35.3",
            "wikimedia/composer-merge-plugin": "v1.4.1",
            "zendframework/zend-diactoros": "1.4.1",
            "zendframework/zend-escaper": "2.5.2",
            "zendframework/zend-feed": "2.7.0",
            "zendframework/zend-stdlib": "3.0.1"
        },
        "require-dev": {
            "behat/mink": "dev-master#9ea1cebe3dc529ba3861d87c818f045362c40484",
            "behat/mink-browserkit-driver": "v1.3.2",
            "behat/mink-goutte-driver": "v1.2.1",
            "behat/mink-selenium2-driver": "dev-master#93474c65a2a7bf959200ab5f7a14cc450645c185",
            "doctrine/instantiator": "1.0.5",
            "drupal/coder": "8.2.12",
            "fabpot/goutte": "v3.2.1",
            "instaclick/php-webdriver": "1.4.5",
            "ircmaxell/password-compat": "v1.0.4",
            "jcalderonzumba/gastonjs": "v1.0.2",
            "jcalderonzumba/mink-phantomjs-driver": "v0.3.2",
            "mikey179/vfsstream": "v1.6.5",
            "phpdocumentor/reflection-docblock": "2.0.4",
            "phpspec/prophecy": "v1.7.0",
            "phpunit/php-code-coverage": "2.2.4",
            "phpunit/php-file-iterator": "1.4.2",
            "phpunit/php-text-template": "1.2.1",
            "phpunit/php-timer": "1.0.9",
            "phpunit/php-token-stream": "1.4.11",
            "phpunit/phpunit": "4.8.36",
            "phpunit/phpunit-mock-objects": "2.3.8",
            "sebastian/comparator": "1.2.4",
            "sebastian/diff": "1.4.1",
            "sebastian/environment": "1.3.8",
            "sebastian/exporter": "1.2.2",
            "sebastian/global-state": "1.1.1",
            "sebastian/recursion-context": "1.0.5",
            "sebastian/version": "1.0.6",
            "squizlabs/php_codesniffer": "2.8.1",
            "symfony/browser-kit": "v3.4.14",
            "symfony/css-selector": "v3.4.14",
            "symfony/dom-crawler": "v3.4.14",
            "symfony/phpunit-bridge": "v3.4.14"
        },
        "time": "2018-08-01T21:00:49+00:00",
        "type": "metapackage",
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "GPL-2.0-or-later"
        ],
        "description": "Locked core dependencies"
    },
    {
        "name": "webflo/drupal-finder",
        "version": "1.1.0",
        "version_normalized": "1.1.0.0",
        "source": {
            "type": "git",
            "url": "https://github.com/webflo/drupal-finder.git",
            "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
            "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
            "shasum": ""
        },
        "require-dev": {
            "mikey179/vfsstream": "^1.6",
            "phpunit/phpunit": "^4.8"
        },
        "time": "2017-10-24T08:12:11+00:00",
        "type": "library",
        "installation-source": "dist",
        "autoload": {
            "classmap": [
                "src/DrupalFinder.php"
            ]
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "GPL-2.0+"
        ],
        "authors": [
            {
                "name": "Florian Weber",
                "email": "florian@webflo.org"
            }
        ],
        "description": "Helper class to locate a Drupal installation from a given path."
    },
    {
        "name": "webmozart/assert",
        "version": "1.3.0",
        "version_normalized": "1.3.0.0",
        "source": {
            "type": "git",
            "url": "https://github.com/webmozart/assert.git",
            "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
            "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
            "shasum": ""
        },
        "require": {
            "php": "^5.3.3 || ^7.0"
        },
        "require-dev": {
            "phpunit/phpunit": "^4.6",
            "sebastian/version": "^1.0.1"
        },
        "time": "2018-01-29T19:49:41+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "1.3-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "Webmozart\\Assert\\": "src/"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Bernhard Schussek",
                "email": "bschussek@gmail.com"
            }
        ],
        "description": "Assertions to validate method input/output with nice error messages.",
        "keywords": [
            "assert",
            "check",
            "validate"
        ]
    },
    {
        "name": "webmozart/path-util",
        "version": "2.3.0",
        "version_normalized": "2.3.0.0",
        "source": {
            "type": "git",
            "url": "https://github.com/webmozart/path-util.git",
            "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
            "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
            "shasum": ""
        },
        "require": {
            "php": ">=5.3.3",
            "webmozart/assert": "~1.0"
        },
        "require-dev": {
            "phpunit/phpunit": "^4.6",
            "sebastian/version": "^1.0.1"
        },
        "time": "2015-12-17T08:42:14+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "2.3-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "Webmozart\\PathUtil\\": "src/"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Bernhard Schussek",
                "email": "bschussek@gmail.com"
            }
        ],
        "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths."
    },
    {
        "name": "whitehat101/apr1-md5",
        "version": "v1.0.0",
        "version_normalized": "1.0.0.0",
        "source": {
            "type": "git",
            "url": "https://github.com/whitehat101/apr1-md5.git",
            "reference": "8b261c9fc0481b4e9fa9d01c6ca70867b5d5e819"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/whitehat101/apr1-md5/zipball/8b261c9fc0481b4e9fa9d01c6ca70867b5d5e819",
            "reference": "8b261c9fc0481b4e9fa9d01c6ca70867b5d5e819",
            "shasum": ""
        },
        "require": {
            "php": ">=5.3.0"
        },
        "require-dev": {
            "phpunit/phpunit": "4.0.*"
        },
        "time": "2015-02-11T11:06:42+00:00",
        "type": "library",
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "WhiteHat101\\Crypt\\": "src"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Jeremy Ebler",
                "email": "jebler@gmail.com"
            }
        ],
        "description": "Apache's APR1-MD5 algorithm in pure PHP",
        "homepage": "https://github.com/whitehat101/apr1-md5",
        "keywords": [
            "MD5",
            "apr1"
        ]
    },
    {
        "name": "wikimedia/composer-merge-plugin",
        "version": "v1.4.1",
        "version_normalized": "1.4.1.0",
        "source": {
            "type": "git",
            "url": "https://github.com/wikimedia/composer-merge-plugin.git",
            "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
            "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
            "shasum": ""
        },
        "require": {
            "composer-plugin-api": "^1.0",
            "php": ">=5.3.2"
        },
        "require-dev": {
            "composer/composer": "~1.0.0",
            "jakub-onderka/php-parallel-lint": "~0.8",
            "phpunit/phpunit": "~4.8|~5.0",
            "squizlabs/php_codesniffer": "~2.1.0"
        },
        "time": "2017-04-25T02:31:25+00:00",
        "type": "composer-plugin",
        "extra": {
            "branch-alias": {
                "dev-master": "1.3.x-dev"
            },
            "class": "Wikimedia\\Composer\\MergePlugin"
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "Wikimedia\\Composer\\": "src/"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Bryan Davis",
                "email": "bd808@wikimedia.org"
            }
        ],
        "description": "Composer plugin to merge multiple composer.json files"
    },
    {
        "name": "zendframework/zend-diactoros",
        "version": "1.4.1",
        "version_normalized": "1.4.1.0",
        "source": {
            "type": "git",
            "url": "https://github.com/zendframework/zend-diactoros.git",
            "reference": "424a840dc3bedcdeea510b42e056c77c2d6c4bef"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/424a840dc3bedcdeea510b42e056c77c2d6c4bef",
            "reference": "424a840dc3bedcdeea510b42e056c77c2d6c4bef",
            "shasum": ""
        },
        "require": {
            "php": "^5.4 || ^7.0",
            "psr/http-message": "~1.0"
        },
        "provide": {
            "psr/http-message-implementation": "1.0"
        },
        "require-dev": {
            "ext-dom": "*",
            "ext-libxml": "*",
            "phpunit/phpunit": "^4.6 || ^5.5",
            "zendframework/zend-coding-standard": "~1.0.0"
        },
        "time": "2017-08-17T21:21:00+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "1.4-dev",
                "dev-develop": "1.5-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "Zend\\Diactoros\\": "src/"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-2-Clause"
        ],
        "description": "PSR HTTP Message implementations",
        "homepage": "https://github.com/zendframework/zend-diactoros",
        "keywords": [
            "http",
            "psr",
            "psr-7"
        ]
    },
    {
        "name": "zendframework/zend-escaper",
        "version": "2.5.2",
        "version_normalized": "2.5.2.0",
        "source": {
            "type": "git",
            "url": "https://github.com/zendframework/zend-escaper.git",
            "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
            "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
            "shasum": ""
        },
        "require": {
            "php": ">=5.5"
        },
        "require-dev": {
            "fabpot/php-cs-fixer": "1.7.*",
            "phpunit/phpunit": "~4.0"
        },
        "time": "2016-06-30T19:48:38+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "2.5-dev",
                "dev-develop": "2.6-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "Zend\\Escaper\\": "src/"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "homepage": "https://github.com/zendframework/zend-escaper",
        "keywords": [
            "escaper",
            "zf2"
        ]
    },
    {
        "name": "zendframework/zend-feed",
        "version": "2.7.0",
        "version_normalized": "2.7.0.0",
        "source": {
            "type": "git",
            "url": "https://github.com/zendframework/zend-feed.git",
            "reference": "12b328d382aa5200f1de53d4147033b885776b67"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/12b328d382aa5200f1de53d4147033b885776b67",
            "reference": "12b328d382aa5200f1de53d4147033b885776b67",
            "shasum": ""
        },
        "require": {
            "php": "^5.5 || ^7.0",
            "zendframework/zend-escaper": "^2.5",
            "zendframework/zend-stdlib": "^2.7 || ^3.0"
        },
        "require-dev": {
            "fabpot/php-cs-fixer": "1.7.*",
            "phpunit/phpunit": "~4.0",
            "psr/http-message": "^1.0",
            "zendframework/zend-cache": "^2.5",
            "zendframework/zend-db": "^2.5",
            "zendframework/zend-http": "^2.5",
            "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
            "zendframework/zend-validator": "^2.5"
        },
        "suggest": {
            "psr/http-message": "PSR-7 ^1.0, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
            "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
            "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
            "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
            "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
            "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries ehen using the Writer subcomponent"
        },
        "time": "2016-02-11T18:54:29+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "2.7-dev",
                "dev-develop": "2.8-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "Zend\\Feed\\": "src/"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "description": "provides functionality for consuming RSS and Atom feeds",
        "homepage": "https://github.com/zendframework/zend-feed",
        "keywords": [
            "feed",
            "zf2"
        ]
    },
    {
        "name": "zendframework/zend-stdlib",
        "version": "3.0.1",
        "version_normalized": "3.0.1.0",
        "source": {
            "type": "git",
            "url": "https://github.com/zendframework/zend-stdlib.git",
            "reference": "8bafa58574204bdff03c275d1d618aaa601588ae"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/8bafa58574204bdff03c275d1d618aaa601588ae",
            "reference": "8bafa58574204bdff03c275d1d618aaa601588ae",
            "shasum": ""
        },
        "require": {
            "php": "^5.5 || ^7.0"
        },
        "require-dev": {
            "athletic/athletic": "~0.1",
            "fabpot/php-cs-fixer": "1.7.*",
            "phpunit/phpunit": "~4.0"
        },
        "time": "2016-04-12T21:19:36+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "3.0-dev",
                "dev-develop": "3.1-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "Zend\\Stdlib\\": "src/"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "homepage": "https://github.com/zendframework/zend-stdlib",
        "keywords": [
            "stdlib",
            "zf2"
        ]
    }
]