Advertisement
Guest User

Untitled

a guest
Feb 6th, 2018
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 435.12 KB | None | 0 0
  1. diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php
  2. index 2c72175e..bebe8370 100644
  3. --- a/vendor/composer/ClassLoader.php
  4. +++ b/vendor/composer/ClassLoader.php
  5. @@ -43,7 +43,7 @@ namespace Composer\Autoload;
  6.  class ClassLoader
  7.  {
  8.      // PSR-4
  9. -    private $prefixLengthsPsr4 = array();
  10. +    private $firstCharsPsr4 = array();
  11.      private $prefixDirsPsr4 = array();
  12.      private $fallbackDirsPsr4 = array();
  13.  
  14. @@ -170,11 +170,10 @@ class ClassLoader
  15.              }
  16.          } elseif (!isset($this->prefixDirsPsr4[$prefix])) {
  17.              // Register directories for a new namespace.
  18. -            $length = strlen($prefix);
  19. -            if ('\\' !== $prefix[$length - 1]) {
  20. +            if ('\\' !== substr($prefix, -1)) {
  21.                  throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
  22.              }
  23. -            $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
  24. +            $this->firstCharsPsr4[$prefix[0]] = true;
  25.              $this->prefixDirsPsr4[$prefix] = (array) $paths;
  26.          } elseif ($prepend) {
  27.              // Prepend directories for an already registered namespace.
  28. @@ -221,11 +220,10 @@ class ClassLoader
  29.          if (!$prefix) {
  30.              $this->fallbackDirsPsr4 = (array) $paths;
  31.          } else {
  32. -            $length = strlen($prefix);
  33. -            if ('\\' !== $prefix[$length - 1]) {
  34. +            if ('\\' !== substr($prefix, -1)) {
  35.                  throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
  36.              }
  37. -            $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
  38. +            $this->firstCharsPsr4[$prefix[0]] = true;
  39.              $this->prefixDirsPsr4[$prefix] = (array) $paths;
  40.          }
  41.      }
  42. @@ -373,15 +371,15 @@ class ClassLoader
  43.          $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
  44.  
  45.          $first = $class[0];
  46. -        if (isset($this->prefixLengthsPsr4[$first])) {
  47. +        if (isset($this->firstCharsPsr4[$first])) {
  48.              $subPath = $class;
  49.              while (false !== $lastPos = strrpos($subPath, '\\')) {
  50.                  $subPath = substr($subPath, 0, $lastPos);
  51.                  $search = $subPath.'\\';
  52.                  if (isset($this->prefixDirsPsr4[$search])) {
  53. +                    $pathEnd = substr($logicalPathPsr4, $lastPos + 1);
  54.                      foreach ($this->prefixDirsPsr4[$search] as $dir) {
  55. -                        $length = $this->prefixLengthsPsr4[$first][$search];
  56. -                        if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
  57. +                        if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $pathEnd)) {
  58.                              return $file;
  59.                          }
  60.                      }
  61. diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php
  62. index 7a998a84..82ddeb8c 100644
  63. --- a/vendor/composer/autoload_static.php
  64. +++ b/vendor/composer/autoload_static.php
  65. @@ -19,125 +19,21 @@ class ComposerStaticInit55cda7635846843c98a50e1ac924904e
  66.          'e7223560d890eab89cda23685e711e2c' => __DIR__ . '/..' . '/psy/psysh/src/Psy/functions.php',
  67.      );
  68.  
  69. -    public static $prefixLengthsPsr4 = array (
  70. -        'c' =>
  71. -        array (
  72. -            'cweagans\\Composer\\' => 18,
  73. -        ),
  74. -        'Z' =>
  75. -        array (
  76. -            'Zumba\\Mink\\Driver\\' => 18,
  77. -            'Zumba\\GastonJS\\' => 15,
  78. -            'Zend\\Stdlib\\' => 12,
  79. -            'Zend\\Feed\\' => 10,
  80. -            'Zend\\Escaper\\' => 13,
  81. -            'Zend\\Diactoros\\' => 15,
  82. -        ),
  83. -        'X' =>
  84. -        array (
  85. -            'XdgBaseDir\\' => 11,
  86. -        ),
  87. -        'W' =>
  88. -        array (
  89. -            'Webmozart\\PathUtil\\' => 19,
  90. -            'Webmozart\\Assert\\' => 17,
  91. -        ),
  92. -        'T' =>
  93. -        array (
  94. -            'Twig\\' => 5,
  95. -        ),
  96. -        'S' =>
  97. -        array (
  98. -            'Symfony\\Polyfill\\Mbstring\\' => 26,
  99. -            'Symfony\\Polyfill\\Iconv\\' => 23,
  100. -            'Symfony\\Polyfill\\Apcu\\' => 22,
  101. -            'Symfony\\Component\\Yaml\\' => 23,
  102. -            'Symfony\\Component\\VarDumper\\' => 28,
  103. -            'Symfony\\Component\\Validator\\' => 28,
  104. -            'Symfony\\Component\\Translation\\' => 30,
  105. -            'Symfony\\Component\\Serializer\\' => 29,
  106. -            'Symfony\\Component\\Routing\\' => 26,
  107. -            'Symfony\\Component\\Process\\' => 26,
  108. -            'Symfony\\Component\\HttpKernel\\' => 29,
  109. -            'Symfony\\Component\\HttpFoundation\\' => 33,
  110. -            'Symfony\\Component\\Finder\\' => 25,
  111. -            'Symfony\\Component\\Filesystem\\' => 29,
  112. -            'Symfony\\Component\\ExpressionLanguage\\' => 37,
  113. -            'Symfony\\Component\\EventDispatcher\\' => 34,
  114. -            'Symfony\\Component\\DomCrawler\\' => 29,
  115. -            'Symfony\\Component\\DependencyInjection\\' => 38,
  116. -            'Symfony\\Component\\Debug\\' => 24,
  117. -            'Symfony\\Component\\CssSelector\\' => 30,
  118. -            'Symfony\\Component\\Console\\' => 26,
  119. -            'Symfony\\Component\\Config\\' => 25,
  120. -            'Symfony\\Component\\ClassLoader\\' => 30,
  121. -            'Symfony\\Component\\Cache\\' => 24,
  122. -            'Symfony\\Component\\BrowserKit\\' => 29,
  123. -            'Symfony\\Cmf\\Component\\Routing\\' => 30,
  124. -            'Symfony\\Bridge\\PsrHttpMessage\\' => 30,
  125. -            'Stecman\\Component\\Symfony\\Console\\BashCompletion\\' => 49,
  126. -        ),
  127. -        'R' =>
  128. -        array (
  129. -            'RedBeanPHP\\' => 11,
  130. -        ),
  131. -        'P' =>
  132. -        array (
  133. -            'Psy\\' => 4,
  134. -            'Psr\\SimpleCache\\' => 16,
  135. -            'Psr\\Log\\' => 8,
  136. -            'Psr\\Http\\Message\\' => 17,
  137. -            'Psr\\Cache\\' => 10,
  138. -            'PhpParser\\' => 10,
  139. -        ),
  140. -        'M' =>
  141. -        array (
  142. -            'Masterminds\\' => 12,
  143. -        ),
  144. -        'G' =>
  145. -        array (
  146. -            'GuzzleHttp\\Psr7\\' => 16,
  147. -            'GuzzleHttp\\Promise\\' => 19,
  148. -            'GuzzleHttp\\' => 11,
  149. -            'Goutte\\' => 7,
  150. -        ),
  151. -        'D' =>
  152. -        array (
  153. -            'Drupal\\Driver\\' => 14,
  154. -            'Drupal\\Core\\' => 12,
  155. -            'Drupal\\Console\\Dotenv\\' => 22,
  156. -            'Drupal\\Console\\Core\\' => 20,
  157. -            'Drupal\\Console\\Composer\\Plugin\\' => 31,
  158. -            'Drupal\\Console\\' => 15,
  159. -            'Drupal\\Component\\' => 17,
  160. -            'DrupalComposer\\DrupalScaffold\\' => 30,
  161. -            'Dotenv\\' => 7,
  162. -            'Doctrine\\Instantiator\\' => 22,
  163. -            'Doctrine\\Common\\Inflector\\' => 26,
  164. -            'Doctrine\\Common\\Cache\\' => 22,
  165. -            'Doctrine\\Common\\Annotations\\' => 28,
  166. -            'Doctrine\\Common\\' => 16,
  167. -        ),
  168. -        'C' =>
  169. -        array (
  170. -            'Consolidation\\OutputFormatters\\' => 31,
  171. -            'Consolidation\\AnnotatedCommand\\' => 31,
  172. -            'Composer\\Semver\\' => 16,
  173. -            'Composer\\Installers\\' => 20,
  174. -            'CommerceGuys\\Intl\\' => 18,
  175. -            'CommerceGuys\\Enum\\' => 18,
  176. -            'CommerceGuys\\Addressing\\' => 24,
  177. -        ),
  178. -        'B' =>
  179. -        array (
  180. -            'Behat\\Mink\\Driver\\' => 18,
  181. -            'Behat\\Mink\\' => 11,
  182. -        ),
  183. -        'A' =>
  184. -        array (
  185. -            'Asm89\\Stack\\' => 12,
  186. -            'Alchemy\\Zippy\\' => 14,
  187. -        ),
  188. +    public static $firstCharsPsr4 = array (
  189. +        'c' => true,
  190. +        'Z' => true,
  191. +        'X' => true,
  192. +        'W' => true,
  193. +        'T' => true,
  194. +        'S' => true,
  195. +        'R' => true,
  196. +        'P' => true,
  197. +        'M' => true,
  198. +        'G' => true,
  199. +        'D' => true,
  200. +        'C' => true,
  201. +        'B' => true,
  202. +        'A' => true,
  203.      );
  204.  
  205.      public static $prefixDirsPsr4 = array (
  206. @@ -1256,7 +1152,7 @@ class ComposerStaticInit55cda7635846843c98a50e1ac924904e
  207.      public static function getInitializer(ClassLoader $loader)
  208.      {
  209.          return \Closure::bind(function () use ($loader) {
  210. -            $loader->prefixLengthsPsr4 = ComposerStaticInit55cda7635846843c98a50e1ac924904e::$prefixLengthsPsr4;
  211. +            $loader->firstCharsPsr4 = ComposerStaticInit55cda7635846843c98a50e1ac924904e::$firstCharsPsr4;
  212.              $loader->prefixDirsPsr4 = ComposerStaticInit55cda7635846843c98a50e1ac924904e::$prefixDirsPsr4;
  213.              $loader->prefixesPsr0 = ComposerStaticInit55cda7635846843c98a50e1ac924904e::$prefixesPsr0;
  214.              $loader->classMap = ComposerStaticInit55cda7635846843c98a50e1ac924904e::$classMap;
  215. diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json
  216. index a90e5923..071771ad 100644
  217. --- a/vendor/composer/installed.json
  218. +++ b/vendor/composer/installed.json
  219. @@ -1,131 +1,163 @@
  220.  [
  221.      {
  222. -        "name": "cweagans/composer-patches",
  223. -        "version": "1.6.2",
  224. -        "version_normalized": "1.6.2.0",
  225. +        "name": "alchemy/zippy",
  226. +        "version": "0.4.3",
  227. +        "version_normalized": "0.4.3.0",
  228.          "source": {
  229.              "type": "git",
  230. -            "url": "https://github.com/cweagans/composer-patches.git",
  231. -            "reference": "014e968ca2ce4342476b3f2f6779b274fff8ae9e"
  232. +            "url": "https://github.com/alchemy-fr/Zippy.git",
  233. +            "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea"
  234.          },
  235.          "dist": {
  236.              "type": "zip",
  237. -            "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/014e968ca2ce4342476b3f2f6779b274fff8ae9e",
  238. -            "reference": "014e968ca2ce4342476b3f2f6779b274fff8ae9e",
  239. +            "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/5ffdc93de0af2770d396bf433d8b2667c77277ea",
  240. +            "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea",
  241.              "shasum": ""
  242.          },
  243.          "require": {
  244. -            "composer-plugin-api": "^1.0",
  245. -            "php": ">=5.3.0"
  246. +            "doctrine/collections": "~1.0",
  247. +            "ext-mbstring": "*",
  248. +            "php": ">=5.5",
  249. +            "symfony/filesystem": "^2.0.5|^3.0",
  250. +            "symfony/process": "^2.1|^3.0"
  251.          },
  252.          "require-dev": {
  253. -            "composer/composer": "~1.0",
  254. -            "phpunit/phpunit": "~4.6"
  255. +            "ext-zip": "*",
  256. +            "guzzle/guzzle": "~3.0",
  257. +            "guzzlehttp/guzzle": "^6.0",
  258. +            "phpunit/phpunit": "^4.0|^5.0",
  259. +            "symfony/finder": "^2.0.5|^3.0"
  260.          },
  261. -        "time": "2017-08-30T16:41:23+00:00",
  262. -        "type": "composer-plugin",
  263. +        "suggest": {
  264. +            "ext-zip": "To use the ZipExtensionAdapter",
  265. +            "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  266. +            "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  267. +        },
  268. +        "time": "2016-11-03T16:10:31+00:00",
  269. +        "type": "library",
  270.          "extra": {
  271. -            "class": "cweagans\\Composer\\Patches"
  272. +            "branch-alias": {
  273. +                "dev-master": "0.4.x-dev"
  274. +            }
  275.          },
  276.          "installation-source": "dist",
  277.          "autoload": {
  278.              "psr-4": {
  279. -                "cweagans\\Composer\\": "src"
  280. +                "Alchemy\\Zippy\\": "src/"
  281.              }
  282.          },
  283.          "notification-url": "https://packagist.org/downloads/",
  284.          "license": [
  285. -            "BSD-2-Clause"
  286. +            "MIT"
  287.          ],
  288.          "authors": [
  289.              {
  290. -                "name": "Cameron Eagans",
  291. -                "email": "me@cweagans.net"
  292. +                "name": "Alchemy",
  293. +                "email": "dev.team@alchemy.fr",
  294. +                "homepage": "http://www.alchemy.fr/"
  295.              }
  296.          ],
  297. -        "description": "Provides a way to patch Composer packages."
  298. +        "description": "Zippy, the archive manager companion",
  299. +        "keywords": [
  300. +            "bzip",
  301. +            "compression",
  302. +            "tar",
  303. +            "zip"
  304. +        ]
  305.      },
  306.      {
  307. -        "name": "drupal-composer/drupal-scaffold",
  308. -        "version": "2.3.0",
  309. -        "version_normalized": "2.3.0.0",
  310. +        "name": "asm89/stack-cors",
  311. +        "version": "1.1.0",
  312. +        "version_normalized": "1.1.0.0",
  313.          "source": {
  314.              "type": "git",
  315. -            "url": "https://github.com/drupal-composer/drupal-scaffold.git",
  316. -            "reference": "1374e1031b98beb502abea3854f361304965c628"
  317. +            "url": "https://github.com/asm89/stack-cors.git",
  318. +            "reference": "65ccbd455370f043c2e3b93482a3813603d68731"
  319.          },
  320.          "dist": {
  321.              "type": "zip",
  322. -            "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/1374e1031b98beb502abea3854f361304965c628",
  323. -            "reference": "1374e1031b98beb502abea3854f361304965c628",
  324. +            "url": "https://api.github.com/repos/asm89/stack-cors/zipball/65ccbd455370f043c2e3b93482a3813603d68731",
  325. +            "reference": "65ccbd455370f043c2e3b93482a3813603d68731",
  326.              "shasum": ""
  327.          },
  328.          "require": {
  329. -            "composer-plugin-api": "^1.0.0",
  330. -            "php": ">=5.4.5"
  331. +            "php": ">=5.5.9",
  332. +            "symfony/http-foundation": "~2.7|~3.0",
  333. +            "symfony/http-kernel": "~2.7|~3.0"
  334.          },
  335.          "require-dev": {
  336. -            "composer/composer": "dev-master",
  337. -            "phpunit/phpunit": "^4.4.0"
  338. +            "phpunit/phpunit": "^5.0 || ^4.8.10",
  339. +            "squizlabs/php_codesniffer": "^2.3"
  340.          },
  341. -        "time": "2017-05-05T21:26:28+00:00",
  342. -        "type": "composer-plugin",
  343. +        "time": "2017-04-11T20:03:41+00:00",
  344. +        "type": "library",
  345.          "extra": {
  346. -            "class": "DrupalComposer\\DrupalScaffold\\Plugin",
  347.              "branch-alias": {
  348. -                "dev-master": "2.0.x-dev"
  349. +                "dev-master": "1.1-dev"
  350.              }
  351.          },
  352.          "installation-source": "dist",
  353.          "autoload": {
  354.              "psr-4": {
  355. -                "DrupalComposer\\DrupalScaffold\\": "src/"
  356. +                "Asm89\\Stack\\": "src/Asm89/Stack/"
  357.              }
  358.          },
  359.          "notification-url": "https://packagist.org/downloads/",
  360.          "license": [
  361. -            "GPL-2.0+"
  362. +            "MIT"
  363.          ],
  364. -        "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core"
  365. +        "authors": [
  366. +            {
  367. +                "name": "Alexander",
  368. +                "email": "iam.asm89@gmail.com"
  369. +            }
  370. +        ],
  371. +        "description": "Cross-origin resource sharing library and stack middleware",
  372. +        "homepage": "https://github.com/asm89/stack-cors",
  373. +        "keywords": [
  374. +            "cors",
  375. +            "stack"
  376. +        ]
  377.      },
  378.      {
  379. -        "name": "composer/installers",
  380. -        "version": "v1.4.0",
  381. -        "version_normalized": "1.4.0.0",
  382. +        "name": "behat/mink",
  383. +        "version": "v1.7.1",
  384. +        "version_normalized": "1.7.1.0",
  385.          "source": {
  386.              "type": "git",
  387. -            "url": "https://github.com/composer/installers.git",
  388. -            "reference": "9ce17fb70e9a38dd8acff0636a29f5cf4d575c1b"
  389. +            "url": "https://github.com/minkphp/Mink.git",
  390. +            "reference": "e6930b9c74693dff7f4e58577e1b1743399f3ff9"
  391.          },
  392.          "dist": {
  393.              "type": "zip",
  394. -            "url": "https://api.github.com/repos/composer/installers/zipball/9ce17fb70e9a38dd8acff0636a29f5cf4d575c1b",
  395. -            "reference": "9ce17fb70e9a38dd8acff0636a29f5cf4d575c1b",
  396. +            "url": "https://api.github.com/repos/minkphp/Mink/zipball/e6930b9c74693dff7f4e58577e1b1743399f3ff9",
  397. +            "reference": "e6930b9c74693dff7f4e58577e1b1743399f3ff9",
  398.              "shasum": ""
  399.          },
  400.          "require": {
  401. -            "composer-plugin-api": "^1.0"
  402. -        },
  403. -        "replace": {
  404. -            "roundcube/plugin-installer": "*",
  405. -            "shama/baton": "*"
  406. +            "php": ">=5.3.1",
  407. +            "symfony/css-selector": "~2.1|~3.0"
  408.          },
  409.          "require-dev": {
  410. -            "composer/composer": "1.0.*@dev",
  411. -            "phpunit/phpunit": "4.1.*"
  412. +            "symfony/phpunit-bridge": "~2.7|~3.0"
  413.          },
  414. -        "time": "2017-08-09T07:53:48+00:00",
  415. -        "type": "composer-plugin",
  416. +        "suggest": {
  417. +            "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  418. +            "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  419. +            "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  420. +            "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)"
  421. +        },
  422. +        "time": "2016-03-05T08:26:18+00:00",
  423. +        "type": "library",
  424.          "extra": {
  425. -            "class": "Composer\\Installers\\Plugin",
  426.              "branch-alias": {
  427. -                "dev-master": "1.0-dev"
  428. +                "dev-master": "1.7.x-dev"
  429.              }
  430.          },
  431.          "installation-source": "dist",
  432.          "autoload": {
  433.              "psr-4": {
  434. -                "Composer\\Installers\\": "src/Composer/Installers"
  435. +                "Behat\\Mink\\": "src/"
  436.              }
  437.          },
  438.          "notification-url": "https://packagist.org/downloads/",
  439. @@ -134,112 +166,56 @@
  440.          ],
  441.          "authors": [
  442.              {
  443. -                "name": "Kyle Robinson Young",
  444. -                "email": "kyle@dontkry.com",
  445. -                "homepage": "https://github.com/shama"
  446. +                "name": "Konstantin Kudryashov",
  447. +                "email": "ever.zet@gmail.com",
  448. +                "homepage": "http://everzet.com"
  449.              }
  450.          ],
  451. -        "description": "A multi-framework Composer library installer",
  452. -        "homepage": "https://composer.github.io/installers/",
  453. +        "description": "Browser controller/emulator abstraction for PHP",
  454. +        "homepage": "http://mink.behat.org/",
  455.          "keywords": [
  456. -            "Craft",
  457. -            "Dolibarr",
  458. -            "Eliasis",
  459. -            "Hurad",
  460. -            "ImageCMS",
  461. -            "Kanboard",
  462. -            "Lan Management System",
  463. -            "MODX Evo",
  464. -            "Mautic",
  465. -            "Maya",
  466. -            "OXID",
  467. -            "Plentymarkets",
  468. -            "Porto",
  469. -            "RadPHP",
  470. -            "SMF",
  471. -            "Thelia",
  472. -            "WolfCMS",
  473. -            "agl",
  474. -            "aimeos",
  475. -            "annotatecms",
  476. -            "attogram",
  477. -            "bitrix",
  478. -            "cakephp",
  479. -            "chef",
  480. -            "cockpit",
  481. -            "codeigniter",
  482. -            "concrete5",
  483. -            "croogo",
  484. -            "dokuwiki",
  485. -            "drupal",
  486. -            "eZ Platform",
  487. -            "elgg",
  488. -            "expressionengine",
  489. -            "fuelphp",
  490. -            "grav",
  491. -            "installer",
  492. -            "itop",
  493. -            "joomla",
  494. -            "kohana",
  495. -            "laravel",
  496. -            "lavalite",
  497. -            "lithium",
  498. -            "magento",
  499. -            "mako",
  500. -            "mediawiki",
  501. -            "modulework",
  502. -            "moodle",
  503. -            "osclass",
  504. -            "phpbb",
  505. -            "piwik",
  506. -            "ppi",
  507. -            "puppet",
  508. -            "reindex",
  509. -            "roundcube",
  510. -            "shopware",
  511. -            "silverstripe",
  512. -            "sydes",
  513. -            "symfony",
  514. -            "typo3",
  515. -            "wordpress",
  516. -            "yawik",
  517. -            "zend",
  518. -            "zikula"
  519. +            "browser",
  520. +            "testing",
  521. +            "web"
  522.          ]
  523.      },
  524.      {
  525. -        "name": "symfony/finder",
  526. -        "version": "v3.3.10",
  527. -        "version_normalized": "3.3.10.0",
  528. +        "name": "behat/mink-browserkit-driver",
  529. +        "version": "v1.3.2",
  530. +        "version_normalized": "1.3.2.0",
  531.          "source": {
  532.              "type": "git",
  533. -            "url": "https://github.com/symfony/finder.git",
  534. -            "reference": "773e19a491d97926f236942484cb541560ce862d"
  535. +            "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  536. +            "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb"
  537.          },
  538.          "dist": {
  539.              "type": "zip",
  540. -            "url": "https://api.github.com/repos/symfony/finder/zipball/773e19a491d97926f236942484cb541560ce862d",
  541. -            "reference": "773e19a491d97926f236942484cb541560ce862d",
  542. +            "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/10e67fb4a295efcd62ea0bf16025a85ea19534fb",
  543. +            "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb",
  544.              "shasum": ""
  545.          },
  546.          "require": {
  547. -            "php": "^5.5.9|>=7.0.8"
  548. +            "behat/mink": "^1.7.1@dev",
  549. +            "php": ">=5.3.6",
  550. +            "symfony/browser-kit": "~2.3|~3.0",
  551. +            "symfony/dom-crawler": "~2.3|~3.0"
  552.          },
  553. -        "time": "2017-10-02T06:42:24+00:00",
  554. -        "type": "library",
  555. +        "require-dev": {
  556. +            "silex/silex": "~1.2",
  557. +            "symfony/phpunit-bridge": "~2.7|~3.0"
  558. +        },
  559. +        "time": "2016-03-05T08:59:47+00:00",
  560. +        "type": "mink-driver",
  561.          "extra": {
  562.              "branch-alias": {
  563. -                "dev-master": "3.3-dev"
  564. +                "dev-master": "1.3.x-dev"
  565.              }
  566.          },
  567.          "installation-source": "dist",
  568.          "autoload": {
  569.              "psr-4": {
  570. -                "Symfony\\Component\\Finder\\": ""
  571. -            },
  572. -            "exclude-from-classmap": [
  573. -                "/Tests/"
  574. -            ]
  575. +                "Behat\\Mink\\Driver\\": "src/"
  576. +            }
  577.          },
  578.          "notification-url": "https://packagist.org/downloads/",
  579.          "license": [
  580. @@ -247,91 +223,121 @@
  581.          ],
  582.          "authors": [
  583.              {
  584. -                "name": "Fabien Potencier",
  585. -                "email": "fabien@symfony.com"
  586. -            },
  587. -            {
  588. -                "name": "Symfony Community",
  589. -                "homepage": "https://symfony.com/contributors"
  590. +                "name": "Konstantin Kudryashov",
  591. +                "email": "ever.zet@gmail.com",
  592. +                "homepage": "http://everzet.com"
  593.              }
  594.          ],
  595. -        "description": "Symfony Finder Component",
  596. -        "homepage": "https://symfony.com"
  597. +        "description": "Symfony2 BrowserKit driver for Mink framework",
  598. +        "homepage": "http://mink.behat.org/",
  599. +        "keywords": [
  600. +            "Mink",
  601. +            "Symfony2",
  602. +            "browser",
  603. +            "testing"
  604. +        ]
  605.      },
  606.      {
  607. -        "name": "drupal/console-extend-plugin",
  608. -        "version": "0.9.2",
  609. -        "version_normalized": "0.9.2.0",
  610. +        "name": "behat/mink-goutte-driver",
  611. +        "version": "v1.2.1",
  612. +        "version_normalized": "1.2.1.0",
  613.          "source": {
  614.              "type": "git",
  615. -            "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  616. -            "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  617. +            "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  618. +            "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  619.          },
  620.          "dist": {
  621.              "type": "zip",
  622. -            "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  623. -            "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  624. +            "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  625. +            "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  626.              "shasum": ""
  627.          },
  628.          "require": {
  629. -            "composer-plugin-api": "^1.0",
  630. -            "symfony/finder": "~2.7|~3.0",
  631. -            "symfony/yaml": "~2.7|~3.0"
  632. +            "behat/mink": "~1.6@dev",
  633. +            "behat/mink-browserkit-driver": "~1.2@dev",
  634. +            "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  635. +            "php": ">=5.3.1"
  636.          },
  637. -        "time": "2017-07-28T17:11:54+00:00",
  638. -        "type": "composer-plugin",
  639. +        "require-dev": {
  640. +            "symfony/phpunit-bridge": "~2.7|~3.0"
  641. +        },
  642. +        "time": "2016-03-05T09:04:22+00:00",
  643. +        "type": "mink-driver",
  644.          "extra": {
  645. -            "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  646. +            "branch-alias": {
  647. +                "dev-master": "1.2.x-dev"
  648. +            }
  649.          },
  650.          "installation-source": "dist",
  651.          "autoload": {
  652.              "psr-4": {
  653. -                "Drupal\\Console\\Composer\\Plugin\\": "src"
  654. +                "Behat\\Mink\\Driver\\": "src/"
  655.              }
  656.          },
  657.          "notification-url": "https://packagist.org/downloads/",
  658.          "license": [
  659. -            "GPL-2.0+"
  660. +            "MIT"
  661.          ],
  662.          "authors": [
  663.              {
  664. -                "name": "Jesus Manuel Olivas",
  665. -                "email": "jesus.olivas@gmail.com"
  666. +                "name": "Konstantin Kudryashov",
  667. +                "email": "ever.zet@gmail.com",
  668. +                "homepage": "http://everzet.com"
  669.              }
  670.          ],
  671. -        "description": "Drupal Console Extend Plugin"
  672. +        "description": "Goutte driver for Mink framework",
  673. +        "homepage": "http://mink.behat.org/",
  674. +        "keywords": [
  675. +            "browser",
  676. +            "goutte",
  677. +            "headless",
  678. +            "testing"
  679. +        ]
  680.      },
  681.      {
  682. -        "name": "paragonie/random_compat",
  683. -        "version": "v2.0.11",
  684. -        "version_normalized": "2.0.11.0",
  685. +        "name": "commerceguys/addressing",
  686. +        "version": "v1.0.0-beta3",
  687. +        "version_normalized": "1.0.0.0-beta3",
  688.          "source": {
  689.              "type": "git",
  690. -            "url": "https://github.com/paragonie/random_compat.git",
  691. -            "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8"
  692. +            "url": "https://github.com/commerceguys/addressing.git",
  693. +            "reference": "615464980031d353865fd0a4b5da3acb3f567129"
  694.          },
  695.          "dist": {
  696.              "type": "zip",
  697. -            "url": "https://api.github.com/repos/paragonie/random_compat/zipball/5da4d3c796c275c55f057af5a643ae297d96b4d8",
  698. -            "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8",
  699. +            "url": "https://api.github.com/repos/commerceguys/addressing/zipball/615464980031d353865fd0a4b5da3acb3f567129",
  700. +            "reference": "615464980031d353865fd0a4b5da3acb3f567129",
  701.              "shasum": ""
  702.          },
  703.          "require": {
  704. -            "php": ">=5.2.0"
  705. +            "commerceguys/enum": "~1.0",
  706. +            "doctrine/collections": "~1.0",
  707. +            "php": ">=5.5.0"
  708.          },
  709.          "require-dev": {
  710. -            "phpunit/phpunit": "4.*|5.*"
  711. +            "mikey179/vfsstream": "1.*",
  712. +            "phpunit/phpunit": "~4.0",
  713. +            "squizlabs/php_codesniffer": "2.*",
  714. +            "symfony/intl": ">=2.3",
  715. +            "symfony/validator": ">=2.3"
  716.          },
  717.          "suggest": {
  718. -            "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  719. +            "commerceguys/intl": "to use it as the source of country data",
  720. +            "symfony/intl": "to use it as the source of country data",
  721. +            "symfony/validator": "to validate addresses"
  722.          },
  723. -        "time": "2017-09-27T21:40:39+00:00",
  724. +        "time": "2017-04-20T12:32:07+00:00",
  725.          "type": "library",
  726. +        "extra": {
  727. +            "branch-alias": {
  728. +                "dev-master": "1.x-dev"
  729. +            }
  730. +        },
  731.          "installation-source": "dist",
  732.          "autoload": {
  733. -            "files": [
  734. -                "lib/random.php"
  735. -            ]
  736. +            "psr-4": {
  737. +                "CommerceGuys\\Addressing\\": "src"
  738. +            }
  739.          },
  740.          "notification-url": "https://packagist.org/downloads/",
  741.          "license": [
  742. @@ -339,54 +345,48 @@
  743.          ],
  744.          "authors": [
  745.              {
  746. -                "name": "Paragon Initiative Enterprises",
  747. -                "email": "security@paragonie.com",
  748. -                "homepage": "https://paragonie.com"
  749. +                "name": "Bojan Zivanovic"
  750. +            },
  751. +            {
  752. +                "name": "Damien Tournoud"
  753.              }
  754.          ],
  755. -        "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  756. +        "description": "Addressing library powered by Google's address data.",
  757.          "keywords": [
  758. -            "csprng",
  759. -            "pseudorandom",
  760. -            "random"
  761. +            "address",
  762. +            "internationalization",
  763. +            "localization",
  764. +            "postal"
  765.          ]
  766.      },
  767.      {
  768. -        "name": "symfony/polyfill-mbstring",
  769. -        "version": "v1.6.0",
  770. -        "version_normalized": "1.6.0.0",
  771. +        "name": "commerceguys/enum",
  772. +        "version": "v1.0",
  773. +        "version_normalized": "1.0.0.0",
  774.          "source": {
  775.              "type": "git",
  776. -            "url": "https://github.com/symfony/polyfill-mbstring.git",
  777. -            "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296"
  778. +            "url": "https://github.com/commerceguys/enum.git",
  779. +            "reference": "1d9db2dbeb1a02500e7a14589ae2f9cb402c5c95"
  780.          },
  781.          "dist": {
  782.              "type": "zip",
  783. -            "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  784. -            "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  785. +            "url": "https://api.github.com/repos/commerceguys/enum/zipball/1d9db2dbeb1a02500e7a14589ae2f9cb402c5c95",
  786. +            "reference": "1d9db2dbeb1a02500e7a14589ae2f9cb402c5c95",
  787.              "shasum": ""
  788.          },
  789.          "require": {
  790. -            "php": ">=5.3.3"
  791. +            "php": ">=5.4.0"
  792.          },
  793. -        "suggest": {
  794. -            "ext-mbstring": "For best performance"
  795. +        "require-dev": {
  796. +            "phpunit/phpunit": "~4.0"
  797.          },
  798. -        "time": "2017-10-11T12:05:26+00:00",
  799. +        "time": "2015-02-27T21:36:56+00:00",
  800.          "type": "library",
  801. -        "extra": {
  802. -            "branch-alias": {
  803. -                "dev-master": "1.6-dev"
  804. -            }
  805. -        },
  806.          "installation-source": "dist",
  807.          "autoload": {
  808.              "psr-4": {
  809. -                "Symfony\\Polyfill\\Mbstring\\": ""
  810. -            },
  811. -            "files": [
  812. -                "bootstrap.php"
  813. -            ]
  814. +                "CommerceGuys\\Enum\\": "src"
  815. +            }
  816.          },
  817.          "notification-url": "https://packagist.org/downloads/",
  818.          "license": [
  819. @@ -394,53 +394,44 @@
  820.          ],
  821.          "authors": [
  822.              {
  823. -                "name": "Nicolas Grekas",
  824. -                "email": "p@tchwork.com"
  825. -            },
  826. -            {
  827. -                "name": "Symfony Community",
  828. -                "homepage": "https://symfony.com/contributors"
  829. +                "name": "Bojan Zivanovic"
  830.              }
  831.          ],
  832. -        "description": "Symfony polyfill for the Mbstring extension",
  833. -        "homepage": "https://symfony.com",
  834. -        "keywords": [
  835. -            "compatibility",
  836. -            "mbstring",
  837. -            "polyfill",
  838. -            "portable",
  839. -            "shim"
  840. -        ]
  841. +        "description": "A PHP 5.4+ enumeration library."
  842.      },
  843.      {
  844. -        "name": "psr/simple-cache",
  845. -        "version": "1.0.0",
  846. -        "version_normalized": "1.0.0.0",
  847. +        "name": "commerceguys/intl",
  848. +        "version": "v0.7.4",
  849. +        "version_normalized": "0.7.4.0",
  850.          "source": {
  851.              "type": "git",
  852. -            "url": "https://github.com/php-fig/simple-cache.git",
  853. -            "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24"
  854. +            "url": "https://github.com/commerceguys/intl.git",
  855. +            "reference": "edfcfc26ed8505c4f6fcf862eb36dfda1af74b00"
  856.          },
  857.          "dist": {
  858.              "type": "zip",
  859. -            "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/753fa598e8f3b9966c886fe13f370baa45ef0e24",
  860. -            "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24",
  861. +            "url": "https://api.github.com/repos/commerceguys/intl/zipball/edfcfc26ed8505c4f6fcf862eb36dfda1af74b00",
  862. +            "reference": "edfcfc26ed8505c4f6fcf862eb36dfda1af74b00",
  863.              "shasum": ""
  864.          },
  865.          "require": {
  866. -            "php": ">=5.3.0"
  867. +            "php": ">=5.4.0"
  868.          },
  869. -        "time": "2017-01-02T13:31:39+00:00",
  870. +        "require-dev": {
  871. +            "mikey179/vfsstream": "1.*",
  872. +            "phpunit/phpunit": "~4.0"
  873. +        },
  874. +        "time": "2016-12-13T12:33:19+00:00",
  875.          "type": "library",
  876.          "extra": {
  877.              "branch-alias": {
  878. -                "dev-master": "1.0.x-dev"
  879. +                "dev-master": "0.x-dev"
  880.              }
  881.          },
  882.          "installation-source": "dist",
  883.          "autoload": {
  884.              "psr-4": {
  885. -                "Psr\\SimpleCache\\": "src/"
  886. +                "CommerceGuys\\Intl\\": "src"
  887.              }
  888.          },
  889.          "notification-url": "https://packagist.org/downloads/",
  890. @@ -449,48 +440,49 @@
  891.          ],
  892.          "authors": [
  893.              {
  894. -                "name": "PHP-FIG",
  895. -                "homepage": "http://www.php-fig.org/"
  896. +                "name": "Bojan Zivanovic"
  897.              }
  898.          ],
  899. -        "description": "Common interfaces for simple caching",
  900. -        "keywords": [
  901. -            "cache",
  902. -            "caching",
  903. -            "psr",
  904. -            "psr-16",
  905. -            "simple-cache"
  906. -        ]
  907. +        "description": "Internationalization library powered by CLDR data."
  908.      },
  909.      {
  910. -        "name": "psr/log",
  911. -        "version": "1.0.2",
  912. -        "version_normalized": "1.0.2.0",
  913. +        "name": "composer/installers",
  914. +        "version": "v1.4.0",
  915. +        "version_normalized": "1.4.0.0",
  916.          "source": {
  917.              "type": "git",
  918. -            "url": "https://github.com/php-fig/log.git",
  919. -            "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  920. +            "url": "https://github.com/composer/installers.git",
  921. +            "reference": "9ce17fb70e9a38dd8acff0636a29f5cf4d575c1b"
  922.          },
  923.          "dist": {
  924.              "type": "zip",
  925. -            "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  926. -            "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  927. +            "url": "https://api.github.com/repos/composer/installers/zipball/9ce17fb70e9a38dd8acff0636a29f5cf4d575c1b",
  928. +            "reference": "9ce17fb70e9a38dd8acff0636a29f5cf4d575c1b",
  929.              "shasum": ""
  930.          },
  931.          "require": {
  932. -            "php": ">=5.3.0"
  933. +            "composer-plugin-api": "^1.0"
  934.          },
  935. -        "time": "2016-10-10T12:19:37+00:00",
  936. -        "type": "library",
  937. +        "replace": {
  938. +            "roundcube/plugin-installer": "*",
  939. +            "shama/baton": "*"
  940. +        },
  941. +        "require-dev": {
  942. +            "composer/composer": "1.0.*@dev",
  943. +            "phpunit/phpunit": "4.1.*"
  944. +        },
  945. +        "time": "2017-08-09T07:53:48+00:00",
  946. +        "type": "composer-plugin",
  947.          "extra": {
  948. +            "class": "Composer\\Installers\\Plugin",
  949.              "branch-alias": {
  950. -                "dev-master": "1.0.x-dev"
  951. +                "dev-master": "1.0-dev"
  952.              }
  953.          },
  954.          "installation-source": "dist",
  955.          "autoload": {
  956.              "psr-4": {
  957. -                "Psr\\Log\\": "Psr/Log/"
  958. +                "Composer\\Installers\\": "src/Composer/Installers"
  959.              }
  960.          },
  961.          "notification-url": "https://packagist.org/downloads/",
  962. @@ -499,47 +491,112 @@
  963.          ],
  964.          "authors": [
  965.              {
  966. -                "name": "PHP-FIG",
  967. -                "homepage": "http://www.php-fig.org/"
  968. +                "name": "Kyle Robinson Young",
  969. +                "email": "kyle@dontkry.com",
  970. +                "homepage": "https://github.com/shama"
  971.              }
  972.          ],
  973. -        "description": "Common interface for logging libraries",
  974. -        "homepage": "https://github.com/php-fig/log",
  975. -        "keywords": [
  976. -            "log",
  977. -            "psr",
  978. -            "psr-3"
  979. +        "description": "A multi-framework Composer library installer",
  980. +        "homepage": "https://composer.github.io/installers/",
  981. +        "keywords": [
  982. +            "Craft",
  983. +            "Dolibarr",
  984. +            "Eliasis",
  985. +            "Hurad",
  986. +            "ImageCMS",
  987. +            "Kanboard",
  988. +            "Lan Management System",
  989. +            "MODX Evo",
  990. +            "Mautic",
  991. +            "Maya",
  992. +            "OXID",
  993. +            "Plentymarkets",
  994. +            "Porto",
  995. +            "RadPHP",
  996. +            "SMF",
  997. +            "Thelia",
  998. +            "WolfCMS",
  999. +            "agl",
  1000. +            "aimeos",
  1001. +            "annotatecms",
  1002. +            "attogram",
  1003. +            "bitrix",
  1004. +            "cakephp",
  1005. +            "chef",
  1006. +            "cockpit",
  1007. +            "codeigniter",
  1008. +            "concrete5",
  1009. +            "croogo",
  1010. +            "dokuwiki",
  1011. +            "drupal",
  1012. +            "eZ Platform",
  1013. +            "elgg",
  1014. +            "expressionengine",
  1015. +            "fuelphp",
  1016. +            "grav",
  1017. +            "installer",
  1018. +            "itop",
  1019. +            "joomla",
  1020. +            "kohana",
  1021. +            "laravel",
  1022. +            "lavalite",
  1023. +            "lithium",
  1024. +            "magento",
  1025. +            "mako",
  1026. +            "mediawiki",
  1027. +            "modulework",
  1028. +            "moodle",
  1029. +            "osclass",
  1030. +            "phpbb",
  1031. +            "piwik",
  1032. +            "ppi",
  1033. +            "puppet",
  1034. +            "reindex",
  1035. +            "roundcube",
  1036. +            "shopware",
  1037. +            "silverstripe",
  1038. +            "sydes",
  1039. +            "symfony",
  1040. +            "typo3",
  1041. +            "wordpress",
  1042. +            "yawik",
  1043. +            "zend",
  1044. +            "zikula"
  1045.          ]
  1046.      },
  1047.      {
  1048. -        "name": "psr/cache",
  1049. -        "version": "1.0.1",
  1050. -        "version_normalized": "1.0.1.0",
  1051. +        "name": "composer/semver",
  1052. +        "version": "1.4.2",
  1053. +        "version_normalized": "1.4.2.0",
  1054.          "source": {
  1055.              "type": "git",
  1056. -            "url": "https://github.com/php-fig/cache.git",
  1057. -            "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1058. +            "url": "https://github.com/composer/semver.git",
  1059. +            "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  1060.          },
  1061.          "dist": {
  1062.              "type": "zip",
  1063. -            "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1064. -            "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1065. +            "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  1066. +            "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  1067.              "shasum": ""
  1068.          },
  1069.          "require": {
  1070. -            "php": ">=5.3.0"
  1071. +            "php": "^5.3.2 || ^7.0"
  1072.          },
  1073. -        "time": "2016-08-06T20:24:11+00:00",
  1074. +        "require-dev": {
  1075. +            "phpunit/phpunit": "^4.5 || ^5.0.5",
  1076. +            "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  1077. +        },
  1078. +        "time": "2016-08-30T16:08:34+00:00",
  1079.          "type": "library",
  1080.          "extra": {
  1081.              "branch-alias": {
  1082. -                "dev-master": "1.0.x-dev"
  1083. +                "dev-master": "1.x-dev"
  1084.              }
  1085.          },
  1086.          "installation-source": "dist",
  1087.          "autoload": {
  1088.              "psr-4": {
  1089. -                "Psr\\Cache\\": "src/"
  1090. +                "Composer\\Semver\\": "src"
  1091.              }
  1092.          },
  1093.          "notification-url": "https://packagist.org/downloads/",
  1094. @@ -548,50 +605,69 @@
  1095.          ],
  1096.          "authors": [
  1097.              {
  1098. -                "name": "PHP-FIG",
  1099. -                "homepage": "http://www.php-fig.org/"
  1100. +                "name": "Nils Adermann",
  1101. +                "email": "naderman@naderman.de",
  1102. +                "homepage": "http://www.naderman.de"
  1103. +            },
  1104. +            {
  1105. +                "name": "Jordi Boggiano",
  1106. +                "email": "j.boggiano@seld.be",
  1107. +                "homepage": "http://seld.be"
  1108. +            },
  1109. +            {
  1110. +                "name": "Rob Bast",
  1111. +                "email": "rob.bast@gmail.com",
  1112. +                "homepage": "http://robbast.nl"
  1113.              }
  1114.          ],
  1115. -        "description": "Common interface for caching libraries",
  1116. +        "description": "Semver library that offers utilities, version constraint parsing and validation.",
  1117.          "keywords": [
  1118. -            "cache",
  1119. -            "psr",
  1120. -            "psr-6"
  1121. +            "semantic",
  1122. +            "semver",
  1123. +            "validation",
  1124. +            "versioning"
  1125.          ]
  1126.      },
  1127.      {
  1128. -        "name": "symfony/polyfill-apcu",
  1129. -        "version": "v1.6.0",
  1130. -        "version_normalized": "1.6.0.0",
  1131. +        "name": "consolidation/annotated-command",
  1132. +        "version": "2.8.1",
  1133. +        "version_normalized": "2.8.1.0",
  1134.          "source": {
  1135.              "type": "git",
  1136. -            "url": "https://github.com/symfony/polyfill-apcu.git",
  1137. -            "reference": "04f62674339602def515bff4bc6901fc1d4951e8"
  1138. +            "url": "https://github.com/consolidation/annotated-command.git",
  1139. +            "reference": "7f94009d732922d61408536f9228aca8f22e9135"
  1140.          },
  1141.          "dist": {
  1142.              "type": "zip",
  1143. -            "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/04f62674339602def515bff4bc6901fc1d4951e8",
  1144. -            "reference": "04f62674339602def515bff4bc6901fc1d4951e8",
  1145. +            "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/7f94009d732922d61408536f9228aca8f22e9135",
  1146. +            "reference": "7f94009d732922d61408536f9228aca8f22e9135",
  1147.              "shasum": ""
  1148.          },
  1149.          "require": {
  1150. -            "php": ">=5.3.3"
  1151. +            "consolidation/output-formatters": "^3.1.12",
  1152. +            "php": ">=5.4.0",
  1153. +            "psr/log": "^1",
  1154. +            "symfony/console": "^2.8|~3",
  1155. +            "symfony/event-dispatcher": "^2.5|^3",
  1156. +            "symfony/finder": "^2.5|^3"
  1157.          },
  1158. -        "time": "2017-10-11T12:05:26+00:00",
  1159. +        "require-dev": {
  1160. +            "phpunit/phpunit": "^4.8",
  1161. +            "satooshi/php-coveralls": "^1.0",
  1162. +            "squizlabs/php_codesniffer": "^2.7"
  1163. +        },
  1164. +        "time": "2017-10-17T01:48:51+00:00",
  1165.          "type": "library",
  1166.          "extra": {
  1167.              "branch-alias": {
  1168. -                "dev-master": "1.6-dev"
  1169. +                "dev-master": "2.x-dev"
  1170.              }
  1171.          },
  1172.          "installation-source": "dist",
  1173.          "autoload": {
  1174.              "psr-4": {
  1175. -                "Symfony\\Polyfill\\Apcu\\": ""
  1176. -            },
  1177. -            "files": [
  1178. -                "bootstrap.php"
  1179. -            ]
  1180. +                "Consolidation\\AnnotatedCommand\\": "src"
  1181. +            }
  1182.          },
  1183.          "notification-url": "https://packagist.org/downloads/",
  1184.          "license": [
  1185. @@ -599,74 +675,50 @@
  1186.          ],
  1187.          "authors": [
  1188.              {
  1189. -                "name": "Nicolas Grekas",
  1190. -                "email": "p@tchwork.com"
  1191. -            },
  1192. -            {
  1193. -                "name": "Symfony Community",
  1194. -                "homepage": "https://symfony.com/contributors"
  1195. +                "name": "Greg Anderson",
  1196. +                "email": "greg.1.anderson@greenknowe.org"
  1197.              }
  1198.          ],
  1199. -        "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions",
  1200. -        "homepage": "https://symfony.com",
  1201. -        "keywords": [
  1202. -            "apcu",
  1203. -            "compatibility",
  1204. -            "polyfill",
  1205. -            "portable",
  1206. -            "shim"
  1207. -        ]
  1208. +        "description": "Initialize Symfony Console commands from annotated command class methods."
  1209.      },
  1210.      {
  1211. -        "name": "symfony/cache",
  1212. -        "version": "v3.3.10",
  1213. -        "version_normalized": "3.3.10.0",
  1214. +        "name": "consolidation/output-formatters",
  1215. +        "version": "3.1.12",
  1216. +        "version_normalized": "3.1.12.0",
  1217.          "source": {
  1218.              "type": "git",
  1219. -            "url": "https://github.com/symfony/cache.git",
  1220. -            "reference": "5f78b9728869434a445bdd86d63ef723f93e5433"
  1221. +            "url": "https://github.com/consolidation/output-formatters.git",
  1222. +            "reference": "88ef346a1cefb92aab8b57a3214a6d5fc63f5d2a"
  1223.          },
  1224.          "dist": {
  1225.              "type": "zip",
  1226. -            "url": "https://api.github.com/repos/symfony/cache/zipball/5f78b9728869434a445bdd86d63ef723f93e5433",
  1227. -            "reference": "5f78b9728869434a445bdd86d63ef723f93e5433",
  1228. +            "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/88ef346a1cefb92aab8b57a3214a6d5fc63f5d2a",
  1229. +            "reference": "88ef346a1cefb92aab8b57a3214a6d5fc63f5d2a",
  1230.              "shasum": ""
  1231.          },
  1232.          "require": {
  1233. -            "php": "^5.5.9|>=7.0.8",
  1234. -            "psr/cache": "~1.0",
  1235. -            "psr/log": "~1.0",
  1236. -            "psr/simple-cache": "^1.0",
  1237. -            "symfony/polyfill-apcu": "~1.1"
  1238. -        },
  1239. -        "conflict": {
  1240. -            "symfony/var-dumper": "<3.3"
  1241. -        },
  1242. -        "provide": {
  1243. -            "psr/cache-implementation": "1.0",
  1244. -            "psr/simple-cache-implementation": "1.0"
  1245. +            "php": ">=5.4.0",
  1246. +            "symfony/console": "^2.8|~3",
  1247. +            "symfony/finder": "~2.5|~3.0"
  1248.          },
  1249.          "require-dev": {
  1250. -            "cache/integration-tests": "dev-master",
  1251. -            "doctrine/cache": "~1.6",
  1252. -            "doctrine/dbal": "~2.4",
  1253. -            "predis/predis": "~1.0"
  1254. +            "phpunit/phpunit": "^4.8",
  1255. +            "satooshi/php-coveralls": "^1.0",
  1256. +            "squizlabs/php_codesniffer": "^2.7",
  1257. +            "victorjonsson/markdowndocs": "^1.3"
  1258.          },
  1259. -        "time": "2017-10-04T07:58:49+00:00",
  1260. +        "time": "2017-10-12T19:38:03+00:00",
  1261.          "type": "library",
  1262.          "extra": {
  1263.              "branch-alias": {
  1264. -                "dev-master": "3.3-dev"
  1265. +                "dev-master": "3.x-dev"
  1266.              }
  1267.          },
  1268.          "installation-source": "dist",
  1269.          "autoload": {
  1270.              "psr-4": {
  1271. -                "Symfony\\Component\\Cache\\": ""
  1272. -            },
  1273. -            "exclude-from-classmap": [
  1274. -                "/Tests/"
  1275. -            ]
  1276. +                "Consolidation\\OutputFormatters\\": "src"
  1277. +            }
  1278.          },
  1279.          "notification-url": "https://packagist.org/downloads/",
  1280.          "license": [
  1281. @@ -674,113 +726,96 @@
  1282.          ],
  1283.          "authors": [
  1284.              {
  1285. -                "name": "Nicolas Grekas",
  1286. -                "email": "p@tchwork.com"
  1287. -            },
  1288. -            {
  1289. -                "name": "Symfony Community",
  1290. -                "homepage": "https://symfony.com/contributors"
  1291. +                "name": "Greg Anderson",
  1292. +                "email": "greg.1.anderson@greenknowe.org"
  1293.              }
  1294.          ],
  1295. -        "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  1296. -        "homepage": "https://symfony.com",
  1297. -        "keywords": [
  1298. -            "caching",
  1299. -            "psr6"
  1300. -        ]
  1301. +        "description": "Format text by applying transformations provided by plug-in formatters."
  1302.      },
  1303.      {
  1304. -        "name": "symfony/expression-language",
  1305. -        "version": "v3.3.10",
  1306. -        "version_normalized": "3.3.10.0",
  1307. +        "name": "cweagans/composer-patches",
  1308. +        "version": "1.6.2",
  1309. +        "version_normalized": "1.6.2.0",
  1310.          "source": {
  1311.              "type": "git",
  1312. -            "url": "https://github.com/symfony/expression-language.git",
  1313. -            "reference": "6e8837e9e18d3b16c5e8379b519d030aa3a08a0c"
  1314. +            "url": "https://github.com/cweagans/composer-patches.git",
  1315. +            "reference": "014e968ca2ce4342476b3f2f6779b274fff8ae9e"
  1316.          },
  1317.          "dist": {
  1318.              "type": "zip",
  1319. -            "url": "https://api.github.com/repos/symfony/expression-language/zipball/6e8837e9e18d3b16c5e8379b519d030aa3a08a0c",
  1320. -            "reference": "6e8837e9e18d3b16c5e8379b519d030aa3a08a0c",
  1321. +            "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/014e968ca2ce4342476b3f2f6779b274fff8ae9e",
  1322. +            "reference": "014e968ca2ce4342476b3f2f6779b274fff8ae9e",
  1323.              "shasum": ""
  1324.          },
  1325.          "require": {
  1326. -            "php": "^5.5.9|>=7.0.8",
  1327. -            "symfony/cache": "~3.1"
  1328. +            "composer-plugin-api": "^1.0",
  1329. +            "php": ">=5.3.0"
  1330.          },
  1331. -        "time": "2017-10-02T06:42:24+00:00",
  1332. -        "type": "library",
  1333. +        "require-dev": {
  1334. +            "composer/composer": "~1.0",
  1335. +            "phpunit/phpunit": "~4.6"
  1336. +        },
  1337. +        "time": "2017-08-30T16:41:23+00:00",
  1338. +        "type": "composer-plugin",
  1339.          "extra": {
  1340. -            "branch-alias": {
  1341. -                "dev-master": "3.3-dev"
  1342. -            }
  1343. +            "class": "cweagans\\Composer\\Patches"
  1344.          },
  1345.          "installation-source": "dist",
  1346.          "autoload": {
  1347.              "psr-4": {
  1348. -                "Symfony\\Component\\ExpressionLanguage\\": ""
  1349. -            },
  1350. -            "exclude-from-classmap": [
  1351. -                "/Tests/"
  1352. -            ]
  1353. +                "cweagans\\Composer\\": "src"
  1354. +            }
  1355.          },
  1356.          "notification-url": "https://packagist.org/downloads/",
  1357.          "license": [
  1358. -            "MIT"
  1359. +            "BSD-2-Clause"
  1360.          ],
  1361.          "authors": [
  1362.              {
  1363. -                "name": "Fabien Potencier",
  1364. -                "email": "fabien@symfony.com"
  1365. -            },
  1366. -            {
  1367. -                "name": "Symfony Community",
  1368. -                "homepage": "https://symfony.com/contributors"
  1369. +                "name": "Cameron Eagans",
  1370. +                "email": "me@cweagans.net"
  1371.              }
  1372.          ],
  1373. -        "description": "Symfony ExpressionLanguage Component",
  1374. -        "homepage": "https://symfony.com"
  1375. +        "description": "Provides a way to patch Composer packages."
  1376.      },
  1377.      {
  1378. -        "name": "symfony/dom-crawler",
  1379. -        "version": "v3.3.10",
  1380. -        "version_normalized": "3.3.10.0",
  1381. +        "name": "dflydev/dot-access-configuration",
  1382. +        "version": "v1.0.2",
  1383. +        "version_normalized": "1.0.2.0",
  1384.          "source": {
  1385.              "type": "git",
  1386. -            "url": "https://github.com/symfony/dom-crawler.git",
  1387. -            "reference": "40dafd42d5dad7fe5ad4e958413d92a207522ac1"
  1388. +            "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1389. +            "reference": "ae6e7138b1d9063d343322cca63994ee1ac5161d"
  1390.          },
  1391.          "dist": {
  1392.              "type": "zip",
  1393. -            "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/40dafd42d5dad7fe5ad4e958413d92a207522ac1",
  1394. -            "reference": "40dafd42d5dad7fe5ad4e958413d92a207522ac1",
  1395. +            "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/ae6e7138b1d9063d343322cca63994ee1ac5161d",
  1396. +            "reference": "ae6e7138b1d9063d343322cca63994ee1ac5161d",
  1397.              "shasum": ""
  1398.          },
  1399.          "require": {
  1400. -            "php": "^5.5.9|>=7.0.8",
  1401. -            "symfony/polyfill-mbstring": "~1.0"
  1402. +            "dflydev/dot-access-data": "1.*",
  1403. +            "dflydev/placeholder-resolver": "1.*",
  1404. +            "php": ">=5.3.2"
  1405.          },
  1406.          "require-dev": {
  1407. -            "symfony/css-selector": "~2.8|~3.0"
  1408. +            "symfony/yaml": "~2.1"
  1409.          },
  1410.          "suggest": {
  1411. -            "symfony/css-selector": ""
  1412. +            "symfony/yaml": "Required for using the YAML Configuration Builders"
  1413.          },
  1414. -        "time": "2017-10-02T06:42:24+00:00",
  1415. +        "time": "2016-12-12T17:43:40+00:00",
  1416.          "type": "library",
  1417.          "extra": {
  1418.              "branch-alias": {
  1419. -                "dev-master": "3.3-dev"
  1420. +                "dev-master": "1.0-dev"
  1421.              }
  1422.          },
  1423.          "installation-source": "dist",
  1424.          "autoload": {
  1425. -            "psr-4": {
  1426. -                "Symfony\\Component\\DomCrawler\\": ""
  1427. -            },
  1428. -            "exclude-from-classmap": [
  1429. -                "/Tests/"
  1430. -            ]
  1431. +            "psr-0": {
  1432. +                "Dflydev\\DotAccessConfiguration": "src"
  1433. +            }
  1434.          },
  1435.          "notification-url": "https://packagist.org/downloads/",
  1436.          "license": [
  1437. @@ -788,50 +823,53 @@
  1438.          ],
  1439.          "authors": [
  1440.              {
  1441. -                "name": "Fabien Potencier",
  1442. -                "email": "fabien@symfony.com"
  1443. +                "name": "Dragonfly Development Inc.",
  1444. +                "email": "info@dflydev.com",
  1445. +                "homepage": "http://dflydev.com"
  1446.              },
  1447.              {
  1448. -                "name": "Symfony Community",
  1449. -                "homepage": "https://symfony.com/contributors"
  1450. +                "name": "Beau Simensen",
  1451. +                "email": "beau@dflydev.com",
  1452. +                "homepage": "http://beausimensen.com"
  1453.              }
  1454.          ],
  1455. -        "description": "Symfony DomCrawler Component",
  1456. -        "homepage": "https://symfony.com"
  1457. +        "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1458. +        "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1459. +        "keywords": [
  1460. +            "config",
  1461. +            "configuration"
  1462. +        ]
  1463.      },
  1464.      {
  1465. -        "name": "symfony/css-selector",
  1466. -        "version": "v3.3.10",
  1467. -        "version_normalized": "3.3.10.0",
  1468. +        "name": "dflydev/dot-access-data",
  1469. +        "version": "v1.1.0",
  1470. +        "version_normalized": "1.1.0.0",
  1471.          "source": {
  1472.              "type": "git",
  1473. -            "url": "https://github.com/symfony/css-selector.git",
  1474. -            "reference": "07447650225ca9223bd5c97180fe7c8267f7d332"
  1475. +            "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1476. +            "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1477.          },
  1478.          "dist": {
  1479.              "type": "zip",
  1480. -            "url": "https://api.github.com/repos/symfony/css-selector/zipball/07447650225ca9223bd5c97180fe7c8267f7d332",
  1481. -            "reference": "07447650225ca9223bd5c97180fe7c8267f7d332",
  1482. +            "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1483. +            "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1484.              "shasum": ""
  1485.          },
  1486.          "require": {
  1487. -            "php": "^5.5.9|>=7.0.8"
  1488. +            "php": ">=5.3.2"
  1489.          },
  1490. -        "time": "2017-10-02T06:42:24+00:00",
  1491. +        "time": "2017-01-20T21:14:22+00:00",
  1492.          "type": "library",
  1493.          "extra": {
  1494.              "branch-alias": {
  1495. -                "dev-master": "3.3-dev"
  1496. +                "dev-master": "1.0-dev"
  1497.              }
  1498.          },
  1499.          "installation-source": "dist",
  1500.          "autoload": {
  1501. -            "psr-4": {
  1502. -                "Symfony\\Component\\CssSelector\\": ""
  1503. -            },
  1504. -            "exclude-from-classmap": [
  1505. -                "/Tests/"
  1506. -            ]
  1507. +            "psr-0": {
  1508. +                "Dflydev\\DotAccessData": "src"
  1509. +            }
  1510.          },
  1511.          "notification-url": "https://packagist.org/downloads/",
  1512.          "license": [
  1513. @@ -839,98 +877,59 @@
  1514.          ],
  1515.          "authors": [
  1516.              {
  1517. -                "name": "Jean-François Simon",
  1518. -                "email": "jeanfrancois.simon@sensiolabs.com"
  1519. +                "name": "Dragonfly Development Inc.",
  1520. +                "email": "info@dflydev.com",
  1521. +                "homepage": "http://dflydev.com"
  1522.              },
  1523.              {
  1524. -                "name": "Fabien Potencier",
  1525. -                "email": "fabien@symfony.com"
  1526. +                "name": "Beau Simensen",
  1527. +                "email": "beau@dflydev.com",
  1528. +                "homepage": "http://beausimensen.com"
  1529.              },
  1530.              {
  1531. -                "name": "Symfony Community",
  1532. -                "homepage": "https://symfony.com/contributors"
  1533. +                "name": "Carlos Frutos",
  1534. +                "email": "carlos@kiwing.it",
  1535. +                "homepage": "https://github.com/cfrutos"
  1536.              }
  1537.          ],
  1538. -        "description": "Symfony CssSelector Component",
  1539. -        "homepage": "https://symfony.com"
  1540. +        "description": "Given a deep data structure, access data by dot notation.",
  1541. +        "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1542. +        "keywords": [
  1543. +            "access",
  1544. +            "data",
  1545. +            "dot",
  1546. +            "notation"
  1547. +        ]
  1548.      },
  1549.      {
  1550. -        "name": "jakub-onderka/php-console-color",
  1551. -        "version": "0.1",
  1552. -        "version_normalized": "0.1.0.0",
  1553. +        "name": "dflydev/placeholder-resolver",
  1554. +        "version": "v1.0.2",
  1555. +        "version_normalized": "1.0.2.0",
  1556.          "source": {
  1557.              "type": "git",
  1558. -            "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  1559. -            "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1"
  1560. +            "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1561. +            "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1562.          },
  1563.          "dist": {
  1564.              "type": "zip",
  1565. -            "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1",
  1566. -            "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1",
  1567. +            "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1568. +            "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1569.              "shasum": ""
  1570.          },
  1571.          "require": {
  1572.              "php": ">=5.3.2"
  1573.          },
  1574. -        "require-dev": {
  1575. -            "jakub-onderka/php-code-style": "1.0",
  1576. -            "jakub-onderka/php-parallel-lint": "0.*",
  1577. -            "jakub-onderka/php-var-dump-check": "0.*",
  1578. -            "phpunit/phpunit": "3.7.*",
  1579. -            "squizlabs/php_codesniffer": "1.*"
  1580. -        },
  1581. -        "time": "2014-04-08T15:00:19+00:00",
  1582. +        "time": "2012-10-28T21:08:28+00:00",
  1583.          "type": "library",
  1584. -        "installation-source": "dist",
  1585. -        "autoload": {
  1586. -            "psr-0": {
  1587. -                "JakubOnderka\\PhpConsoleColor": "src/"
  1588. -            }
  1589. -        },
  1590. -        "notification-url": "https://packagist.org/downloads/",
  1591. -        "license": [
  1592. -            "BSD-2-Clause"
  1593. -        ],
  1594. -        "authors": [
  1595. -            {
  1596. -                "name": "Jakub Onderka",
  1597. -                "email": "jakub.onderka@gmail.com",
  1598. -                "homepage": "http://www.acci.cz"
  1599. +        "extra": {
  1600. +            "branch-alias": {
  1601. +                "dev-master": "1.0-dev"
  1602.              }
  1603. -        ]
  1604. -    },
  1605. -    {
  1606. -        "name": "jakub-onderka/php-console-highlighter",
  1607. -        "version": "v0.3.2",
  1608. -        "version_normalized": "0.3.2.0",
  1609. -        "source": {
  1610. -            "type": "git",
  1611. -            "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  1612. -            "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5"
  1613. -        },
  1614. -        "dist": {
  1615. -            "type": "zip",
  1616. -            "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  1617. -            "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  1618. -            "shasum": ""
  1619. -        },
  1620. -        "require": {
  1621. -            "jakub-onderka/php-console-color": "~0.1",
  1622. -            "php": ">=5.3.0"
  1623.          },
  1624. -        "require-dev": {
  1625. -            "jakub-onderka/php-code-style": "~1.0",
  1626. -            "jakub-onderka/php-parallel-lint": "~0.5",
  1627. -            "jakub-onderka/php-var-dump-check": "~0.1",
  1628. -            "phpunit/phpunit": "~4.0",
  1629. -            "squizlabs/php_codesniffer": "~1.5"
  1630. -        },
  1631. -        "time": "2015-04-20T18:58:01+00:00",
  1632. -        "type": "library",
  1633.          "installation-source": "dist",
  1634.          "autoload": {
  1635.              "psr-0": {
  1636. -                "JakubOnderka\\PhpConsoleHighlighter": "src/"
  1637. +                "Dflydev\\PlaceholderResolver": "src"
  1638.              }
  1639.          },
  1640.          "notification-url": "https://packagist.org/downloads/",
  1641. @@ -939,10 +938,21 @@
  1642.          ],
  1643.          "authors": [
  1644.              {
  1645. -                "name": "Jakub Onderka",
  1646. -                "email": "acci@acci.cz",
  1647. -                "homepage": "http://www.acci.cz/"
  1648. +                "name": "Dragonfly Development Inc.",
  1649. +                "email": "info@dflydev.com",
  1650. +                "homepage": "http://dflydev.com"
  1651. +            },
  1652. +            {
  1653. +                "name": "Beau Simensen",
  1654. +                "email": "beau@dflydev.com",
  1655. +                "homepage": "http://beausimensen.com"
  1656.              }
  1657. +        ],
  1658. +        "description": "Given a data source representing key => value pairs, resolve placeholders like ${foo.bar} to the value associated with the 'foo.bar' key in the data source.",
  1659. +        "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1660. +        "keywords": [
  1661. +            "placeholder",
  1662. +            "resolver"
  1663.          ]
  1664.      },
  1665.      {
  1666. @@ -981,106 +991,117 @@
  1667.          "description": "implementation of xdg base directory specification for php"
  1668.      },
  1669.      {
  1670. -        "name": "nikic/php-parser",
  1671. -        "version": "v3.1.1",
  1672. -        "version_normalized": "3.1.1.0",
  1673. +        "name": "doctrine/annotations",
  1674. +        "version": "v1.5.0",
  1675. +        "version_normalized": "1.5.0.0",
  1676.          "source": {
  1677.              "type": "git",
  1678. -            "url": "https://github.com/nikic/PHP-Parser.git",
  1679. -            "reference": "a1e8e1a30e1352f118feff1a8481066ddc2f234a"
  1680. +            "url": "https://github.com/doctrine/annotations.git",
  1681. +            "reference": "5beebb01b025c94e93686b7a0ed3edae81fe3e7f"
  1682.          },
  1683.          "dist": {
  1684.              "type": "zip",
  1685. -            "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a1e8e1a30e1352f118feff1a8481066ddc2f234a",
  1686. -            "reference": "a1e8e1a30e1352f118feff1a8481066ddc2f234a",
  1687. +            "url": "https://api.github.com/repos/doctrine/annotations/zipball/5beebb01b025c94e93686b7a0ed3edae81fe3e7f",
  1688. +            "reference": "5beebb01b025c94e93686b7a0ed3edae81fe3e7f",
  1689.              "shasum": ""
  1690.          },
  1691.          "require": {
  1692. -            "ext-tokenizer": "*",
  1693. -            "php": ">=5.5"
  1694. +            "doctrine/lexer": "1.*",
  1695. +            "php": "^7.1"
  1696.          },
  1697.          "require-dev": {
  1698. -            "phpunit/phpunit": "~4.0|~5.0"
  1699. +            "doctrine/cache": "1.*",
  1700. +            "phpunit/phpunit": "^5.7"
  1701.          },
  1702. -        "time": "2017-09-02T17:10:46+00:00",
  1703. -        "bin": [
  1704. -            "bin/php-parse"
  1705. -        ],
  1706. +        "time": "2017-07-22T10:58:02+00:00",
  1707.          "type": "library",
  1708.          "extra": {
  1709.              "branch-alias": {
  1710. -                "dev-master": "3.0-dev"
  1711. +                "dev-master": "1.5.x-dev"
  1712.              }
  1713.          },
  1714.          "installation-source": "dist",
  1715.          "autoload": {
  1716.              "psr-4": {
  1717. -                "PhpParser\\": "lib/PhpParser"
  1718. +                "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1719.              }
  1720.          },
  1721.          "notification-url": "https://packagist.org/downloads/",
  1722.          "license": [
  1723. -            "BSD-3-Clause"
  1724. +            "MIT"
  1725.          ],
  1726.          "authors": [
  1727.              {
  1728. -                "name": "Nikita Popov"
  1729. +                "name": "Roman Borschel",
  1730. +                "email": "roman@code-factory.org"
  1731. +            },
  1732. +            {
  1733. +                "name": "Benjamin Eberlei",
  1734. +                "email": "kontakt@beberlei.de"
  1735. +            },
  1736. +            {
  1737. +                "name": "Guilherme Blanco",
  1738. +                "email": "guilhermeblanco@gmail.com"
  1739. +            },
  1740. +            {
  1741. +                "name": "Jonathan Wage",
  1742. +                "email": "jonwage@gmail.com"
  1743. +            },
  1744. +            {
  1745. +                "name": "Johannes Schmitt",
  1746. +                "email": "schmittjoh@gmail.com"
  1747.              }
  1748.          ],
  1749. -        "description": "A PHP parser written in PHP",
  1750. +        "description": "Docblock Annotations Parser",
  1751. +        "homepage": "http://www.doctrine-project.org",
  1752.          "keywords": [
  1753. -            "parser",
  1754. -            "php"
  1755. +            "annotations",
  1756. +            "docblock",
  1757. +            "parser"
  1758.          ]
  1759.      },
  1760.      {
  1761. -        "name": "symfony/var-dumper",
  1762. -        "version": "v3.3.10",
  1763. -        "version_normalized": "3.3.10.0",
  1764. +        "name": "doctrine/cache",
  1765. +        "version": "v1.7.1",
  1766. +        "version_normalized": "1.7.1.0",
  1767.          "source": {
  1768.              "type": "git",
  1769. -            "url": "https://github.com/symfony/var-dumper.git",
  1770. -            "reference": "03e3693a36701f1c581dd24a6d6eea2eba2113f6"
  1771. +            "url": "https://github.com/doctrine/cache.git",
  1772. +            "reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a"
  1773.          },
  1774.          "dist": {
  1775.              "type": "zip",
  1776. -            "url": "https://api.github.com/repos/symfony/var-dumper/zipball/03e3693a36701f1c581dd24a6d6eea2eba2113f6",
  1777. -            "reference": "03e3693a36701f1c581dd24a6d6eea2eba2113f6",
  1778. +            "url": "https://api.github.com/repos/doctrine/cache/zipball/b3217d58609e9c8e661cd41357a54d926c4a2a1a",
  1779. +            "reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a",
  1780.              "shasum": ""
  1781.          },
  1782.          "require": {
  1783. -            "php": "^5.5.9|>=7.0.8",
  1784. -            "symfony/polyfill-mbstring": "~1.0"
  1785. +            "php": "~7.1"
  1786.          },
  1787.          "conflict": {
  1788. -            "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  1789. +            "doctrine/common": ">2.2,<2.4"
  1790.          },
  1791.          "require-dev": {
  1792. -            "ext-iconv": "*",
  1793. -            "twig/twig": "~1.34|~2.4"
  1794. +            "alcaeus/mongo-php-adapter": "^1.1",
  1795. +            "mongodb/mongodb": "^1.1",
  1796. +            "phpunit/phpunit": "^5.7",
  1797. +            "predis/predis": "~1.0"
  1798.          },
  1799.          "suggest": {
  1800. -            "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  1801. -            "ext-symfony_debug": ""
  1802. +            "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1803.          },
  1804. -        "time": "2017-10-02T06:42:24+00:00",
  1805. +        "time": "2017-08-25T07:02:50+00:00",
  1806.          "type": "library",
  1807.          "extra": {
  1808.              "branch-alias": {
  1809. -                "dev-master": "3.3-dev"
  1810. +                "dev-master": "1.7.x-dev"
  1811.              }
  1812.          },
  1813.          "installation-source": "dist",
  1814.          "autoload": {
  1815. -            "files": [
  1816. -                "Resources/functions/dump.php"
  1817. -            ],
  1818.              "psr-4": {
  1819. -                "Symfony\\Component\\VarDumper\\": ""
  1820. -            },
  1821. -            "exclude-from-classmap": [
  1822. -                "/Tests/"
  1823. -            ]
  1824. +                "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1825. +            }
  1826.          },
  1827.          "notification-url": "https://packagist.org/downloads/",
  1828.          "license": [
  1829. @@ -1088,74 +1109,66 @@
  1830.          ],
  1831.          "authors": [
  1832.              {
  1833. -                "name": "Nicolas Grekas",
  1834. -                "email": "p@tchwork.com"
  1835. +                "name": "Roman Borschel",
  1836. +                "email": "roman@code-factory.org"
  1837.              },
  1838.              {
  1839. -                "name": "Symfony Community",
  1840. -                "homepage": "https://symfony.com/contributors"
  1841. +                "name": "Benjamin Eberlei",
  1842. +                "email": "kontakt@beberlei.de"
  1843. +            },
  1844. +            {
  1845. +                "name": "Guilherme Blanco",
  1846. +                "email": "guilhermeblanco@gmail.com"
  1847. +            },
  1848. +            {
  1849. +                "name": "Jonathan Wage",
  1850. +                "email": "jonwage@gmail.com"
  1851. +            },
  1852. +            {
  1853. +                "name": "Johannes Schmitt",
  1854. +                "email": "schmittjoh@gmail.com"
  1855.              }
  1856.          ],
  1857. -        "description": "Symfony mechanism for exploring and dumping PHP variables",
  1858. -        "homepage": "https://symfony.com",
  1859. +        "description": "Caching library offering an object-oriented API for many cache backends",
  1860. +        "homepage": "http://www.doctrine-project.org",
  1861.          "keywords": [
  1862. -            "debug",
  1863. -            "dump"
  1864. +            "cache",
  1865. +            "caching"
  1866.          ]
  1867.      },
  1868.      {
  1869. -        "name": "psy/psysh",
  1870. -        "version": "v0.8.13",
  1871. -        "version_normalized": "0.8.13.0",
  1872. +        "name": "doctrine/collections",
  1873. +        "version": "v1.5.0",
  1874. +        "version_normalized": "1.5.0.0",
  1875.          "source": {
  1876.              "type": "git",
  1877. -            "url": "https://github.com/bobthecow/psysh.git",
  1878. -            "reference": "cdb5593c3684bab74e10fcfffe4a0c8d1c39695d"
  1879. +            "url": "https://github.com/doctrine/collections.git",
  1880. +            "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf"
  1881.          },
  1882.          "dist": {
  1883.              "type": "zip",
  1884. -            "url": "https://api.github.com/repos/bobthecow/psysh/zipball/cdb5593c3684bab74e10fcfffe4a0c8d1c39695d",
  1885. -            "reference": "cdb5593c3684bab74e10fcfffe4a0c8d1c39695d",
  1886. +            "url": "https://api.github.com/repos/doctrine/collections/zipball/a01ee38fcd999f34d9bfbcee59dbda5105449cbf",
  1887. +            "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf",
  1888.              "shasum": ""
  1889.          },
  1890.          "require": {
  1891. -            "dnoegel/php-xdg-base-dir": "0.1",
  1892. -            "jakub-onderka/php-console-highlighter": "0.3.*",
  1893. -            "nikic/php-parser": "~1.3|~2.0|~3.0",
  1894. -            "php": ">=5.3.9",
  1895. -            "symfony/console": "~2.3.10|^2.4.2|~3.0",
  1896. -            "symfony/var-dumper": "~2.7|~3.0"
  1897. +            "php": "^7.1"
  1898.          },
  1899.          "require-dev": {
  1900. -            "friendsofphp/php-cs-fixer": "~1.11",
  1901. -            "hoa/console": "~3.16|~1.14",
  1902. -            "phpunit/phpunit": "~4.4|~5.0",
  1903. -            "symfony/finder": "~2.1|~3.0"
  1904. -        },
  1905. -        "suggest": {
  1906. -            "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  1907. -            "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  1908. -            "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  1909. -            "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  1910. -            "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  1911. +            "doctrine/coding-standard": "~0.1@dev",
  1912. +            "phpunit/phpunit": "^5.7"
  1913.          },
  1914. -        "time": "2017-10-19T06:13:20+00:00",
  1915. -        "bin": [
  1916. -            "bin/psysh"
  1917. -        ],
  1918. +        "time": "2017-07-22T10:37:32+00:00",
  1919.          "type": "library",
  1920.          "extra": {
  1921.              "branch-alias": {
  1922. -                "dev-develop": "0.8.x-dev"
  1923. +                "dev-master": "1.3.x-dev"
  1924.              }
  1925.          },
  1926.          "installation-source": "dist",
  1927.          "autoload": {
  1928. -            "files": [
  1929. -                "src/Psy/functions.php"
  1930. -            ],
  1931. -            "psr-4": {
  1932. -                "Psy\\": "src/Psy/"
  1933. +            "psr-0": {
  1934. +                "Doctrine\\Common\\Collections\\": "lib/"
  1935.              }
  1936.          },
  1937.          "notification-url": "https://packagist.org/downloads/",
  1938. @@ -1164,49 +1177,71 @@
  1939.          ],
  1940.          "authors": [
  1941.              {
  1942. -                "name": "Justin Hileman",
  1943. -                "email": "justin@justinhileman.info",
  1944. -                "homepage": "http://justinhileman.com"
  1945. +                "name": "Roman Borschel",
  1946. +                "email": "roman@code-factory.org"
  1947. +            },
  1948. +            {
  1949. +                "name": "Benjamin Eberlei",
  1950. +                "email": "kontakt@beberlei.de"
  1951. +            },
  1952. +            {
  1953. +                "name": "Guilherme Blanco",
  1954. +                "email": "guilhermeblanco@gmail.com"
  1955. +            },
  1956. +            {
  1957. +                "name": "Jonathan Wage",
  1958. +                "email": "jonwage@gmail.com"
  1959. +            },
  1960. +            {
  1961. +                "name": "Johannes Schmitt",
  1962. +                "email": "schmittjoh@gmail.com"
  1963.              }
  1964.          ],
  1965. -        "description": "An interactive shell for modern PHP.",
  1966. -        "homepage": "http://psysh.org",
  1967. +        "description": "Collections Abstraction library",
  1968. +        "homepage": "http://www.doctrine-project.org",
  1969.          "keywords": [
  1970. -            "REPL",
  1971. -            "console",
  1972. -            "interactive",
  1973. -            "shell"
  1974. +            "array",
  1975. +            "collections",
  1976. +            "iterator"
  1977.          ]
  1978.      },
  1979.      {
  1980. -        "name": "psr/http-message",
  1981. -        "version": "1.0.1",
  1982. -        "version_normalized": "1.0.1.0",
  1983. +        "name": "doctrine/common",
  1984. +        "version": "v2.8.1",
  1985. +        "version_normalized": "2.8.1.0",
  1986.          "source": {
  1987.              "type": "git",
  1988. -            "url": "https://github.com/php-fig/http-message.git",
  1989. -            "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1990. +            "url": "https://github.com/doctrine/common.git",
  1991. +            "reference": "f68c297ce6455e8fd794aa8ffaf9fa458f6ade66"
  1992.          },
  1993.          "dist": {
  1994.              "type": "zip",
  1995. -            "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1996. -            "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1997. +            "url": "https://api.github.com/repos/doctrine/common/zipball/f68c297ce6455e8fd794aa8ffaf9fa458f6ade66",
  1998. +            "reference": "f68c297ce6455e8fd794aa8ffaf9fa458f6ade66",
  1999.              "shasum": ""
  2000.          },
  2001.          "require": {
  2002. -            "php": ">=5.3.0"
  2003. +            "doctrine/annotations": "1.*",
  2004. +            "doctrine/cache": "1.*",
  2005. +            "doctrine/collections": "1.*",
  2006. +            "doctrine/inflector": "1.*",
  2007. +            "doctrine/lexer": "1.*",
  2008. +            "php": "~7.1"
  2009.          },
  2010. -        "time": "2016-08-06T14:39:51+00:00",
  2011. +        "require-dev": {
  2012. +            "phpunit/phpunit": "^5.7"
  2013. +        },
  2014. +        "time": "2017-08-31T08:43:38+00:00",
  2015.          "type": "library",
  2016.          "extra": {
  2017.              "branch-alias": {
  2018. -                "dev-master": "1.0.x-dev"
  2019. +                "dev-master": "2.8.x-dev"
  2020.              }
  2021.          },
  2022.          "installation-source": "dist",
  2023.          "autoload": {
  2024.              "psr-4": {
  2025. -                "Psr\\Http\\Message\\": "src/"
  2026. +                "Doctrine\\Common\\": "lib/Doctrine/Common"
  2027.              }
  2028.          },
  2029.          "notification-url": "https://packagist.org/downloads/",
  2030. @@ -1215,61 +1250,69 @@
  2031.          ],
  2032.          "authors": [
  2033.              {
  2034. -                "name": "PHP-FIG",
  2035. -                "homepage": "http://www.php-fig.org/"
  2036. +                "name": "Roman Borschel",
  2037. +                "email": "roman@code-factory.org"
  2038. +            },
  2039. +            {
  2040. +                "name": "Benjamin Eberlei",
  2041. +                "email": "kontakt@beberlei.de"
  2042. +            },
  2043. +            {
  2044. +                "name": "Guilherme Blanco",
  2045. +                "email": "guilhermeblanco@gmail.com"
  2046. +            },
  2047. +            {
  2048. +                "name": "Jonathan Wage",
  2049. +                "email": "jonwage@gmail.com"
  2050. +            },
  2051. +            {
  2052. +                "name": "Johannes Schmitt",
  2053. +                "email": "schmittjoh@gmail.com"
  2054.              }
  2055.          ],
  2056. -        "description": "Common interface for HTTP messages",
  2057. -        "homepage": "https://github.com/php-fig/http-message",
  2058. +        "description": "Common Library for Doctrine projects",
  2059. +        "homepage": "http://www.doctrine-project.org",
  2060.          "keywords": [
  2061. -            "http",
  2062. -            "http-message",
  2063. -            "psr",
  2064. -            "psr-7",
  2065. -            "request",
  2066. -            "response"
  2067. +            "annotations",
  2068. +            "collections",
  2069. +            "eventmanager",
  2070. +            "persistence",
  2071. +            "spl"
  2072.          ]
  2073.      },
  2074.      {
  2075. -        "name": "guzzlehttp/psr7",
  2076. -        "version": "1.4.2",
  2077. -        "version_normalized": "1.4.2.0",
  2078. +        "name": "doctrine/inflector",
  2079. +        "version": "v1.2.0",
  2080. +        "version_normalized": "1.2.0.0",
  2081.          "source": {
  2082.              "type": "git",
  2083. -            "url": "https://github.com/guzzle/psr7.git",
  2084. -            "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  2085. +            "url": "https://github.com/doctrine/inflector.git",
  2086. +            "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  2087.          },
  2088.          "dist": {
  2089.              "type": "zip",
  2090. -            "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  2091. -            "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  2092. +            "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  2093. +            "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  2094.              "shasum": ""
  2095.          },
  2096.          "require": {
  2097. -            "php": ">=5.4.0",
  2098. -            "psr/http-message": "~1.0"
  2099. -        },
  2100. -        "provide": {
  2101. -            "psr/http-message-implementation": "1.0"
  2102. +            "php": "^7.0"
  2103.          },
  2104.          "require-dev": {
  2105. -            "phpunit/phpunit": "~4.0"
  2106. +            "phpunit/phpunit": "^6.2"
  2107.          },
  2108. -        "time": "2017-03-20T17:10:46+00:00",
  2109. +        "time": "2017-07-22T12:18:28+00:00",
  2110.          "type": "library",
  2111.          "extra": {
  2112.              "branch-alias": {
  2113. -                "dev-master": "1.4-dev"
  2114. +                "dev-master": "1.2.x-dev"
  2115.              }
  2116.          },
  2117.          "installation-source": "dist",
  2118.          "autoload": {
  2119.              "psr-4": {
  2120. -                "GuzzleHttp\\Psr7\\": "src/"
  2121. -            },
  2122. -            "files": [
  2123. -                "src/functions_include.php"
  2124. -            ]
  2125. +                "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  2126. +            }
  2127.          },
  2128.          "notification-url": "https://packagist.org/downloads/",
  2129.          "license": [
  2130. @@ -1277,62 +1320,72 @@
  2131.          ],
  2132.          "authors": [
  2133.              {
  2134. -                "name": "Michael Dowling",
  2135. -                "email": "mtdowling@gmail.com",
  2136. -                "homepage": "https://github.com/mtdowling"
  2137. +                "name": "Roman Borschel",
  2138. +                "email": "roman@code-factory.org"
  2139.              },
  2140.              {
  2141. -                "name": "Tobias Schultze",
  2142. -                "homepage": "https://github.com/Tobion"
  2143. +                "name": "Benjamin Eberlei",
  2144. +                "email": "kontakt@beberlei.de"
  2145. +            },
  2146. +            {
  2147. +                "name": "Guilherme Blanco",
  2148. +                "email": "guilhermeblanco@gmail.com"
  2149. +            },
  2150. +            {
  2151. +                "name": "Jonathan Wage",
  2152. +                "email": "jonwage@gmail.com"
  2153. +            },
  2154. +            {
  2155. +                "name": "Johannes Schmitt",
  2156. +                "email": "schmittjoh@gmail.com"
  2157.              }
  2158.          ],
  2159. -        "description": "PSR-7 message implementation that also provides common utility methods",
  2160. +        "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  2161. +        "homepage": "http://www.doctrine-project.org",
  2162.          "keywords": [
  2163. -            "http",
  2164. -            "message",
  2165. -            "request",
  2166. -            "response",
  2167. -            "stream",
  2168. -            "uri",
  2169. -            "url"
  2170. +            "inflection",
  2171. +            "pluralize",
  2172. +            "singularize",
  2173. +            "string"
  2174.          ]
  2175.      },
  2176.      {
  2177. -        "name": "guzzlehttp/promises",
  2178. -        "version": "v1.3.1",
  2179. -        "version_normalized": "1.3.1.0",
  2180. +        "name": "doctrine/instantiator",
  2181. +        "version": "1.1.0",
  2182. +        "version_normalized": "1.1.0.0",
  2183.          "source": {
  2184.              "type": "git",
  2185. -            "url": "https://github.com/guzzle/promises.git",
  2186. -            "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  2187. +            "url": "https://github.com/doctrine/instantiator.git",
  2188. +            "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
  2189.          },
  2190.          "dist": {
  2191.              "type": "zip",
  2192. -            "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  2193. -            "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  2194. +            "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  2195. +            "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  2196.              "shasum": ""
  2197.          },
  2198.          "require": {
  2199. -            "php": ">=5.5.0"
  2200. +            "php": "^7.1"
  2201.          },
  2202.          "require-dev": {
  2203. -            "phpunit/phpunit": "^4.0"
  2204. +            "athletic/athletic": "~0.1.8",
  2205. +            "ext-pdo": "*",
  2206. +            "ext-phar": "*",
  2207. +            "phpunit/phpunit": "^6.2.3",
  2208. +            "squizlabs/php_codesniffer": "^3.0.2"
  2209.          },
  2210. -        "time": "2016-12-20T10:07:11+00:00",
  2211. +        "time": "2017-07-22T11:58:36+00:00",
  2212.          "type": "library",
  2213.          "extra": {
  2214.              "branch-alias": {
  2215. -                "dev-master": "1.4-dev"
  2216. +                "dev-master": "1.2.x-dev"
  2217.              }
  2218.          },
  2219.          "installation-source": "dist",
  2220.          "autoload": {
  2221.              "psr-4": {
  2222. -                "GuzzleHttp\\Promise\\": "src/"
  2223. -            },
  2224. -            "files": [
  2225. -                "src/functions_include.php"
  2226. -            ]
  2227. +                "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2228. +            }
  2229.          },
  2230.          "notification-url": "https://packagist.org/downloads/",
  2231.          "license": [
  2232. @@ -1340,58 +1393,47 @@
  2233.          ],
  2234.          "authors": [
  2235.              {
  2236. -                "name": "Michael Dowling",
  2237. -                "email": "mtdowling@gmail.com",
  2238. -                "homepage": "https://github.com/mtdowling"
  2239. +                "name": "Marco Pivetta",
  2240. +                "email": "ocramius@gmail.com",
  2241. +                "homepage": "http://ocramius.github.com/"
  2242.              }
  2243.          ],
  2244. -        "description": "Guzzle promises library",
  2245. +        "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2246. +        "homepage": "https://github.com/doctrine/instantiator",
  2247.          "keywords": [
  2248. -            "promise"
  2249. +            "constructor",
  2250. +            "instantiate"
  2251.          ]
  2252.      },
  2253.      {
  2254. -        "name": "guzzlehttp/guzzle",
  2255. -        "version": "6.3.0",
  2256. -        "version_normalized": "6.3.0.0",
  2257. +        "name": "doctrine/lexer",
  2258. +        "version": "v1.0.1",
  2259. +        "version_normalized": "1.0.1.0",
  2260.          "source": {
  2261.              "type": "git",
  2262. -            "url": "https://github.com/guzzle/guzzle.git",
  2263. -            "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699"
  2264. +            "url": "https://github.com/doctrine/lexer.git",
  2265. +            "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  2266.          },
  2267.          "dist": {
  2268.              "type": "zip",
  2269. -            "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  2270. -            "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  2271. +            "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  2272. +            "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  2273.              "shasum": ""
  2274.          },
  2275.          "require": {
  2276. -            "guzzlehttp/promises": "^1.0",
  2277. -            "guzzlehttp/psr7": "^1.4",
  2278. -            "php": ">=5.5"
  2279. -        },
  2280. -        "require-dev": {
  2281. -            "ext-curl": "*",
  2282. -            "phpunit/phpunit": "^4.0 || ^5.0",
  2283. -            "psr/log": "^1.0"
  2284. -        },
  2285. -        "suggest": {
  2286. -            "psr/log": "Required for using the Log middleware"
  2287. +            "php": ">=5.3.2"
  2288.          },
  2289. -        "time": "2017-06-22T18:50:49+00:00",
  2290. +        "time": "2014-09-09T13:34:57+00:00",
  2291.          "type": "library",
  2292.          "extra": {
  2293.              "branch-alias": {
  2294. -                "dev-master": "6.2-dev"
  2295. +                "dev-master": "1.0.x-dev"
  2296.              }
  2297.          },
  2298.          "installation-source": "dist",
  2299.          "autoload": {
  2300. -            "files": [
  2301. -                "src/functions_include.php"
  2302. -            ],
  2303. -            "psr-4": {
  2304. -                "GuzzleHttp\\": "src/"
  2305. +            "psr-0": {
  2306. +                "Doctrine\\Common\\Lexer\\": "lib/"
  2307.              }
  2308.          },
  2309.          "notification-url": "https://packagist.org/downloads/",
  2310. @@ -1400,520 +1442,651 @@
  2311.          ],
  2312.          "authors": [
  2313.              {
  2314. -                "name": "Michael Dowling",
  2315. -                "email": "mtdowling@gmail.com",
  2316. -                "homepage": "https://github.com/mtdowling"
  2317. +                "name": "Roman Borschel",
  2318. +                "email": "roman@code-factory.org"
  2319. +            },
  2320. +            {
  2321. +                "name": "Guilherme Blanco",
  2322. +                "email": "guilhermeblanco@gmail.com"
  2323. +            },
  2324. +            {
  2325. +                "name": "Johannes Schmitt",
  2326. +                "email": "schmittjoh@gmail.com"
  2327.              }
  2328.          ],
  2329. -        "description": "Guzzle is a PHP HTTP client library",
  2330. -        "homepage": "http://guzzlephp.org/",
  2331. +        "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  2332. +        "homepage": "http://www.doctrine-project.org",
  2333.          "keywords": [
  2334. -            "client",
  2335. -            "curl",
  2336. -            "framework",
  2337. -            "http",
  2338. -            "http client",
  2339. -            "rest",
  2340. -            "web service"
  2341. +            "lexer",
  2342. +            "parser"
  2343.          ]
  2344.      },
  2345.      {
  2346. -        "name": "gabordemooij/redbean",
  2347. -        "version": "v4.3.4",
  2348. -        "version_normalized": "4.3.4.0",
  2349. +        "name": "drupal-composer/drupal-scaffold",
  2350. +        "version": "2.3.0",
  2351. +        "version_normalized": "2.3.0.0",
  2352.          "source": {
  2353.              "type": "git",
  2354. -            "url": "https://github.com/gabordemooij/redbean.git",
  2355. -            "reference": "d0944d7f966d7f45a0d973981fe3f64aff0050f0"
  2356. +            "url": "https://github.com/drupal-composer/drupal-scaffold.git",
  2357. +            "reference": "1374e1031b98beb502abea3854f361304965c628"
  2358.          },
  2359.          "dist": {
  2360.              "type": "zip",
  2361. -            "url": "https://api.github.com/repos/gabordemooij/redbean/zipball/d0944d7f966d7f45a0d973981fe3f64aff0050f0",
  2362. -            "reference": "d0944d7f966d7f45a0d973981fe3f64aff0050f0",
  2363. +            "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/1374e1031b98beb502abea3854f361304965c628",
  2364. +            "reference": "1374e1031b98beb502abea3854f361304965c628",
  2365.              "shasum": ""
  2366.          },
  2367.          "require": {
  2368. -            "php": ">=5.3.4"
  2369. +            "composer-plugin-api": "^1.0.0",
  2370. +            "php": ">=5.4.5"
  2371. +        },
  2372. +        "require-dev": {
  2373. +            "composer/composer": "dev-master",
  2374. +            "phpunit/phpunit": "^4.4.0"
  2375. +        },
  2376. +        "time": "2017-05-05T21:26:28+00:00",
  2377. +        "type": "composer-plugin",
  2378. +        "extra": {
  2379. +            "class": "DrupalComposer\\DrupalScaffold\\Plugin",
  2380. +            "branch-alias": {
  2381. +                "dev-master": "2.0.x-dev"
  2382. +            }
  2383.          },
  2384. -        "time": "2017-03-07T22:26:54+00:00",
  2385. -        "type": "library",
  2386.          "installation-source": "dist",
  2387.          "autoload": {
  2388.              "psr-4": {
  2389. -                "RedBeanPHP\\": "RedBeanPHP"
  2390. +                "DrupalComposer\\DrupalScaffold\\": "src/"
  2391.              }
  2392.          },
  2393.          "notification-url": "https://packagist.org/downloads/",
  2394.          "license": [
  2395. -            "New BSD and GPLv2"
  2396. -        ],
  2397. -        "authors": [
  2398. -            {
  2399. -                "name": "Gabor de Mooij",
  2400. -                "email": "gabor@redbeanphp.com",
  2401. -                "homepage": "http://redbeanphp.com"
  2402. -            }
  2403. +            "GPL-2.0+"
  2404.          ],
  2405. -        "description": "RedBeanPHP ORM",
  2406. -        "homepage": "http://redbeanphp.com/",
  2407. -        "keywords": [
  2408. -            "orm"
  2409. -        ]
  2410. +        "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core"
  2411.      },
  2412.      {
  2413. -        "name": "vlucas/phpdotenv",
  2414. -        "version": "v2.4.0",
  2415. -        "version_normalized": "2.4.0.0",
  2416. +        "name": "drupal/address",
  2417. +        "version": "1.3.0",
  2418. +        "version_normalized": "1.3.0.0",
  2419.          "source": {
  2420.              "type": "git",
  2421. -            "url": "https://github.com/vlucas/phpdotenv.git",
  2422. -            "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c"
  2423. +            "url": "https://git.drupal.org/project/address",
  2424. +            "reference": "8.x-1.3"
  2425.          },
  2426.          "dist": {
  2427.              "type": "zip",
  2428. -            "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c",
  2429. -            "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c",
  2430. -            "shasum": ""
  2431. +            "url": "https://ftp.drupal.org/files/projects/address-8.x-1.3.zip",
  2432. +            "reference": "8.x-1.3",
  2433. +            "shasum": "170551d6ecf4a08bac178f31b9869a626279d9eb"
  2434.          },
  2435.          "require": {
  2436. -            "php": ">=5.3.9"
  2437. -        },
  2438. -        "require-dev": {
  2439. -            "phpunit/phpunit": "^4.8 || ^5.0"
  2440. +            "commerceguys/addressing": "~1.0",
  2441. +            "commerceguys/intl": "~0.7",
  2442. +            "drupal/core": "*"
  2443.          },
  2444. -        "time": "2016-09-01T10:05:43+00:00",
  2445. -        "type": "library",
  2446. +        "type": "drupal-module",
  2447.          "extra": {
  2448.              "branch-alias": {
  2449. -                "dev-master": "2.4-dev"
  2450. +                "dev-1.x": "1.x-dev"
  2451. +            },
  2452. +            "drupal": {
  2453. +                "version": "8.x-1.3",
  2454. +                "datestamp": "1511382784",
  2455. +                "security-coverage": {
  2456. +                    "status": "covered",
  2457. +                    "message": "Covered by Drupal's security advisory policy"
  2458. +                }
  2459.              }
  2460.          },
  2461.          "installation-source": "dist",
  2462. -        "autoload": {
  2463. -            "psr-4": {
  2464. -                "Dotenv\\": "src/"
  2465. -            }
  2466. -        },
  2467. -        "notification-url": "https://packagist.org/downloads/",
  2468. +        "notification-url": "https://packages.drupal.org/8/downloads",
  2469.          "license": [
  2470. -            "BSD-3-Clause-Attribution"
  2471. +            "GPL-2.0+"
  2472.          ],
  2473.          "authors": [
  2474.              {
  2475. -                "name": "Vance Lucas",
  2476. -                "email": "vance@vancelucas.com",
  2477. -                "homepage": "http://www.vancelucas.com"
  2478. +                "name": "bojanz",
  2479. +                "homepage": "https://www.drupal.org/user/86106"
  2480. +            },
  2481. +            {
  2482. +                "name": "googletorp",
  2483. +                "homepage": "https://www.drupal.org/user/386230"
  2484. +            },
  2485. +            {
  2486. +                "name": "rszrama",
  2487. +                "homepage": "https://www.drupal.org/user/49344"
  2488.              }
  2489.          ],
  2490. -        "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  2491. -        "keywords": [
  2492. -            "dotenv",
  2493. -            "env",
  2494. -            "environment"
  2495. -        ]
  2496. +        "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  2497. +        "homepage": "http://drupal.org/project/address",
  2498. +        "support": {
  2499. +            "source": "http://cgit.drupalcode.org/address"
  2500. +        }
  2501.      },
  2502.      {
  2503. -        "name": "drupal/console-dotenv",
  2504. -        "version": "0.3.0",
  2505. -        "version_normalized": "0.3.0.0",
  2506. +        "name": "drupal/admin_toolbar",
  2507. +        "version": "1.21.0",
  2508. +        "version_normalized": "1.21.0.0",
  2509.          "source": {
  2510.              "type": "git",
  2511. -            "url": "https://github.com/weknowinc/drupal-console-dotenv.git",
  2512. -            "reference": "94e88646801c2f80ec2e5e66d3d8f21b0b467405"
  2513. +            "url": "https://git.drupal.org/project/admin_toolbar",
  2514. +            "reference": "8.x-1.21"
  2515.          },
  2516.          "dist": {
  2517.              "type": "zip",
  2518. -            "url": "https://api.github.com/repos/weknowinc/drupal-console-dotenv/zipball/94e88646801c2f80ec2e5e66d3d8f21b0b467405",
  2519. -            "reference": "94e88646801c2f80ec2e5e66d3d8f21b0b467405",
  2520. -            "shasum": ""
  2521. +            "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.21.zip",
  2522. +            "reference": "8.x-1.21",
  2523. +            "shasum": "af3213bd3f1c73a710e0c594ec2f97968d217dee"
  2524.          },
  2525.          "require": {
  2526. -            "vlucas/phpdotenv": "^2.3"
  2527. -        },
  2528. -        "require-dev": {
  2529. -            "drupal/console-core": "~1.0"
  2530. +            "drupal/core": "*"
  2531.          },
  2532. -        "time": "2017-07-04T01:14:02+00:00",
  2533. -        "type": "drupal-console-library",
  2534. -        "installation-source": "dist",
  2535. -        "autoload": {
  2536. -            "psr-4": {
  2537. -                "Drupal\\Console\\Dotenv\\": "src"
  2538. +        "type": "drupal-module",
  2539. +        "extra": {
  2540. +            "branch-alias": {
  2541. +                "dev-1.x": "1.x-dev"
  2542. +            },
  2543. +            "drupal": {
  2544. +                "version": "8.x-1.21",
  2545. +                "datestamp": "1511283695",
  2546. +                "security-coverage": {
  2547. +                    "status": "covered",
  2548. +                    "message": "Covered by Drupal's security advisory policy"
  2549. +                }
  2550.              }
  2551.          },
  2552. -        "notification-url": "https://packagist.org/downloads/",
  2553. +        "installation-source": "dist",
  2554. +        "notification-url": "https://packages.drupal.org/8/downloads",
  2555.          "license": [
  2556.              "GPL-2.0+"
  2557.          ],
  2558.          "authors": [
  2559.              {
  2560. -                "name": "Jesus Manuel Olivas",
  2561. -                "email": "jesus.olivas@gmail.com"
  2562. +                "name": "Mohamed Anis Taktak",
  2563. +                "homepage": "https://www.drupal.org/u/matio89"
  2564. +            },
  2565. +            {
  2566. +                "name": "adriancid",
  2567. +                "homepage": "https://www.drupal.org/user/1962106"
  2568. +            },
  2569. +            {
  2570. +                "name": "bolbol",
  2571. +                "homepage": "https://www.drupal.org/user/3400070"
  2572. +            },
  2573. +            {
  2574. +                "name": "eme",
  2575. +                "homepage": "https://www.drupal.org/user/542492"
  2576. +            },
  2577. +            {
  2578. +                "name": "fethi.krout",
  2579. +                "homepage": "https://www.drupal.org/user/3206765"
  2580. +            },
  2581. +            {
  2582. +                "name": "matio89",
  2583. +                "homepage": "https://www.drupal.org/user/2320090"
  2584. +            },
  2585. +            {
  2586. +                "name": "romainj",
  2587. +                "homepage": "https://www.drupal.org/user/370706"
  2588.              }
  2589.          ],
  2590. -        "description": "Drupal Console Dotenv"
  2591. +        "description": "Admin Toolbar improve the default Drupal Toolbar, it lets the hover of sub menus.",
  2592. +        "homepage": "http://drupal.org/project/admin_toolbar",
  2593. +        "support": {
  2594. +            "source": "http://cgit.drupalcode.org/admin_toolbar",
  2595. +            "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2596. +        }
  2597.      },
  2598.      {
  2599. -        "name": "webmozart/assert",
  2600. -        "version": "1.2.0",
  2601. -        "version_normalized": "1.2.0.0",
  2602. +        "name": "drupal/coder",
  2603. +        "version": "8.2.12",
  2604. +        "version_normalized": "8.2.12.0",
  2605.          "source": {
  2606.              "type": "git",
  2607. -            "url": "https://github.com/webmozart/assert.git",
  2608. -            "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f"
  2609. -        },
  2610. -        "dist": {
  2611. -            "type": "zip",
  2612. -            "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f",
  2613. -            "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f",
  2614. -            "shasum": ""
  2615. +            "url": "https://git.drupal.org/project/coder.git",
  2616. +            "reference": "984c54a7b1e8f27ff1c32348df69712afd86b17f"
  2617.          },
  2618.          "require": {
  2619. -            "php": "^5.3.3 || ^7.0"
  2620. +            "ext-mbstring": "*",
  2621. +            "php": ">=5.4.0",
  2622. +            "squizlabs/php_codesniffer": ">=2.8.1 <3.0",
  2623. +            "symfony/yaml": ">=2.0.0"
  2624.          },
  2625.          "require-dev": {
  2626. -            "phpunit/phpunit": "^4.6",
  2627. -            "sebastian/version": "^1.0.1"
  2628. -        },
  2629. -        "time": "2016-11-23T20:04:58+00:00",
  2630. -        "type": "library",
  2631. -        "extra": {
  2632. -            "branch-alias": {
  2633. -                "dev-master": "1.3-dev"
  2634. -            }
  2635. -        },
  2636. -        "installation-source": "dist",
  2637. -        "autoload": {
  2638. -            "psr-4": {
  2639. -                "Webmozart\\Assert\\": "src/"
  2640. -            }
  2641. +            "phpunit/phpunit": ">=3.7 <6"
  2642.          },
  2643. +        "time": "2017-03-18T10:28:49+00:00",
  2644. +        "type": "phpcodesniffer-standard",
  2645. +        "installation-source": "source",
  2646.          "notification-url": "https://packagist.org/downloads/",
  2647.          "license": [
  2648. -            "MIT"
  2649. -        ],
  2650. -        "authors": [
  2651. -            {
  2652. -                "name": "Bernhard Schussek",
  2653. -                "email": "bschussek@gmail.com"
  2654. -            }
  2655. +            "GPL-2.0+"
  2656.          ],
  2657. -        "description": "Assertions to validate method input/output with nice error messages.",
  2658. +        "description": "Coder is a library to review Drupal code.",
  2659. +        "homepage": "https://www.drupal.org/project/coder",
  2660.          "keywords": [
  2661. -            "assert",
  2662. -            "check",
  2663. -            "validate"
  2664. +            "code review",
  2665. +            "phpcs",
  2666. +            "standards"
  2667.          ]
  2668.      },
  2669.      {
  2670. -        "name": "webmozart/path-util",
  2671. -        "version": "2.3.0",
  2672. -        "version_normalized": "2.3.0.0",
  2673. +        "name": "drupal/coffee",
  2674. +        "version": "1.0.0-beta2",
  2675. +        "version_normalized": "1.0.0.0-beta2",
  2676.          "source": {
  2677.              "type": "git",
  2678. -            "url": "https://github.com/webmozart/path-util.git",
  2679. -            "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  2680. +            "url": "https://git.drupal.org/project/coffee",
  2681. +            "reference": "8.x-1.0-beta2"
  2682.          },
  2683.          "dist": {
  2684.              "type": "zip",
  2685. -            "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  2686. -            "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  2687. -            "shasum": ""
  2688. +            "url": "https://ftp.drupal.org/files/projects/coffee-8.x-1.0-beta2.zip",
  2689. +            "reference": "8.x-1.0-beta2",
  2690. +            "shasum": "92631b9ea65298a057cc4143e0939bb156ef5e8d"
  2691.          },
  2692.          "require": {
  2693. -            "php": ">=5.3.3",
  2694. -            "webmozart/assert": "~1.0"
  2695. -        },
  2696. -        "require-dev": {
  2697. -            "phpunit/phpunit": "^4.6",
  2698. -            "sebastian/version": "^1.0.1"
  2699. +            "drupal/core": "~8.0"
  2700.          },
  2701. -        "time": "2015-12-17T08:42:14+00:00",
  2702. -        "type": "library",
  2703. +        "type": "drupal-module",
  2704.          "extra": {
  2705.              "branch-alias": {
  2706. -                "dev-master": "2.3-dev"
  2707. +                "dev-1.x": "1.x-dev",
  2708. +                "dev-8.x-1.x": "8.1.x-dev"
  2709. +            },
  2710. +            "drupal": {
  2711. +                "version": "8.x-1.0-beta2",
  2712. +                "datestamp": "1477414741",
  2713. +                "security-coverage": {
  2714. +                    "status": "not-covered",
  2715. +                    "message": "Beta releases are not covered by Drupal security advisories."
  2716. +                }
  2717.              }
  2718.          },
  2719.          "installation-source": "dist",
  2720. -        "autoload": {
  2721. -            "psr-4": {
  2722. -                "Webmozart\\PathUtil\\": "src/"
  2723. -            }
  2724. -        },
  2725. -        "notification-url": "https://packagist.org/downloads/",
  2726. +        "notification-url": "https://packages.drupal.org/8/downloads",
  2727.          "license": [
  2728. -            "MIT"
  2729. +            "GPL-2.0+"
  2730.          ],
  2731.          "authors": [
  2732.              {
  2733. -                "name": "Bernhard Schussek",
  2734. -                "email": "bschussek@gmail.com"
  2735. +                "name": "Michael Mol",
  2736. +                "homepage": "https://www.drupal.org/u/michaelmol",
  2737. +                "role": "Maintainer"
  2738. +            },
  2739. +            {
  2740. +                "name": "Marco",
  2741. +                "homepage": "https://www.drupal.org/u/willzyx",
  2742. +                "role": "Maintainer"
  2743. +            },
  2744. +            {
  2745. +                "name": "Oliver Köhler",
  2746. +                "homepage": "https://www.drupal.org/u/nebel54",
  2747. +                "role": "Maintainer"
  2748. +            },
  2749. +            {
  2750. +                "name": "Alli Price",
  2751. +                "homepage": "https://www.drupal.org/u/heylookalive",
  2752. +                "role": "Maintainer"
  2753. +            },
  2754. +            {
  2755. +                "name": "See other contributors",
  2756. +                "homepage": "https://www.drupal.org/node/1356930/committers",
  2757. +                "role": "contributor"
  2758.              }
  2759.          ],
  2760. -        "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths."
  2761. +        "description": "Provides an Alfred like search box to navigate within your site.",
  2762. +        "homepage": "https://drupal.org/project/coffee",
  2763. +        "support": {
  2764. +            "source": "https://cgit.drupalcode.org/coffee",
  2765. +            "issues": "https://drupal.org/project/issues/coffee",
  2766. +            "irc": "irc://irc.freenode.org/drupal-contribute"
  2767. +        }
  2768.      },
  2769.      {
  2770. -        "name": "webflo/drupal-finder",
  2771. -        "version": "1.1.0",
  2772. -        "version_normalized": "1.1.0.0",
  2773. +        "name": "drupal/config_filter",
  2774. +        "version": "1.0.0",
  2775. +        "version_normalized": "1.0.0.0",
  2776.          "source": {
  2777.              "type": "git",
  2778. -            "url": "https://github.com/webflo/drupal-finder.git",
  2779. -            "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  2780. +            "url": "https://git.drupal.org/project/config_filter",
  2781. +            "reference": "8.x-1.0"
  2782.          },
  2783.          "dist": {
  2784.              "type": "zip",
  2785. -            "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  2786. -            "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  2787. -            "shasum": ""
  2788. +            "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.0.zip",
  2789. +            "reference": "8.x-1.0",
  2790. +            "shasum": "26b992c6dcb338a507d382235c696a1c9a8723e3"
  2791.          },
  2792. -        "require-dev": {
  2793. -            "mikey179/vfsstream": "^1.6",
  2794. -            "phpunit/phpunit": "^4.8"
  2795. +        "require": {
  2796. +            "drupal/core": "~8.0"
  2797.          },
  2798. -        "time": "2017-10-24T08:12:11+00:00",
  2799. -        "type": "library",
  2800. -        "installation-source": "dist",
  2801. -        "autoload": {
  2802. -            "classmap": [
  2803. -                "src/DrupalFinder.php"
  2804. -            ]
  2805. +        "suggest": {
  2806. +            "drupal/config_split": "Split site configuration for different environments."
  2807.          },
  2808. -        "notification-url": "https://packagist.org/downloads/",
  2809. +        "type": "drupal-module",
  2810. +        "extra": {
  2811. +            "branch-alias": {
  2812. +                "dev-1.x": "1.x-dev"
  2813. +            },
  2814. +            "drupal": {
  2815. +                "version": "8.x-1.0",
  2816. +                "datestamp": "1503305044",
  2817. +                "security-coverage": {
  2818. +                    "status": "covered",
  2819. +                    "message": "Covered by Drupal's security advisory policy"
  2820. +                }
  2821. +            }
  2822. +        },
  2823. +        "installation-source": "dist",
  2824. +        "notification-url": "https://packages.drupal.org/8/downloads",
  2825.          "license": [
  2826.              "GPL-2.0+"
  2827.          ],
  2828.          "authors": [
  2829.              {
  2830. -                "name": "Florian Weber",
  2831. -                "email": "florian@webflo.org"
  2832. +                "name": "Fabian Bircher",
  2833. +                "homepage": "https://www.drupal.org/u/bircher",
  2834. +                "email": "opensource@fabianbircher.com",
  2835. +                "role": "Maintainer"
  2836. +            },
  2837. +            {
  2838. +                "name": "Nuvole Web",
  2839. +                "homepage": "http://nuvole.org",
  2840. +                "email": "info@nuvole.org",
  2841. +                "role": "Maintainer"
  2842. +            },
  2843. +            {
  2844. +                "name": "pescetti",
  2845. +                "homepage": "https://www.drupal.org/user/436244"
  2846.              }
  2847.          ],
  2848. -        "description": "Helper class to locate a Drupal installation from a given path."
  2849. +        "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2850. +        "homepage": "https://www.drupal.org/project/config_filter",
  2851. +        "keywords": [
  2852. +            "Drupal",
  2853. +            "configuration",
  2854. +            "configuration management"
  2855. +        ],
  2856. +        "support": {
  2857. +            "source": "http://cgit.drupalcode.org/config_filter",
  2858. +            "issues": "https://www.drupal.org/project/issues/config_filter",
  2859. +            "irc": "irc://irc.freenode.org/drupal-contribute"
  2860. +        }
  2861.      },
  2862.      {
  2863. -        "name": "twig/twig",
  2864. -        "version": "v1.35.0",
  2865. -        "version_normalized": "1.35.0.0",
  2866. +        "name": "drupal/config_split",
  2867. +        "version": "1.2.0",
  2868. +        "version_normalized": "1.2.0.0",
  2869.          "source": {
  2870.              "type": "git",
  2871. -            "url": "https://github.com/twigphp/Twig.git",
  2872. -            "reference": "daa657073e55b0a78cce8fdd22682fddecc6385f"
  2873. +            "url": "https://git.drupal.org/project/config_split",
  2874. +            "reference": "8.x-1.2"
  2875.          },
  2876.          "dist": {
  2877.              "type": "zip",
  2878. -            "url": "https://api.github.com/repos/twigphp/Twig/zipball/daa657073e55b0a78cce8fdd22682fddecc6385f",
  2879. -            "reference": "daa657073e55b0a78cce8fdd22682fddecc6385f",
  2880. -            "shasum": ""
  2881. +            "url": "https://ftp.drupal.org/files/projects/config_split-8.x-1.2.zip",
  2882. +            "reference": "8.x-1.2",
  2883. +            "shasum": "f3683737bae3927073b511c1313a047668d0eab1"
  2884.          },
  2885.          "require": {
  2886. -            "php": ">=5.3.3"
  2887. -        },
  2888. -        "require-dev": {
  2889. -            "psr/container": "^1.0",
  2890. -            "symfony/debug": "~2.7",
  2891. -            "symfony/phpunit-bridge": "~3.3@dev"
  2892. +            "drupal/config_filter": "*",
  2893. +            "drupal/core": "*"
  2894.          },
  2895. -        "time": "2017-09-27T18:06:46+00:00",
  2896. -        "type": "library",
  2897. +        "type": "drupal-module",
  2898.          "extra": {
  2899.              "branch-alias": {
  2900. -                "dev-master": "1.35-dev"
  2901. -            }
  2902. -        },
  2903. -        "installation-source": "dist",
  2904. -        "autoload": {
  2905. -            "psr-0": {
  2906. -                "Twig_": "lib/"
  2907. +                "dev-1.x": "1.x-dev"
  2908.              },
  2909. -            "psr-4": {
  2910. -                "Twig\\": "src/"
  2911. +            "drupal": {
  2912. +                "version": "8.x-1.2",
  2913. +                "datestamp": "1506875344",
  2914. +                "security-coverage": {
  2915. +                    "status": "covered",
  2916. +                    "message": "Covered by Drupal's security advisory policy"
  2917. +                }
  2918.              }
  2919.          },
  2920. -        "notification-url": "https://packagist.org/downloads/",
  2921. +        "installation-source": "dist",
  2922. +        "notification-url": "https://packages.drupal.org/8/downloads",
  2923.          "license": [
  2924. -            "BSD-3-Clause"
  2925. +            "GPL-2.0+"
  2926.          ],
  2927.          "authors": [
  2928.              {
  2929. -                "name": "Fabien Potencier",
  2930. -                "email": "fabien@symfony.com",
  2931. -                "homepage": "http://fabien.potencier.org",
  2932. -                "role": "Lead Developer"
  2933. +                "name": "Fabian Bircher",
  2934. +                "homepage": "https://www.drupal.org/u/bircher",
  2935. +                "email": "opensource@fabianbircher.com",
  2936. +                "role": "Maintainer"
  2937.              },
  2938.              {
  2939. -                "name": "Armin Ronacher",
  2940. -                "email": "armin.ronacher@active-4.com",
  2941. -                "role": "Project Founder"
  2942. +                "name": "Nuvole Web",
  2943. +                "homepage": "http://nuvole.org",
  2944. +                "email": "info@nuvole.org",
  2945. +                "role": "Maintainer"
  2946.              },
  2947.              {
  2948. -                "name": "Twig Team",
  2949. -                "homepage": "http://twig.sensiolabs.org/contributors",
  2950. -                "role": "Contributors"
  2951. +                "name": "pescetti",
  2952. +                "homepage": "https://www.drupal.org/user/436244"
  2953.              }
  2954.          ],
  2955. -        "description": "Twig, the flexible, fast, and secure template language for PHP",
  2956. -        "homepage": "http://twig.sensiolabs.org",
  2957. +        "description": "Configuration filter for importing and exporting extra config",
  2958. +        "homepage": "https://www.drupal.org/project/config_split",
  2959.          "keywords": [
  2960. -            "templating"
  2961. -        ]
  2962. +            "Drupal",
  2963. +            "configuration",
  2964. +            "configuration management"
  2965. +        ],
  2966. +        "support": {
  2967. +            "source": "http://cgit.drupalcode.org/config_split",
  2968. +            "issues": "https://www.drupal.org/project/issues/config_split",
  2969. +            "irc": "irc://irc.freenode.org/drupal-contribute"
  2970. +        }
  2971.      },
  2972.      {
  2973. -        "name": "symfony/filesystem",
  2974. -        "version": "v3.3.10",
  2975. -        "version_normalized": "3.3.10.0",
  2976. +        "name": "drupal/console",
  2977. +        "version": "1.0.2",
  2978. +        "version_normalized": "1.0.2.0",
  2979.          "source": {
  2980.              "type": "git",
  2981. -            "url": "https://github.com/symfony/filesystem.git",
  2982. -            "reference": "90bc45abf02ae6b7deb43895c1052cb0038506f1"
  2983. +            "url": "https://github.com/hechoendrupal/drupal-console.git",
  2984. +            "reference": "8561b13b3026053a575bc54a4aa5bd351ed89f6a"
  2985.          },
  2986.          "dist": {
  2987.              "type": "zip",
  2988. -            "url": "https://api.github.com/repos/symfony/filesystem/zipball/90bc45abf02ae6b7deb43895c1052cb0038506f1",
  2989. -            "reference": "90bc45abf02ae6b7deb43895c1052cb0038506f1",
  2990. +            "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/8561b13b3026053a575bc54a4aa5bd351ed89f6a",
  2991. +            "reference": "8561b13b3026053a575bc54a4aa5bd351ed89f6a",
  2992.              "shasum": ""
  2993.          },
  2994.          "require": {
  2995. -            "php": "^5.5.9|>=7.0.8"
  2996. +            "alchemy/zippy": "0.4.3",
  2997. +            "composer/installers": "~1.0",
  2998. +            "doctrine/annotations": "^1.2",
  2999. +            "doctrine/collections": "^1.3",
  3000. +            "drupal/console-core": "1.0.2",
  3001. +            "drupal/console-dotenv": "~0",
  3002. +            "drupal/console-extend-plugin": "~0",
  3003. +            "gabordemooij/redbean": "~4.3",
  3004. +            "guzzlehttp/guzzle": "~6.1",
  3005. +            "php": "^5.5.9 || ^7.0",
  3006. +            "psy/psysh": "0.6.* || ~0.8",
  3007. +            "symfony/css-selector": "~2.8|~3.0",
  3008. +            "symfony/dom-crawler": "~2.8|~3.0",
  3009. +            "symfony/expression-language": "~2.8|~3.0",
  3010. +            "symfony/http-foundation": "~2.8|~3.0"
  3011.          },
  3012. -        "time": "2017-10-03T13:33:10+00:00",
  3013. +        "time": "2017-09-05T07:41:50+00:00",
  3014. +        "bin": [
  3015. +            "bin/drupal"
  3016. +        ],
  3017.          "type": "library",
  3018. -        "extra": {
  3019. -            "branch-alias": {
  3020. -                "dev-master": "3.3-dev"
  3021. -            }
  3022. -        },
  3023.          "installation-source": "dist",
  3024.          "autoload": {
  3025.              "psr-4": {
  3026. -                "Symfony\\Component\\Filesystem\\": ""
  3027. -            },
  3028. -            "exclude-from-classmap": [
  3029. -                "/Tests/"
  3030. -            ]
  3031. +                "Drupal\\Console\\": "src"
  3032. +            }
  3033.          },
  3034.          "notification-url": "https://packagist.org/downloads/",
  3035.          "license": [
  3036. -            "MIT"
  3037. +            "GPL-2.0+"
  3038.          ],
  3039.          "authors": [
  3040.              {
  3041. -                "name": "Fabien Potencier",
  3042. -                "email": "fabien@symfony.com"
  3043. +                "name": "David Flores",
  3044. +                "email": "dmousex@gmail.com",
  3045. +                "homepage": "http://dmouse.net"
  3046.              },
  3047.              {
  3048. -                "name": "Symfony Community",
  3049. -                "homepage": "https://symfony.com/contributors"
  3050. +                "name": "Jesus Manuel Olivas",
  3051. +                "email": "jesus.olivas@gmail.com",
  3052. +                "homepage": "http://jmolivas.com"
  3053. +            },
  3054. +            {
  3055. +                "name": "Drupal Console Contributors",
  3056. +                "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3057. +            },
  3058. +            {
  3059. +                "name": "Eduardo Garcia",
  3060. +                "email": "enzo@enzolutions.com",
  3061. +                "homepage": "http://enzolutions.com/"
  3062. +            },
  3063. +            {
  3064. +                "name": "Omar Aguirre",
  3065. +                "email": "omersguchigu@gmail.com"
  3066.              }
  3067.          ],
  3068. -        "description": "Symfony Filesystem Component",
  3069. -        "homepage": "https://symfony.com"
  3070. +        "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3071. +        "homepage": "http://drupalconsole.com/",
  3072. +        "keywords": [
  3073. +            "console",
  3074. +            "development",
  3075. +            "drupal",
  3076. +            "symfony"
  3077. +        ]
  3078.      },
  3079.      {
  3080. -        "name": "symfony/config",
  3081. -        "version": "v3.2.13",
  3082. -        "version_normalized": "3.2.13.0",
  3083. +        "name": "drupal/console-core",
  3084. +        "version": "1.0.2",
  3085. +        "version_normalized": "1.0.2.0",
  3086.          "source": {
  3087.              "type": "git",
  3088. -            "url": "https://github.com/symfony/config.git",
  3089. -            "reference": "e5533fcc0b3dd377626153b2852707878f363728"
  3090. +            "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3091. +            "reference": "cbc763fb7d85e2d05f062021e222d8816b91bfda"
  3092.          },
  3093.          "dist": {
  3094.              "type": "zip",
  3095. -            "url": "https://api.github.com/repos/symfony/config/zipball/e5533fcc0b3dd377626153b2852707878f363728",
  3096. -            "reference": "e5533fcc0b3dd377626153b2852707878f363728",
  3097. +            "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/cbc763fb7d85e2d05f062021e222d8816b91bfda",
  3098. +            "reference": "cbc763fb7d85e2d05f062021e222d8816b91bfda",
  3099.              "shasum": ""
  3100.          },
  3101.          "require": {
  3102. -            "php": ">=5.5.9",
  3103. -            "symfony/filesystem": "~2.8|~3.0"
  3104. -        },
  3105. -        "require-dev": {
  3106. -            "symfony/yaml": "~3.0"
  3107. -        },
  3108. -        "suggest": {
  3109. -            "symfony/yaml": "To use the yaml reference dumper"
  3110. -        },
  3111. -        "time": "2017-04-12T14:13:17+00:00",
  3112. -        "type": "library",
  3113. -        "extra": {
  3114. -            "branch-alias": {
  3115. -                "dev-master": "3.2-dev"
  3116. -            }
  3117. -        },
  3118. +            "dflydev/dot-access-configuration": "^1.0",
  3119. +            "drupal/console-en": "1.0.2",
  3120. +            "php": "^5.5.9 || ^7.0",
  3121. +            "stecman/symfony-console-completion": "~0.7",
  3122. +            "symfony/config": "~2.8|~3.0",
  3123. +            "symfony/console": "~2.8|~3.0",
  3124. +            "symfony/debug": "~2.8|~3.0",
  3125. +            "symfony/dependency-injection": "~2.8|~3.0",
  3126. +            "symfony/event-dispatcher": "~2.8|~3.0",
  3127. +            "symfony/filesystem": "~2.8|~3.0",
  3128. +            "symfony/finder": "~2.8|~3.0",
  3129. +            "symfony/process": "~2.8|~3.0",
  3130. +            "symfony/translation": "~2.8|~3.0",
  3131. +            "symfony/yaml": "~2.8|~3.0",
  3132. +            "twig/twig": "^1.23.1",
  3133. +            "webflo/drupal-finder": "^1.0",
  3134. +            "webmozart/path-util": "^2.3"
  3135. +        },
  3136. +        "time": "2017-09-05T07:08:07+00:00",
  3137. +        "type": "library",
  3138.          "installation-source": "dist",
  3139.          "autoload": {
  3140. +            "files": [
  3141. +                "src/functions.php"
  3142. +            ],
  3143.              "psr-4": {
  3144. -                "Symfony\\Component\\Config\\": ""
  3145. -            },
  3146. -            "exclude-from-classmap": [
  3147. -                "/Tests/"
  3148. -            ]
  3149. +                "Drupal\\Console\\Core\\": "src"
  3150. +            }
  3151.          },
  3152.          "notification-url": "https://packagist.org/downloads/",
  3153.          "license": [
  3154. -            "MIT"
  3155. +            "GPL-2.0+"
  3156.          ],
  3157.          "authors": [
  3158.              {
  3159. -                "name": "Fabien Potencier",
  3160. -                "email": "fabien@symfony.com"
  3161. +                "name": "David Flores",
  3162. +                "email": "dmousex@gmail.com",
  3163. +                "homepage": "http://dmouse.net"
  3164.              },
  3165.              {
  3166. -                "name": "Symfony Community",
  3167. -                "homepage": "https://symfony.com/contributors"
  3168. +                "name": "Jesus Manuel Olivas",
  3169. +                "email": "jesus.olivas@gmail.com",
  3170. +                "homepage": "http://jmolivas.com"
  3171. +            },
  3172. +            {
  3173. +                "name": "Drupal Console Contributors",
  3174. +                "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3175. +            },
  3176. +            {
  3177. +                "name": "Eduardo Garcia",
  3178. +                "email": "enzo@enzolutions.com",
  3179. +                "homepage": "http://enzolutions.com/"
  3180. +            },
  3181. +            {
  3182. +                "name": "Omar Aguirre",
  3183. +                "email": "omersguchigu@gmail.com"
  3184.              }
  3185.          ],
  3186. -        "description": "Symfony Config Component",
  3187. -        "homepage": "https://symfony.com"
  3188. +        "description": "Drupal Console Core",
  3189. +        "homepage": "http://drupalconsole.com/",
  3190. +        "keywords": [
  3191. +            "console",
  3192. +            "development",
  3193. +            "drupal",
  3194. +            "symfony"
  3195. +        ]
  3196.      },
  3197.      {
  3198. -        "name": "stecman/symfony-console-completion",
  3199. -        "version": "0.7.0",
  3200. -        "version_normalized": "0.7.0.0",
  3201. +        "name": "drupal/console-dotenv",
  3202. +        "version": "0.3.0",
  3203. +        "version_normalized": "0.3.0.0",
  3204.          "source": {
  3205.              "type": "git",
  3206. -            "url": "https://github.com/stecman/symfony-console-completion.git",
  3207. -            "reference": "5461d43e53092b3d3b9dbd9d999f2054730f4bbb"
  3208. +            "url": "https://github.com/weknowinc/drupal-console-dotenv.git",
  3209. +            "reference": "94e88646801c2f80ec2e5e66d3d8f21b0b467405"
  3210.          },
  3211.          "dist": {
  3212.              "type": "zip",
  3213. -            "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/5461d43e53092b3d3b9dbd9d999f2054730f4bbb",
  3214. -            "reference": "5461d43e53092b3d3b9dbd9d999f2054730f4bbb",
  3215. +            "url": "https://api.github.com/repos/weknowinc/drupal-console-dotenv/zipball/94e88646801c2f80ec2e5e66d3d8f21b0b467405",
  3216. +            "reference": "94e88646801c2f80ec2e5e66d3d8f21b0b467405",
  3217.              "shasum": ""
  3218.          },
  3219.          "require": {
  3220. -            "php": ">=5.3.2",
  3221. -            "symfony/console": "~2.3 || ~3.0"
  3222. +            "vlucas/phpdotenv": "^2.3"
  3223.          },
  3224.          "require-dev": {
  3225. -            "phpunit/phpunit": "~4.4"
  3226. -        },
  3227. -        "time": "2016-02-24T05:08:54+00:00",
  3228. -        "type": "library",
  3229. -        "extra": {
  3230. -            "branch-alias": {
  3231. -                "dev-master": "0.6.x-dev"
  3232. -            }
  3233. +            "drupal/console-core": "~1.0"
  3234.          },
  3235. +        "time": "2017-07-04T01:14:02+00:00",
  3236. +        "type": "drupal-console-library",
  3237.          "installation-source": "dist",
  3238.          "autoload": {
  3239.              "psr-4": {
  3240. -                "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  3241. +                "Drupal\\Console\\Dotenv\\": "src"
  3242.              }
  3243.          },
  3244.          "notification-url": "https://packagist.org/downloads/",
  3245.          "license": [
  3246. -            "MIT"
  3247. +            "GPL-2.0+"
  3248.          ],
  3249.          "authors": [
  3250.              {
  3251. -                "name": "Stephen Holdaway",
  3252. -                "email": "stephen@stecman.co.nz"
  3253. +                "name": "Jesus Manuel Olivas",
  3254. +                "email": "jesus.olivas@gmail.com"
  3255.              }
  3256.          ],
  3257. -        "description": "Automatic BASH completion for Symfony Console Component based applications."
  3258. +        "description": "Drupal Console Dotenv"
  3259.      },
  3260.      {
  3261.          "name": "drupal/console-en",
  3262. @@ -1972,982 +2145,1258 @@
  3263.          ]
  3264.      },
  3265.      {
  3266. -        "name": "dflydev/placeholder-resolver",
  3267. -        "version": "v1.0.2",
  3268. -        "version_normalized": "1.0.2.0",
  3269. +        "name": "drupal/console-extend-plugin",
  3270. +        "version": "0.9.2",
  3271. +        "version_normalized": "0.9.2.0",
  3272.          "source": {
  3273.              "type": "git",
  3274. -            "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  3275. -            "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  3276. +            "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3277. +            "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  3278.          },
  3279.          "dist": {
  3280.              "type": "zip",
  3281. -            "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  3282. -            "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  3283. +            "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  3284. +            "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  3285.              "shasum": ""
  3286.          },
  3287.          "require": {
  3288. -            "php": ">=5.3.2"
  3289. +            "composer-plugin-api": "^1.0",
  3290. +            "symfony/finder": "~2.7|~3.0",
  3291. +            "symfony/yaml": "~2.7|~3.0"
  3292.          },
  3293. -        "time": "2012-10-28T21:08:28+00:00",
  3294. -        "type": "library",
  3295. +        "time": "2017-07-28T17:11:54+00:00",
  3296. +        "type": "composer-plugin",
  3297.          "extra": {
  3298. -            "branch-alias": {
  3299. -                "dev-master": "1.0-dev"
  3300. -            }
  3301. +            "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3302.          },
  3303.          "installation-source": "dist",
  3304.          "autoload": {
  3305. -            "psr-0": {
  3306. -                "Dflydev\\PlaceholderResolver": "src"
  3307. +            "psr-4": {
  3308. +                "Drupal\\Console\\Composer\\Plugin\\": "src"
  3309.              }
  3310.          },
  3311.          "notification-url": "https://packagist.org/downloads/",
  3312.          "license": [
  3313. -            "MIT"
  3314. +            "GPL-2.0+"
  3315.          ],
  3316.          "authors": [
  3317.              {
  3318. -                "name": "Dragonfly Development Inc.",
  3319. -                "email": "info@dflydev.com",
  3320. -                "homepage": "http://dflydev.com"
  3321. -            },
  3322. -            {
  3323. -                "name": "Beau Simensen",
  3324. -                "email": "beau@dflydev.com",
  3325. -                "homepage": "http://beausimensen.com"
  3326. +                "name": "Jesus Manuel Olivas",
  3327. +                "email": "jesus.olivas@gmail.com"
  3328.              }
  3329.          ],
  3330. -        "description": "Given a data source representing key => value pairs, resolve placeholders like ${foo.bar} to the value associated with the 'foo.bar' key in the data source.",
  3331. -        "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  3332. -        "keywords": [
  3333. -            "placeholder",
  3334. -            "resolver"
  3335. -        ]
  3336. +        "description": "Drupal Console Extend Plugin"
  3337.      },
  3338.      {
  3339. -        "name": "dflydev/dot-access-data",
  3340. -        "version": "v1.1.0",
  3341. -        "version_normalized": "1.1.0.0",
  3342. +        "name": "drupal/core",
  3343. +        "version": "8.4.2",
  3344. +        "version_normalized": "8.4.2.0",
  3345.          "source": {
  3346.              "type": "git",
  3347. -            "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  3348. -            "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  3349. +            "url": "https://github.com/drupal/core.git",
  3350. +            "reference": "68d25c07b7306340900abc4020c38683a817f0eb"
  3351.          },
  3352.          "dist": {
  3353.              "type": "zip",
  3354. -            "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  3355. -            "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  3356. +            "url": "https://api.github.com/repos/drupal/core/zipball/68d25c07b7306340900abc4020c38683a817f0eb",
  3357. +            "reference": "68d25c07b7306340900abc4020c38683a817f0eb",
  3358.              "shasum": ""
  3359.          },
  3360.          "require": {
  3361. -            "php": ">=5.3.2"
  3362. -        },
  3363. -        "time": "2017-01-20T21:14:22+00:00",
  3364. -        "type": "library",
  3365. -        "extra": {
  3366. -            "branch-alias": {
  3367. -                "dev-master": "1.0-dev"
  3368. -            }
  3369. -        },
  3370. -        "installation-source": "dist",
  3371. -        "autoload": {
  3372. -            "psr-0": {
  3373. -                "Dflydev\\DotAccessData": "src"
  3374. -            }
  3375. -        },
  3376. -        "notification-url": "https://packagist.org/downloads/",
  3377. -        "license": [
  3378. -            "MIT"
  3379. -        ],
  3380. -        "authors": [
  3381. -            {
  3382. -                "name": "Dragonfly Development Inc.",
  3383. -                "email": "info@dflydev.com",
  3384. -                "homepage": "http://dflydev.com"
  3385. -            },
  3386. -            {
  3387. -                "name": "Beau Simensen",
  3388. -                "email": "beau@dflydev.com",
  3389. -                "homepage": "http://beausimensen.com"
  3390. -            },
  3391. -            {
  3392. -                "name": "Carlos Frutos",
  3393. -                "email": "carlos@kiwing.it",
  3394. -                "homepage": "https://github.com/cfrutos"
  3395. -            }
  3396. -        ],
  3397. -        "description": "Given a deep data structure, access data by dot notation.",
  3398. -        "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  3399. -        "keywords": [
  3400. -            "access",
  3401. -            "data",
  3402. -            "dot",
  3403. -            "notation"
  3404. -        ]
  3405. -    },
  3406. -    {
  3407. -        "name": "dflydev/dot-access-configuration",
  3408. -        "version": "v1.0.2",
  3409. -        "version_normalized": "1.0.2.0",
  3410. -        "source": {
  3411. -            "type": "git",
  3412. -            "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  3413. -            "reference": "ae6e7138b1d9063d343322cca63994ee1ac5161d"
  3414. +            "asm89/stack-cors": "^1.1",
  3415. +            "composer/semver": "^1.0",
  3416. +            "doctrine/annotations": "^1.2",
  3417. +            "doctrine/common": "^2.5",
  3418. +            "easyrdf/easyrdf": "^0.9",
  3419. +            "egulias/email-validator": "^1.2",
  3420. +            "guzzlehttp/guzzle": "^6.2.1",
  3421. +            "masterminds/html5": "^2.1",
  3422. +            "paragonie/random_compat": "^1.0|^2.0",
  3423. +            "php": ">=5.5.9",
  3424. +            "stack/builder": "^1.0",
  3425. +            "symfony-cmf/routing": "^1.4",
  3426. +            "symfony/class-loader": "~3.2.8",
  3427. +            "symfony/console": "~3.2.8",
  3428. +            "symfony/dependency-injection": "~3.2.8",
  3429. +            "symfony/event-dispatcher": "~3.2.8",
  3430. +            "symfony/http-foundation": "~3.2.8",
  3431. +            "symfony/http-kernel": "~3.2.8",
  3432. +            "symfony/polyfill-iconv": "^1.0",
  3433. +            "symfony/process": "~3.2.8",
  3434. +            "symfony/psr-http-message-bridge": "^1.0",
  3435. +            "symfony/routing": "~3.2.8",
  3436. +            "symfony/serializer": "~3.2.8",
  3437. +            "symfony/translation": "~3.2.8",
  3438. +            "symfony/validator": "~3.2.8",
  3439. +            "symfony/yaml": "~3.2.8",
  3440. +            "twig/twig": "^1.23.1",
  3441. +            "zendframework/zend-diactoros": "^1.1",
  3442. +            "zendframework/zend-feed": "^2.4"
  3443.          },
  3444. -        "dist": {
  3445. -            "type": "zip",
  3446. -            "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/ae6e7138b1d9063d343322cca63994ee1ac5161d",
  3447. -            "reference": "ae6e7138b1d9063d343322cca63994ee1ac5161d",
  3448. -            "shasum": ""
  3449. +        "conflict": {
  3450. +            "drush/drush": "<8.1.10"
  3451.          },
  3452. -        "require": {
  3453. -            "dflydev/dot-access-data": "1.*",
  3454. -            "dflydev/placeholder-resolver": "1.*",
  3455. -            "php": ">=5.3.2"
  3456. +        "replace": {
  3457. +            "drupal/action": "self.version",
  3458. +            "drupal/aggregator": "self.version",
  3459. +            "drupal/automated_cron": "self.version",
  3460. +            "drupal/ban": "self.version",
  3461. +            "drupal/bartik": "self.version",
  3462. +            "drupal/basic_auth": "self.version",
  3463. +            "drupal/big_pipe": "self.version",
  3464. +            "drupal/block": "self.version",
  3465. +            "drupal/block_content": "self.version",
  3466. +            "drupal/block_place": "self.version",
  3467. +            "drupal/book": "self.version",
  3468. +            "drupal/breakpoint": "self.version",
  3469. +            "drupal/ckeditor": "self.version",
  3470. +            "drupal/classy": "self.version",
  3471. +            "drupal/color": "self.version",
  3472. +            "drupal/comment": "self.version",
  3473. +            "drupal/config": "self.version",
  3474. +            "drupal/config_translation": "self.version",
  3475. +            "drupal/contact": "self.version",
  3476. +            "drupal/content_moderation": "self.version",
  3477. +            "drupal/content_translation": "self.version",
  3478. +            "drupal/contextual": "self.version",
  3479. +            "drupal/core-annotation": "self.version",
  3480. +            "drupal/core-assertion": "self.version",
  3481. +            "drupal/core-bridge": "self.version",
  3482. +            "drupal/core-class-finder": "self.version",
  3483. +            "drupal/core-datetime": "self.version",
  3484. +            "drupal/core-dependency-injection": "self.version",
  3485. +            "drupal/core-diff": "self.version",
  3486. +            "drupal/core-discovery": "self.version",
  3487. +            "drupal/core-event-dispatcher": "self.version",
  3488. +            "drupal/core-file-cache": "self.version",
  3489. +            "drupal/core-filesystem": "self.version",
  3490. +            "drupal/core-gettext": "self.version",
  3491. +            "drupal/core-graph": "self.version",
  3492. +            "drupal/core-http-foundation": "self.version",
  3493. +            "drupal/core-php-storage": "self.version",
  3494. +            "drupal/core-plugin": "self.version",
  3495. +            "drupal/core-proxy-builder": "self.version",
  3496. +            "drupal/core-render": "self.version",
  3497. +            "drupal/core-serialization": "self.version",
  3498. +            "drupal/core-transliteration": "self.version",
  3499. +            "drupal/core-utility": "self.version",
  3500. +            "drupal/core-uuid": "self.version",
  3501. +            "drupal/datetime": "self.version",
  3502. +            "drupal/datetime_range": "self.version",
  3503. +            "drupal/dblog": "self.version",
  3504. +            "drupal/dynamic_page_cache": "self.version",
  3505. +            "drupal/editor": "self.version",
  3506. +            "drupal/entity_reference": "self.version",
  3507. +            "drupal/field": "self.version",
  3508. +            "drupal/field_layout": "self.version",
  3509. +            "drupal/field_ui": "self.version",
  3510. +            "drupal/file": "self.version",
  3511. +            "drupal/filter": "self.version",
  3512. +            "drupal/forum": "self.version",
  3513. +            "drupal/hal": "self.version",
  3514. +            "drupal/help": "self.version",
  3515. +            "drupal/history": "self.version",
  3516. +            "drupal/image": "self.version",
  3517. +            "drupal/inline_form_errors": "self.version",
  3518. +            "drupal/language": "self.version",
  3519. +            "drupal/layout_discovery": "self.version",
  3520. +            "drupal/link": "self.version",
  3521. +            "drupal/locale": "self.version",
  3522. +            "drupal/media": "self.version",
  3523. +            "drupal/menu_link_content": "self.version",
  3524. +            "drupal/menu_ui": "self.version",
  3525. +            "drupal/migrate": "self.version",
  3526. +            "drupal/migrate_drupal": "self.version",
  3527. +            "drupal/migrate_drupal_ui": "self.version",
  3528. +            "drupal/minimal": "self.version",
  3529. +            "drupal/node": "self.version",
  3530. +            "drupal/options": "self.version",
  3531. +            "drupal/page_cache": "self.version",
  3532. +            "drupal/path": "self.version",
  3533. +            "drupal/quickedit": "self.version",
  3534. +            "drupal/rdf": "self.version",
  3535. +            "drupal/responsive_image": "self.version",
  3536. +            "drupal/rest": "self.version",
  3537. +            "drupal/search": "self.version",
  3538. +            "drupal/serialization": "self.version",
  3539. +            "drupal/settings_tray": "self.version",
  3540. +            "drupal/seven": "self.version",
  3541. +            "drupal/shortcut": "self.version",
  3542. +            "drupal/simpletest": "self.version",
  3543. +            "drupal/standard": "self.version",
  3544. +            "drupal/stark": "self.version",
  3545. +            "drupal/statistics": "self.version",
  3546. +            "drupal/syslog": "self.version",
  3547. +            "drupal/system": "self.version",
  3548. +            "drupal/taxonomy": "self.version",
  3549. +            "drupal/telephone": "self.version",
  3550. +            "drupal/text": "self.version",
  3551. +            "drupal/toolbar": "self.version",
  3552. +            "drupal/tour": "self.version",
  3553. +            "drupal/tracker": "self.version",
  3554. +            "drupal/update": "self.version",
  3555. +            "drupal/user": "self.version",
  3556. +            "drupal/views": "self.version",
  3557. +            "drupal/views_ui": "self.version",
  3558. +            "drupal/workflows": "self.version"
  3559.          },
  3560.          "require-dev": {
  3561. -            "symfony/yaml": "~2.1"
  3562. +            "behat/mink": "1.7.x-dev",
  3563. +            "behat/mink-goutte-driver": "^1.2",
  3564. +            "drupal/coder": "^8.2.12",
  3565. +            "jcalderonzumba/gastonjs": "^1.0.2",
  3566. +            "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  3567. +            "mikey179/vfsstream": "^1.2",
  3568. +            "phpspec/prophecy": "^1.4",
  3569. +            "phpunit/phpunit": ">=4.8.35 <5",
  3570. +            "symfony/css-selector": "~3.2.8",
  3571. +            "symfony/phpunit-bridge": "~3.2.8"
  3572.          },
  3573. -        "suggest": {
  3574. -            "symfony/yaml": "Required for using the YAML Configuration Builders"
  3575. +        "time": "2017-11-03T13:20:16+00:00",
  3576. +        "type": "drupal-core",
  3577. +        "installation-source": "dist",
  3578. +        "autoload": {
  3579. +            "psr-4": {
  3580. +                "Drupal\\Core\\": "lib/Drupal/Core",
  3581. +                "Drupal\\Component\\": "lib/Drupal/Component",
  3582. +                "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3583. +            },
  3584. +            "classmap": [
  3585. +                "lib/Drupal.php",
  3586. +                "lib/Drupal/Component/Utility/Timer.php",
  3587. +                "lib/Drupal/Component/Utility/Unicode.php",
  3588. +                "lib/Drupal/Core/Database/Database.php",
  3589. +                "lib/Drupal/Core/DrupalKernel.php",
  3590. +                "lib/Drupal/Core/DrupalKernelInterface.php",
  3591. +                "lib/Drupal/Core/Site/Settings.php"
  3592. +            ]
  3593.          },
  3594. -        "time": "2016-12-12T17:43:40+00:00",
  3595. -        "type": "library",
  3596. +        "notification-url": "https://packagist.org/downloads/",
  3597. +        "license": [
  3598. +            "GPL-2.0+"
  3599. +        ],
  3600. +        "description": "Drupal is an open source content management platform powering millions of websites and applications."
  3601. +    },
  3602. +    {
  3603. +        "name": "drupal/ctools",
  3604. +        "version": "3.0.0",
  3605. +        "version_normalized": "3.0.0.0",
  3606. +        "source": {
  3607. +            "type": "git",
  3608. +            "url": "https://git.drupal.org/project/ctools",
  3609. +            "reference": "8.x-3.0"
  3610. +        },
  3611. +        "dist": {
  3612. +            "type": "zip",
  3613. +            "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.0.zip",
  3614. +            "reference": "8.x-3.0",
  3615. +            "shasum": "302e869ecd1e59fe55663673999fee2ccac5daa8"
  3616. +        },
  3617. +        "require": {
  3618. +            "drupal/core": "~8.0"
  3619. +        },
  3620. +        "type": "drupal-module",
  3621.          "extra": {
  3622.              "branch-alias": {
  3623. -                "dev-master": "1.0-dev"
  3624. +                "dev-3.x": "3.x-dev"
  3625. +            },
  3626. +            "drupal": {
  3627. +                "version": "8.x-3.0",
  3628. +                "datestamp": "1493401742",
  3629. +                "security-coverage": {
  3630. +                    "status": "covered",
  3631. +                    "message": "Covered by Drupal's security advisory policy"
  3632. +                }
  3633.              }
  3634.          },
  3635.          "installation-source": "dist",
  3636. -        "autoload": {
  3637. -            "psr-0": {
  3638. -                "Dflydev\\DotAccessConfiguration": "src"
  3639. -            }
  3640. -        },
  3641. -        "notification-url": "https://packagist.org/downloads/",
  3642. +        "notification-url": "https://packages.drupal.org/8/downloads",
  3643.          "license": [
  3644. -            "MIT"
  3645. +            "GPL-2.0+"
  3646.          ],
  3647.          "authors": [
  3648.              {
  3649. -                "name": "Dragonfly Development Inc.",
  3650. -                "email": "info@dflydev.com",
  3651. -                "homepage": "http://dflydev.com"
  3652. +                "name": "Kris Vanderwater (EclipseGc)",
  3653. +                "homepage": "https://www.drupal.org/u/eclipsegc",
  3654. +                "role": "Maintainer"
  3655.              },
  3656.              {
  3657. -                "name": "Beau Simensen",
  3658. -                "email": "beau@dflydev.com",
  3659. -                "homepage": "http://beausimensen.com"
  3660. +                "name": "Jakob Perry (japerry)",
  3661. +                "homepage": "https://www.drupal.org/u/japerry",
  3662. +                "role": "Maintainer"
  3663. +            },
  3664. +            {
  3665. +                "name": "Tim Plunkett (tim.plunkett)",
  3666. +                "homepage": "https://www.drupal.org/u/timplunkett",
  3667. +                "role": "Maintainer"
  3668. +            },
  3669. +            {
  3670. +                "name": "James Gilliland (neclimdul)",
  3671. +                "homepage": "https://www.drupal.org/u/neclimdul",
  3672. +                "role": "Maintainer"
  3673. +            },
  3674. +            {
  3675. +                "name": "Daniel Wehner (dawehner)",
  3676. +                "homepage": "https://www.drupal.org/u/dawehner",
  3677. +                "role": "Maintainer"
  3678. +            },
  3679. +            {
  3680. +                "name": "merlinofchaos",
  3681. +                "homepage": "https://www.drupal.org/user/26979"
  3682. +            },
  3683. +            {
  3684. +                "name": "neclimdul",
  3685. +                "homepage": "https://www.drupal.org/user/48673"
  3686. +            },
  3687. +            {
  3688. +                "name": "sdboyer",
  3689. +                "homepage": "https://www.drupal.org/user/146719"
  3690. +            },
  3691. +            {
  3692. +                "name": "sun",
  3693. +                "homepage": "https://www.drupal.org/user/54136"
  3694. +            },
  3695. +            {
  3696. +                "name": "tim.plunkett",
  3697. +                "homepage": "https://www.drupal.org/user/241634"
  3698.              }
  3699.          ],
  3700. -        "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  3701. -        "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  3702. -        "keywords": [
  3703. -            "config",
  3704. -            "configuration"
  3705. -        ]
  3706. +        "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3707. +        "homepage": "https://www.drupal.org/project/ctools",
  3708. +        "support": {
  3709. +            "source": "http://cgit.drupalcode.org/ctools",
  3710. +            "issues": "https://www.drupal.org/project/issues/ctools"
  3711. +        }
  3712.      },
  3713.      {
  3714. -        "name": "drupal/console-core",
  3715. -        "version": "1.0.2",
  3716. -        "version_normalized": "1.0.2.0",
  3717. +        "name": "drupal/entity_browser",
  3718. +        "version": "2.0.0-alpha2",
  3719. +        "version_normalized": "2.0.0.0-alpha2",
  3720.          "source": {
  3721.              "type": "git",
  3722. -            "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3723. -            "reference": "cbc763fb7d85e2d05f062021e222d8816b91bfda"
  3724. +            "url": "https://git.drupal.org/project/entity_browser",
  3725. +            "reference": "8.x-2.0-alpha2"
  3726.          },
  3727.          "dist": {
  3728.              "type": "zip",
  3729. -            "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/cbc763fb7d85e2d05f062021e222d8816b91bfda",
  3730. -            "reference": "cbc763fb7d85e2d05f062021e222d8816b91bfda",
  3731. -            "shasum": ""
  3732. +            "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.0-alpha2.zip",
  3733. +            "reference": "8.x-2.0-alpha2",
  3734. +            "shasum": "f31ad069e5c5e95db9b9410a4d71038ac0c5b370"
  3735.          },
  3736.          "require": {
  3737. -            "dflydev/dot-access-configuration": "^1.0",
  3738. -            "drupal/console-en": "1.0.2",
  3739. -            "php": "^5.5.9 || ^7.0",
  3740. -            "stecman/symfony-console-completion": "~0.7",
  3741. -            "symfony/config": "~2.8|~3.0",
  3742. -            "symfony/console": "~2.8|~3.0",
  3743. -            "symfony/debug": "~2.8|~3.0",
  3744. -            "symfony/dependency-injection": "~2.8|~3.0",
  3745. -            "symfony/event-dispatcher": "~2.8|~3.0",
  3746. -            "symfony/filesystem": "~2.8|~3.0",
  3747. -            "symfony/finder": "~2.8|~3.0",
  3748. -            "symfony/process": "~2.8|~3.0",
  3749. -            "symfony/translation": "~2.8|~3.0",
  3750. -            "symfony/yaml": "~2.8|~3.0",
  3751. -            "twig/twig": "^1.23.1",
  3752. -            "webflo/drupal-finder": "^1.0",
  3753. -            "webmozart/path-util": "^2.3"
  3754. +            "drupal/core": "~8.0"
  3755.          },
  3756. -        "time": "2017-09-05T07:08:07+00:00",
  3757. -        "type": "library",
  3758. -        "installation-source": "dist",
  3759. -        "autoload": {
  3760. -            "files": [
  3761. -                "src/functions.php"
  3762. -            ],
  3763. -            "psr-4": {
  3764. -                "Drupal\\Console\\Core\\": "src"
  3765. +        "require-dev": {
  3766. +            "drupal/ctools": "*",
  3767. +            "drupal/inline_entity_form": "*",
  3768. +            "drupal/paragraphs": "*",
  3769. +            "drupal/token": "*"
  3770. +        },
  3771. +        "type": "drupal-module",
  3772. +        "extra": {
  3773. +            "branch-alias": {
  3774. +                "dev-2.x": "2.x-dev",
  3775. +                "dev-8.x-1.x": "8.1.x-dev"
  3776. +            },
  3777. +            "drupal": {
  3778. +                "version": "8.x-2.0-alpha2",
  3779. +                "datestamp": "1512118387",
  3780. +                "security-coverage": {
  3781. +                    "status": "not-covered",
  3782. +                    "message": "Alpha releases are not covered by Drupal security advisories."
  3783. +                }
  3784.              }
  3785.          },
  3786. -        "notification-url": "https://packagist.org/downloads/",
  3787. +        "installation-source": "dist",
  3788. +        "notification-url": "https://packages.drupal.org/8/downloads",
  3789.          "license": [
  3790.              "GPL-2.0+"
  3791.          ],
  3792.          "authors": [
  3793.              {
  3794. -                "name": "David Flores",
  3795. -                "email": "dmousex@gmail.com",
  3796. -                "homepage": "http://dmouse.net"
  3797. +                "name": "Janez Urevc",
  3798. +                "homepage": "https://github.com/slashrsm",
  3799. +                "role": "Maintainer"
  3800.              },
  3801.              {
  3802. -                "name": "Jesus Manuel Olivas",
  3803. -                "email": "jesus.olivas@gmail.com",
  3804. -                "homepage": "http://jmolivas.com"
  3805. +                "name": "Primoz Hmeljak",
  3806. +                "homepage": "https://github.com/primsi",
  3807. +                "role": "Maintainer"
  3808.              },
  3809.              {
  3810. -                "name": "Drupal Console Contributors",
  3811. -                "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3812. +                "name": "See other contributors",
  3813. +                "homepage": "https://www.drupal.org/node/1943336/committers",
  3814. +                "role": "contributor"
  3815.              },
  3816.              {
  3817. -                "name": "Eduardo Garcia",
  3818. -                "email": "enzo@enzolutions.com",
  3819. -                "homepage": "http://enzolutions.com/"
  3820. +                "name": "Primsi",
  3821. +                "homepage": "https://www.drupal.org/user/282629"
  3822.              },
  3823.              {
  3824. -                "name": "Omar Aguirre",
  3825. -                "email": "omersguchigu@gmail.com"
  3826. +                "name": "marcingy",
  3827. +                "homepage": "https://www.drupal.org/user/77320"
  3828. +            },
  3829. +            {
  3830. +                "name": "samuel.mortenson",
  3831. +                "homepage": "https://www.drupal.org/user/2582268"
  3832. +            },
  3833. +            {
  3834. +                "name": "slashrsm",
  3835. +                "homepage": "https://www.drupal.org/user/744628"
  3836.              }
  3837.          ],
  3838. -        "description": "Drupal Console Core",
  3839. -        "homepage": "http://drupalconsole.com/",
  3840. -        "keywords": [
  3841. -            "console",
  3842. -            "development",
  3843. -            "drupal",
  3844. -            "symfony"
  3845. -        ]
  3846. +        "description": "Entity browsing and selecting component.",
  3847. +        "homepage": "http://drupal.org/project/entity_browser",
  3848. +        "support": {
  3849. +            "source": "http://cgit.drupalcode.org/entity_browser",
  3850. +            "issues": "http://drupal.org/project/issues/entity_browser",
  3851. +            "irc": "irc://irc.freenode.org/drupal-contribute"
  3852. +        }
  3853.      },
  3854.      {
  3855. -        "name": "doctrine/collections",
  3856. -        "version": "v1.5.0",
  3857. -        "version_normalized": "1.5.0.0",
  3858. +        "name": "drupal/entity_reference_revisions",
  3859. +        "version": "1.3.0",
  3860. +        "version_normalized": "1.3.0.0",
  3861.          "source": {
  3862.              "type": "git",
  3863. -            "url": "https://github.com/doctrine/collections.git",
  3864. -            "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf"
  3865. +            "url": "https://git.drupal.org/project/entity_reference_revisions",
  3866. +            "reference": "8.x-1.3"
  3867.          },
  3868.          "dist": {
  3869.              "type": "zip",
  3870. -            "url": "https://api.github.com/repos/doctrine/collections/zipball/a01ee38fcd999f34d9bfbcee59dbda5105449cbf",
  3871. -            "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf",
  3872. -            "shasum": ""
  3873. +            "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.3.zip",
  3874. +            "reference": "8.x-1.3",
  3875. +            "shasum": "78aebb58efbbfcbb2faa40a1afc0830312b32631"
  3876.          },
  3877.          "require": {
  3878. -            "php": "^7.1"
  3879. +            "drupal/core": "~8.0"
  3880.          },
  3881.          "require-dev": {
  3882. -            "doctrine/coding-standard": "~0.1@dev",
  3883. -            "phpunit/phpunit": "^5.7"
  3884. +            "drupal/diff": "*"
  3885.          },
  3886. -        "time": "2017-07-22T10:37:32+00:00",
  3887. -        "type": "library",
  3888. +        "type": "drupal-module",
  3889.          "extra": {
  3890.              "branch-alias": {
  3891. -                "dev-master": "1.3.x-dev"
  3892. +                "dev-1.x": "1.x-dev"
  3893. +            },
  3894. +            "drupal": {
  3895. +                "version": "8.x-1.3",
  3896. +                "datestamp": "1495814284",
  3897. +                "security-coverage": {
  3898. +                    "status": "covered",
  3899. +                    "message": "Covered by Drupal's security advisory policy"
  3900. +                }
  3901.              }
  3902.          },
  3903.          "installation-source": "dist",
  3904. -        "autoload": {
  3905. -            "psr-0": {
  3906. -                "Doctrine\\Common\\Collections\\": "lib/"
  3907. -            }
  3908. -        },
  3909. -        "notification-url": "https://packagist.org/downloads/",
  3910. +        "notification-url": "https://packages.drupal.org/8/downloads",
  3911.          "license": [
  3912. -            "MIT"
  3913. +            "GPL-2.0+"
  3914.          ],
  3915.          "authors": [
  3916.              {
  3917. -                "name": "Roman Borschel",
  3918. -                "email": "roman@code-factory.org"
  3919. +                "name": "Frans",
  3920. +                "homepage": "https://www.drupal.org/user/514222"
  3921.              },
  3922.              {
  3923. -                "name": "Benjamin Eberlei",
  3924. -                "email": "kontakt@beberlei.de"
  3925. +                "name": "jeroen.b",
  3926. +                "homepage": "https://www.drupal.org/user/1853532"
  3927.              },
  3928.              {
  3929. -                "name": "Guilherme Blanco",
  3930. -                "email": "guilhermeblanco@gmail.com"
  3931. +                "name": "miro_dietiker",
  3932. +                "homepage": "https://www.drupal.org/user/227761"
  3933. +            }
  3934. +        ],
  3935. +        "description": "Adds a Entity Reference field type with revision support.",
  3936. +        "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  3937. +        "support": {
  3938. +            "source": "http://cgit.drupalcode.org/entity_reference_revisions"
  3939. +        }
  3940. +    },
  3941. +    {
  3942. +        "name": "drupal/group",
  3943. +        "version": "1.0.0-rc1",
  3944. +        "version_normalized": "1.0.0.0-RC1",
  3945. +        "source": {
  3946. +            "type": "git",
  3947. +            "url": "https://git.drupal.org/project/group",
  3948. +            "reference": "8.x-1.0-rc1"
  3949. +        },
  3950. +        "dist": {
  3951. +            "type": "zip",
  3952. +            "url": "https://ftp.drupal.org/files/projects/group-8.x-1.0-rc1.zip",
  3953. +            "reference": "8.x-1.0-rc1",
  3954. +            "shasum": "6991939b310fbc5ac19151eb0d70e9b30f340354"
  3955. +        },
  3956. +        "require": {
  3957. +            "drupal/core": "*"
  3958. +        },
  3959. +        "type": "drupal-module",
  3960. +        "extra": {
  3961. +            "branch-alias": {
  3962. +                "dev-1.x": "1.x-dev"
  3963.              },
  3964. -            {
  3965. -                "name": "Jonathan Wage",
  3966. -                "email": "jonwage@gmail.com"
  3967. +            "drupal": {
  3968. +                "version": "8.x-1.0-rc1",
  3969. +                "datestamp": "1498033733",
  3970. +                "security-coverage": {
  3971. +                    "status": "not-covered",
  3972. +                    "message": "RC releases are not covered by Drupal security advisories."
  3973. +                }
  3974.              },
  3975. +            "patches_applied": {
  3976. +                "The group_roles field gets created too early during configuration sync": "https://www.drupal.org/files/issues/2869554-12.patch",
  3977. +                "Errors when deleting groups or group content": "https://www.drupal.org/files/issues/2908830-04.patch"
  3978. +            }
  3979. +        },
  3980. +        "installation-source": "dist",
  3981. +        "notification-url": "https://packages.drupal.org/8/downloads",
  3982. +        "license": [
  3983. +            "GPL-2.0+"
  3984. +        ],
  3985. +        "authors": [
  3986.              {
  3987. -                "name": "Johannes Schmitt",
  3988. -                "email": "schmittjoh@gmail.com"
  3989. +                "name": "kristiaanvandeneynde",
  3990. +                "homepage": "https://www.drupal.org/user/1345130"
  3991.              }
  3992.          ],
  3993. -        "description": "Collections Abstraction library",
  3994. -        "homepage": "http://www.doctrine-project.org",
  3995. -        "keywords": [
  3996. -            "array",
  3997. -            "collections",
  3998. -            "iterator"
  3999. -        ]
  4000. +        "description": "This module allows you to group users, content and other entities",
  4001. +        "homepage": "https://www.drupal.org/project/group",
  4002. +        "support": {
  4003. +            "source": "http://cgit.drupalcode.org/group"
  4004. +        }
  4005.      },
  4006.      {
  4007. -        "name": "doctrine/lexer",
  4008. -        "version": "v1.0.1",
  4009. -        "version_normalized": "1.0.1.0",
  4010. +        "name": "drupal/inline_entity_form",
  4011. +        "version": "1.0.0-beta1",
  4012. +        "version_normalized": "1.0.0.0-beta1",
  4013.          "source": {
  4014.              "type": "git",
  4015. -            "url": "https://github.com/doctrine/lexer.git",
  4016. -            "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  4017. +            "url": "https://git.drupal.org/project/inline_entity_form",
  4018. +            "reference": "8.x-1.0-beta1"
  4019.          },
  4020.          "dist": {
  4021.              "type": "zip",
  4022. -            "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  4023. -            "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  4024. -            "shasum": ""
  4025. +            "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-beta1.zip",
  4026. +            "reference": "8.x-1.0-beta1",
  4027. +            "shasum": "185ffc28a7b68d19cce057855d1c111f1741a3ea"
  4028.          },
  4029.          "require": {
  4030. -            "php": ">=5.3.2"
  4031. +            "drupal/core": "~8.0"
  4032.          },
  4033. -        "time": "2014-09-09T13:34:57+00:00",
  4034. -        "type": "library",
  4035. +        "require-dev": {
  4036. +            "drupal/entity_reference_revisions": "*"
  4037. +        },
  4038. +        "type": "drupal-module",
  4039.          "extra": {
  4040.              "branch-alias": {
  4041. -                "dev-master": "1.0.x-dev"
  4042. -            }
  4043. -        },
  4044. -        "installation-source": "dist",
  4045. -        "autoload": {
  4046. -            "psr-0": {
  4047. -                "Doctrine\\Common\\Lexer\\": "lib/"
  4048. +                "dev-1.x": "1.x-dev"
  4049. +            },
  4050. +            "drupal": {
  4051. +                "version": "8.x-1.0-beta1",
  4052. +                "datestamp": "1477868343",
  4053. +                "security-coverage": {
  4054. +                    "status": "not-covered",
  4055. +                    "message": "Beta releases are not covered by Drupal security advisories."
  4056. +                }
  4057.              }
  4058.          },
  4059. -        "notification-url": "https://packagist.org/downloads/",
  4060. +        "installation-source": "source",
  4061. +        "notification-url": "https://packages.drupal.org/8/downloads",
  4062.          "license": [
  4063. -            "MIT"
  4064. +            "GPL-2.0+"
  4065.          ],
  4066.          "authors": [
  4067.              {
  4068. -                "name": "Roman Borschel",
  4069. -                "email": "roman@code-factory.org"
  4070. +                "name": "bojanz",
  4071. +                "homepage": "https://www.drupal.org/user/86106"
  4072.              },
  4073.              {
  4074. -                "name": "Guilherme Blanco",
  4075. -                "email": "guilhermeblanco@gmail.com"
  4076. +                "name": "dawehner",
  4077. +                "homepage": "https://www.drupal.org/user/99340"
  4078.              },
  4079.              {
  4080. -                "name": "Johannes Schmitt",
  4081. -                "email": "schmittjoh@gmail.com"
  4082. +                "name": "rszrama",
  4083. +                "homepage": "https://www.drupal.org/user/49344"
  4084. +            },
  4085. +            {
  4086. +                "name": "slashrsm",
  4087. +                "homepage": "https://www.drupal.org/user/744628"
  4088. +            },
  4089. +            {
  4090. +                "name": "webflo",
  4091. +                "homepage": "https://www.drupal.org/user/254778"
  4092.              }
  4093.          ],
  4094. -        "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  4095. -        "homepage": "http://www.doctrine-project.org",
  4096. -        "keywords": [
  4097. -            "lexer",
  4098. -            "parser"
  4099. -        ]
  4100. +        "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4101. +        "homepage": "https://www.drupal.org/project/inline_entity_form",
  4102. +        "support": {
  4103. +            "source": "http://cgit.drupalcode.org/inline_entity_form"
  4104. +        }
  4105.      },
  4106.      {
  4107. -        "name": "doctrine/annotations",
  4108. -        "version": "v1.5.0",
  4109. -        "version_normalized": "1.5.0.0",
  4110. +        "name": "drupal/migrate_plus",
  4111. +        "version": "4.0.0-beta1",
  4112. +        "version_normalized": "4.0.0.0-beta1",
  4113.          "source": {
  4114.              "type": "git",
  4115. -            "url": "https://github.com/doctrine/annotations.git",
  4116. -            "reference": "5beebb01b025c94e93686b7a0ed3edae81fe3e7f"
  4117. +            "url": "https://git.drupal.org/project/migrate_plus",
  4118. +            "reference": "8.x-4.0-beta1"
  4119.          },
  4120.          "dist": {
  4121.              "type": "zip",
  4122. -            "url": "https://api.github.com/repos/doctrine/annotations/zipball/5beebb01b025c94e93686b7a0ed3edae81fe3e7f",
  4123. -            "reference": "5beebb01b025c94e93686b7a0ed3edae81fe3e7f",
  4124. -            "shasum": ""
  4125. +            "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.0-beta1.zip",
  4126. +            "reference": "8.x-4.0-beta1",
  4127. +            "shasum": "e64bac006e3ef9ae697b0f2c4b3744af0524e208"
  4128.          },
  4129.          "require": {
  4130. -            "doctrine/lexer": "1.*",
  4131. -            "php": "^7.1"
  4132. +            "drupal/core": "^8.3"
  4133.          },
  4134.          "require-dev": {
  4135. -            "doctrine/cache": "1.*",
  4136. -            "phpunit/phpunit": "^5.7"
  4137. +            "drupal/migrate_example_advanced_setup": "*",
  4138. +            "drupal/migrate_example_setup": "*"
  4139.          },
  4140. -        "time": "2017-07-22T10:58:02+00:00",
  4141. -        "type": "library",
  4142. +        "suggest": {
  4143. +            "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4144. +        },
  4145. +        "type": "drupal-module",
  4146.          "extra": {
  4147.              "branch-alias": {
  4148. -                "dev-master": "1.5.x-dev"
  4149. +                "dev-4.x": "4.x-dev"
  4150. +            },
  4151. +            "drupal": {
  4152. +                "version": "8.x-4.0-beta1",
  4153. +                "datestamp": "1494450185",
  4154. +                "security-coverage": {
  4155. +                    "status": "not-covered",
  4156. +                    "message": "Beta releases are not covered by Drupal security advisories."
  4157. +                }
  4158.              }
  4159.          },
  4160.          "installation-source": "dist",
  4161. -        "autoload": {
  4162. -            "psr-4": {
  4163. -                "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  4164. -            }
  4165. -        },
  4166. -        "notification-url": "https://packagist.org/downloads/",
  4167. +        "notification-url": "https://packages.drupal.org/8/downloads",
  4168.          "license": [
  4169. -            "MIT"
  4170. +            "GPL-2.0+"
  4171.          ],
  4172.          "authors": [
  4173.              {
  4174. -                "name": "Roman Borschel",
  4175. -                "email": "roman@code-factory.org"
  4176. -            },
  4177. -            {
  4178. -                "name": "Benjamin Eberlei",
  4179. -                "email": "kontakt@beberlei.de"
  4180. -            },
  4181. -            {
  4182. -                "name": "Guilherme Blanco",
  4183. -                "email": "guilhermeblanco@gmail.com"
  4184. -            },
  4185. -            {
  4186. -                "name": "Jonathan Wage",
  4187. -                "email": "jonwage@gmail.com"
  4188. +                "name": "Mike Ryan",
  4189. +                "homepage": "https://www.drupal.org/u/mikeryan",
  4190. +                "role": "Maintainer"
  4191.              },
  4192.              {
  4193. -                "name": "Johannes Schmitt",
  4194. -                "email": "schmittjoh@gmail.com"
  4195. +                "name": "mikeryan",
  4196. +                "homepage": "https://www.drupal.org/user/4420"
  4197.              }
  4198.          ],
  4199. -        "description": "Docblock Annotations Parser",
  4200. -        "homepage": "http://www.doctrine-project.org",
  4201. -        "keywords": [
  4202. -            "annotations",
  4203. -            "docblock",
  4204. -            "parser"
  4205. -        ]
  4206. +        "description": "Enhancements to core migration support.",
  4207. +        "homepage": "https://www.drupal.org/project/migrate_plus",
  4208. +        "support": {
  4209. +            "source": "https://cgit.drupalcode.org/migrate_plus",
  4210. +            "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4211. +            "irc": "irc://irc.freenode.org/drupal-migrate"
  4212. +        }
  4213.      },
  4214.      {
  4215. -        "name": "alchemy/zippy",
  4216. -        "version": "0.4.3",
  4217. -        "version_normalized": "0.4.3.0",
  4218. +        "name": "drupal/migrate_source_csv",
  4219. +        "version": "2.0.0",
  4220. +        "version_normalized": "2.0.0.0",
  4221.          "source": {
  4222.              "type": "git",
  4223. -            "url": "https://github.com/alchemy-fr/Zippy.git",
  4224. -            "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea"
  4225. +            "url": "https://git.drupal.org/project/migrate_source_csv",
  4226. +            "reference": "8.x-2.0"
  4227.          },
  4228.          "dist": {
  4229.              "type": "zip",
  4230. -            "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/5ffdc93de0af2770d396bf433d8b2667c77277ea",
  4231. -            "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea",
  4232. -            "shasum": ""
  4233. +            "url": "https://ftp.drupal.org/files/projects/migrate_source_csv-8.x-2.0.zip",
  4234. +            "reference": "8.x-2.0",
  4235. +            "shasum": "056845ce1679a051733b12576e3204609dce293d"
  4236.          },
  4237.          "require": {
  4238. -            "doctrine/collections": "~1.0",
  4239. -            "ext-mbstring": "*",
  4240. -            "php": ">=5.5",
  4241. -            "symfony/filesystem": "^2.0.5|^3.0",
  4242. -            "symfony/process": "^2.1|^3.0"
  4243. +            "drupal/core": "~8.1"
  4244.          },
  4245.          "require-dev": {
  4246. -            "ext-zip": "*",
  4247. -            "guzzle/guzzle": "~3.0",
  4248. -            "guzzlehttp/guzzle": "^6.0",
  4249. -            "phpunit/phpunit": "^4.0|^5.0",
  4250. -            "symfony/finder": "^2.0.5|^3.0"
  4251. -        },
  4252. -        "suggest": {
  4253. -            "ext-zip": "To use the ZipExtensionAdapter",
  4254. -            "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  4255. -            "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  4256. +            "mikey179/vfsstream": "~1",
  4257. +            "phpunit/phpunit": "~4"
  4258.          },
  4259. -        "time": "2016-11-03T16:10:31+00:00",
  4260. -        "type": "library",
  4261. +        "type": "drupal-module",
  4262.          "extra": {
  4263.              "branch-alias": {
  4264. -                "dev-master": "0.4.x-dev"
  4265. +                "dev-2.x": "2.x-dev"
  4266. +            },
  4267. +            "drupal": {
  4268. +                "version": "8.x-2.0",
  4269. +                "datestamp": "1479750843",
  4270. +                "security-coverage": {
  4271. +                    "status": "covered",
  4272. +                    "message": "Covered by Drupal's security advisory policy"
  4273. +                }
  4274.              }
  4275.          },
  4276.          "installation-source": "dist",
  4277. -        "autoload": {
  4278. -            "psr-4": {
  4279. -                "Alchemy\\Zippy\\": "src/"
  4280. -            }
  4281. -        },
  4282. -        "notification-url": "https://packagist.org/downloads/",
  4283. +        "notification-url": "https://packages.drupal.org/8/downloads",
  4284.          "license": [
  4285. -            "MIT"
  4286. +            "GPL-2.0+"
  4287.          ],
  4288.          "authors": [
  4289.              {
  4290. -                "name": "Alchemy",
  4291. -                "email": "dev.team@alchemy.fr",
  4292. -                "homepage": "http://www.alchemy.fr/"
  4293. +                "name": "Lucas Hedding",
  4294. +                "homepage": "https://www.drupal.org/u/heddn",
  4295. +                "role": "Maintainer"
  4296. +            },
  4297. +            {
  4298. +                "name": "mikeryan",
  4299. +                "homepage": "https://www.drupal.org/user/4420"
  4300.              }
  4301.          ],
  4302. -        "description": "Zippy, the archive manager companion",
  4303. -        "keywords": [
  4304. -            "bzip",
  4305. -            "compression",
  4306. -            "tar",
  4307. -            "zip"
  4308. -        ]
  4309. +        "description": "CSV source migration.",
  4310. +        "homepage": "https://www.drupal.org/project/migrate_source_csv",
  4311. +        "support": {
  4312. +            "source": "https://cgit.drupalcode.org/migrate_source_csv",
  4313. +            "issues": "https://www.drupal.org/project/issues/migrate_source_csv",
  4314. +            "irc": "irc://irc.freenode.org/drupal-migrate"
  4315. +        }
  4316.      },
  4317.      {
  4318. -        "name": "drupal/console",
  4319. -        "version": "1.0.2",
  4320. -        "version_normalized": "1.0.2.0",
  4321. +        "name": "drupal/migrate_tools",
  4322. +        "version": "4.0.0-beta2",
  4323. +        "version_normalized": "4.0.0.0-beta2",
  4324.          "source": {
  4325.              "type": "git",
  4326. -            "url": "https://github.com/hechoendrupal/drupal-console.git",
  4327. -            "reference": "8561b13b3026053a575bc54a4aa5bd351ed89f6a"
  4328. +            "url": "https://git.drupal.org/project/migrate_tools",
  4329. +            "reference": "8.x-4.0-beta2"
  4330.          },
  4331.          "dist": {
  4332.              "type": "zip",
  4333. -            "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/8561b13b3026053a575bc54a4aa5bd351ed89f6a",
  4334. -            "reference": "8561b13b3026053a575bc54a4aa5bd351ed89f6a",
  4335. -            "shasum": ""
  4336. +            "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.0-beta2.zip",
  4337. +            "reference": "8.x-4.0-beta2",
  4338. +            "shasum": "8d7442253e100078e28f18fff062e3431153c0b2"
  4339.          },
  4340.          "require": {
  4341. -            "alchemy/zippy": "0.4.3",
  4342. -            "composer/installers": "~1.0",
  4343. -            "doctrine/annotations": "^1.2",
  4344. -            "doctrine/collections": "^1.3",
  4345. -            "drupal/console-core": "1.0.2",
  4346. -            "drupal/console-dotenv": "~0",
  4347. -            "drupal/console-extend-plugin": "~0",
  4348. -            "gabordemooij/redbean": "~4.3",
  4349. -            "guzzlehttp/guzzle": "~6.1",
  4350. -            "php": "^5.5.9 || ^7.0",
  4351. -            "psy/psysh": "0.6.* || ~0.8",
  4352. -            "symfony/css-selector": "~2.8|~3.0",
  4353. -            "symfony/dom-crawler": "~2.8|~3.0",
  4354. -            "symfony/expression-language": "~2.8|~3.0",
  4355. -            "symfony/http-foundation": "~2.8|~3.0"
  4356. -        },
  4357. -        "time": "2017-09-05T07:41:50+00:00",
  4358. -        "bin": [
  4359. -            "bin/drupal"
  4360. -        ],
  4361. -        "type": "library",
  4362. -        "installation-source": "dist",
  4363. -        "autoload": {
  4364. -            "psr-4": {
  4365. -                "Drupal\\Console\\": "src"
  4366. +            "drupal/core": "^8.3",
  4367. +            "drupal/migrate_plus": "*"
  4368. +        },
  4369. +        "require-dev": {
  4370. +            "drupal/coder": "^8"
  4371. +        },
  4372. +        "type": "drupal-module",
  4373. +        "extra": {
  4374. +            "branch-alias": {
  4375. +                "dev-4.x": "4.x-dev"
  4376. +            },
  4377. +            "drupal": {
  4378. +                "version": "8.x-4.0-beta2",
  4379. +                "datestamp": "1511790485",
  4380. +                "security-coverage": {
  4381. +                    "status": "not-covered",
  4382. +                    "message": "Beta releases are not covered by Drupal security advisories."
  4383. +                }
  4384.              }
  4385.          },
  4386. -        "notification-url": "https://packagist.org/downloads/",
  4387. +        "installation-source": "dist",
  4388. +        "notification-url": "https://packages.drupal.org/8/downloads",
  4389.          "license": [
  4390.              "GPL-2.0+"
  4391.          ],
  4392.          "authors": [
  4393.              {
  4394. -                "name": "David Flores",
  4395. -                "email": "dmousex@gmail.com",
  4396. -                "homepage": "http://dmouse.net"
  4397. -            },
  4398. -            {
  4399. -                "name": "Jesus Manuel Olivas",
  4400. -                "email": "jesus.olivas@gmail.com",
  4401. -                "homepage": "http://jmolivas.com"
  4402. -            },
  4403. -            {
  4404. -                "name": "Drupal Console Contributors",
  4405. -                "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  4406. +                "name": "heddn",
  4407. +                "homepage": "https://www.drupal.org/user/1463982"
  4408.              },
  4409.              {
  4410. -                "name": "Eduardo Garcia",
  4411. -                "email": "enzo@enzolutions.com",
  4412. -                "homepage": "http://enzolutions.com/"
  4413. +                "name": "mikeryan",
  4414. +                "homepage": "https://www.drupal.org/user/4420"
  4415.              },
  4416.              {
  4417. -                "name": "Omar Aguirre",
  4418. -                "email": "omersguchigu@gmail.com"
  4419. +                "name": "moshe weitzman",
  4420. +                "homepage": "https://www.drupal.org/user/23"
  4421.              }
  4422.          ],
  4423. -        "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  4424. -        "homepage": "http://drupalconsole.com/",
  4425. -        "keywords": [
  4426. -            "console",
  4427. -            "development",
  4428. -            "drupal",
  4429. -            "symfony"
  4430. -        ]
  4431. +        "description": "Tools to assist in developing and running migrations.",
  4432. +        "homepage": "https://www.drupal.org/project/migrate_tools",
  4433. +        "support": {
  4434. +            "source": "http://cgit.drupalcode.org/migrate_tools"
  4435. +        }
  4436.      },
  4437.      {
  4438. -        "name": "zendframework/zend-stdlib",
  4439. -        "version": "3.1.0",
  4440. -        "version_normalized": "3.1.0.0",
  4441. +        "name": "drupal/paragraphs",
  4442. +        "version": "1.2.0",
  4443. +        "version_normalized": "1.2.0.0",
  4444.          "source": {
  4445.              "type": "git",
  4446. -            "url": "https://github.com/zendframework/zend-stdlib.git",
  4447. -            "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78"
  4448. +            "url": "https://git.drupal.org/project/paragraphs",
  4449. +            "reference": "8.x-1.2"
  4450.          },
  4451.          "dist": {
  4452.              "type": "zip",
  4453. -            "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/debedcfc373a293f9250cc9aa03cf121428c8e78",
  4454. -            "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78",
  4455. -            "shasum": ""
  4456. +            "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.2.zip",
  4457. +            "reference": "8.x-1.2",
  4458. +            "shasum": "6efc9d4351d4b21a55e7a6428c78495aaca662ef"
  4459.          },
  4460.          "require": {
  4461. -            "php": "^5.6 || ^7.0"
  4462. +            "drupal/core": "~8",
  4463. +            "drupal/entity_reference_revisions": "~1.3"
  4464.          },
  4465.          "require-dev": {
  4466. -            "athletic/athletic": "~0.1",
  4467. -            "phpunit/phpunit": "~4.0",
  4468. -            "squizlabs/php_codesniffer": "^2.6.2"
  4469. +            "drupal/block_field": "~1.0",
  4470. +            "drupal/diff": "~1.0",
  4471. +            "drupal/field_group": "~1.0",
  4472. +            "drupal/inline_entity_form": "~1.0",
  4473. +            "drupal/replicate": "~1.0",
  4474. +            "drupal/search_api": "*",
  4475. +            "drupal/search_api_db": "*"
  4476.          },
  4477. -        "time": "2016-09-13T14:38:50+00:00",
  4478. -        "type": "library",
  4479. +        "type": "drupal-module",
  4480.          "extra": {
  4481.              "branch-alias": {
  4482. -                "dev-master": "3.1-dev",
  4483. -                "dev-develop": "3.2-dev"
  4484. +                "dev-1.x": "1.x-dev"
  4485. +            },
  4486. +            "drupal": {
  4487. +                "version": "8.x-1.2",
  4488. +                "datestamp": "1505802867",
  4489. +                "security-coverage": {
  4490. +                    "status": "covered",
  4491. +                    "message": "Covered by Drupal's security advisory policy"
  4492. +                }
  4493.              }
  4494.          },
  4495.          "installation-source": "dist",
  4496. -        "autoload": {
  4497. -            "psr-4": {
  4498. -                "Zend\\Stdlib\\": "src/"
  4499. -            }
  4500. -        },
  4501. -        "notification-url": "https://packagist.org/downloads/",
  4502. +        "notification-url": "https://packages.drupal.org/8/downloads",
  4503.          "license": [
  4504. -            "BSD-3-Clause"
  4505. +            "GPL-2.0"
  4506.          ],
  4507. -        "homepage": "https://github.com/zendframework/zend-stdlib",
  4508. -        "keywords": [
  4509. -            "stdlib",
  4510. -            "zf2"
  4511. -        ]
  4512. +        "authors": [
  4513. +            {
  4514. +                "name": "Berdir",
  4515. +                "homepage": "https://www.drupal.org/user/214652"
  4516. +            },
  4517. +            {
  4518. +                "name": "Frans",
  4519. +                "homepage": "https://www.drupal.org/user/514222"
  4520. +            },
  4521. +            {
  4522. +                "name": "Primsi",
  4523. +                "homepage": "https://www.drupal.org/user/282629"
  4524. +            },
  4525. +            {
  4526. +                "name": "jeroen.b",
  4527. +                "homepage": "https://www.drupal.org/user/1853532"
  4528. +            },
  4529. +            {
  4530. +                "name": "miro_dietiker",
  4531. +                "homepage": "https://www.drupal.org/user/227761"
  4532. +            }
  4533. +        ],
  4534. +        "description": "Enables the creation of Paragraphs entities.",
  4535. +        "homepage": "https://www.drupal.org/project/paragraphs",
  4536. +        "support": {
  4537. +            "source": "http://cgit.drupalcode.org/paragraphs"
  4538. +        }
  4539.      },
  4540.      {
  4541. -        "name": "zendframework/zend-escaper",
  4542. -        "version": "2.5.2",
  4543. -        "version_normalized": "2.5.2.0",
  4544. +        "name": "drupal/pathauto",
  4545. +        "version": "1.0.0",
  4546. +        "version_normalized": "1.0.0.0",
  4547.          "source": {
  4548.              "type": "git",
  4549. -            "url": "https://github.com/zendframework/zend-escaper.git",
  4550. -            "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e"
  4551. +            "url": "https://git.drupal.org/project/pathauto",
  4552. +            "reference": "8.x-1.0"
  4553.          },
  4554.          "dist": {
  4555.              "type": "zip",
  4556. -            "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  4557. -            "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  4558. -            "shasum": ""
  4559. +            "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.0.zip",
  4560. +            "reference": "8.x-1.0",
  4561. +            "shasum": "4c82a5689a18421c8c73fcc8be7b333bb21ae02a"
  4562.          },
  4563.          "require": {
  4564. -            "php": ">=5.5"
  4565. -        },
  4566. -        "require-dev": {
  4567. -            "fabpot/php-cs-fixer": "1.7.*",
  4568. -            "phpunit/phpunit": "~4.0"
  4569. +            "drupal/core": "*",
  4570. +            "drupal/ctools": "*",
  4571. +            "drupal/token": "*"
  4572.          },
  4573. -        "time": "2016-06-30T19:48:38+00:00",
  4574. -        "type": "library",
  4575. +        "type": "drupal-module",
  4576.          "extra": {
  4577.              "branch-alias": {
  4578. -                "dev-master": "2.5-dev",
  4579. -                "dev-develop": "2.6-dev"
  4580. +                "dev-1.x": "1.x-dev"
  4581. +            },
  4582. +            "drupal": {
  4583. +                "version": "8.x-1.0",
  4584. +                "datestamp": "1493468044",
  4585. +                "security-coverage": {
  4586. +                    "status": "covered",
  4587. +                    "message": "Covered by Drupal's security advisory policy"
  4588. +                }
  4589.              }
  4590.          },
  4591.          "installation-source": "dist",
  4592. -        "autoload": {
  4593. -            "psr-4": {
  4594. -                "Zend\\Escaper\\": "src/"
  4595. -            }
  4596. -        },
  4597. -        "notification-url": "https://packagist.org/downloads/",
  4598. +        "notification-url": "https://packages.drupal.org/8/downloads",
  4599.          "license": [
  4600. -            "BSD-3-Clause"
  4601. +            "GPL-2.0+"
  4602.          ],
  4603. -        "homepage": "https://github.com/zendframework/zend-escaper",
  4604. -        "keywords": [
  4605. -            "escaper",
  4606. -            "zf2"
  4607. -        ]
  4608. +        "authors": [
  4609. +            {
  4610. +                "name": "Berdir",
  4611. +                "homepage": "https://www.drupal.org/user/214652"
  4612. +            },
  4613. +            {
  4614. +                "name": "Dave Reid",
  4615. +                "homepage": "https://www.drupal.org/user/53892"
  4616. +            },
  4617. +            {
  4618. +                "name": "Freso",
  4619. +                "homepage": "https://www.drupal.org/user/27504"
  4620. +            },
  4621. +            {
  4622. +                "name": "greggles",
  4623. +                "homepage": "https://www.drupal.org/user/36762"
  4624. +            }
  4625. +        ],
  4626. +        "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4627. +        "homepage": "https://www.drupal.org/project/pathauto",
  4628. +        "support": {
  4629. +            "source": "http://cgit.drupalcode.org/pathauto"
  4630. +        }
  4631.      },
  4632.      {
  4633. -        "name": "zendframework/zend-feed",
  4634. -        "version": "2.8.0",
  4635. -        "version_normalized": "2.8.0.0",
  4636. +        "name": "drupal/token",
  4637. +        "version": "1.0.0",
  4638. +        "version_normalized": "1.0.0.0",
  4639.          "source": {
  4640.              "type": "git",
  4641. -            "url": "https://github.com/zendframework/zend-feed.git",
  4642. -            "reference": "94579e805dd108683209fe14b3b5d4276de3de6e"
  4643. +            "url": "https://git.drupal.org/project/token",
  4644. +            "reference": "8.x-1.0"
  4645.          },
  4646.          "dist": {
  4647.              "type": "zip",
  4648. -            "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/94579e805dd108683209fe14b3b5d4276de3de6e",
  4649. -            "reference": "94579e805dd108683209fe14b3b5d4276de3de6e",
  4650. -            "shasum": ""
  4651. +            "url": "https://ftp.drupal.org/files/projects/token-8.x-1.0.zip",
  4652. +            "reference": "8.x-1.0",
  4653. +            "shasum": "d24c7f1ffddbd0fc56bc92bacae1c4ff769a4442"
  4654.          },
  4655.          "require": {
  4656. -            "php": "^5.6 || ^7.0",
  4657. -            "zendframework/zend-escaper": "^2.5",
  4658. -            "zendframework/zend-stdlib": "^2.7 || ^3.1"
  4659. -        },
  4660. -        "require-dev": {
  4661. -            "phpunit/phpunit": "^6.0.8 || ^5.7.15",
  4662. -            "psr/http-message": "^1.0",
  4663. -            "zendframework/zend-cache": "^2.6",
  4664. -            "zendframework/zend-coding-standard": "~1.0.0",
  4665. -            "zendframework/zend-db": "^2.7",
  4666. -            "zendframework/zend-http": "^2.5.4",
  4667. -            "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  4668. -            "zendframework/zend-validator": "^2.6"
  4669. -        },
  4670. -        "suggest": {
  4671. -            "psr/http-message": "PSR-7 ^1.0, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  4672. -            "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  4673. -            "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  4674. -            "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  4675. -            "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  4676. -            "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries ehen using the Writer subcomponent"
  4677. +            "drupal/core": "~8.0"
  4678.          },
  4679. -        "time": "2017-04-01T15:03:14+00:00",
  4680. -        "type": "library",
  4681. +        "type": "drupal-module",
  4682.          "extra": {
  4683.              "branch-alias": {
  4684. -                "dev-master": "2.8-dev",
  4685. -                "dev-develop": "2.9-dev"
  4686. +                "dev-1.x": "1.x-dev"
  4687. +            },
  4688. +            "drupal": {
  4689. +                "version": "8.x-1.0",
  4690. +                "datestamp": "1493466843",
  4691. +                "security-coverage": {
  4692. +                    "status": "covered",
  4693. +                    "message": "Covered by Drupal's security advisory policy"
  4694. +                }
  4695.              }
  4696.          },
  4697.          "installation-source": "dist",
  4698. -        "autoload": {
  4699. -            "psr-4": {
  4700. -                "Zend\\Feed\\": "src/"
  4701. -            }
  4702. -        },
  4703. -        "notification-url": "https://packagist.org/downloads/",
  4704. +        "notification-url": "https://packages.drupal.org/8/downloads",
  4705.          "license": [
  4706. -            "BSD-3-Clause"
  4707. +            "GPL-2.0+"
  4708.          ],
  4709. -        "description": "provides functionality for consuming RSS and Atom feeds",
  4710. -        "homepage": "https://github.com/zendframework/zend-feed",
  4711. -        "keywords": [
  4712. -            "feed",
  4713. -            "zf2"
  4714. -        ]
  4715. +        "authors": [
  4716. +            {
  4717. +                "name": "Berdir",
  4718. +                "homepage": "https://www.drupal.org/user/214652"
  4719. +            },
  4720. +            {
  4721. +                "name": "Dave Reid",
  4722. +                "homepage": "https://www.drupal.org/user/53892"
  4723. +            },
  4724. +            {
  4725. +                "name": "eaton",
  4726. +                "homepage": "https://www.drupal.org/user/16496"
  4727. +            },
  4728. +            {
  4729. +                "name": "fago",
  4730. +                "homepage": "https://www.drupal.org/user/16747"
  4731. +            },
  4732. +            {
  4733. +                "name": "greggles",
  4734. +                "homepage": "https://www.drupal.org/user/36762"
  4735. +            },
  4736. +            {
  4737. +                "name": "mikeryan",
  4738. +                "homepage": "https://www.drupal.org/user/4420"
  4739. +            }
  4740. +        ],
  4741. +        "description": "Provides a user interface for the Token API and some missing core tokens.",
  4742. +        "homepage": "https://www.drupal.org/project/token",
  4743. +        "support": {
  4744. +            "source": "http://cgit.drupalcode.org/token"
  4745. +        }
  4746.      },
  4747.      {
  4748. -        "name": "zendframework/zend-diactoros",
  4749. -        "version": "1.6.1",
  4750. -        "version_normalized": "1.6.1.0",
  4751. +        "name": "drupal/video_embed_field",
  4752. +        "version": "2.0.0-alpha2",
  4753. +        "version_normalized": "2.0.0.0-alpha2",
  4754.          "source": {
  4755.              "type": "git",
  4756. -            "url": "https://github.com/zendframework/zend-diactoros.git",
  4757. -            "reference": "c8664b92a6d5bc229e48b0923486c097e45a7877"
  4758. +            "url": "https://git.drupal.org/project/video_embed_field",
  4759. +            "reference": "8.x-2.0-alpha2"
  4760.          },
  4761.          "dist": {
  4762.              "type": "zip",
  4763. -            "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/c8664b92a6d5bc229e48b0923486c097e45a7877",
  4764. -            "reference": "c8664b92a6d5bc229e48b0923486c097e45a7877",
  4765. -            "shasum": ""
  4766. +            "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.0-alpha2.zip",
  4767. +            "reference": "8.x-2.0-alpha2",
  4768. +            "shasum": "45b67ad5e0092f2ec9c2873ceabc85ff3a5e9620"
  4769.          },
  4770.          "require": {
  4771. -            "php": "^5.6 || ^7.0",
  4772. -            "psr/http-message": "^1.0"
  4773. -        },
  4774. -        "provide": {
  4775. -            "psr/http-message-implementation": "1.0"
  4776. +            "drupal/core": "*"
  4777.          },
  4778.          "require-dev": {
  4779. -            "ext-dom": "*",
  4780. -            "ext-libxml": "*",
  4781. -            "phpunit/phpunit": "^5.7.16 || ^6.0.8",
  4782. -            "zendframework/zend-coding-standard": "~1.0"
  4783. +            "drupal/colorbox": "*",
  4784. +            "drupal/media_entity": "*",
  4785. +            "drupal/media_entity_embeddable_video": "*"
  4786.          },
  4787. -        "time": "2017-10-12T15:24:51+00:00",
  4788. -        "type": "library",
  4789. +        "type": "drupal-module",
  4790.          "extra": {
  4791.              "branch-alias": {
  4792. -                "dev-master": "1.6-dev",
  4793. -                "dev-develop": "1.7-dev"
  4794. +                "dev-2.x": "2.x-dev"
  4795. +            },
  4796. +            "drupal": {
  4797. +                "version": "8.x-1.x",
  4798. +                "datestamp": "1512694688",
  4799. +                "security-coverage": {
  4800. +                    "status": "not-covered",
  4801. +                    "message": "Alpha releases are not covered by Drupal security advisories."
  4802. +                },
  4803. +                "package": "Field types"
  4804.              }
  4805.          },
  4806.          "installation-source": "dist",
  4807. -        "autoload": {
  4808. -            "psr-4": {
  4809. -                "Zend\\Diactoros\\": "src/"
  4810. -            }
  4811. -        },
  4812. -        "notification-url": "https://packagist.org/downloads/",
  4813. +        "notification-url": "https://packages.drupal.org/8/downloads",
  4814.          "license": [
  4815. -            "BSD-2-Clause"
  4816. +            "GPL-2.0+"
  4817.          ],
  4818. -        "description": "PSR HTTP Message implementations",
  4819. -        "homepage": "https://github.com/zendframework/zend-diactoros",
  4820. -        "keywords": [
  4821. -            "http",
  4822. -            "psr",
  4823. -            "psr-7"
  4824. -        ]
  4825. +        "authors": [
  4826. +            {
  4827. +                "name": "Sam152",
  4828. +                "homepage": "https://www.drupal.org/user/1485048"
  4829. +            },
  4830. +            {
  4831. +                "name": "jec006",
  4832. +                "homepage": "https://www.drupal.org/user/855980"
  4833. +            },
  4834. +            {
  4835. +                "name": "plopesc",
  4836. +                "homepage": "https://www.drupal.org/user/282415"
  4837. +            }
  4838. +        ],
  4839. +        "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  4840. +        "homepage": "https://www.drupal.org/project/video_embed_field",
  4841. +        "support": {
  4842. +            "source": "http://cgit.drupalcode.org/video_embed_field"
  4843. +        }
  4844.      },
  4845.      {
  4846. -        "name": "symfony/psr-http-message-bridge",
  4847. -        "version": "v1.0.0",
  4848. -        "version_normalized": "1.0.0.0",
  4849. +        "name": "drush/drush",
  4850. +        "version": "8.1.15",
  4851. +        "version_normalized": "8.1.15.0",
  4852.          "source": {
  4853.              "type": "git",
  4854. -            "url": "https://github.com/symfony/psr-http-message-bridge.git",
  4855. -            "reference": "66085f246d3893cbdbcec5f5ad15ac60546cf0de"
  4856. +            "url": "https://github.com/drush-ops/drush.git",
  4857. +            "reference": "f78b619806a9bc7c3d167fa425e8757eb046bb87"
  4858.          },
  4859.          "dist": {
  4860.              "type": "zip",
  4861. -            "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/66085f246d3893cbdbcec5f5ad15ac60546cf0de",
  4862. -            "reference": "66085f246d3893cbdbcec5f5ad15ac60546cf0de",
  4863. +            "url": "https://api.github.com/repos/drush-ops/drush/zipball/f78b619806a9bc7c3d167fa425e8757eb046bb87",
  4864. +            "reference": "f78b619806a9bc7c3d167fa425e8757eb046bb87",
  4865.              "shasum": ""
  4866.          },
  4867.          "require": {
  4868. -            "php": ">=5.3.3",
  4869. -            "psr/http-message": "~1.0",
  4870. -            "symfony/http-foundation": "~2.3|~3.0"
  4871. +            "consolidation/annotated-command": "~2",
  4872. +            "consolidation/output-formatters": "~3",
  4873. +            "pear/console_table": "~1.3.0",
  4874. +            "php": ">=5.4.5",
  4875. +            "phpdocumentor/reflection-docblock": "^2.0",
  4876. +            "psr/log": "~1.0",
  4877. +            "psy/psysh": "~0.6",
  4878. +            "symfony/console": "~2.7|^3",
  4879. +            "symfony/event-dispatcher": "~2.7|^3",
  4880. +            "symfony/finder": "~2.7|^3",
  4881. +            "symfony/var-dumper": "~2.7|^3",
  4882. +            "symfony/yaml": "~2.3|^3",
  4883. +            "webmozart/path-util": "~2"
  4884.          },
  4885.          "require-dev": {
  4886. -            "symfony/phpunit-bridge": "~2.7|~3.0"
  4887. +            "phpunit/phpunit": "4.*",
  4888. +            "symfony/console": "~2.7",
  4889. +            "symfony/event-dispatcher": "~2.7",
  4890. +            "symfony/finder": "~2.7",
  4891. +            "symfony/process": "2.7.*",
  4892. +            "symfony/var-dumper": "~2.7",
  4893. +            "symfony/yaml": "~2.3"
  4894.          },
  4895.          "suggest": {
  4896. -            "psr/http-message-implementation": "To use the HttpFoundation factory",
  4897. -            "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  4898. +            "drush/config-extra": "Provides configuration workflow commands, such as config-merge.",
  4899. +            "ext-pcntl": "*"
  4900.          },
  4901. -        "time": "2016-09-14T18:37:20+00:00",
  4902. -        "type": "symfony-bridge",
  4903. +        "time": "2017-10-10T02:05:46+00:00",
  4904. +        "bin": [
  4905. +            "drush",
  4906. +            "drush.launcher",
  4907. +            "drush.php",
  4908. +            "drush.complete.sh"
  4909. +        ],
  4910. +        "type": "library",
  4911.          "extra": {
  4912.              "branch-alias": {
  4913. -                "dev-master": "1.0-dev"
  4914. +                "dev-master": "8.0.x-dev"
  4915.              }
  4916.          },
  4917.          "installation-source": "dist",
  4918.          "autoload": {
  4919. -            "psr-4": {
  4920. -                "Symfony\\Bridge\\PsrHttpMessage\\": ""
  4921. +            "psr-0": {
  4922. +                "Drush": "lib/",
  4923. +                "Consolidation": "lib/"
  4924.              }
  4925.          },
  4926.          "notification-url": "https://packagist.org/downloads/",
  4927.          "license": [
  4928. -            "MIT"
  4929. +            "GPL-2.0+"
  4930.          ],
  4931.          "authors": [
  4932.              {
  4933. -                "name": "Symfony Community",
  4934. -                "homepage": "http://symfony.com/contributors"
  4935. +                "name": "Moshe Weitzman",
  4936. +                "email": "weitzman@tejasa.com"
  4937.              },
  4938.              {
  4939. -                "name": "Fabien Potencier",
  4940. -                "email": "fabien@symfony.com"
  4941. +                "name": "Owen Barton",
  4942. +                "email": "drupal@owenbarton.com"
  4943. +            },
  4944. +            {
  4945. +                "name": "Mark Sonnabaum",
  4946. +                "email": "marksonnabaum@gmail.com"
  4947. +            },
  4948. +            {
  4949. +                "name": "Antoine Beaupré",
  4950. +                "email": "anarcat@koumbit.org"
  4951. +            },
  4952. +            {
  4953. +                "name": "Greg Anderson",
  4954. +                "email": "greg.1.anderson@greenknowe.org"
  4955. +            },
  4956. +            {
  4957. +                "name": "Jonathan Araña Cruz",
  4958. +                "email": "jonhattan@faita.net"
  4959. +            },
  4960. +            {
  4961. +                "name": "Jonathan Hedstrom",
  4962. +                "email": "jhedstrom@gmail.com"
  4963. +            },
  4964. +            {
  4965. +                "name": "Christopher Gervais",
  4966. +                "email": "chris@ergonlogic.com"
  4967. +            },
  4968. +            {
  4969. +                "name": "Dave Reid",
  4970. +                "email": "dave@davereid.net"
  4971. +            },
  4972. +            {
  4973. +                "name": "Damian Lee",
  4974. +                "email": "damiankloip@googlemail.com"
  4975.              }
  4976.          ],
  4977. -        "description": "PSR HTTP message bridge",
  4978. -        "homepage": "http://symfony.com",
  4979. -        "keywords": [
  4980. -            "http",
  4981. -            "http-message",
  4982. -            "psr-7"
  4983. -        ]
  4984. +        "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.",
  4985. +        "homepage": "http://www.drush.org"
  4986.      },
  4987.      {
  4988. -        "name": "symfony/polyfill-iconv",
  4989. -        "version": "v1.6.0",
  4990. -        "version_normalized": "1.6.0.0",
  4991. +        "name": "easyrdf/easyrdf",
  4992. +        "version": "0.9.1",
  4993. +        "version_normalized": "0.9.1.0",
  4994.          "source": {
  4995.              "type": "git",
  4996. -            "url": "https://github.com/symfony/polyfill-iconv.git",
  4997. -            "reference": "7a84ccdb8c953ee274c96dd6bde778d873fc824a"
  4998. +            "url": "https://github.com/njh/easyrdf.git",
  4999. +            "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5000.          },
  5001.          "dist": {
  5002.              "type": "zip",
  5003. -            "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/7a84ccdb8c953ee274c96dd6bde778d873fc824a",
  5004. -            "reference": "7a84ccdb8c953ee274c96dd6bde778d873fc824a",
  5005. +            "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5006. +            "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5007.              "shasum": ""
  5008.          },
  5009.          "require": {
  5010. -            "php": ">=5.3.3"
  5011. +            "ext-mbstring": "*",
  5012. +            "ext-pcre": "*",
  5013. +            "php": ">=5.2.8"
  5014. +        },
  5015. +        "require-dev": {
  5016. +            "phpunit/phpunit": "~3.5",
  5017. +            "sami/sami": "~1.4",
  5018. +            "squizlabs/php_codesniffer": "~1.4.3"
  5019.          },
  5020.          "suggest": {
  5021. -            "ext-iconv": "For best performance"
  5022. +            "ml/json-ld": "~1.0"
  5023.          },
  5024. -        "time": "2017-10-11T12:05:26+00:00",
  5025. +        "time": "2015-02-27T09:45:49+00:00",
  5026.          "type": "library",
  5027. -        "extra": {
  5028. -            "branch-alias": {
  5029. -                "dev-master": "1.6-dev"
  5030. -            }
  5031. -        },
  5032.          "installation-source": "dist",
  5033.          "autoload": {
  5034. -            "psr-4": {
  5035. -                "Symfony\\Polyfill\\Iconv\\": ""
  5036. -            },
  5037. -            "files": [
  5038. -                "bootstrap.php"
  5039. -            ]
  5040. +            "psr-0": {
  5041. +                "EasyRdf_": "lib/"
  5042. +            }
  5043.          },
  5044.          "notification-url": "https://packagist.org/downloads/",
  5045.          "license": [
  5046. -            "MIT"
  5047. +            "BSD-3-Clause"
  5048.          ],
  5049.          "authors": [
  5050.              {
  5051. -                "name": "Nicolas Grekas",
  5052. -                "email": "p@tchwork.com"
  5053. +                "name": "Nicholas Humfrey",
  5054. +                "email": "njh@aelius.com",
  5055. +                "homepage": "http://www.aelius.com/njh/",
  5056. +                "role": "Developer"
  5057.              },
  5058.              {
  5059. -                "name": "Symfony Community",
  5060. -                "homepage": "https://symfony.com/contributors"
  5061. +                "name": "Alexey Zakhlestin",
  5062. +                "email": "indeyets@gmail.com",
  5063. +                "role": "Developer"
  5064.              }
  5065.          ],
  5066. -        "description": "Symfony polyfill for the Iconv extension",
  5067. -        "homepage": "https://symfony.com",
  5068. +        "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5069. +        "homepage": "http://www.easyrdf.org/",
  5070.          "keywords": [
  5071. -            "compatibility",
  5072. -            "iconv",
  5073. -            "polyfill",
  5074. -            "portable",
  5075. -            "shim"
  5076. +            "Linked Data",
  5077. +            "RDF",
  5078. +            "Semantic Web",
  5079. +            "Turtle",
  5080. +            "rdfa",
  5081. +            "sparql"
  5082.          ]
  5083.      },
  5084.      {
  5085. -        "name": "symfony-cmf/routing",
  5086. -        "version": "1.4.1",
  5087. -        "version_normalized": "1.4.1.0",
  5088. +        "name": "egulias/email-validator",
  5089. +        "version": "1.2.14",
  5090. +        "version_normalized": "1.2.14.0",
  5091.          "source": {
  5092.              "type": "git",
  5093. -            "url": "https://github.com/symfony-cmf/routing.git",
  5094. -            "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  5095. +            "url": "https://github.com/egulias/EmailValidator.git",
  5096. +            "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9"
  5097.          },
  5098.          "dist": {
  5099.              "type": "zip",
  5100. -            "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  5101. -            "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  5102. +            "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/5642614492f0ca2064c01d60cc33284cc2f731a9",
  5103. +            "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9",
  5104.              "shasum": ""
  5105.          },
  5106.          "require": {
  5107. -            "php": "^5.3.9|^7.0",
  5108. -            "psr/log": "1.*",
  5109. -            "symfony/http-kernel": "^2.2|3.*",
  5110. -            "symfony/routing": "^2.2|3.*"
  5111. +            "doctrine/lexer": "^1.0.1",
  5112. +            "php": ">= 5.3.3"
  5113.          },
  5114.          "require-dev": {
  5115. -            "friendsofsymfony/jsrouting-bundle": "^1.1",
  5116. -            "symfony-cmf/testing": "^1.3",
  5117. -            "symfony/config": "^2.2|3.*",
  5118. -            "symfony/dependency-injection": "^2.0.5|3.*",
  5119. -            "symfony/event-dispatcher": "^2.1|3.*"
  5120. -        },
  5121. -        "suggest": {
  5122. -            "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  5123. +            "phpunit/phpunit": "^4.8.24"
  5124.          },
  5125. -        "time": "2017-05-09T08:10:41+00:00",
  5126. +        "time": "2017-02-03T22:48:59+00:00",
  5127.          "type": "library",
  5128.          "extra": {
  5129.              "branch-alias": {
  5130. -                "dev-master": "1.4-dev"
  5131. +                "dev-master": "2.0.x-dev"
  5132.              }
  5133.          },
  5134.          "installation-source": "dist",
  5135.          "autoload": {
  5136. -            "psr-4": {
  5137. -                "Symfony\\Cmf\\Component\\Routing\\": ""
  5138. +            "psr-0": {
  5139. +                "Egulias\\": "src/"
  5140.              }
  5141.          },
  5142.          "notification-url": "https://packagist.org/downloads/",
  5143. @@ -2956,51 +3405,52 @@
  5144.          ],
  5145.          "authors": [
  5146.              {
  5147. -                "name": "Symfony CMF Community",
  5148. -                "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  5149. +                "name": "Eduardo Gulias Davis"
  5150.              }
  5151.          ],
  5152. -        "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  5153. -        "homepage": "http://cmf.symfony.com",
  5154. +        "description": "A library for validating emails",
  5155. +        "homepage": "https://github.com/egulias/EmailValidator",
  5156.          "keywords": [
  5157. -            "database",
  5158. -            "routing"
  5159. +            "email",
  5160. +            "emailvalidation",
  5161. +            "emailvalidator",
  5162. +            "validation",
  5163. +            "validator"
  5164.          ]
  5165.      },
  5166.      {
  5167. -        "name": "stack/builder",
  5168. -        "version": "v1.0.4",
  5169. -        "version_normalized": "1.0.4.0",
  5170. +        "name": "fabpot/goutte",
  5171. +        "version": "v3.2.1",
  5172. +        "version_normalized": "3.2.1.0",
  5173.          "source": {
  5174.              "type": "git",
  5175. -            "url": "https://github.com/stackphp/builder.git",
  5176. -            "reference": "59fcc9b448a8ce5e338a04c4e2e4aca893e83425"
  5177. +            "url": "https://github.com/FriendsOfPHP/Goutte.git",
  5178. +            "reference": "db5c28f4a010b4161d507d5304e28a7ebf211638"
  5179.          },
  5180.          "dist": {
  5181.              "type": "zip",
  5182. -            "url": "https://api.github.com/repos/stackphp/builder/zipball/59fcc9b448a8ce5e338a04c4e2e4aca893e83425",
  5183. -            "reference": "59fcc9b448a8ce5e338a04c4e2e4aca893e83425",
  5184. +            "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/db5c28f4a010b4161d507d5304e28a7ebf211638",
  5185. +            "reference": "db5c28f4a010b4161d507d5304e28a7ebf211638",
  5186.              "shasum": ""
  5187.          },
  5188.          "require": {
  5189. -            "php": ">=5.3.0",
  5190. -            "symfony/http-foundation": "~2.1|~3.0",
  5191. -            "symfony/http-kernel": "~2.1|~3.0"
  5192. -        },
  5193. -        "require-dev": {
  5194. -            "silex/silex": "~1.0"
  5195. +            "guzzlehttp/guzzle": "^6.0",
  5196. +            "php": ">=5.5.0",
  5197. +            "symfony/browser-kit": "~2.1|~3.0",
  5198. +            "symfony/css-selector": "~2.1|~3.0",
  5199. +            "symfony/dom-crawler": "~2.1|~3.0"
  5200.          },
  5201. -        "time": "2016-06-02T06:58:42+00:00",
  5202. -        "type": "library",
  5203. +        "time": "2017-01-03T13:21:43+00:00",
  5204. +        "type": "application",
  5205.          "extra": {
  5206.              "branch-alias": {
  5207. -                "dev-master": "1.0-dev"
  5208. +                "dev-master": "3.2-dev"
  5209.              }
  5210.          },
  5211.          "installation-source": "dist",
  5212.          "autoload": {
  5213. -            "psr-0": {
  5214. -                "Stack": "src"
  5215. +            "psr-4": {
  5216. +                "Goutte\\": "Goutte"
  5217.              }
  5218.          },
  5219.          "notification-url": "https://packagist.org/downloads/",
  5220. @@ -3009,115 +3459,101 @@
  5221.          ],
  5222.          "authors": [
  5223.              {
  5224. -                "name": "Igor Wiedler",
  5225. -                "email": "igor@wiedler.ch"
  5226. +                "name": "Fabien Potencier",
  5227. +                "email": "fabien@symfony.com"
  5228.              }
  5229.          ],
  5230. -        "description": "Builder for stack middlewares based on HttpKernelInterface.",
  5231. +        "description": "A simple PHP Web Scraper",
  5232. +        "homepage": "https://github.com/FriendsOfPHP/Goutte",
  5233.          "keywords": [
  5234. -            "stack"
  5235. +            "scraper"
  5236.          ]
  5237.      },
  5238.      {
  5239. -        "name": "masterminds/html5",
  5240. -        "version": "2.3.0",
  5241. -        "version_normalized": "2.3.0.0",
  5242. +        "name": "gabordemooij/redbean",
  5243. +        "version": "v4.3.4",
  5244. +        "version_normalized": "4.3.4.0",
  5245.          "source": {
  5246.              "type": "git",
  5247. -            "url": "https://github.com/Masterminds/html5-php.git",
  5248. -            "reference": "2c37c6c520b995b761674de3be8455a381679067"
  5249. +            "url": "https://github.com/gabordemooij/redbean.git",
  5250. +            "reference": "d0944d7f966d7f45a0d973981fe3f64aff0050f0"
  5251.          },
  5252.          "dist": {
  5253.              "type": "zip",
  5254. -            "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  5255. -            "reference": "2c37c6c520b995b761674de3be8455a381679067",
  5256. +            "url": "https://api.github.com/repos/gabordemooij/redbean/zipball/d0944d7f966d7f45a0d973981fe3f64aff0050f0",
  5257. +            "reference": "d0944d7f966d7f45a0d973981fe3f64aff0050f0",
  5258.              "shasum": ""
  5259.          },
  5260.          "require": {
  5261. -            "ext-libxml": "*",
  5262. -            "php": ">=5.3.0"
  5263. -        },
  5264. -        "require-dev": {
  5265. -            "phpunit/phpunit": "4.*",
  5266. -            "sami/sami": "~2.0",
  5267. -            "satooshi/php-coveralls": "1.0.*"
  5268. +            "php": ">=5.3.4"
  5269.          },
  5270. -        "time": "2017-09-04T12:26:28+00:00",
  5271. +        "time": "2017-03-07T22:26:54+00:00",
  5272.          "type": "library",
  5273. -        "extra": {
  5274. -            "branch-alias": {
  5275. -                "dev-master": "2.2-dev"
  5276. -            }
  5277. -        },
  5278.          "installation-source": "dist",
  5279.          "autoload": {
  5280.              "psr-4": {
  5281. -                "Masterminds\\": "src"
  5282. +                "RedBeanPHP\\": "RedBeanPHP"
  5283.              }
  5284.          },
  5285.          "notification-url": "https://packagist.org/downloads/",
  5286.          "license": [
  5287. -            "MIT"
  5288. +            "New BSD and GPLv2"
  5289.          ],
  5290.          "authors": [
  5291.              {
  5292. -                "name": "Matt Butcher",
  5293. -                "email": "technosophos@gmail.com"
  5294. -            },
  5295. -            {
  5296. -                "name": "Asmir Mustafic",
  5297. -                "email": "goetas@gmail.com"
  5298. -            },
  5299. -            {
  5300. -                "name": "Matt Farina",
  5301. -                "email": "matt@mattfarina.com"
  5302. +                "name": "Gabor de Mooij",
  5303. +                "email": "gabor@redbeanphp.com",
  5304. +                "homepage": "http://redbeanphp.com"
  5305.              }
  5306.          ],
  5307. -        "description": "An HTML5 parser and serializer.",
  5308. -        "homepage": "http://masterminds.github.io/html5-php",
  5309. +        "description": "RedBeanPHP ORM",
  5310. +        "homepage": "http://redbeanphp.com/",
  5311.          "keywords": [
  5312. -            "HTML5",
  5313. -            "dom",
  5314. -            "html",
  5315. -            "parser",
  5316. -            "querypath",
  5317. -            "serializer",
  5318. -            "xml"
  5319. +            "orm"
  5320.          ]
  5321.      },
  5322.      {
  5323. -        "name": "egulias/email-validator",
  5324. -        "version": "1.2.14",
  5325. -        "version_normalized": "1.2.14.0",
  5326. +        "name": "guzzlehttp/guzzle",
  5327. +        "version": "6.3.0",
  5328. +        "version_normalized": "6.3.0.0",
  5329.          "source": {
  5330.              "type": "git",
  5331. -            "url": "https://github.com/egulias/EmailValidator.git",
  5332. -            "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9"
  5333. +            "url": "https://github.com/guzzle/guzzle.git",
  5334. +            "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699"
  5335.          },
  5336.          "dist": {
  5337.              "type": "zip",
  5338. -            "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/5642614492f0ca2064c01d60cc33284cc2f731a9",
  5339. -            "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9",
  5340. +            "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  5341. +            "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  5342.              "shasum": ""
  5343.          },
  5344.          "require": {
  5345. -            "doctrine/lexer": "^1.0.1",
  5346. -            "php": ">= 5.3.3"
  5347. +            "guzzlehttp/promises": "^1.0",
  5348. +            "guzzlehttp/psr7": "^1.4",
  5349. +            "php": ">=5.5"
  5350.          },
  5351.          "require-dev": {
  5352. -            "phpunit/phpunit": "^4.8.24"
  5353. +            "ext-curl": "*",
  5354. +            "phpunit/phpunit": "^4.0 || ^5.0",
  5355. +            "psr/log": "^1.0"
  5356.          },
  5357. -        "time": "2017-02-03T22:48:59+00:00",
  5358. +        "suggest": {
  5359. +            "psr/log": "Required for using the Log middleware"
  5360. +        },
  5361. +        "time": "2017-06-22T18:50:49+00:00",
  5362.          "type": "library",
  5363.          "extra": {
  5364.              "branch-alias": {
  5365. -                "dev-master": "2.0.x-dev"
  5366. +                "dev-master": "6.2-dev"
  5367.              }
  5368.          },
  5369.          "installation-source": "dist",
  5370.          "autoload": {
  5371. -            "psr-0": {
  5372. -                "Egulias\\": "src/"
  5373. +            "files": [
  5374. +                "src/functions_include.php"
  5375. +            ],
  5376. +            "psr-4": {
  5377. +                "GuzzleHttp\\": "src/"
  5378.              }
  5379.          },
  5380.          "notification-url": "https://packagist.org/downloads/",
  5381. @@ -3126,116 +3562,116 @@
  5382.          ],
  5383.          "authors": [
  5384.              {
  5385. -                "name": "Eduardo Gulias Davis"
  5386. +                "name": "Michael Dowling",
  5387. +                "email": "mtdowling@gmail.com",
  5388. +                "homepage": "https://github.com/mtdowling"
  5389.              }
  5390.          ],
  5391. -        "description": "A library for validating emails",
  5392. -        "homepage": "https://github.com/egulias/EmailValidator",
  5393. +        "description": "Guzzle is a PHP HTTP client library",
  5394. +        "homepage": "http://guzzlephp.org/",
  5395.          "keywords": [
  5396. -            "email",
  5397. -            "emailvalidation",
  5398. -            "emailvalidator",
  5399. -            "validation",
  5400. -            "validator"
  5401. +            "client",
  5402. +            "curl",
  5403. +            "framework",
  5404. +            "http",
  5405. +            "http client",
  5406. +            "rest",
  5407. +            "web service"
  5408.          ]
  5409.      },
  5410.      {
  5411. -        "name": "easyrdf/easyrdf",
  5412. -        "version": "0.9.1",
  5413. -        "version_normalized": "0.9.1.0",
  5414. +        "name": "guzzlehttp/promises",
  5415. +        "version": "v1.3.1",
  5416. +        "version_normalized": "1.3.1.0",
  5417.          "source": {
  5418.              "type": "git",
  5419. -            "url": "https://github.com/njh/easyrdf.git",
  5420. -            "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5421. +            "url": "https://github.com/guzzle/promises.git",
  5422. +            "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  5423.          },
  5424.          "dist": {
  5425.              "type": "zip",
  5426. -            "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5427. -            "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5428. +            "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5429. +            "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5430.              "shasum": ""
  5431.          },
  5432.          "require": {
  5433. -            "ext-mbstring": "*",
  5434. -            "ext-pcre": "*",
  5435. -            "php": ">=5.2.8"
  5436. +            "php": ">=5.5.0"
  5437.          },
  5438.          "require-dev": {
  5439. -            "phpunit/phpunit": "~3.5",
  5440. -            "sami/sami": "~1.4",
  5441. -            "squizlabs/php_codesniffer": "~1.4.3"
  5442. -        },
  5443. -        "suggest": {
  5444. -            "ml/json-ld": "~1.0"
  5445. +            "phpunit/phpunit": "^4.0"
  5446.          },
  5447. -        "time": "2015-02-27T09:45:49+00:00",
  5448. +        "time": "2016-12-20T10:07:11+00:00",
  5449.          "type": "library",
  5450. +        "extra": {
  5451. +            "branch-alias": {
  5452. +                "dev-master": "1.4-dev"
  5453. +            }
  5454. +        },
  5455.          "installation-source": "dist",
  5456.          "autoload": {
  5457. -            "psr-0": {
  5458. -                "EasyRdf_": "lib/"
  5459. -            }
  5460. +            "psr-4": {
  5461. +                "GuzzleHttp\\Promise\\": "src/"
  5462. +            },
  5463. +            "files": [
  5464. +                "src/functions_include.php"
  5465. +            ]
  5466.          },
  5467.          "notification-url": "https://packagist.org/downloads/",
  5468.          "license": [
  5469. -            "BSD-3-Clause"
  5470. +            "MIT"
  5471.          ],
  5472.          "authors": [
  5473.              {
  5474. -                "name": "Nicholas Humfrey",
  5475. -                "email": "njh@aelius.com",
  5476. -                "homepage": "http://www.aelius.com/njh/",
  5477. -                "role": "Developer"
  5478. -            },
  5479. -            {
  5480. -                "name": "Alexey Zakhlestin",
  5481. -                "email": "indeyets@gmail.com",
  5482. -                "role": "Developer"
  5483. +                "name": "Michael Dowling",
  5484. +                "email": "mtdowling@gmail.com",
  5485. +                "homepage": "https://github.com/mtdowling"
  5486.              }
  5487.          ],
  5488. -        "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5489. -        "homepage": "http://www.easyrdf.org/",
  5490. +        "description": "Guzzle promises library",
  5491.          "keywords": [
  5492. -            "Linked Data",
  5493. -            "RDF",
  5494. -            "Semantic Web",
  5495. -            "Turtle",
  5496. -            "rdfa",
  5497. -            "sparql"
  5498. +            "promise"
  5499.          ]
  5500.      },
  5501.      {
  5502. -        "name": "doctrine/inflector",
  5503. -        "version": "v1.2.0",
  5504. -        "version_normalized": "1.2.0.0",
  5505. +        "name": "guzzlehttp/psr7",
  5506. +        "version": "1.4.2",
  5507. +        "version_normalized": "1.4.2.0",
  5508.          "source": {
  5509.              "type": "git",
  5510. -            "url": "https://github.com/doctrine/inflector.git",
  5511. -            "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  5512. +            "url": "https://github.com/guzzle/psr7.git",
  5513. +            "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  5514.          },
  5515.          "dist": {
  5516.              "type": "zip",
  5517. -            "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  5518. -            "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  5519. +            "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  5520. +            "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  5521.              "shasum": ""
  5522.          },
  5523.          "require": {
  5524. -            "php": "^7.0"
  5525. +            "php": ">=5.4.0",
  5526. +            "psr/http-message": "~1.0"
  5527. +        },
  5528. +        "provide": {
  5529. +            "psr/http-message-implementation": "1.0"
  5530.          },
  5531.          "require-dev": {
  5532. -            "phpunit/phpunit": "^6.2"
  5533. +            "phpunit/phpunit": "~4.0"
  5534.          },
  5535. -        "time": "2017-07-22T12:18:28+00:00",
  5536. +        "time": "2017-03-20T17:10:46+00:00",
  5537.          "type": "library",
  5538.          "extra": {
  5539.              "branch-alias": {
  5540. -                "dev-master": "1.2.x-dev"
  5541. +                "dev-master": "1.4-dev"
  5542.              }
  5543.          },
  5544.          "installation-source": "dist",
  5545.          "autoload": {
  5546.              "psr-4": {
  5547. -                "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  5548. -            }
  5549. +                "GuzzleHttp\\Psr7\\": "src/"
  5550. +            },
  5551. +            "files": [
  5552. +                "src/functions_include.php"
  5553. +            ]
  5554.          },
  5555.          "notification-url": "https://packagist.org/downloads/",
  5556.          "license": [
  5557. @@ -3243,148 +3679,103 @@
  5558.          ],
  5559.          "authors": [
  5560.              {
  5561. -                "name": "Roman Borschel",
  5562. -                "email": "roman@code-factory.org"
  5563. -            },
  5564. -            {
  5565. -                "name": "Benjamin Eberlei",
  5566. -                "email": "kontakt@beberlei.de"
  5567. -            },
  5568. -            {
  5569. -                "name": "Guilherme Blanco",
  5570. -                "email": "guilhermeblanco@gmail.com"
  5571. -            },
  5572. -            {
  5573. -                "name": "Jonathan Wage",
  5574. -                "email": "jonwage@gmail.com"
  5575. +                "name": "Michael Dowling",
  5576. +                "email": "mtdowling@gmail.com",
  5577. +                "homepage": "https://github.com/mtdowling"
  5578.              },
  5579.              {
  5580. -                "name": "Johannes Schmitt",
  5581. -                "email": "schmittjoh@gmail.com"
  5582. +                "name": "Tobias Schultze",
  5583. +                "homepage": "https://github.com/Tobion"
  5584.              }
  5585.          ],
  5586. -        "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  5587. -        "homepage": "http://www.doctrine-project.org",
  5588. +        "description": "PSR-7 message implementation that also provides common utility methods",
  5589.          "keywords": [
  5590. -            "inflection",
  5591. -            "pluralize",
  5592. -            "singularize",
  5593. -            "string"
  5594. +            "http",
  5595. +            "message",
  5596. +            "request",
  5597. +            "response",
  5598. +            "stream",
  5599. +            "uri",
  5600. +            "url"
  5601.          ]
  5602.      },
  5603.      {
  5604. -        "name": "doctrine/cache",
  5605. -        "version": "v1.7.1",
  5606. -        "version_normalized": "1.7.1.0",
  5607. +        "name": "jakub-onderka/php-console-color",
  5608. +        "version": "0.1",
  5609. +        "version_normalized": "0.1.0.0",
  5610.          "source": {
  5611.              "type": "git",
  5612. -            "url": "https://github.com/doctrine/cache.git",
  5613. -            "reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a"
  5614. +            "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  5615. +            "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1"
  5616.          },
  5617.          "dist": {
  5618.              "type": "zip",
  5619. -            "url": "https://api.github.com/repos/doctrine/cache/zipball/b3217d58609e9c8e661cd41357a54d926c4a2a1a",
  5620. -            "reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a",
  5621. +            "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1",
  5622. +            "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1",
  5623.              "shasum": ""
  5624.          },
  5625.          "require": {
  5626. -            "php": "~7.1"
  5627. -        },
  5628. -        "conflict": {
  5629. -            "doctrine/common": ">2.2,<2.4"
  5630. +            "php": ">=5.3.2"
  5631.          },
  5632.          "require-dev": {
  5633. -            "alcaeus/mongo-php-adapter": "^1.1",
  5634. -            "mongodb/mongodb": "^1.1",
  5635. -            "phpunit/phpunit": "^5.7",
  5636. -            "predis/predis": "~1.0"
  5637. -        },
  5638. -        "suggest": {
  5639. -            "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  5640. +            "jakub-onderka/php-code-style": "1.0",
  5641. +            "jakub-onderka/php-parallel-lint": "0.*",
  5642. +            "jakub-onderka/php-var-dump-check": "0.*",
  5643. +            "phpunit/phpunit": "3.7.*",
  5644. +            "squizlabs/php_codesniffer": "1.*"
  5645.          },
  5646. -        "time": "2017-08-25T07:02:50+00:00",
  5647. +        "time": "2014-04-08T15:00:19+00:00",
  5648.          "type": "library",
  5649. -        "extra": {
  5650. -            "branch-alias": {
  5651. -                "dev-master": "1.7.x-dev"
  5652. -            }
  5653. -        },
  5654.          "installation-source": "dist",
  5655.          "autoload": {
  5656. -            "psr-4": {
  5657. -                "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  5658. +            "psr-0": {
  5659. +                "JakubOnderka\\PhpConsoleColor": "src/"
  5660.              }
  5661.          },
  5662.          "notification-url": "https://packagist.org/downloads/",
  5663.          "license": [
  5664. -            "MIT"
  5665. +            "BSD-2-Clause"
  5666.          ],
  5667.          "authors": [
  5668.              {
  5669. -                "name": "Roman Borschel",
  5670. -                "email": "roman@code-factory.org"
  5671. -            },
  5672. -            {
  5673. -                "name": "Benjamin Eberlei",
  5674. -                "email": "kontakt@beberlei.de"
  5675. -            },
  5676. -            {
  5677. -                "name": "Guilherme Blanco",
  5678. -                "email": "guilhermeblanco@gmail.com"
  5679. -            },
  5680. -            {
  5681. -                "name": "Jonathan Wage",
  5682. -                "email": "jonwage@gmail.com"
  5683. -            },
  5684. -            {
  5685. -                "name": "Johannes Schmitt",
  5686. -                "email": "schmittjoh@gmail.com"
  5687. +                "name": "Jakub Onderka",
  5688. +                "email": "jakub.onderka@gmail.com",
  5689. +                "homepage": "http://www.acci.cz"
  5690.              }
  5691. -        ],
  5692. -        "description": "Caching library offering an object-oriented API for many cache backends",
  5693. -        "homepage": "http://www.doctrine-project.org",
  5694. -        "keywords": [
  5695. -            "cache",
  5696. -            "caching"
  5697.          ]
  5698.      },
  5699.      {
  5700. -        "name": "doctrine/common",
  5701. -        "version": "v2.8.1",
  5702. -        "version_normalized": "2.8.1.0",
  5703. +        "name": "jakub-onderka/php-console-highlighter",
  5704. +        "version": "v0.3.2",
  5705. +        "version_normalized": "0.3.2.0",
  5706.          "source": {
  5707.              "type": "git",
  5708. -            "url": "https://github.com/doctrine/common.git",
  5709. -            "reference": "f68c297ce6455e8fd794aa8ffaf9fa458f6ade66"
  5710. +            "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  5711. +            "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5"
  5712.          },
  5713.          "dist": {
  5714.              "type": "zip",
  5715. -            "url": "https://api.github.com/repos/doctrine/common/zipball/f68c297ce6455e8fd794aa8ffaf9fa458f6ade66",
  5716. -            "reference": "f68c297ce6455e8fd794aa8ffaf9fa458f6ade66",
  5717. +            "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  5718. +            "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  5719.              "shasum": ""
  5720.          },
  5721.          "require": {
  5722. -            "doctrine/annotations": "1.*",
  5723. -            "doctrine/cache": "1.*",
  5724. -            "doctrine/collections": "1.*",
  5725. -            "doctrine/inflector": "1.*",
  5726. -            "doctrine/lexer": "1.*",
  5727. -            "php": "~7.1"
  5728. +            "jakub-onderka/php-console-color": "~0.1",
  5729. +            "php": ">=5.3.0"
  5730.          },
  5731.          "require-dev": {
  5732. -            "phpunit/phpunit": "^5.7"
  5733. +            "jakub-onderka/php-code-style": "~1.0",
  5734. +            "jakub-onderka/php-parallel-lint": "~0.5",
  5735. +            "jakub-onderka/php-var-dump-check": "~0.1",
  5736. +            "phpunit/phpunit": "~4.0",
  5737. +            "squizlabs/php_codesniffer": "~1.5"
  5738.          },
  5739. -        "time": "2017-08-31T08:43:38+00:00",
  5740. +        "time": "2015-04-20T18:58:01+00:00",
  5741.          "type": "library",
  5742. -        "extra": {
  5743. -            "branch-alias": {
  5744. -                "dev-master": "2.8.x-dev"
  5745. -            }
  5746. -        },
  5747.          "installation-source": "dist",
  5748.          "autoload": {
  5749. -            "psr-4": {
  5750. -                "Doctrine\\Common\\": "lib/Doctrine/Common"
  5751. +            "psr-0": {
  5752. +                "JakubOnderka\\PhpConsoleHighlighter": "src/"
  5753.              }
  5754.          },
  5755.          "notification-url": "https://packagist.org/downloads/",
  5756. @@ -3393,69 +3784,48 @@
  5757.          ],
  5758.          "authors": [
  5759.              {
  5760. -                "name": "Roman Borschel",
  5761. -                "email": "roman@code-factory.org"
  5762. -            },
  5763. -            {
  5764. -                "name": "Benjamin Eberlei",
  5765. -                "email": "kontakt@beberlei.de"
  5766. -            },
  5767. -            {
  5768. -                "name": "Guilherme Blanco",
  5769. -                "email": "guilhermeblanco@gmail.com"
  5770. -            },
  5771. -            {
  5772. -                "name": "Jonathan Wage",
  5773. -                "email": "jonwage@gmail.com"
  5774. -            },
  5775. -            {
  5776. -                "name": "Johannes Schmitt",
  5777. -                "email": "schmittjoh@gmail.com"
  5778. +                "name": "Jakub Onderka",
  5779. +                "email": "acci@acci.cz",
  5780. +                "homepage": "http://www.acci.cz/"
  5781.              }
  5782. -        ],
  5783. -        "description": "Common Library for Doctrine projects",
  5784. -        "homepage": "http://www.doctrine-project.org",
  5785. -        "keywords": [
  5786. -            "annotations",
  5787. -            "collections",
  5788. -            "eventmanager",
  5789. -            "persistence",
  5790. -            "spl"
  5791.          ]
  5792.      },
  5793.      {
  5794. -        "name": "composer/semver",
  5795. -        "version": "1.4.2",
  5796. -        "version_normalized": "1.4.2.0",
  5797. +        "name": "jcalderonzumba/gastonjs",
  5798. +        "version": "v1.0.3",
  5799. +        "version_normalized": "1.0.3.0",
  5800.          "source": {
  5801.              "type": "git",
  5802. -            "url": "https://github.com/composer/semver.git",
  5803. -            "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  5804. +            "url": "https://github.com/jcalderonzumba/gastonjs.git",
  5805. +            "reference": "4ff4a788d4995ae0d4b45fdcb1b76650e2eec72a"
  5806.          },
  5807.          "dist": {
  5808.              "type": "zip",
  5809. -            "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  5810. -            "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  5811. +            "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/4ff4a788d4995ae0d4b45fdcb1b76650e2eec72a",
  5812. +            "reference": "4ff4a788d4995ae0d4b45fdcb1b76650e2eec72a",
  5813.              "shasum": ""
  5814.          },
  5815.          "require": {
  5816. -            "php": "^5.3.2 || ^7.0"
  5817. +            "guzzlehttp/guzzle": "~5.0|~6.0",
  5818. +            "php": ">=5.4"
  5819.          },
  5820.          "require-dev": {
  5821. -            "phpunit/phpunit": "^4.5 || ^5.0.5",
  5822. -            "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  5823. +            "phpunit/phpunit": "~4.6",
  5824. +            "silex/silex": "~1.2",
  5825. +            "symfony/phpunit-bridge": "~2.7",
  5826. +            "symfony/process": "~2.1"
  5827.          },
  5828. -        "time": "2016-08-30T16:08:34+00:00",
  5829. -        "type": "library",
  5830. +        "time": "2016-05-04T16:27:07+00:00",
  5831. +        "type": "phantomjs-api",
  5832.          "extra": {
  5833.              "branch-alias": {
  5834. -                "dev-master": "1.x-dev"
  5835. +                "dev-master": "1.1.x-dev"
  5836.              }
  5837.          },
  5838.          "installation-source": "dist",
  5839.          "autoload": {
  5840.              "psr-4": {
  5841. -                "Composer\\Semver\\": "src"
  5842. +                "Zumba\\GastonJS\\": "src"
  5843.              }
  5844.          },
  5845.          "notification-url": "https://packagist.org/downloads/",
  5846. @@ -3464,64 +3834,57 @@
  5847.          ],
  5848.          "authors": [
  5849.              {
  5850. -                "name": "Nils Adermann",
  5851. -                "email": "naderman@naderman.de",
  5852. -                "homepage": "http://www.naderman.de"
  5853. -            },
  5854. -            {
  5855. -                "name": "Jordi Boggiano",
  5856. -                "email": "j.boggiano@seld.be",
  5857. -                "homepage": "http://seld.be"
  5858. -            },
  5859. -            {
  5860. -                "name": "Rob Bast",
  5861. -                "email": "rob.bast@gmail.com",
  5862. -                "homepage": "http://robbast.nl"
  5863. +                "name": "Juan Francisco Calderón Zumba",
  5864. +                "email": "juanfcz@gmail.com",
  5865. +                "homepage": "http://github.com/jcalderonzumba"
  5866.              }
  5867.          ],
  5868. -        "description": "Semver library that offers utilities, version constraint parsing and validation.",
  5869. +        "description": "PhantomJS API based server for webpage automation",
  5870. +        "homepage": "https://github.com/jcalderonzumba/gastonjs",
  5871.          "keywords": [
  5872. -            "semantic",
  5873. -            "semver",
  5874. -            "validation",
  5875. -            "versioning"
  5876. +            "api",
  5877. +            "automation",
  5878. +            "browser",
  5879. +            "headless",
  5880. +            "phantomjs"
  5881.          ]
  5882.      },
  5883.      {
  5884. -        "name": "asm89/stack-cors",
  5885. -        "version": "1.1.0",
  5886. -        "version_normalized": "1.1.0.0",
  5887. +        "name": "jcalderonzumba/mink-phantomjs-driver",
  5888. +        "version": "v0.3.3",
  5889. +        "version_normalized": "0.3.3.0",
  5890.          "source": {
  5891.              "type": "git",
  5892. -            "url": "https://github.com/asm89/stack-cors.git",
  5893. -            "reference": "65ccbd455370f043c2e3b93482a3813603d68731"
  5894. +            "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  5895. +            "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  5896.          },
  5897.          "dist": {
  5898.              "type": "zip",
  5899. -            "url": "https://api.github.com/repos/asm89/stack-cors/zipball/65ccbd455370f043c2e3b93482a3813603d68731",
  5900. -            "reference": "65ccbd455370f043c2e3b93482a3813603d68731",
  5901. +            "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  5902. +            "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  5903.              "shasum": ""
  5904.          },
  5905.          "require": {
  5906. -            "php": ">=5.5.9",
  5907. -            "symfony/http-foundation": "~2.7|~3.0",
  5908. -            "symfony/http-kernel": "~2.7|~3.0"
  5909. +            "behat/mink": "~1.7",
  5910. +            "jcalderonzumba/gastonjs": "~1.0",
  5911. +            "php": ">=5.4",
  5912. +            "twig/twig": "~1.20|~2.0"
  5913.          },
  5914.          "require-dev": {
  5915. -            "phpunit/phpunit": "^5.0 || ^4.8.10",
  5916. -            "squizlabs/php_codesniffer": "^2.3"
  5917. +            "mink/driver-testsuite": "dev-master",
  5918. +            "phpunit/phpunit": "~4.6"
  5919.          },
  5920. -        "time": "2017-04-11T20:03:41+00:00",
  5921. -        "type": "library",
  5922. +        "time": "2016-12-01T10:57:30+00:00",
  5923. +        "type": "mink-driver",
  5924.          "extra": {
  5925.              "branch-alias": {
  5926. -                "dev-master": "1.1-dev"
  5927. +                "dev-master": "0.4.x-dev"
  5928.              }
  5929.          },
  5930.          "installation-source": "dist",
  5931.          "autoload": {
  5932.              "psr-4": {
  5933. -                "Asm89\\Stack\\": "src/Asm89/Stack/"
  5934. +                "Zumba\\Mink\\Driver\\": "src"
  5935.              }
  5936.          },
  5937.          "notification-url": "https://packagist.org/downloads/",
  5938. @@ -3530,55 +3893,57 @@
  5939.          ],
  5940.          "authors": [
  5941.              {
  5942. -                "name": "Alexander",
  5943. -                "email": "iam.asm89@gmail.com"
  5944. +                "name": "Juan Francisco Calderón Zumba",
  5945. +                "email": "juanfcz@gmail.com",
  5946. +                "homepage": "http://github.com/jcalderonzumba"
  5947.              }
  5948.          ],
  5949. -        "description": "Cross-origin resource sharing library and stack middleware",
  5950. -        "homepage": "https://github.com/asm89/stack-cors",
  5951. +        "description": "PhantomJS driver for Mink framework",
  5952. +        "homepage": "http://mink.behat.org/",
  5953.          "keywords": [
  5954. -            "cors",
  5955. -            "stack"
  5956. +            "ajax",
  5957. +            "browser",
  5958. +            "headless",
  5959. +            "javascript",
  5960. +            "phantomjs",
  5961. +            "testing"
  5962.          ]
  5963.      },
  5964.      {
  5965. -        "name": "phpdocumentor/reflection-docblock",
  5966. -        "version": "2.0.5",
  5967. -        "version_normalized": "2.0.5.0",
  5968. +        "name": "masterminds/html5",
  5969. +        "version": "2.3.0",
  5970. +        "version_normalized": "2.3.0.0",
  5971.          "source": {
  5972.              "type": "git",
  5973. -            "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5974. -            "reference": "e6a969a640b00d8daa3c66518b0405fb41ae0c4b"
  5975. +            "url": "https://github.com/Masterminds/html5-php.git",
  5976. +            "reference": "2c37c6c520b995b761674de3be8455a381679067"
  5977.          },
  5978.          "dist": {
  5979.              "type": "zip",
  5980. -            "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/e6a969a640b00d8daa3c66518b0405fb41ae0c4b",
  5981. -            "reference": "e6a969a640b00d8daa3c66518b0405fb41ae0c4b",
  5982. +            "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  5983. +            "reference": "2c37c6c520b995b761674de3be8455a381679067",
  5984.              "shasum": ""
  5985.          },
  5986.          "require": {
  5987. -            "php": ">=5.3.3"
  5988. +            "ext-libxml": "*",
  5989. +            "php": ">=5.3.0"
  5990.          },
  5991.          "require-dev": {
  5992. -            "phpunit/phpunit": "~4.0"
  5993. -        },
  5994. -        "suggest": {
  5995. -            "dflydev/markdown": "~1.0",
  5996. -            "erusev/parsedown": "~1.0"
  5997. +            "phpunit/phpunit": "4.*",
  5998. +            "sami/sami": "~2.0",
  5999. +            "satooshi/php-coveralls": "1.0.*"
  6000.          },
  6001. -        "time": "2016-01-25T08:17:30+00:00",
  6002. +        "time": "2017-09-04T12:26:28+00:00",
  6003.          "type": "library",
  6004.          "extra": {
  6005.              "branch-alias": {
  6006. -                "dev-master": "2.0.x-dev"
  6007. +                "dev-master": "2.2-dev"
  6008.              }
  6009.          },
  6010.          "installation-source": "dist",
  6011.          "autoload": {
  6012. -            "psr-0": {
  6013. -                "phpDocumentor": [
  6014. -                    "src/"
  6015. -                ]
  6016. +            "psr-4": {
  6017. +                "Masterminds\\": "src"
  6018.              }
  6019.          },
  6020.          "notification-url": "https://packagist.org/downloads/",
  6021. @@ -3587,159 +3952,162 @@
  6022.          ],
  6023.          "authors": [
  6024.              {
  6025. -                "name": "Mike van Riel",
  6026. -                "email": "mike.vanriel@naenius.com"
  6027. +                "name": "Matt Butcher",
  6028. +                "email": "technosophos@gmail.com"
  6029. +            },
  6030. +            {
  6031. +                "name": "Asmir Mustafic",
  6032. +                "email": "goetas@gmail.com"
  6033. +            },
  6034. +            {
  6035. +                "name": "Matt Farina",
  6036. +                "email": "matt@mattfarina.com"
  6037.              }
  6038. +        ],
  6039. +        "description": "An HTML5 parser and serializer.",
  6040. +        "homepage": "http://masterminds.github.io/html5-php",
  6041. +        "keywords": [
  6042. +            "HTML5",
  6043. +            "dom",
  6044. +            "html",
  6045. +            "parser",
  6046. +            "querypath",
  6047. +            "serializer",
  6048. +            "xml"
  6049.          ]
  6050.      },
  6051.      {
  6052. -        "name": "pear/console_table",
  6053. -        "version": "v1.3.0",
  6054. -        "version_normalized": "1.3.0.0",
  6055. +        "name": "mikey179/vfsStream",
  6056. +        "version": "v1.6.5",
  6057. +        "version_normalized": "1.6.5.0",
  6058.          "source": {
  6059.              "type": "git",
  6060. -            "url": "https://github.com/pear/Console_Table.git",
  6061. -            "reference": "64100b9ee81852f4fa17823e55d0b385a544f976"
  6062. +            "url": "https://github.com/mikey179/vfsStream.git",
  6063. +            "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
  6064.          },
  6065.          "dist": {
  6066.              "type": "zip",
  6067. -            "url": "https://api.github.com/repos/pear/Console_Table/zipball/64100b9ee81852f4fa17823e55d0b385a544f976",
  6068. -            "reference": "64100b9ee81852f4fa17823e55d0b385a544f976",
  6069. +            "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  6070. +            "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  6071.              "shasum": ""
  6072.          },
  6073.          "require": {
  6074. -            "php": ">=5.2.0"
  6075. +            "php": ">=5.3.0"
  6076.          },
  6077. -        "suggest": {
  6078. -            "pear/Console_Color2": ">=0.1.2"
  6079. +        "require-dev": {
  6080. +            "phpunit/phpunit": "~4.5"
  6081.          },
  6082. -        "time": "2016-01-21T16:14:31+00:00",
  6083. +        "time": "2017-08-01T08:02:14+00:00",
  6084.          "type": "library",
  6085. +        "extra": {
  6086. +            "branch-alias": {
  6087. +                "dev-master": "1.6.x-dev"
  6088. +            }
  6089. +        },
  6090.          "installation-source": "dist",
  6091.          "autoload": {
  6092. -            "classmap": [
  6093. -                "Table.php"
  6094. -            ]
  6095. +            "psr-0": {
  6096. +                "org\\bovigo\\vfs\\": "src/main/php"
  6097. +            }
  6098.          },
  6099.          "notification-url": "https://packagist.org/downloads/",
  6100.          "license": [
  6101. -            "BSD-2-Clause"
  6102. +            "BSD-3-Clause"
  6103.          ],
  6104.          "authors": [
  6105.              {
  6106. -                "name": "Jan Schneider",
  6107. -                "homepage": "http://pear.php.net/user/yunosh"
  6108. -            },
  6109. -            {
  6110. -                "name": "Tal Peer",
  6111. -                "homepage": "http://pear.php.net/user/tal"
  6112. -            },
  6113. -            {
  6114. -                "name": "Xavier Noguer",
  6115. -                "homepage": "http://pear.php.net/user/xnoguer"
  6116. -            },
  6117. -            {
  6118. -                "name": "Richard Heyes",
  6119. -                "homepage": "http://pear.php.net/user/richard"
  6120. +                "name": "Frank Kleine",
  6121. +                "homepage": "http://frankkleine.de/",
  6122. +                "role": "Developer"
  6123.              }
  6124.          ],
  6125. -        "description": "Library that makes it easy to build console style tables.",
  6126. -        "homepage": "http://pear.php.net/package/Console_Table/",
  6127. -        "keywords": [
  6128. -            "console"
  6129. -        ]
  6130. +        "description": "Virtual file system to mock the real file system in unit tests.",
  6131. +        "homepage": "http://vfs.bovigo.org/"
  6132.      },
  6133.      {
  6134. -        "name": "consolidation/output-formatters",
  6135. -        "version": "3.1.12",
  6136. -        "version_normalized": "3.1.12.0",
  6137. +        "name": "nikic/php-parser",
  6138. +        "version": "v3.1.1",
  6139. +        "version_normalized": "3.1.1.0",
  6140.          "source": {
  6141.              "type": "git",
  6142. -            "url": "https://github.com/consolidation/output-formatters.git",
  6143. -            "reference": "88ef346a1cefb92aab8b57a3214a6d5fc63f5d2a"
  6144. +            "url": "https://github.com/nikic/PHP-Parser.git",
  6145. +            "reference": "a1e8e1a30e1352f118feff1a8481066ddc2f234a"
  6146.          },
  6147.          "dist": {
  6148.              "type": "zip",
  6149. -            "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/88ef346a1cefb92aab8b57a3214a6d5fc63f5d2a",
  6150. -            "reference": "88ef346a1cefb92aab8b57a3214a6d5fc63f5d2a",
  6151. +            "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a1e8e1a30e1352f118feff1a8481066ddc2f234a",
  6152. +            "reference": "a1e8e1a30e1352f118feff1a8481066ddc2f234a",
  6153.              "shasum": ""
  6154.          },
  6155.          "require": {
  6156. -            "php": ">=5.4.0",
  6157. -            "symfony/console": "^2.8|~3",
  6158. -            "symfony/finder": "~2.5|~3.0"
  6159. +            "ext-tokenizer": "*",
  6160. +            "php": ">=5.5"
  6161.          },
  6162.          "require-dev": {
  6163. -            "phpunit/phpunit": "^4.8",
  6164. -            "satooshi/php-coveralls": "^1.0",
  6165. -            "squizlabs/php_codesniffer": "^2.7",
  6166. -            "victorjonsson/markdowndocs": "^1.3"
  6167. +            "phpunit/phpunit": "~4.0|~5.0"
  6168.          },
  6169. -        "time": "2017-10-12T19:38:03+00:00",
  6170. +        "time": "2017-09-02T17:10:46+00:00",
  6171. +        "bin": [
  6172. +            "bin/php-parse"
  6173. +        ],
  6174.          "type": "library",
  6175.          "extra": {
  6176.              "branch-alias": {
  6177. -                "dev-master": "3.x-dev"
  6178. +                "dev-master": "3.0-dev"
  6179.              }
  6180.          },
  6181.          "installation-source": "dist",
  6182.          "autoload": {
  6183.              "psr-4": {
  6184. -                "Consolidation\\OutputFormatters\\": "src"
  6185. +                "PhpParser\\": "lib/PhpParser"
  6186.              }
  6187.          },
  6188.          "notification-url": "https://packagist.org/downloads/",
  6189.          "license": [
  6190. -            "MIT"
  6191. +            "BSD-3-Clause"
  6192.          ],
  6193.          "authors": [
  6194.              {
  6195. -                "name": "Greg Anderson",
  6196. -                "email": "greg.1.anderson@greenknowe.org"
  6197. +                "name": "Nikita Popov"
  6198.              }
  6199.          ],
  6200. -        "description": "Format text by applying transformations provided by plug-in formatters."
  6201. +        "description": "A PHP parser written in PHP",
  6202. +        "keywords": [
  6203. +            "parser",
  6204. +            "php"
  6205. +        ]
  6206.      },
  6207.      {
  6208. -        "name": "consolidation/annotated-command",
  6209. -        "version": "2.8.1",
  6210. -        "version_normalized": "2.8.1.0",
  6211. +        "name": "paragonie/random_compat",
  6212. +        "version": "v2.0.11",
  6213. +        "version_normalized": "2.0.11.0",
  6214.          "source": {
  6215.              "type": "git",
  6216. -            "url": "https://github.com/consolidation/annotated-command.git",
  6217. -            "reference": "7f94009d732922d61408536f9228aca8f22e9135"
  6218. +            "url": "https://github.com/paragonie/random_compat.git",
  6219. +            "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8"
  6220.          },
  6221.          "dist": {
  6222.              "type": "zip",
  6223. -            "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/7f94009d732922d61408536f9228aca8f22e9135",
  6224. -            "reference": "7f94009d732922d61408536f9228aca8f22e9135",
  6225. +            "url": "https://api.github.com/repos/paragonie/random_compat/zipball/5da4d3c796c275c55f057af5a643ae297d96b4d8",
  6226. +            "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8",
  6227.              "shasum": ""
  6228.          },
  6229.          "require": {
  6230. -            "consolidation/output-formatters": "^3.1.12",
  6231. -            "php": ">=5.4.0",
  6232. -            "psr/log": "^1",
  6233. -            "symfony/console": "^2.8|~3",
  6234. -            "symfony/event-dispatcher": "^2.5|^3",
  6235. -            "symfony/finder": "^2.5|^3"
  6236. +            "php": ">=5.2.0"
  6237.          },
  6238.          "require-dev": {
  6239. -            "phpunit/phpunit": "^4.8",
  6240. -            "satooshi/php-coveralls": "^1.0",
  6241. -            "squizlabs/php_codesniffer": "^2.7"
  6242. +            "phpunit/phpunit": "4.*|5.*"
  6243.          },
  6244. -        "time": "2017-10-17T01:48:51+00:00",
  6245. -        "type": "library",
  6246. -        "extra": {
  6247. -            "branch-alias": {
  6248. -                "dev-master": "2.x-dev"
  6249. -            }
  6250. +        "suggest": {
  6251. +            "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6252.          },
  6253. +        "time": "2017-09-27T21:40:39+00:00",
  6254. +        "type": "library",
  6255.          "installation-source": "dist",
  6256.          "autoload": {
  6257. -            "psr-4": {
  6258. -                "Consolidation\\AnnotatedCommand\\": "src"
  6259. -            }
  6260. +            "files": [
  6261. +                "lib/random.php"
  6262. +            ]
  6263.          },
  6264.          "notification-url": "https://packagist.org/downloads/",
  6265.          "license": [
  6266. @@ -3747,165 +4115,114 @@
  6267.          ],
  6268.          "authors": [
  6269.              {
  6270. -                "name": "Greg Anderson",
  6271. -                "email": "greg.1.anderson@greenknowe.org"
  6272. +                "name": "Paragon Initiative Enterprises",
  6273. +                "email": "security@paragonie.com",
  6274. +                "homepage": "https://paragonie.com"
  6275.              }
  6276.          ],
  6277. -        "description": "Initialize Symfony Console commands from annotated command class methods."
  6278. +        "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6279. +        "keywords": [
  6280. +            "csprng",
  6281. +            "pseudorandom",
  6282. +            "random"
  6283. +        ]
  6284.      },
  6285.      {
  6286. -        "name": "drush/drush",
  6287. -        "version": "8.1.15",
  6288. -        "version_normalized": "8.1.15.0",
  6289. +        "name": "pear/console_table",
  6290. +        "version": "v1.3.0",
  6291. +        "version_normalized": "1.3.0.0",
  6292.          "source": {
  6293.              "type": "git",
  6294. -            "url": "https://github.com/drush-ops/drush.git",
  6295. -            "reference": "f78b619806a9bc7c3d167fa425e8757eb046bb87"
  6296. +            "url": "https://github.com/pear/Console_Table.git",
  6297. +            "reference": "64100b9ee81852f4fa17823e55d0b385a544f976"
  6298.          },
  6299.          "dist": {
  6300.              "type": "zip",
  6301. -            "url": "https://api.github.com/repos/drush-ops/drush/zipball/f78b619806a9bc7c3d167fa425e8757eb046bb87",
  6302. -            "reference": "f78b619806a9bc7c3d167fa425e8757eb046bb87",
  6303. +            "url": "https://api.github.com/repos/pear/Console_Table/zipball/64100b9ee81852f4fa17823e55d0b385a544f976",
  6304. +            "reference": "64100b9ee81852f4fa17823e55d0b385a544f976",
  6305.              "shasum": ""
  6306.          },
  6307.          "require": {
  6308. -            "consolidation/annotated-command": "~2",
  6309. -            "consolidation/output-formatters": "~3",
  6310. -            "pear/console_table": "~1.3.0",
  6311. -            "php": ">=5.4.5",
  6312. -            "phpdocumentor/reflection-docblock": "^2.0",
  6313. -            "psr/log": "~1.0",
  6314. -            "psy/psysh": "~0.6",
  6315. -            "symfony/console": "~2.7|^3",
  6316. -            "symfony/event-dispatcher": "~2.7|^3",
  6317. -            "symfony/finder": "~2.7|^3",
  6318. -            "symfony/var-dumper": "~2.7|^3",
  6319. -            "symfony/yaml": "~2.3|^3",
  6320. -            "webmozart/path-util": "~2"
  6321. -        },
  6322. -        "require-dev": {
  6323. -            "phpunit/phpunit": "4.*",
  6324. -            "symfony/console": "~2.7",
  6325. -            "symfony/event-dispatcher": "~2.7",
  6326. -            "symfony/finder": "~2.7",
  6327. -            "symfony/process": "2.7.*",
  6328. -            "symfony/var-dumper": "~2.7",
  6329. -            "symfony/yaml": "~2.3"
  6330. +            "php": ">=5.2.0"
  6331.          },
  6332.          "suggest": {
  6333. -            "drush/config-extra": "Provides configuration workflow commands, such as config-merge.",
  6334. -            "ext-pcntl": "*"
  6335. +            "pear/Console_Color2": ">=0.1.2"
  6336.          },
  6337. -        "time": "2017-10-10T02:05:46+00:00",
  6338. -        "bin": [
  6339. -            "drush",
  6340. -            "drush.launcher",
  6341. -            "drush.php",
  6342. -            "drush.complete.sh"
  6343. -        ],
  6344. +        "time": "2016-01-21T16:14:31+00:00",
  6345.          "type": "library",
  6346. -        "extra": {
  6347. -            "branch-alias": {
  6348. -                "dev-master": "8.0.x-dev"
  6349. -            }
  6350. -        },
  6351.          "installation-source": "dist",
  6352.          "autoload": {
  6353. -            "psr-0": {
  6354. -                "Drush": "lib/",
  6355. -                "Consolidation": "lib/"
  6356. -            }
  6357. +            "classmap": [
  6358. +                "Table.php"
  6359. +            ]
  6360.          },
  6361.          "notification-url": "https://packagist.org/downloads/",
  6362.          "license": [
  6363. -            "GPL-2.0+"
  6364. +            "BSD-2-Clause"
  6365.          ],
  6366.          "authors": [
  6367.              {
  6368. -                "name": "Moshe Weitzman",
  6369. -                "email": "weitzman@tejasa.com"
  6370. -            },
  6371. -            {
  6372. -                "name": "Owen Barton",
  6373. -                "email": "drupal@owenbarton.com"
  6374. -            },
  6375. -            {
  6376. -                "name": "Mark Sonnabaum",
  6377. -                "email": "marksonnabaum@gmail.com"
  6378. -            },
  6379. -            {
  6380. -                "name": "Antoine Beaupré",
  6381. -                "email": "anarcat@koumbit.org"
  6382. -            },
  6383. -            {
  6384. -                "name": "Greg Anderson",
  6385. -                "email": "greg.1.anderson@greenknowe.org"
  6386. -            },
  6387. -            {
  6388. -                "name": "Jonathan Araña Cruz",
  6389. -                "email": "jonhattan@faita.net"
  6390. -            },
  6391. -            {
  6392. -                "name": "Jonathan Hedstrom",
  6393. -                "email": "jhedstrom@gmail.com"
  6394. +                "name": "Jan Schneider",
  6395. +                "homepage": "http://pear.php.net/user/yunosh"
  6396.              },
  6397.              {
  6398. -                "name": "Christopher Gervais",
  6399. -                "email": "chris@ergonlogic.com"
  6400. +                "name": "Tal Peer",
  6401. +                "homepage": "http://pear.php.net/user/tal"
  6402.              },
  6403.              {
  6404. -                "name": "Dave Reid",
  6405. -                "email": "dave@davereid.net"
  6406. +                "name": "Xavier Noguer",
  6407. +                "homepage": "http://pear.php.net/user/xnoguer"
  6408.              },
  6409.              {
  6410. -                "name": "Damian Lee",
  6411. -                "email": "damiankloip@googlemail.com"
  6412. +                "name": "Richard Heyes",
  6413. +                "homepage": "http://pear.php.net/user/richard"
  6414.              }
  6415.          ],
  6416. -        "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.",
  6417. -        "homepage": "http://www.drush.org"
  6418. +        "description": "Library that makes it easy to build console style tables.",
  6419. +        "homepage": "http://pear.php.net/package/Console_Table/",
  6420. +        "keywords": [
  6421. +            "console"
  6422. +        ]
  6423.      },
  6424.      {
  6425. -        "name": "symfony/browser-kit",
  6426. -        "version": "v3.3.10",
  6427. -        "version_normalized": "3.3.10.0",
  6428. +        "name": "phpdocumentor/reflection-docblock",
  6429. +        "version": "2.0.5",
  6430. +        "version_normalized": "2.0.5.0",
  6431.          "source": {
  6432.              "type": "git",
  6433. -            "url": "https://github.com/symfony/browser-kit.git",
  6434. -            "reference": "317d5bdf0127f06db7ea294186132b4f5b036839"
  6435. +            "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  6436. +            "reference": "e6a969a640b00d8daa3c66518b0405fb41ae0c4b"
  6437.          },
  6438.          "dist": {
  6439.              "type": "zip",
  6440. -            "url": "https://api.github.com/repos/symfony/browser-kit/zipball/317d5bdf0127f06db7ea294186132b4f5b036839",
  6441. -            "reference": "317d5bdf0127f06db7ea294186132b4f5b036839",
  6442. +            "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/e6a969a640b00d8daa3c66518b0405fb41ae0c4b",
  6443. +            "reference": "e6a969a640b00d8daa3c66518b0405fb41ae0c4b",
  6444.              "shasum": ""
  6445.          },
  6446.          "require": {
  6447. -            "php": "^5.5.9|>=7.0.8",
  6448. -            "symfony/dom-crawler": "~2.8|~3.0"
  6449. +            "php": ">=5.3.3"
  6450.          },
  6451.          "require-dev": {
  6452. -            "symfony/css-selector": "~2.8|~3.0",
  6453. -            "symfony/process": "~2.8|~3.0"
  6454. +            "phpunit/phpunit": "~4.0"
  6455.          },
  6456.          "suggest": {
  6457. -            "symfony/process": ""
  6458. +            "dflydev/markdown": "~1.0",
  6459. +            "erusev/parsedown": "~1.0"
  6460.          },
  6461. -        "time": "2017-10-02T06:42:24+00:00",
  6462. +        "time": "2016-01-25T08:17:30+00:00",
  6463.          "type": "library",
  6464.          "extra": {
  6465.              "branch-alias": {
  6466. -                "dev-master": "3.3-dev"
  6467. +                "dev-master": "2.0.x-dev"
  6468.              }
  6469.          },
  6470.          "installation-source": "dist",
  6471.          "autoload": {
  6472. -            "psr-4": {
  6473. -                "Symfony\\Component\\BrowserKit\\": ""
  6474. -            },
  6475. -            "exclude-from-classmap": [
  6476. -                "/Tests/"
  6477. -            ]
  6478. +            "psr-0": {
  6479. +                "phpDocumentor": [
  6480. +                    "src/"
  6481. +                ]
  6482. +            }
  6483.          },
  6484.          "notification-url": "https://packagist.org/downloads/",
  6485.          "license": [
  6486. @@ -3913,50 +4230,48 @@
  6487.          ],
  6488.          "authors": [
  6489.              {
  6490. -                "name": "Fabien Potencier",
  6491. -                "email": "fabien@symfony.com"
  6492. -            },
  6493. -            {
  6494. -                "name": "Symfony Community",
  6495. -                "homepage": "https://symfony.com/contributors"
  6496. -            }
  6497. -        ],
  6498. -        "description": "Symfony BrowserKit Component",
  6499. -        "homepage": "https://symfony.com"
  6500. +                "name": "Mike van Riel",
  6501. +                "email": "mike.vanriel@naenius.com"
  6502. +            }
  6503. +        ]
  6504.      },
  6505.      {
  6506. -        "name": "fabpot/goutte",
  6507. -        "version": "v3.2.1",
  6508. -        "version_normalized": "3.2.1.0",
  6509. +        "name": "phpspec/prophecy",
  6510. +        "version": "v1.7.2",
  6511. +        "version_normalized": "1.7.2.0",
  6512.          "source": {
  6513.              "type": "git",
  6514. -            "url": "https://github.com/FriendsOfPHP/Goutte.git",
  6515. -            "reference": "db5c28f4a010b4161d507d5304e28a7ebf211638"
  6516. +            "url": "https://github.com/phpspec/prophecy.git",
  6517. +            "reference": "c9b8c6088acd19d769d4cc0ffa60a9fe34344bd6"
  6518.          },
  6519.          "dist": {
  6520.              "type": "zip",
  6521. -            "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/db5c28f4a010b4161d507d5304e28a7ebf211638",
  6522. -            "reference": "db5c28f4a010b4161d507d5304e28a7ebf211638",
  6523. +            "url": "https://api.github.com/repos/phpspec/prophecy/zipball/c9b8c6088acd19d769d4cc0ffa60a9fe34344bd6",
  6524. +            "reference": "c9b8c6088acd19d769d4cc0ffa60a9fe34344bd6",
  6525.              "shasum": ""
  6526.          },
  6527.          "require": {
  6528. -            "guzzlehttp/guzzle": "^6.0",
  6529. -            "php": ">=5.5.0",
  6530. -            "symfony/browser-kit": "~2.1|~3.0",
  6531. -            "symfony/css-selector": "~2.1|~3.0",
  6532. -            "symfony/dom-crawler": "~2.1|~3.0"
  6533. +            "doctrine/instantiator": "^1.0.2",
  6534. +            "php": "^5.3|^7.0",
  6535. +            "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  6536. +            "sebastian/comparator": "^1.1|^2.0",
  6537. +            "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  6538.          },
  6539. -        "time": "2017-01-03T13:21:43+00:00",
  6540. -        "type": "application",
  6541. +        "require-dev": {
  6542. +            "phpspec/phpspec": "^2.5|^3.2",
  6543. +            "phpunit/phpunit": "^4.8 || ^5.6.5"
  6544. +        },
  6545. +        "time": "2017-09-04T11:05:03+00:00",
  6546. +        "type": "library",
  6547.          "extra": {
  6548.              "branch-alias": {
  6549. -                "dev-master": "3.2-dev"
  6550. +                "dev-master": "1.7.x-dev"
  6551.              }
  6552.          },
  6553.          "installation-source": "dist",
  6554.          "autoload": {
  6555. -            "psr-4": {
  6556. -                "Goutte\\": "Goutte"
  6557. +            "psr-0": {
  6558. +                "Prophecy\\": "src/"
  6559.              }
  6560.          },
  6561.          "notification-url": "https://packagist.org/downloads/",
  6562. @@ -3965,343 +4280,338 @@
  6563.          ],
  6564.          "authors": [
  6565.              {
  6566. -                "name": "Fabien Potencier",
  6567. -                "email": "fabien@symfony.com"
  6568. +                "name": "Konstantin Kudryashov",
  6569. +                "email": "ever.zet@gmail.com",
  6570. +                "homepage": "http://everzet.com"
  6571. +            },
  6572. +            {
  6573. +                "name": "Marcello Duarte",
  6574. +                "email": "marcello.duarte@gmail.com"
  6575.              }
  6576.          ],
  6577. -        "description": "A simple PHP Web Scraper",
  6578. -        "homepage": "https://github.com/FriendsOfPHP/Goutte",
  6579. +        "description": "Highly opinionated mocking framework for PHP 5.3+",
  6580. +        "homepage": "https://github.com/phpspec/prophecy",
  6581.          "keywords": [
  6582. -            "scraper"
  6583. +            "Double",
  6584. +            "Dummy",
  6585. +            "fake",
  6586. +            "mock",
  6587. +            "spy",
  6588. +            "stub"
  6589.          ]
  6590.      },
  6591.      {
  6592. -        "name": "behat/mink",
  6593. -        "version": "v1.7.1",
  6594. -        "version_normalized": "1.7.1.0",
  6595. +        "name": "phpunit/php-code-coverage",
  6596. +        "version": "2.2.4",
  6597. +        "version_normalized": "2.2.4.0",
  6598.          "source": {
  6599.              "type": "git",
  6600. -            "url": "https://github.com/minkphp/Mink.git",
  6601. -            "reference": "e6930b9c74693dff7f4e58577e1b1743399f3ff9"
  6602. +            "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6603. +            "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  6604.          },
  6605.          "dist": {
  6606.              "type": "zip",
  6607. -            "url": "https://api.github.com/repos/minkphp/Mink/zipball/e6930b9c74693dff7f4e58577e1b1743399f3ff9",
  6608. -            "reference": "e6930b9c74693dff7f4e58577e1b1743399f3ff9",
  6609. +            "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  6610. +            "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  6611.              "shasum": ""
  6612.          },
  6613.          "require": {
  6614. -            "php": ">=5.3.1",
  6615. -            "symfony/css-selector": "~2.1|~3.0"
  6616. +            "php": ">=5.3.3",
  6617. +            "phpunit/php-file-iterator": "~1.3",
  6618. +            "phpunit/php-text-template": "~1.2",
  6619. +            "phpunit/php-token-stream": "~1.3",
  6620. +            "sebastian/environment": "^1.3.2",
  6621. +            "sebastian/version": "~1.0"
  6622.          },
  6623.          "require-dev": {
  6624. -            "symfony/phpunit-bridge": "~2.7|~3.0"
  6625. +            "ext-xdebug": ">=2.1.4",
  6626. +            "phpunit/phpunit": "~4"
  6627.          },
  6628.          "suggest": {
  6629. -            "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  6630. -            "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  6631. -            "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  6632. -            "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)"
  6633. +            "ext-dom": "*",
  6634. +            "ext-xdebug": ">=2.2.1",
  6635. +            "ext-xmlwriter": "*"
  6636.          },
  6637. -        "time": "2016-03-05T08:26:18+00:00",
  6638. +        "time": "2015-10-06T15:47:00+00:00",
  6639.          "type": "library",
  6640.          "extra": {
  6641.              "branch-alias": {
  6642. -                "dev-master": "1.7.x-dev"
  6643. +                "dev-master": "2.2.x-dev"
  6644.              }
  6645.          },
  6646.          "installation-source": "dist",
  6647.          "autoload": {
  6648. -            "psr-4": {
  6649. -                "Behat\\Mink\\": "src/"
  6650. -            }
  6651. +            "classmap": [
  6652. +                "src/"
  6653. +            ]
  6654.          },
  6655.          "notification-url": "https://packagist.org/downloads/",
  6656.          "license": [
  6657. -            "MIT"
  6658. +            "BSD-3-Clause"
  6659.          ],
  6660.          "authors": [
  6661.              {
  6662. -                "name": "Konstantin Kudryashov",
  6663. -                "email": "ever.zet@gmail.com",
  6664. -                "homepage": "http://everzet.com"
  6665. +                "name": "Sebastian Bergmann",
  6666. +                "email": "sb@sebastian-bergmann.de",
  6667. +                "role": "lead"
  6668.              }
  6669.          ],
  6670. -        "description": "Browser controller/emulator abstraction for PHP",
  6671. -        "homepage": "http://mink.behat.org/",
  6672. +        "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6673. +        "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6674.          "keywords": [
  6675. -            "browser",
  6676. +            "coverage",
  6677.              "testing",
  6678. -            "web"
  6679. +            "xunit"
  6680.          ]
  6681.      },
  6682.      {
  6683. -        "name": "behat/mink-browserkit-driver",
  6684. -        "version": "v1.3.2",
  6685. -        "version_normalized": "1.3.2.0",
  6686. +        "name": "phpunit/php-file-iterator",
  6687. +        "version": "1.4.2",
  6688. +        "version_normalized": "1.4.2.0",
  6689.          "source": {
  6690.              "type": "git",
  6691. -            "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  6692. -            "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb"
  6693. +            "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6694. +            "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5"
  6695.          },
  6696.          "dist": {
  6697.              "type": "zip",
  6698. -            "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/10e67fb4a295efcd62ea0bf16025a85ea19534fb",
  6699. -            "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb",
  6700. +            "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3cc8f69b3028d0f96a9078e6295d86e9bf019be5",
  6701. +            "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5",
  6702.              "shasum": ""
  6703.          },
  6704.          "require": {
  6705. -            "behat/mink": "^1.7.1@dev",
  6706. -            "php": ">=5.3.6",
  6707. -            "symfony/browser-kit": "~2.3|~3.0",
  6708. -            "symfony/dom-crawler": "~2.3|~3.0"
  6709. -        },
  6710. -        "require-dev": {
  6711. -            "silex/silex": "~1.2",
  6712. -            "symfony/phpunit-bridge": "~2.7|~3.0"
  6713. +            "php": ">=5.3.3"
  6714.          },
  6715. -        "time": "2016-03-05T08:59:47+00:00",
  6716. -        "type": "mink-driver",
  6717. +        "time": "2016-10-03T07:40:28+00:00",
  6718. +        "type": "library",
  6719.          "extra": {
  6720.              "branch-alias": {
  6721. -                "dev-master": "1.3.x-dev"
  6722. +                "dev-master": "1.4.x-dev"
  6723.              }
  6724.          },
  6725.          "installation-source": "dist",
  6726.          "autoload": {
  6727. -            "psr-4": {
  6728. -                "Behat\\Mink\\Driver\\": "src/"
  6729. -            }
  6730. +            "classmap": [
  6731. +                "src/"
  6732. +            ]
  6733.          },
  6734.          "notification-url": "https://packagist.org/downloads/",
  6735.          "license": [
  6736. -            "MIT"
  6737. +            "BSD-3-Clause"
  6738.          ],
  6739.          "authors": [
  6740.              {
  6741. -                "name": "Konstantin Kudryashov",
  6742. -                "email": "ever.zet@gmail.com",
  6743. -                "homepage": "http://everzet.com"
  6744. +                "name": "Sebastian Bergmann",
  6745. +                "email": "sb@sebastian-bergmann.de",
  6746. +                "role": "lead"
  6747.              }
  6748.          ],
  6749. -        "description": "Symfony2 BrowserKit driver for Mink framework",
  6750. -        "homepage": "http://mink.behat.org/",
  6751. +        "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6752. +        "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6753.          "keywords": [
  6754. -            "Mink",
  6755. -            "Symfony2",
  6756. -            "browser",
  6757. -            "testing"
  6758. +            "filesystem",
  6759. +            "iterator"
  6760.          ]
  6761.      },
  6762.      {
  6763. -        "name": "behat/mink-goutte-driver",
  6764. -        "version": "v1.2.1",
  6765. +        "name": "phpunit/php-text-template",
  6766. +        "version": "1.2.1",
  6767.          "version_normalized": "1.2.1.0",
  6768.          "source": {
  6769.              "type": "git",
  6770. -            "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  6771. -            "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  6772. +            "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6773. +            "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  6774.          },
  6775.          "dist": {
  6776.              "type": "zip",
  6777. -            "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  6778. -            "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  6779. +            "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  6780. +            "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  6781.              "shasum": ""
  6782.          },
  6783.          "require": {
  6784. -            "behat/mink": "~1.6@dev",
  6785. -            "behat/mink-browserkit-driver": "~1.2@dev",
  6786. -            "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  6787. -            "php": ">=5.3.1"
  6788. -        },
  6789. -        "require-dev": {
  6790. -            "symfony/phpunit-bridge": "~2.7|~3.0"
  6791. -        },
  6792. -        "time": "2016-03-05T09:04:22+00:00",
  6793. -        "type": "mink-driver",
  6794. -        "extra": {
  6795. -            "branch-alias": {
  6796. -                "dev-master": "1.2.x-dev"
  6797. -            }
  6798. +            "php": ">=5.3.3"
  6799.          },
  6800. +        "time": "2015-06-21T13:50:34+00:00",
  6801. +        "type": "library",
  6802.          "installation-source": "dist",
  6803.          "autoload": {
  6804. -            "psr-4": {
  6805. -                "Behat\\Mink\\Driver\\": "src/"
  6806. -            }
  6807. +            "classmap": [
  6808. +                "src/"
  6809. +            ]
  6810.          },
  6811.          "notification-url": "https://packagist.org/downloads/",
  6812.          "license": [
  6813. -            "MIT"
  6814. +            "BSD-3-Clause"
  6815.          ],
  6816.          "authors": [
  6817.              {
  6818. -                "name": "Konstantin Kudryashov",
  6819. -                "email": "ever.zet@gmail.com",
  6820. -                "homepage": "http://everzet.com"
  6821. +                "name": "Sebastian Bergmann",
  6822. +                "email": "sebastian@phpunit.de",
  6823. +                "role": "lead"
  6824.              }
  6825.          ],
  6826. -        "description": "Goutte driver for Mink framework",
  6827. -        "homepage": "http://mink.behat.org/",
  6828. +        "description": "Simple template engine.",
  6829. +        "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6830.          "keywords": [
  6831. -            "browser",
  6832. -            "goutte",
  6833. -            "headless",
  6834. -            "testing"
  6835. +            "template"
  6836.          ]
  6837.      },
  6838.      {
  6839. -        "name": "jcalderonzumba/gastonjs",
  6840. -        "version": "v1.0.3",
  6841. -        "version_normalized": "1.0.3.0",
  6842. +        "name": "phpunit/php-timer",
  6843. +        "version": "1.0.9",
  6844. +        "version_normalized": "1.0.9.0",
  6845.          "source": {
  6846.              "type": "git",
  6847. -            "url": "https://github.com/jcalderonzumba/gastonjs.git",
  6848. -            "reference": "4ff4a788d4995ae0d4b45fdcb1b76650e2eec72a"
  6849. +            "url": "https://github.com/sebastianbergmann/php-timer.git",
  6850. +            "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  6851.          },
  6852.          "dist": {
  6853.              "type": "zip",
  6854. -            "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/4ff4a788d4995ae0d4b45fdcb1b76650e2eec72a",
  6855. -            "reference": "4ff4a788d4995ae0d4b45fdcb1b76650e2eec72a",
  6856. +            "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  6857. +            "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  6858.              "shasum": ""
  6859.          },
  6860.          "require": {
  6861. -            "guzzlehttp/guzzle": "~5.0|~6.0",
  6862. -            "php": ">=5.4"
  6863. +            "php": "^5.3.3 || ^7.0"
  6864.          },
  6865.          "require-dev": {
  6866. -            "phpunit/phpunit": "~4.6",
  6867. -            "silex/silex": "~1.2",
  6868. -            "symfony/phpunit-bridge": "~2.7",
  6869. -            "symfony/process": "~2.1"
  6870. +            "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  6871.          },
  6872. -        "time": "2016-05-04T16:27:07+00:00",
  6873. -        "type": "phantomjs-api",
  6874. +        "time": "2017-02-26T11:10:40+00:00",
  6875. +        "type": "library",
  6876.          "extra": {
  6877.              "branch-alias": {
  6878. -                "dev-master": "1.1.x-dev"
  6879. +                "dev-master": "1.0-dev"
  6880.              }
  6881.          },
  6882.          "installation-source": "dist",
  6883.          "autoload": {
  6884. -            "psr-4": {
  6885. -                "Zumba\\GastonJS\\": "src"
  6886. -            }
  6887. +            "classmap": [
  6888. +                "src/"
  6889. +            ]
  6890.          },
  6891.          "notification-url": "https://packagist.org/downloads/",
  6892.          "license": [
  6893. -            "MIT"
  6894. +            "BSD-3-Clause"
  6895.          ],
  6896.          "authors": [
  6897.              {
  6898. -                "name": "Juan Francisco Calderón Zumba",
  6899. -                "email": "juanfcz@gmail.com",
  6900. -                "homepage": "http://github.com/jcalderonzumba"
  6901. +                "name": "Sebastian Bergmann",
  6902. +                "email": "sb@sebastian-bergmann.de",
  6903. +                "role": "lead"
  6904.              }
  6905.          ],
  6906. -        "description": "PhantomJS API based server for webpage automation",
  6907. -        "homepage": "https://github.com/jcalderonzumba/gastonjs",
  6908. +        "description": "Utility class for timing",
  6909. +        "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6910.          "keywords": [
  6911. -            "api",
  6912. -            "automation",
  6913. -            "browser",
  6914. -            "headless",
  6915. -            "phantomjs"
  6916. +            "timer"
  6917.          ]
  6918.      },
  6919.      {
  6920. -        "name": "jcalderonzumba/mink-phantomjs-driver",
  6921. -        "version": "v0.3.3",
  6922. -        "version_normalized": "0.3.3.0",
  6923. +        "name": "phpunit/php-token-stream",
  6924. +        "version": "1.4.11",
  6925. +        "version_normalized": "1.4.11.0",
  6926.          "source": {
  6927.              "type": "git",
  6928. -            "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  6929. -            "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  6930. +            "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  6931. +            "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7"
  6932.          },
  6933.          "dist": {
  6934.              "type": "zip",
  6935. -            "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  6936. -            "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  6937. +            "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/e03f8f67534427a787e21a385a67ec3ca6978ea7",
  6938. +            "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7",
  6939.              "shasum": ""
  6940.          },
  6941.          "require": {
  6942. -            "behat/mink": "~1.7",
  6943. -            "jcalderonzumba/gastonjs": "~1.0",
  6944. -            "php": ">=5.4",
  6945. -            "twig/twig": "~1.20|~2.0"
  6946. +            "ext-tokenizer": "*",
  6947. +            "php": ">=5.3.3"
  6948.          },
  6949.          "require-dev": {
  6950. -            "mink/driver-testsuite": "dev-master",
  6951. -            "phpunit/phpunit": "~4.6"
  6952. +            "phpunit/phpunit": "~4.2"
  6953.          },
  6954. -        "time": "2016-12-01T10:57:30+00:00",
  6955. -        "type": "mink-driver",
  6956. +        "time": "2017-02-27T10:12:30+00:00",
  6957. +        "type": "library",
  6958.          "extra": {
  6959.              "branch-alias": {
  6960. -                "dev-master": "0.4.x-dev"
  6961. +                "dev-master": "1.4-dev"
  6962.              }
  6963.          },
  6964.          "installation-source": "dist",
  6965.          "autoload": {
  6966. -            "psr-4": {
  6967. -                "Zumba\\Mink\\Driver\\": "src"
  6968. -            }
  6969. +            "classmap": [
  6970. +                "src/"
  6971. +            ]
  6972.          },
  6973.          "notification-url": "https://packagist.org/downloads/",
  6974.          "license": [
  6975. -            "MIT"
  6976. +            "BSD-3-Clause"
  6977.          ],
  6978.          "authors": [
  6979.              {
  6980. -                "name": "Juan Francisco Calderón Zumba",
  6981. -                "email": "juanfcz@gmail.com",
  6982. -                "homepage": "http://github.com/jcalderonzumba"
  6983. +                "name": "Sebastian Bergmann",
  6984. +                "email": "sebastian@phpunit.de"
  6985.              }
  6986.          ],
  6987. -        "description": "PhantomJS driver for Mink framework",
  6988. -        "homepage": "http://mink.behat.org/",
  6989. +        "description": "Wrapper around PHP's tokenizer extension.",
  6990. +        "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  6991.          "keywords": [
  6992. -            "ajax",
  6993. -            "browser",
  6994. -            "headless",
  6995. -            "javascript",
  6996. -            "phantomjs",
  6997. -            "testing"
  6998. +            "tokenizer"
  6999.          ]
  7000.      },
  7001.      {
  7002. -        "name": "mikey179/vfsStream",
  7003. -        "version": "v1.6.5",
  7004. -        "version_normalized": "1.6.5.0",
  7005. +        "name": "phpunit/phpunit",
  7006. +        "version": "4.8.36",
  7007. +        "version_normalized": "4.8.36.0",
  7008.          "source": {
  7009.              "type": "git",
  7010. -            "url": "https://github.com/mikey179/vfsStream.git",
  7011. -            "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
  7012. +            "url": "https://github.com/sebastianbergmann/phpunit.git",
  7013. +            "reference": "46023de9a91eec7dfb06cc56cb4e260017298517"
  7014.          },
  7015.          "dist": {
  7016.              "type": "zip",
  7017. -            "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  7018. -            "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  7019. +            "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/46023de9a91eec7dfb06cc56cb4e260017298517",
  7020. +            "reference": "46023de9a91eec7dfb06cc56cb4e260017298517",
  7021.              "shasum": ""
  7022.          },
  7023.          "require": {
  7024. -            "php": ">=5.3.0"
  7025. +            "ext-dom": "*",
  7026. +            "ext-json": "*",
  7027. +            "ext-pcre": "*",
  7028. +            "ext-reflection": "*",
  7029. +            "ext-spl": "*",
  7030. +            "php": ">=5.3.3",
  7031. +            "phpspec/prophecy": "^1.3.1",
  7032. +            "phpunit/php-code-coverage": "~2.1",
  7033. +            "phpunit/php-file-iterator": "~1.4",
  7034. +            "phpunit/php-text-template": "~1.2",
  7035. +            "phpunit/php-timer": "^1.0.6",
  7036. +            "phpunit/phpunit-mock-objects": "~2.3",
  7037. +            "sebastian/comparator": "~1.2.2",
  7038. +            "sebastian/diff": "~1.2",
  7039. +            "sebastian/environment": "~1.3",
  7040. +            "sebastian/exporter": "~1.2",
  7041. +            "sebastian/global-state": "~1.0",
  7042. +            "sebastian/version": "~1.0",
  7043. +            "symfony/yaml": "~2.1|~3.0"
  7044.          },
  7045. -        "require-dev": {
  7046. -            "phpunit/phpunit": "~4.5"
  7047. +        "suggest": {
  7048. +            "phpunit/php-invoker": "~1.1"
  7049.          },
  7050. -        "time": "2017-08-01T08:02:14+00:00",
  7051. +        "time": "2017-06-21T08:07:12+00:00",
  7052. +        "bin": [
  7053. +            "phpunit"
  7054. +        ],
  7055.          "type": "library",
  7056.          "extra": {
  7057.              "branch-alias": {
  7058. -                "dev-master": "1.6.x-dev"
  7059. +                "dev-master": "4.8.x-dev"
  7060.              }
  7061.          },
  7062.          "installation-source": "dist",
  7063.          "autoload": {
  7064. -            "psr-0": {
  7065. -                "org\\bovigo\\vfs\\": "src/main/php"
  7066. -            }
  7067. +            "classmap": [
  7068. +                "src/"
  7069. +            ]
  7070.          },
  7071.          "notification-url": "https://packagist.org/downloads/",
  7072.          "license": [
  7073. @@ -4309,31 +4619,53 @@
  7074.          ],
  7075.          "authors": [
  7076.              {
  7077. -                "name": "Frank Kleine",
  7078. -                "homepage": "http://frankkleine.de/",
  7079. -                "role": "Developer"
  7080. +                "name": "Sebastian Bergmann",
  7081. +                "email": "sebastian@phpunit.de",
  7082. +                "role": "lead"
  7083.              }
  7084.          ],
  7085. -        "description": "Virtual file system to mock the real file system in unit tests.",
  7086. -        "homepage": "http://vfs.bovigo.org/"
  7087. +        "description": "The PHP Unit Testing framework.",
  7088. +        "homepage": "https://phpunit.de/",
  7089. +        "keywords": [
  7090. +            "phpunit",
  7091. +            "testing",
  7092. +            "xunit"
  7093. +        ]
  7094.      },
  7095.      {
  7096. -        "name": "sebastian/version",
  7097. -        "version": "1.0.6",
  7098. -        "version_normalized": "1.0.6.0",
  7099. +        "name": "phpunit/phpunit-mock-objects",
  7100. +        "version": "2.3.8",
  7101. +        "version_normalized": "2.3.8.0",
  7102.          "source": {
  7103.              "type": "git",
  7104. -            "url": "https://github.com/sebastianbergmann/version.git",
  7105. -            "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  7106. +            "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  7107. +            "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  7108.          },
  7109.          "dist": {
  7110.              "type": "zip",
  7111. -            "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  7112. -            "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  7113. +            "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  7114. +            "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  7115.              "shasum": ""
  7116.          },
  7117. -        "time": "2015-06-21T13:59:46+00:00",
  7118. +        "require": {
  7119. +            "doctrine/instantiator": "^1.0.2",
  7120. +            "php": ">=5.3.3",
  7121. +            "phpunit/php-text-template": "~1.2",
  7122. +            "sebastian/exporter": "~1.2"
  7123. +        },
  7124. +        "require-dev": {
  7125. +            "phpunit/phpunit": "~4.4"
  7126. +        },
  7127. +        "suggest": {
  7128. +            "ext-soap": "*"
  7129. +        },
  7130. +        "time": "2015-10-02T06:51:40+00:00",
  7131.          "type": "library",
  7132. +        "extra": {
  7133. +            "branch-alias": {
  7134. +                "dev-master": "2.3.x-dev"
  7135. +            }
  7136. +        },
  7137.          "installation-source": "dist",
  7138.          "autoload": {
  7139.              "classmap": [
  7140. @@ -4347,88 +4679,84 @@
  7141.          "authors": [
  7142.              {
  7143.                  "name": "Sebastian Bergmann",
  7144. -                "email": "sebastian@phpunit.de",
  7145. +                "email": "sb@sebastian-bergmann.de",
  7146.                  "role": "lead"
  7147.              }
  7148.          ],
  7149. -        "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7150. -        "homepage": "https://github.com/sebastianbergmann/version"
  7151. +        "description": "Mock Object library for PHPUnit",
  7152. +        "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  7153. +        "keywords": [
  7154. +            "mock",
  7155. +            "xunit"
  7156. +        ]
  7157.      },
  7158.      {
  7159. -        "name": "sebastian/global-state",
  7160. -        "version": "1.1.1",
  7161. -        "version_normalized": "1.1.1.0",
  7162. +        "name": "psr/cache",
  7163. +        "version": "1.0.1",
  7164. +        "version_normalized": "1.0.1.0",
  7165.          "source": {
  7166.              "type": "git",
  7167. -            "url": "https://github.com/sebastianbergmann/global-state.git",
  7168. -            "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  7169. +            "url": "https://github.com/php-fig/cache.git",
  7170. +            "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  7171.          },
  7172.          "dist": {
  7173.              "type": "zip",
  7174. -            "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  7175. -            "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  7176. +            "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  7177. +            "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  7178.              "shasum": ""
  7179.          },
  7180.          "require": {
  7181. -            "php": ">=5.3.3"
  7182. -        },
  7183. -        "require-dev": {
  7184. -            "phpunit/phpunit": "~4.2"
  7185. -        },
  7186. -        "suggest": {
  7187. -            "ext-uopz": "*"
  7188. +            "php": ">=5.3.0"
  7189.          },
  7190. -        "time": "2015-10-12T03:26:01+00:00",
  7191. +        "time": "2016-08-06T20:24:11+00:00",
  7192.          "type": "library",
  7193.          "extra": {
  7194.              "branch-alias": {
  7195. -                "dev-master": "1.0-dev"
  7196. +                "dev-master": "1.0.x-dev"
  7197.              }
  7198.          },
  7199.          "installation-source": "dist",
  7200.          "autoload": {
  7201. -            "classmap": [
  7202. -                "src/"
  7203. -            ]
  7204. +            "psr-4": {
  7205. +                "Psr\\Cache\\": "src/"
  7206. +            }
  7207.          },
  7208.          "notification-url": "https://packagist.org/downloads/",
  7209.          "license": [
  7210. -            "BSD-3-Clause"
  7211. +            "MIT"
  7212.          ],
  7213.          "authors": [
  7214.              {
  7215. -                "name": "Sebastian Bergmann",
  7216. -                "email": "sebastian@phpunit.de"
  7217. +                "name": "PHP-FIG",
  7218. +                "homepage": "http://www.php-fig.org/"
  7219.              }
  7220.          ],
  7221. -        "description": "Snapshotting of global state",
  7222. -        "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7223. +        "description": "Common interface for caching libraries",
  7224.          "keywords": [
  7225. -            "global state"
  7226. +            "cache",
  7227. +            "psr",
  7228. +            "psr-6"
  7229.          ]
  7230.      },
  7231.      {
  7232. -        "name": "sebastian/recursion-context",
  7233. -        "version": "1.0.5",
  7234. -        "version_normalized": "1.0.5.0",
  7235. +        "name": "psr/http-message",
  7236. +        "version": "1.0.1",
  7237. +        "version_normalized": "1.0.1.0",
  7238.          "source": {
  7239.              "type": "git",
  7240. -            "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7241. -            "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7"
  7242. +            "url": "https://github.com/php-fig/http-message.git",
  7243. +            "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7244.          },
  7245.          "dist": {
  7246.              "type": "zip",
  7247. -            "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  7248. -            "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  7249. +            "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7250. +            "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7251.              "shasum": ""
  7252.          },
  7253.          "require": {
  7254. -            "php": ">=5.3.3"
  7255. -        },
  7256. -        "require-dev": {
  7257. -            "phpunit/phpunit": "~4.4"
  7258. +            "php": ">=5.3.0"
  7259.          },
  7260. -        "time": "2016-10-03T07:41:43+00:00",
  7261. +        "time": "2016-08-06T14:39:51+00:00",
  7262.          "type": "library",
  7263.          "extra": {
  7264.              "branch-alias": {
  7265. @@ -4437,204 +4765,203 @@
  7266.          },
  7267.          "installation-source": "dist",
  7268.          "autoload": {
  7269. -            "classmap": [
  7270. -                "src/"
  7271. -            ]
  7272. +            "psr-4": {
  7273. +                "Psr\\Http\\Message\\": "src/"
  7274. +            }
  7275.          },
  7276.          "notification-url": "https://packagist.org/downloads/",
  7277.          "license": [
  7278. -            "BSD-3-Clause"
  7279. +            "MIT"
  7280.          ],
  7281.          "authors": [
  7282.              {
  7283. -                "name": "Jeff Welch",
  7284. -                "email": "whatthejeff@gmail.com"
  7285. -            },
  7286. -            {
  7287. -                "name": "Sebastian Bergmann",
  7288. -                "email": "sebastian@phpunit.de"
  7289. -            },
  7290. -            {
  7291. -                "name": "Adam Harvey",
  7292. -                "email": "aharvey@php.net"
  7293. +                "name": "PHP-FIG",
  7294. +                "homepage": "http://www.php-fig.org/"
  7295.              }
  7296.          ],
  7297. -        "description": "Provides functionality to recursively process PHP variables",
  7298. -        "homepage": "http://www.github.com/sebastianbergmann/recursion-context"
  7299. +        "description": "Common interface for HTTP messages",
  7300. +        "homepage": "https://github.com/php-fig/http-message",
  7301. +        "keywords": [
  7302. +            "http",
  7303. +            "http-message",
  7304. +            "psr",
  7305. +            "psr-7",
  7306. +            "request",
  7307. +            "response"
  7308. +        ]
  7309.      },
  7310.      {
  7311. -        "name": "sebastian/exporter",
  7312. -        "version": "1.2.2",
  7313. -        "version_normalized": "1.2.2.0",
  7314. +        "name": "psr/log",
  7315. +        "version": "1.0.2",
  7316. +        "version_normalized": "1.0.2.0",
  7317.          "source": {
  7318.              "type": "git",
  7319. -            "url": "https://github.com/sebastianbergmann/exporter.git",
  7320. -            "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  7321. +            "url": "https://github.com/php-fig/log.git",
  7322. +            "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  7323.          },
  7324.          "dist": {
  7325.              "type": "zip",
  7326. -            "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
  7327. -            "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  7328. +            "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  7329. +            "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  7330.              "shasum": ""
  7331.          },
  7332.          "require": {
  7333. -            "php": ">=5.3.3",
  7334. -            "sebastian/recursion-context": "~1.0"
  7335. -        },
  7336. -        "require-dev": {
  7337. -            "ext-mbstring": "*",
  7338. -            "phpunit/phpunit": "~4.4"
  7339. +            "php": ">=5.3.0"
  7340.          },
  7341. -        "time": "2016-06-17T09:04:28+00:00",
  7342. +        "time": "2016-10-10T12:19:37+00:00",
  7343.          "type": "library",
  7344.          "extra": {
  7345.              "branch-alias": {
  7346. -                "dev-master": "1.3.x-dev"
  7347. +                "dev-master": "1.0.x-dev"
  7348.              }
  7349.          },
  7350.          "installation-source": "dist",
  7351.          "autoload": {
  7352. -            "classmap": [
  7353. -                "src/"
  7354. -            ]
  7355. +            "psr-4": {
  7356. +                "Psr\\Log\\": "Psr/Log/"
  7357. +            }
  7358.          },
  7359.          "notification-url": "https://packagist.org/downloads/",
  7360.          "license": [
  7361. -            "BSD-3-Clause"
  7362. +            "MIT"
  7363.          ],
  7364.          "authors": [
  7365.              {
  7366. -                "name": "Jeff Welch",
  7367. -                "email": "whatthejeff@gmail.com"
  7368. -            },
  7369. -            {
  7370. -                "name": "Volker Dusch",
  7371. -                "email": "github@wallbash.com"
  7372. -            },
  7373. -            {
  7374. -                "name": "Bernhard Schussek",
  7375. -                "email": "bschussek@2bepublished.at"
  7376. -            },
  7377. -            {
  7378. -                "name": "Sebastian Bergmann",
  7379. -                "email": "sebastian@phpunit.de"
  7380. -            },
  7381. -            {
  7382. -                "name": "Adam Harvey",
  7383. -                "email": "aharvey@php.net"
  7384. +                "name": "PHP-FIG",
  7385. +                "homepage": "http://www.php-fig.org/"
  7386.              }
  7387.          ],
  7388. -        "description": "Provides the functionality to export PHP variables for visualization",
  7389. -        "homepage": "http://www.github.com/sebastianbergmann/exporter",
  7390. +        "description": "Common interface for logging libraries",
  7391. +        "homepage": "https://github.com/php-fig/log",
  7392.          "keywords": [
  7393. -            "export",
  7394. -            "exporter"
  7395. +            "log",
  7396. +            "psr",
  7397. +            "psr-3"
  7398.          ]
  7399.      },
  7400.      {
  7401. -        "name": "sebastian/environment",
  7402. -        "version": "1.3.8",
  7403. -        "version_normalized": "1.3.8.0",
  7404. +        "name": "psr/simple-cache",
  7405. +        "version": "1.0.0",
  7406. +        "version_normalized": "1.0.0.0",
  7407.          "source": {
  7408.              "type": "git",
  7409. -            "url": "https://github.com/sebastianbergmann/environment.git",
  7410. -            "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  7411. +            "url": "https://github.com/php-fig/simple-cache.git",
  7412. +            "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24"
  7413.          },
  7414.          "dist": {
  7415.              "type": "zip",
  7416. -            "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  7417. -            "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  7418. +            "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/753fa598e8f3b9966c886fe13f370baa45ef0e24",
  7419. +            "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24",
  7420.              "shasum": ""
  7421.          },
  7422.          "require": {
  7423. -            "php": "^5.3.3 || ^7.0"
  7424. -        },
  7425. -        "require-dev": {
  7426. -            "phpunit/phpunit": "^4.8 || ^5.0"
  7427. +            "php": ">=5.3.0"
  7428.          },
  7429. -        "time": "2016-08-18T05:49:44+00:00",
  7430. +        "time": "2017-01-02T13:31:39+00:00",
  7431.          "type": "library",
  7432.          "extra": {
  7433.              "branch-alias": {
  7434. -                "dev-master": "1.3.x-dev"
  7435. +                "dev-master": "1.0.x-dev"
  7436.              }
  7437.          },
  7438.          "installation-source": "dist",
  7439.          "autoload": {
  7440. -            "classmap": [
  7441. -                "src/"
  7442. -            ]
  7443. +            "psr-4": {
  7444. +                "Psr\\SimpleCache\\": "src/"
  7445. +            }
  7446.          },
  7447.          "notification-url": "https://packagist.org/downloads/",
  7448.          "license": [
  7449. -            "BSD-3-Clause"
  7450. +            "MIT"
  7451.          ],
  7452.          "authors": [
  7453.              {
  7454. -                "name": "Sebastian Bergmann",
  7455. -                "email": "sebastian@phpunit.de"
  7456. +                "name": "PHP-FIG",
  7457. +                "homepage": "http://www.php-fig.org/"
  7458.              }
  7459.          ],
  7460. -        "description": "Provides functionality to handle HHVM/PHP environments",
  7461. -        "homepage": "http://www.github.com/sebastianbergmann/environment",
  7462. +        "description": "Common interfaces for simple caching",
  7463.          "keywords": [
  7464. -            "Xdebug",
  7465. -            "environment",
  7466. -            "hhvm"
  7467. +            "cache",
  7468. +            "caching",
  7469. +            "psr",
  7470. +            "psr-16",
  7471. +            "simple-cache"
  7472.          ]
  7473.      },
  7474.      {
  7475. -        "name": "sebastian/diff",
  7476. -        "version": "1.4.3",
  7477. -        "version_normalized": "1.4.3.0",
  7478. +        "name": "psy/psysh",
  7479. +        "version": "v0.8.13",
  7480. +        "version_normalized": "0.8.13.0",
  7481.          "source": {
  7482.              "type": "git",
  7483. -            "url": "https://github.com/sebastianbergmann/diff.git",
  7484. -            "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  7485. +            "url": "https://github.com/bobthecow/psysh.git",
  7486. +            "reference": "cdb5593c3684bab74e10fcfffe4a0c8d1c39695d"
  7487.          },
  7488.          "dist": {
  7489.              "type": "zip",
  7490. -            "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  7491. -            "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  7492. +            "url": "https://api.github.com/repos/bobthecow/psysh/zipball/cdb5593c3684bab74e10fcfffe4a0c8d1c39695d",
  7493. +            "reference": "cdb5593c3684bab74e10fcfffe4a0c8d1c39695d",
  7494.              "shasum": ""
  7495.          },
  7496.          "require": {
  7497. -            "php": "^5.3.3 || ^7.0"
  7498. +            "dnoegel/php-xdg-base-dir": "0.1",
  7499. +            "jakub-onderka/php-console-highlighter": "0.3.*",
  7500. +            "nikic/php-parser": "~1.3|~2.0|~3.0",
  7501. +            "php": ">=5.3.9",
  7502. +            "symfony/console": "~2.3.10|^2.4.2|~3.0",
  7503. +            "symfony/var-dumper": "~2.7|~3.0"
  7504.          },
  7505.          "require-dev": {
  7506. -            "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  7507. +            "friendsofphp/php-cs-fixer": "~1.11",
  7508. +            "hoa/console": "~3.16|~1.14",
  7509. +            "phpunit/phpunit": "~4.4|~5.0",
  7510. +            "symfony/finder": "~2.1|~3.0"
  7511.          },
  7512. -        "time": "2017-05-22T07:24:03+00:00",
  7513. +        "suggest": {
  7514. +            "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7515. +            "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7516. +            "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7517. +            "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7518. +            "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7519. +        },
  7520. +        "time": "2017-10-19T06:13:20+00:00",
  7521. +        "bin": [
  7522. +            "bin/psysh"
  7523. +        ],
  7524.          "type": "library",
  7525.          "extra": {
  7526.              "branch-alias": {
  7527. -                "dev-master": "1.4-dev"
  7528. +                "dev-develop": "0.8.x-dev"
  7529.              }
  7530.          },
  7531.          "installation-source": "dist",
  7532.          "autoload": {
  7533. -            "classmap": [
  7534. -                "src/"
  7535. -            ]
  7536. +            "files": [
  7537. +                "src/Psy/functions.php"
  7538. +            ],
  7539. +            "psr-4": {
  7540. +                "Psy\\": "src/Psy/"
  7541. +            }
  7542.          },
  7543.          "notification-url": "https://packagist.org/downloads/",
  7544.          "license": [
  7545. -            "BSD-3-Clause"
  7546. +            "MIT"
  7547.          ],
  7548.          "authors": [
  7549.              {
  7550. -                "name": "Kore Nordmann",
  7551. -                "email": "mail@kore-nordmann.de"
  7552. -            },
  7553. -            {
  7554. -                "name": "Sebastian Bergmann",
  7555. -                "email": "sebastian@phpunit.de"
  7556. +                "name": "Justin Hileman",
  7557. +                "email": "justin@justinhileman.info",
  7558. +                "homepage": "http://justinhileman.com"
  7559.              }
  7560.          ],
  7561. -        "description": "Diff implementation",
  7562. -        "homepage": "https://github.com/sebastianbergmann/diff",
  7563. +        "description": "An interactive shell for modern PHP.",
  7564. +        "homepage": "http://psysh.org",
  7565.          "keywords": [
  7566. -            "diff"
  7567. +            "REPL",
  7568. +            "console",
  7569. +            "interactive",
  7570. +            "shell"
  7571.          ]
  7572.      },
  7573.      {
  7574. @@ -4704,81 +5031,87 @@
  7575.          ]
  7576.      },
  7577.      {
  7578. -        "name": "doctrine/instantiator",
  7579. -        "version": "1.1.0",
  7580. -        "version_normalized": "1.1.0.0",
  7581. +        "name": "sebastian/diff",
  7582. +        "version": "1.4.3",
  7583. +        "version_normalized": "1.4.3.0",
  7584.          "source": {
  7585.              "type": "git",
  7586. -            "url": "https://github.com/doctrine/instantiator.git",
  7587. -            "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
  7588. +            "url": "https://github.com/sebastianbergmann/diff.git",
  7589. +            "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  7590.          },
  7591.          "dist": {
  7592.              "type": "zip",
  7593. -            "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  7594. -            "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  7595. +            "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  7596. +            "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  7597.              "shasum": ""
  7598.          },
  7599.          "require": {
  7600. -            "php": "^7.1"
  7601. +            "php": "^5.3.3 || ^7.0"
  7602.          },
  7603.          "require-dev": {
  7604. -            "athletic/athletic": "~0.1.8",
  7605. -            "ext-pdo": "*",
  7606. -            "ext-phar": "*",
  7607. -            "phpunit/phpunit": "^6.2.3",
  7608. -            "squizlabs/php_codesniffer": "^3.0.2"
  7609. +            "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  7610.          },
  7611. -        "time": "2017-07-22T11:58:36+00:00",
  7612. +        "time": "2017-05-22T07:24:03+00:00",
  7613.          "type": "library",
  7614.          "extra": {
  7615.              "branch-alias": {
  7616. -                "dev-master": "1.2.x-dev"
  7617. +                "dev-master": "1.4-dev"
  7618.              }
  7619.          },
  7620.          "installation-source": "dist",
  7621.          "autoload": {
  7622. -            "psr-4": {
  7623. -                "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7624. -            }
  7625. +            "classmap": [
  7626. +                "src/"
  7627. +            ]
  7628.          },
  7629.          "notification-url": "https://packagist.org/downloads/",
  7630.          "license": [
  7631. -            "MIT"
  7632. +            "BSD-3-Clause"
  7633.          ],
  7634.          "authors": [
  7635.              {
  7636. -                "name": "Marco Pivetta",
  7637. -                "email": "ocramius@gmail.com",
  7638. -                "homepage": "http://ocramius.github.com/"
  7639. +                "name": "Kore Nordmann",
  7640. +                "email": "mail@kore-nordmann.de"
  7641. +            },
  7642. +            {
  7643. +                "name": "Sebastian Bergmann",
  7644. +                "email": "sebastian@phpunit.de"
  7645.              }
  7646.          ],
  7647. -        "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7648. -        "homepage": "https://github.com/doctrine/instantiator",
  7649. +        "description": "Diff implementation",
  7650. +        "homepage": "https://github.com/sebastianbergmann/diff",
  7651.          "keywords": [
  7652. -            "constructor",
  7653. -            "instantiate"
  7654. +            "diff"
  7655.          ]
  7656.      },
  7657.      {
  7658. -        "name": "phpunit/php-text-template",
  7659. -        "version": "1.2.1",
  7660. -        "version_normalized": "1.2.1.0",
  7661. +        "name": "sebastian/environment",
  7662. +        "version": "1.3.8",
  7663. +        "version_normalized": "1.3.8.0",
  7664.          "source": {
  7665.              "type": "git",
  7666. -            "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7667. -            "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7668. +            "url": "https://github.com/sebastianbergmann/environment.git",
  7669. +            "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  7670.          },
  7671.          "dist": {
  7672.              "type": "zip",
  7673. -            "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7674. -            "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7675. +            "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  7676. +            "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  7677.              "shasum": ""
  7678.          },
  7679.          "require": {
  7680. -            "php": ">=5.3.3"
  7681. +            "php": "^5.3.3 || ^7.0"
  7682.          },
  7683. -        "time": "2015-06-21T13:50:34+00:00",
  7684. +        "require-dev": {
  7685. +            "phpunit/phpunit": "^4.8 || ^5.0"
  7686. +        },
  7687. +        "time": "2016-08-18T05:49:44+00:00",
  7688.          "type": "library",
  7689. +        "extra": {
  7690. +            "branch-alias": {
  7691. +                "dev-master": "1.3.x-dev"
  7692. +            }
  7693. +        },
  7694.          "installation-source": "dist",
  7695.          "autoload": {
  7696.              "classmap": [
  7697. @@ -4792,48 +5125,45 @@
  7698.          "authors": [
  7699.              {
  7700.                  "name": "Sebastian Bergmann",
  7701. -                "email": "sebastian@phpunit.de",
  7702. -                "role": "lead"
  7703. +                "email": "sebastian@phpunit.de"
  7704.              }
  7705.          ],
  7706. -        "description": "Simple template engine.",
  7707. -        "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7708. +        "description": "Provides functionality to handle HHVM/PHP environments",
  7709. +        "homepage": "http://www.github.com/sebastianbergmann/environment",
  7710.          "keywords": [
  7711. -            "template"
  7712. +            "Xdebug",
  7713. +            "environment",
  7714. +            "hhvm"
  7715.          ]
  7716.      },
  7717.      {
  7718. -        "name": "phpunit/phpunit-mock-objects",
  7719. -        "version": "2.3.8",
  7720. -        "version_normalized": "2.3.8.0",
  7721. +        "name": "sebastian/exporter",
  7722. +        "version": "1.2.2",
  7723. +        "version_normalized": "1.2.2.0",
  7724.          "source": {
  7725.              "type": "git",
  7726. -            "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  7727. -            "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  7728. +            "url": "https://github.com/sebastianbergmann/exporter.git",
  7729. +            "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  7730.          },
  7731.          "dist": {
  7732.              "type": "zip",
  7733. -            "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  7734. -            "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  7735. +            "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
  7736. +            "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  7737.              "shasum": ""
  7738.          },
  7739.          "require": {
  7740. -            "doctrine/instantiator": "^1.0.2",
  7741.              "php": ">=5.3.3",
  7742. -            "phpunit/php-text-template": "~1.2",
  7743. -            "sebastian/exporter": "~1.2"
  7744. +            "sebastian/recursion-context": "~1.0"
  7745.          },
  7746.          "require-dev": {
  7747. +            "ext-mbstring": "*",
  7748.              "phpunit/phpunit": "~4.4"
  7749.          },
  7750. -        "suggest": {
  7751. -            "ext-soap": "*"
  7752. -        },
  7753. -        "time": "2015-10-02T06:51:40+00:00",
  7754. +        "time": "2016-06-17T09:04:28+00:00",
  7755.          "type": "library",
  7756.          "extra": {
  7757.              "branch-alias": {
  7758. -                "dev-master": "2.3.x-dev"
  7759. +                "dev-master": "1.3.x-dev"
  7760.              }
  7761.          },
  7762.          "installation-source": "dist",
  7763. @@ -4847,41 +5177,59 @@
  7764.              "BSD-3-Clause"
  7765.          ],
  7766.          "authors": [
  7767. +            {
  7768. +                "name": "Jeff Welch",
  7769. +                "email": "whatthejeff@gmail.com"
  7770. +            },
  7771. +            {
  7772. +                "name": "Volker Dusch",
  7773. +                "email": "github@wallbash.com"
  7774. +            },
  7775. +            {
  7776. +                "name": "Bernhard Schussek",
  7777. +                "email": "bschussek@2bepublished.at"
  7778. +            },
  7779.              {
  7780.                  "name": "Sebastian Bergmann",
  7781. -                "email": "sb@sebastian-bergmann.de",
  7782. -                "role": "lead"
  7783. +                "email": "sebastian@phpunit.de"
  7784. +            },
  7785. +            {
  7786. +                "name": "Adam Harvey",
  7787. +                "email": "aharvey@php.net"
  7788.              }
  7789.          ],
  7790. -        "description": "Mock Object library for PHPUnit",
  7791. -        "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  7792. +        "description": "Provides the functionality to export PHP variables for visualization",
  7793. +        "homepage": "http://www.github.com/sebastianbergmann/exporter",
  7794.          "keywords": [
  7795. -            "mock",
  7796. -            "xunit"
  7797. +            "export",
  7798. +            "exporter"
  7799.          ]
  7800.      },
  7801.      {
  7802. -        "name": "phpunit/php-timer",
  7803. -        "version": "1.0.9",
  7804. -        "version_normalized": "1.0.9.0",
  7805. +        "name": "sebastian/global-state",
  7806. +        "version": "1.1.1",
  7807. +        "version_normalized": "1.1.1.0",
  7808.          "source": {
  7809.              "type": "git",
  7810. -            "url": "https://github.com/sebastianbergmann/php-timer.git",
  7811. -            "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  7812. +            "url": "https://github.com/sebastianbergmann/global-state.git",
  7813. +            "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  7814.          },
  7815.          "dist": {
  7816.              "type": "zip",
  7817. -            "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  7818. -            "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  7819. +            "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  7820. +            "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  7821.              "shasum": ""
  7822.          },
  7823.          "require": {
  7824. -            "php": "^5.3.3 || ^7.0"
  7825. +            "php": ">=5.3.3"
  7826.          },
  7827.          "require-dev": {
  7828. -            "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  7829. +            "phpunit/phpunit": "~4.2"
  7830.          },
  7831. -        "time": "2017-02-26T11:10:40+00:00",
  7832. +        "suggest": {
  7833. +            "ext-uopz": "*"
  7834. +        },
  7835. +        "time": "2015-10-12T03:26:01+00:00",
  7836.          "type": "library",
  7837.          "extra": {
  7838.              "branch-alias": {
  7839. @@ -4901,39 +5249,41 @@
  7840.          "authors": [
  7841.              {
  7842.                  "name": "Sebastian Bergmann",
  7843. -                "email": "sb@sebastian-bergmann.de",
  7844. -                "role": "lead"
  7845. +                "email": "sebastian@phpunit.de"
  7846.              }
  7847.          ],
  7848. -        "description": "Utility class for timing",
  7849. -        "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7850. +        "description": "Snapshotting of global state",
  7851. +        "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7852.          "keywords": [
  7853. -            "timer"
  7854. +            "global state"
  7855.          ]
  7856.      },
  7857.      {
  7858. -        "name": "phpunit/php-file-iterator",
  7859. -        "version": "1.4.2",
  7860. -        "version_normalized": "1.4.2.0",
  7861. +        "name": "sebastian/recursion-context",
  7862. +        "version": "1.0.5",
  7863. +        "version_normalized": "1.0.5.0",
  7864.          "source": {
  7865.              "type": "git",
  7866. -            "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7867. -            "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5"
  7868. +            "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7869. +            "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7"
  7870.          },
  7871.          "dist": {
  7872.              "type": "zip",
  7873. -            "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3cc8f69b3028d0f96a9078e6295d86e9bf019be5",
  7874. -            "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5",
  7875. +            "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  7876. +            "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  7877.              "shasum": ""
  7878.          },
  7879.          "require": {
  7880.              "php": ">=5.3.3"
  7881.          },
  7882. -        "time": "2016-10-03T07:40:28+00:00",
  7883. +        "require-dev": {
  7884. +            "phpunit/phpunit": "~4.4"
  7885. +        },
  7886. +        "time": "2016-10-03T07:41:43+00:00",
  7887.          "type": "library",
  7888.          "extra": {
  7889.              "branch-alias": {
  7890. -                "dev-master": "1.4.x-dev"
  7891. +                "dev-master": "1.0.x-dev"
  7892.              }
  7893.          },
  7894.          "installation-source": "dist",
  7895. @@ -4947,48 +5297,39 @@
  7896.              "BSD-3-Clause"
  7897.          ],
  7898.          "authors": [
  7899. +            {
  7900. +                "name": "Jeff Welch",
  7901. +                "email": "whatthejeff@gmail.com"
  7902. +            },
  7903.              {
  7904.                  "name": "Sebastian Bergmann",
  7905. -                "email": "sb@sebastian-bergmann.de",
  7906. -                "role": "lead"
  7907. +                "email": "sebastian@phpunit.de"
  7908. +            },
  7909. +            {
  7910. +                "name": "Adam Harvey",
  7911. +                "email": "aharvey@php.net"
  7912.              }
  7913.          ],
  7914. -        "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7915. -        "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7916. -        "keywords": [
  7917. -            "filesystem",
  7918. -            "iterator"
  7919. -        ]
  7920. +        "description": "Provides functionality to recursively process PHP variables",
  7921. +        "homepage": "http://www.github.com/sebastianbergmann/recursion-context"
  7922.      },
  7923.      {
  7924. -        "name": "phpunit/php-token-stream",
  7925. -        "version": "1.4.11",
  7926. -        "version_normalized": "1.4.11.0",
  7927. +        "name": "sebastian/version",
  7928. +        "version": "1.0.6",
  7929. +        "version_normalized": "1.0.6.0",
  7930.          "source": {
  7931.              "type": "git",
  7932. -            "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  7933. -            "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7"
  7934. +            "url": "https://github.com/sebastianbergmann/version.git",
  7935. +            "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  7936.          },
  7937.          "dist": {
  7938.              "type": "zip",
  7939. -            "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/e03f8f67534427a787e21a385a67ec3ca6978ea7",
  7940. -            "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7",
  7941. +            "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  7942. +            "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  7943.              "shasum": ""
  7944.          },
  7945. -        "require": {
  7946. -            "ext-tokenizer": "*",
  7947. -            "php": ">=5.3.3"
  7948. -        },
  7949. -        "require-dev": {
  7950. -            "phpunit/phpunit": "~4.2"
  7951. -        },
  7952. -        "time": "2017-02-27T10:12:30+00:00",
  7953. +        "time": "2015-06-21T13:59:46+00:00",
  7954.          "type": "library",
  7955. -        "extra": {
  7956. -            "branch-alias": {
  7957. -                "dev-master": "1.4-dev"
  7958. -            }
  7959. -        },
  7960.          "installation-source": "dist",
  7961.          "autoload": {
  7962.              "classmap": [
  7963. @@ -5002,58 +5343,74 @@
  7964.          "authors": [
  7965.              {
  7966.                  "name": "Sebastian Bergmann",
  7967. -                "email": "sebastian@phpunit.de"
  7968. +                "email": "sebastian@phpunit.de",
  7969. +                "role": "lead"
  7970.              }
  7971.          ],
  7972. -        "description": "Wrapper around PHP's tokenizer extension.",
  7973. -        "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  7974. -        "keywords": [
  7975. -            "tokenizer"
  7976. -        ]
  7977. +        "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7978. +        "homepage": "https://github.com/sebastianbergmann/version"
  7979.      },
  7980.      {
  7981. -        "name": "phpunit/php-code-coverage",
  7982. -        "version": "2.2.4",
  7983. -        "version_normalized": "2.2.4.0",
  7984. +        "name": "squizlabs/php_codesniffer",
  7985. +        "version": "2.9.1",
  7986. +        "version_normalized": "2.9.1.0",
  7987.          "source": {
  7988.              "type": "git",
  7989. -            "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7990. -            "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  7991. +            "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  7992. +            "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62"
  7993.          },
  7994.          "dist": {
  7995.              "type": "zip",
  7996. -            "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  7997. -            "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  7998. +            "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dcbed1074f8244661eecddfc2a675430d8d33f62",
  7999. +            "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62",
  8000.              "shasum": ""
  8001.          },
  8002.          "require": {
  8003. -            "php": ">=5.3.3",
  8004. -            "phpunit/php-file-iterator": "~1.3",
  8005. -            "phpunit/php-text-template": "~1.2",
  8006. -            "phpunit/php-token-stream": "~1.3",
  8007. -            "sebastian/environment": "^1.3.2",
  8008. -            "sebastian/version": "~1.0"
  8009. +            "ext-simplexml": "*",
  8010. +            "ext-tokenizer": "*",
  8011. +            "ext-xmlwriter": "*",
  8012. +            "php": ">=5.1.2"
  8013.          },
  8014.          "require-dev": {
  8015. -            "ext-xdebug": ">=2.1.4",
  8016. -            "phpunit/phpunit": "~4"
  8017. -        },
  8018. -        "suggest": {
  8019. -            "ext-dom": "*",
  8020. -            "ext-xdebug": ">=2.2.1",
  8021. -            "ext-xmlwriter": "*"
  8022. +            "phpunit/phpunit": "~4.0"
  8023.          },
  8024. -        "time": "2015-10-06T15:47:00+00:00",
  8025. +        "time": "2017-05-22T02:43:20+00:00",
  8026. +        "bin": [
  8027. +            "scripts/phpcs",
  8028. +            "scripts/phpcbf"
  8029. +        ],
  8030.          "type": "library",
  8031.          "extra": {
  8032.              "branch-alias": {
  8033. -                "dev-master": "2.2.x-dev"
  8034. +                "dev-master": "2.x-dev"
  8035.              }
  8036.          },
  8037.          "installation-source": "dist",
  8038.          "autoload": {
  8039.              "classmap": [
  8040. -                "src/"
  8041. +                "CodeSniffer.php",
  8042. +                "CodeSniffer/CLI.php",
  8043. +                "CodeSniffer/Exception.php",
  8044. +                "CodeSniffer/File.php",
  8045. +                "CodeSniffer/Fixer.php",
  8046. +                "CodeSniffer/Report.php",
  8047. +                "CodeSniffer/Reporting.php",
  8048. +                "CodeSniffer/Sniff.php",
  8049. +                "CodeSniffer/Tokens.php",
  8050. +                "CodeSniffer/Reports/",
  8051. +                "CodeSniffer/Tokenizers/",
  8052. +                "CodeSniffer/DocGenerators/",
  8053. +                "CodeSniffer/Standards/AbstractPatternSniff.php",
  8054. +                "CodeSniffer/Standards/AbstractScopeSniff.php",
  8055. +                "CodeSniffer/Standards/AbstractVariableSniff.php",
  8056. +                "CodeSniffer/Standards/IncorrectPatternException.php",
  8057. +                "CodeSniffer/Standards/Generic/Sniffs/",
  8058. +                "CodeSniffer/Standards/MySource/Sniffs/",
  8059. +                "CodeSniffer/Standards/PEAR/Sniffs/",
  8060. +                "CodeSniffer/Standards/PSR1/Sniffs/",
  8061. +                "CodeSniffer/Standards/PSR2/Sniffs/",
  8062. +                "CodeSniffer/Standards/Squiz/Sniffs/",
  8063. +                "CodeSniffer/Standards/Zend/Sniffs/"
  8064.              ]
  8065.          },
  8066.          "notification-url": "https://packagist.org/downloads/",
  8067. @@ -5062,56 +5419,51 @@
  8068.          ],
  8069.          "authors": [
  8070.              {
  8071. -                "name": "Sebastian Bergmann",
  8072. -                "email": "sb@sebastian-bergmann.de",
  8073. +                "name": "Greg Sherwood",
  8074.                  "role": "lead"
  8075.              }
  8076.          ],
  8077. -        "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8078. -        "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8079. +        "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  8080. +        "homepage": "http://www.squizlabs.com/php-codesniffer",
  8081.          "keywords": [
  8082. -            "coverage",
  8083. -            "testing",
  8084. -            "xunit"
  8085. +            "phpcs",
  8086. +            "standards"
  8087.          ]
  8088.      },
  8089.      {
  8090. -        "name": "phpspec/prophecy",
  8091. -        "version": "v1.7.2",
  8092. -        "version_normalized": "1.7.2.0",
  8093. +        "name": "stack/builder",
  8094. +        "version": "v1.0.4",
  8095. +        "version_normalized": "1.0.4.0",
  8096.          "source": {
  8097.              "type": "git",
  8098. -            "url": "https://github.com/phpspec/prophecy.git",
  8099. -            "reference": "c9b8c6088acd19d769d4cc0ffa60a9fe34344bd6"
  8100. +            "url": "https://github.com/stackphp/builder.git",
  8101. +            "reference": "59fcc9b448a8ce5e338a04c4e2e4aca893e83425"
  8102.          },
  8103.          "dist": {
  8104.              "type": "zip",
  8105. -            "url": "https://api.github.com/repos/phpspec/prophecy/zipball/c9b8c6088acd19d769d4cc0ffa60a9fe34344bd6",
  8106. -            "reference": "c9b8c6088acd19d769d4cc0ffa60a9fe34344bd6",
  8107. +            "url": "https://api.github.com/repos/stackphp/builder/zipball/59fcc9b448a8ce5e338a04c4e2e4aca893e83425",
  8108. +            "reference": "59fcc9b448a8ce5e338a04c4e2e4aca893e83425",
  8109.              "shasum": ""
  8110.          },
  8111.          "require": {
  8112. -            "doctrine/instantiator": "^1.0.2",
  8113. -            "php": "^5.3|^7.0",
  8114. -            "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  8115. -            "sebastian/comparator": "^1.1|^2.0",
  8116. -            "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  8117. +            "php": ">=5.3.0",
  8118. +            "symfony/http-foundation": "~2.1|~3.0",
  8119. +            "symfony/http-kernel": "~2.1|~3.0"
  8120.          },
  8121.          "require-dev": {
  8122. -            "phpspec/phpspec": "^2.5|^3.2",
  8123. -            "phpunit/phpunit": "^4.8 || ^5.6.5"
  8124. +            "silex/silex": "~1.0"
  8125.          },
  8126. -        "time": "2017-09-04T11:05:03+00:00",
  8127. +        "time": "2016-06-02T06:58:42+00:00",
  8128.          "type": "library",
  8129.          "extra": {
  8130.              "branch-alias": {
  8131. -                "dev-master": "1.7.x-dev"
  8132. +                "dev-master": "1.0-dev"
  8133.              }
  8134.          },
  8135.          "installation-source": "dist",
  8136.          "autoload": {
  8137.              "psr-0": {
  8138. -                "Prophecy\\": "src/"
  8139. +                "Stack": "src"
  8140.              }
  8141.          },
  8142.          "notification-url": "https://packagist.org/downloads/",
  8143. @@ -5120,523 +5472,464 @@
  8144.          ],
  8145.          "authors": [
  8146.              {
  8147. -                "name": "Konstantin Kudryashov",
  8148. -                "email": "ever.zet@gmail.com",
  8149. -                "homepage": "http://everzet.com"
  8150. -            },
  8151. -            {
  8152. -                "name": "Marcello Duarte",
  8153. -                "email": "marcello.duarte@gmail.com"
  8154. +                "name": "Igor Wiedler",
  8155. +                "email": "igor@wiedler.ch"
  8156.              }
  8157.          ],
  8158. -        "description": "Highly opinionated mocking framework for PHP 5.3+",
  8159. -        "homepage": "https://github.com/phpspec/prophecy",
  8160. +        "description": "Builder for stack middlewares based on HttpKernelInterface.",
  8161.          "keywords": [
  8162. -            "Double",
  8163. -            "Dummy",
  8164. -            "fake",
  8165. -            "mock",
  8166. -            "spy",
  8167. -            "stub"
  8168. +            "stack"
  8169.          ]
  8170.      },
  8171.      {
  8172. -        "name": "phpunit/phpunit",
  8173. -        "version": "4.8.36",
  8174. -        "version_normalized": "4.8.36.0",
  8175. +        "name": "stecman/symfony-console-completion",
  8176. +        "version": "0.7.0",
  8177. +        "version_normalized": "0.7.0.0",
  8178.          "source": {
  8179.              "type": "git",
  8180. -            "url": "https://github.com/sebastianbergmann/phpunit.git",
  8181. -            "reference": "46023de9a91eec7dfb06cc56cb4e260017298517"
  8182. +            "url": "https://github.com/stecman/symfony-console-completion.git",
  8183. +            "reference": "5461d43e53092b3d3b9dbd9d999f2054730f4bbb"
  8184.          },
  8185.          "dist": {
  8186.              "type": "zip",
  8187. -            "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/46023de9a91eec7dfb06cc56cb4e260017298517",
  8188. -            "reference": "46023de9a91eec7dfb06cc56cb4e260017298517",
  8189. +            "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/5461d43e53092b3d3b9dbd9d999f2054730f4bbb",
  8190. +            "reference": "5461d43e53092b3d3b9dbd9d999f2054730f4bbb",
  8191.              "shasum": ""
  8192.          },
  8193.          "require": {
  8194. -            "ext-dom": "*",
  8195. -            "ext-json": "*",
  8196. -            "ext-pcre": "*",
  8197. -            "ext-reflection": "*",
  8198. -            "ext-spl": "*",
  8199. -            "php": ">=5.3.3",
  8200. -            "phpspec/prophecy": "^1.3.1",
  8201. -            "phpunit/php-code-coverage": "~2.1",
  8202. -            "phpunit/php-file-iterator": "~1.4",
  8203. -            "phpunit/php-text-template": "~1.2",
  8204. -            "phpunit/php-timer": "^1.0.6",
  8205. -            "phpunit/phpunit-mock-objects": "~2.3",
  8206. -            "sebastian/comparator": "~1.2.2",
  8207. -            "sebastian/diff": "~1.2",
  8208. -            "sebastian/environment": "~1.3",
  8209. -            "sebastian/exporter": "~1.2",
  8210. -            "sebastian/global-state": "~1.0",
  8211. -            "sebastian/version": "~1.0",
  8212. -            "symfony/yaml": "~2.1|~3.0"
  8213. +            "php": ">=5.3.2",
  8214. +            "symfony/console": "~2.3 || ~3.0"
  8215.          },
  8216. -        "suggest": {
  8217. -            "phpunit/php-invoker": "~1.1"
  8218. +        "require-dev": {
  8219. +            "phpunit/phpunit": "~4.4"
  8220.          },
  8221. -        "time": "2017-06-21T08:07:12+00:00",
  8222. -        "bin": [
  8223. -            "phpunit"
  8224. -        ],
  8225. +        "time": "2016-02-24T05:08:54+00:00",
  8226.          "type": "library",
  8227.          "extra": {
  8228.              "branch-alias": {
  8229. -                "dev-master": "4.8.x-dev"
  8230. +                "dev-master": "0.6.x-dev"
  8231.              }
  8232.          },
  8233.          "installation-source": "dist",
  8234.          "autoload": {
  8235. -            "classmap": [
  8236. -                "src/"
  8237. -            ]
  8238. +            "psr-4": {
  8239. +                "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  8240. +            }
  8241.          },
  8242.          "notification-url": "https://packagist.org/downloads/",
  8243.          "license": [
  8244. -            "BSD-3-Clause"
  8245. +            "MIT"
  8246.          ],
  8247.          "authors": [
  8248.              {
  8249. -                "name": "Sebastian Bergmann",
  8250. -                "email": "sebastian@phpunit.de",
  8251. -                "role": "lead"
  8252. +                "name": "Stephen Holdaway",
  8253. +                "email": "stephen@stecman.co.nz"
  8254.              }
  8255.          ],
  8256. -        "description": "The PHP Unit Testing framework.",
  8257. -        "homepage": "https://phpunit.de/",
  8258. -        "keywords": [
  8259. -            "phpunit",
  8260. -            "testing",
  8261. -            "xunit"
  8262. -        ]
  8263. +        "description": "Automatic BASH completion for Symfony Console Component based applications."
  8264.      },
  8265.      {
  8266. -        "name": "drupal/config_filter",
  8267. -        "version": "1.0.0",
  8268. -        "version_normalized": "1.0.0.0",
  8269. +        "name": "symfony-cmf/routing",
  8270. +        "version": "1.4.1",
  8271. +        "version_normalized": "1.4.1.0",
  8272.          "source": {
  8273.              "type": "git",
  8274. -            "url": "https://git.drupal.org/project/config_filter",
  8275. -            "reference": "8.x-1.0"
  8276. +            "url": "https://github.com/symfony-cmf/routing.git",
  8277. +            "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  8278.          },
  8279.          "dist": {
  8280.              "type": "zip",
  8281. -            "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.0.zip",
  8282. -            "reference": "8.x-1.0",
  8283. -            "shasum": "26b992c6dcb338a507d382235c696a1c9a8723e3"
  8284. +            "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8285. +            "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8286. +            "shasum": ""
  8287.          },
  8288.          "require": {
  8289. -            "drupal/core": "~8.0"
  8290. +            "php": "^5.3.9|^7.0",
  8291. +            "psr/log": "1.*",
  8292. +            "symfony/http-kernel": "^2.2|3.*",
  8293. +            "symfony/routing": "^2.2|3.*"
  8294. +        },
  8295. +        "require-dev": {
  8296. +            "friendsofsymfony/jsrouting-bundle": "^1.1",
  8297. +            "symfony-cmf/testing": "^1.3",
  8298. +            "symfony/config": "^2.2|3.*",
  8299. +            "symfony/dependency-injection": "^2.0.5|3.*",
  8300. +            "symfony/event-dispatcher": "^2.1|3.*"
  8301.          },
  8302.          "suggest": {
  8303. -            "drupal/config_split": "Split site configuration for different environments."
  8304. +            "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  8305.          },
  8306. -        "type": "drupal-module",
  8307. +        "time": "2017-05-09T08:10:41+00:00",
  8308. +        "type": "library",
  8309.          "extra": {
  8310.              "branch-alias": {
  8311. -                "dev-1.x": "1.x-dev"
  8312. -            },
  8313. -            "drupal": {
  8314. -                "version": "8.x-1.0",
  8315. -                "datestamp": "1503305044",
  8316. -                "security-coverage": {
  8317. -                    "status": "covered",
  8318. -                    "message": "Covered by Drupal's security advisory policy"
  8319. -                }
  8320. +                "dev-master": "1.4-dev"
  8321.              }
  8322.          },
  8323.          "installation-source": "dist",
  8324. -        "notification-url": "https://packages.drupal.org/8/downloads",
  8325. +        "autoload": {
  8326. +            "psr-4": {
  8327. +                "Symfony\\Cmf\\Component\\Routing\\": ""
  8328. +            }
  8329. +        },
  8330. +        "notification-url": "https://packagist.org/downloads/",
  8331.          "license": [
  8332. -            "GPL-2.0+"
  8333. +            "MIT"
  8334.          ],
  8335.          "authors": [
  8336.              {
  8337. -                "name": "Fabian Bircher",
  8338. -                "homepage": "https://www.drupal.org/u/bircher",
  8339. -                "email": "opensource@fabianbircher.com",
  8340. -                "role": "Maintainer"
  8341. -            },
  8342. -            {
  8343. -                "name": "Nuvole Web",
  8344. -                "homepage": "http://nuvole.org",
  8345. -                "email": "info@nuvole.org",
  8346. -                "role": "Maintainer"
  8347. -            },
  8348. -            {
  8349. -                "name": "pescetti",
  8350. -                "homepage": "https://www.drupal.org/user/436244"
  8351. +                "name": "Symfony CMF Community",
  8352. +                "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  8353.              }
  8354.          ],
  8355. -        "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  8356. -        "homepage": "https://www.drupal.org/project/config_filter",
  8357. +        "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  8358. +        "homepage": "http://cmf.symfony.com",
  8359.          "keywords": [
  8360. -            "Drupal",
  8361. -            "configuration",
  8362. -            "configuration management"
  8363. -        ],
  8364. -        "support": {
  8365. -            "source": "http://cgit.drupalcode.org/config_filter",
  8366. -            "issues": "https://www.drupal.org/project/issues/config_filter",
  8367. -            "irc": "irc://irc.freenode.org/drupal-contribute"
  8368. -        }
  8369. +            "database",
  8370. +            "routing"
  8371. +        ]
  8372.      },
  8373.      {
  8374. -        "name": "drupal/config_split",
  8375. -        "version": "1.2.0",
  8376. -        "version_normalized": "1.2.0.0",
  8377. +        "name": "symfony/browser-kit",
  8378. +        "version": "v3.3.10",
  8379. +        "version_normalized": "3.3.10.0",
  8380.          "source": {
  8381.              "type": "git",
  8382. -            "url": "https://git.drupal.org/project/config_split",
  8383. -            "reference": "8.x-1.2"
  8384. +            "url": "https://github.com/symfony/browser-kit.git",
  8385. +            "reference": "317d5bdf0127f06db7ea294186132b4f5b036839"
  8386.          },
  8387.          "dist": {
  8388.              "type": "zip",
  8389. -            "url": "https://ftp.drupal.org/files/projects/config_split-8.x-1.2.zip",
  8390. -            "reference": "8.x-1.2",
  8391. -            "shasum": "f3683737bae3927073b511c1313a047668d0eab1"
  8392. +            "url": "https://api.github.com/repos/symfony/browser-kit/zipball/317d5bdf0127f06db7ea294186132b4f5b036839",
  8393. +            "reference": "317d5bdf0127f06db7ea294186132b4f5b036839",
  8394. +            "shasum": ""
  8395.          },
  8396.          "require": {
  8397. -            "drupal/config_filter": "*",
  8398. -            "drupal/core": "*"
  8399. +            "php": "^5.5.9|>=7.0.8",
  8400. +            "symfony/dom-crawler": "~2.8|~3.0"
  8401.          },
  8402. -        "type": "drupal-module",
  8403. +        "require-dev": {
  8404. +            "symfony/css-selector": "~2.8|~3.0",
  8405. +            "symfony/process": "~2.8|~3.0"
  8406. +        },
  8407. +        "suggest": {
  8408. +            "symfony/process": ""
  8409. +        },
  8410. +        "time": "2017-10-02T06:42:24+00:00",
  8411. +        "type": "library",
  8412.          "extra": {
  8413. -            "branch-alias": {
  8414. -                "dev-1.x": "1.x-dev"
  8415. -            },
  8416. -            "drupal": {
  8417. -                "version": "8.x-1.2",
  8418. -                "datestamp": "1506875344",
  8419. -                "security-coverage": {
  8420. -                    "status": "covered",
  8421. -                    "message": "Covered by Drupal's security advisory policy"
  8422. -                }
  8423. +            "branch-alias": {
  8424. +                "dev-master": "3.3-dev"
  8425.              }
  8426.          },
  8427.          "installation-source": "dist",
  8428. -        "notification-url": "https://packages.drupal.org/8/downloads",
  8429. +        "autoload": {
  8430. +            "psr-4": {
  8431. +                "Symfony\\Component\\BrowserKit\\": ""
  8432. +            },
  8433. +            "exclude-from-classmap": [
  8434. +                "/Tests/"
  8435. +            ]
  8436. +        },
  8437. +        "notification-url": "https://packagist.org/downloads/",
  8438.          "license": [
  8439. -            "GPL-2.0+"
  8440. +            "MIT"
  8441.          ],
  8442.          "authors": [
  8443.              {
  8444. -                "name": "Fabian Bircher",
  8445. -                "homepage": "https://www.drupal.org/u/bircher",
  8446. -                "email": "opensource@fabianbircher.com",
  8447. -                "role": "Maintainer"
  8448. -            },
  8449. -            {
  8450. -                "name": "Nuvole Web",
  8451. -                "homepage": "http://nuvole.org",
  8452. -                "email": "info@nuvole.org",
  8453. -                "role": "Maintainer"
  8454. +                "name": "Fabien Potencier",
  8455. +                "email": "fabien@symfony.com"
  8456.              },
  8457.              {
  8458. -                "name": "pescetti",
  8459. -                "homepage": "https://www.drupal.org/user/436244"
  8460. +                "name": "Symfony Community",
  8461. +                "homepage": "https://symfony.com/contributors"
  8462.              }
  8463.          ],
  8464. -        "description": "Configuration filter for importing and exporting extra config",
  8465. -        "homepage": "https://www.drupal.org/project/config_split",
  8466. -        "keywords": [
  8467. -            "Drupal",
  8468. -            "configuration",
  8469. -            "configuration management"
  8470. -        ],
  8471. -        "support": {
  8472. -            "source": "http://cgit.drupalcode.org/config_split",
  8473. -            "issues": "https://www.drupal.org/project/issues/config_split",
  8474. -            "irc": "irc://irc.freenode.org/drupal-contribute"
  8475. -        }
  8476. +        "description": "Symfony BrowserKit Component",
  8477. +        "homepage": "https://symfony.com"
  8478.      },
  8479.      {
  8480. -        "name": "squizlabs/php_codesniffer",
  8481. -        "version": "2.9.1",
  8482. -        "version_normalized": "2.9.1.0",
  8483. +        "name": "symfony/cache",
  8484. +        "version": "v3.3.10",
  8485. +        "version_normalized": "3.3.10.0",
  8486.          "source": {
  8487.              "type": "git",
  8488. -            "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  8489. -            "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62"
  8490. +            "url": "https://github.com/symfony/cache.git",
  8491. +            "reference": "5f78b9728869434a445bdd86d63ef723f93e5433"
  8492.          },
  8493.          "dist": {
  8494.              "type": "zip",
  8495. -            "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dcbed1074f8244661eecddfc2a675430d8d33f62",
  8496. -            "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62",
  8497. +            "url": "https://api.github.com/repos/symfony/cache/zipball/5f78b9728869434a445bdd86d63ef723f93e5433",
  8498. +            "reference": "5f78b9728869434a445bdd86d63ef723f93e5433",
  8499.              "shasum": ""
  8500.          },
  8501.          "require": {
  8502. -            "ext-simplexml": "*",
  8503. -            "ext-tokenizer": "*",
  8504. -            "ext-xmlwriter": "*",
  8505. -            "php": ">=5.1.2"
  8506. +            "php": "^5.5.9|>=7.0.8",
  8507. +            "psr/cache": "~1.0",
  8508. +            "psr/log": "~1.0",
  8509. +            "psr/simple-cache": "^1.0",
  8510. +            "symfony/polyfill-apcu": "~1.1"
  8511. +        },
  8512. +        "conflict": {
  8513. +            "symfony/var-dumper": "<3.3"
  8514. +        },
  8515. +        "provide": {
  8516. +            "psr/cache-implementation": "1.0",
  8517. +            "psr/simple-cache-implementation": "1.0"
  8518.          },
  8519.          "require-dev": {
  8520. -            "phpunit/phpunit": "~4.0"
  8521. +            "cache/integration-tests": "dev-master",
  8522. +            "doctrine/cache": "~1.6",
  8523. +            "doctrine/dbal": "~2.4",
  8524. +            "predis/predis": "~1.0"
  8525.          },
  8526. -        "time": "2017-05-22T02:43:20+00:00",
  8527. -        "bin": [
  8528. -            "scripts/phpcs",
  8529. -            "scripts/phpcbf"
  8530. -        ],
  8531. +        "time": "2017-10-04T07:58:49+00:00",
  8532.          "type": "library",
  8533.          "extra": {
  8534.              "branch-alias": {
  8535. -                "dev-master": "2.x-dev"
  8536. +                "dev-master": "3.3-dev"
  8537.              }
  8538.          },
  8539.          "installation-source": "dist",
  8540.          "autoload": {
  8541. -            "classmap": [
  8542. -                "CodeSniffer.php",
  8543. -                "CodeSniffer/CLI.php",
  8544. -                "CodeSniffer/Exception.php",
  8545. -                "CodeSniffer/File.php",
  8546. -                "CodeSniffer/Fixer.php",
  8547. -                "CodeSniffer/Report.php",
  8548. -                "CodeSniffer/Reporting.php",
  8549. -                "CodeSniffer/Sniff.php",
  8550. -                "CodeSniffer/Tokens.php",
  8551. -                "CodeSniffer/Reports/",
  8552. -                "CodeSniffer/Tokenizers/",
  8553. -                "CodeSniffer/DocGenerators/",
  8554. -                "CodeSniffer/Standards/AbstractPatternSniff.php",
  8555. -                "CodeSniffer/Standards/AbstractScopeSniff.php",
  8556. -                "CodeSniffer/Standards/AbstractVariableSniff.php",
  8557. -                "CodeSniffer/Standards/IncorrectPatternException.php",
  8558. -                "CodeSniffer/Standards/Generic/Sniffs/",
  8559. -                "CodeSniffer/Standards/MySource/Sniffs/",
  8560. -                "CodeSniffer/Standards/PEAR/Sniffs/",
  8561. -                "CodeSniffer/Standards/PSR1/Sniffs/",
  8562. -                "CodeSniffer/Standards/PSR2/Sniffs/",
  8563. -                "CodeSniffer/Standards/Squiz/Sniffs/",
  8564. -                "CodeSniffer/Standards/Zend/Sniffs/"
  8565. +            "psr-4": {
  8566. +                "Symfony\\Component\\Cache\\": ""
  8567. +            },
  8568. +            "exclude-from-classmap": [
  8569. +                "/Tests/"
  8570.              ]
  8571.          },
  8572.          "notification-url": "https://packagist.org/downloads/",
  8573.          "license": [
  8574. -            "BSD-3-Clause"
  8575. +            "MIT"
  8576.          ],
  8577.          "authors": [
  8578.              {
  8579. -                "name": "Greg Sherwood",
  8580. -                "role": "lead"
  8581. +                "name": "Nicolas Grekas",
  8582. +                "email": "p@tchwork.com"
  8583. +            },
  8584. +            {
  8585. +                "name": "Symfony Community",
  8586. +                "homepage": "https://symfony.com/contributors"
  8587.              }
  8588.          ],
  8589. -        "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  8590. -        "homepage": "http://www.squizlabs.com/php-codesniffer",
  8591. +        "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  8592. +        "homepage": "https://symfony.com",
  8593.          "keywords": [
  8594. -            "phpcs",
  8595. -            "standards"
  8596. +            "caching",
  8597. +            "psr6"
  8598.          ]
  8599.      },
  8600.      {
  8601. -        "name": "drupal/coder",
  8602. -        "version": "8.2.12",
  8603. -        "version_normalized": "8.2.12.0",
  8604. +        "name": "symfony/class-loader",
  8605. +        "version": "v3.2.14",
  8606. +        "version_normalized": "3.2.14.0",
  8607.          "source": {
  8608.              "type": "git",
  8609. -            "url": "https://git.drupal.org/project/coder.git",
  8610. -            "reference": "984c54a7b1e8f27ff1c32348df69712afd86b17f"
  8611. +            "url": "https://github.com/symfony/class-loader.git",
  8612. +            "reference": "e192d96b15fdd168bdb1c91001d26c93ba4af482"
  8613. +        },
  8614. +        "dist": {
  8615. +            "type": "zip",
  8616. +            "url": "https://api.github.com/repos/symfony/class-loader/zipball/e192d96b15fdd168bdb1c91001d26c93ba4af482",
  8617. +            "reference": "e192d96b15fdd168bdb1c91001d26c93ba4af482",
  8618. +            "shasum": ""
  8619.          },
  8620.          "require": {
  8621. -            "ext-mbstring": "*",
  8622. -            "php": ">=5.4.0",
  8623. -            "squizlabs/php_codesniffer": ">=2.8.1 <3.0",
  8624. -            "symfony/yaml": ">=2.0.0"
  8625. +            "php": ">=5.5.9"
  8626.          },
  8627.          "require-dev": {
  8628. -            "phpunit/phpunit": ">=3.7 <6"
  8629. +            "symfony/finder": "~2.8|~3.0",
  8630. +            "symfony/polyfill-apcu": "~1.1"
  8631. +        },
  8632. +        "suggest": {
  8633. +            "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  8634. +        },
  8635. +        "time": "2017-06-01T21:00:24+00:00",
  8636. +        "type": "library",
  8637. +        "extra": {
  8638. +            "branch-alias": {
  8639. +                "dev-master": "3.2-dev"
  8640. +            }
  8641. +        },
  8642. +        "installation-source": "dist",
  8643. +        "autoload": {
  8644. +            "psr-4": {
  8645. +                "Symfony\\Component\\ClassLoader\\": ""
  8646. +            },
  8647. +            "exclude-from-classmap": [
  8648. +                "/Tests/"
  8649. +            ]
  8650.          },
  8651. -        "time": "2017-03-18T10:28:49+00:00",
  8652. -        "type": "phpcodesniffer-standard",
  8653. -        "installation-source": "source",
  8654.          "notification-url": "https://packagist.org/downloads/",
  8655.          "license": [
  8656. -            "GPL-2.0+"
  8657. +            "MIT"
  8658.          ],
  8659. -        "description": "Coder is a library to review Drupal code.",
  8660. -        "homepage": "https://www.drupal.org/project/coder",
  8661. -        "keywords": [
  8662. -            "code review",
  8663. -            "phpcs",
  8664. -            "standards"
  8665. -        ]
  8666. +        "authors": [
  8667. +            {
  8668. +                "name": "Fabien Potencier",
  8669. +                "email": "fabien@symfony.com"
  8670. +            },
  8671. +            {
  8672. +                "name": "Symfony Community",
  8673. +                "homepage": "https://symfony.com/contributors"
  8674. +            }
  8675. +        ],
  8676. +        "description": "Symfony ClassLoader Component",
  8677. +        "homepage": "https://symfony.com"
  8678.      },
  8679.      {
  8680. -        "name": "drupal/entity_reference_revisions",
  8681. -        "version": "1.3.0",
  8682. -        "version_normalized": "1.3.0.0",
  8683. +        "name": "symfony/config",
  8684. +        "version": "v3.2.13",
  8685. +        "version_normalized": "3.2.13.0",
  8686.          "source": {
  8687.              "type": "git",
  8688. -            "url": "https://git.drupal.org/project/entity_reference_revisions",
  8689. -            "reference": "8.x-1.3"
  8690. +            "url": "https://github.com/symfony/config.git",
  8691. +            "reference": "e5533fcc0b3dd377626153b2852707878f363728"
  8692.          },
  8693.          "dist": {
  8694.              "type": "zip",
  8695. -            "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.3.zip",
  8696. -            "reference": "8.x-1.3",
  8697. -            "shasum": "78aebb58efbbfcbb2faa40a1afc0830312b32631"
  8698. +            "url": "https://api.github.com/repos/symfony/config/zipball/e5533fcc0b3dd377626153b2852707878f363728",
  8699. +            "reference": "e5533fcc0b3dd377626153b2852707878f363728",
  8700. +            "shasum": ""
  8701.          },
  8702.          "require": {
  8703. -            "drupal/core": "~8.0"
  8704. +            "php": ">=5.5.9",
  8705. +            "symfony/filesystem": "~2.8|~3.0"
  8706.          },
  8707.          "require-dev": {
  8708. -            "drupal/diff": "*"
  8709. +            "symfony/yaml": "~3.0"
  8710.          },
  8711. -        "type": "drupal-module",
  8712. +        "suggest": {
  8713. +            "symfony/yaml": "To use the yaml reference dumper"
  8714. +        },
  8715. +        "time": "2017-04-12T14:13:17+00:00",
  8716. +        "type": "library",
  8717.          "extra": {
  8718.              "branch-alias": {
  8719. -                "dev-1.x": "1.x-dev"
  8720. -            },
  8721. -            "drupal": {
  8722. -                "version": "8.x-1.3",
  8723. -                "datestamp": "1495814284",
  8724. -                "security-coverage": {
  8725. -                    "status": "covered",
  8726. -                    "message": "Covered by Drupal's security advisory policy"
  8727. -                }
  8728. +                "dev-master": "3.2-dev"
  8729.              }
  8730.          },
  8731.          "installation-source": "dist",
  8732. -        "notification-url": "https://packages.drupal.org/8/downloads",
  8733. +        "autoload": {
  8734. +            "psr-4": {
  8735. +                "Symfony\\Component\\Config\\": ""
  8736. +            },
  8737. +            "exclude-from-classmap": [
  8738. +                "/Tests/"
  8739. +            ]
  8740. +        },
  8741. +        "notification-url": "https://packagist.org/downloads/",
  8742.          "license": [
  8743. -            "GPL-2.0+"
  8744. +            "MIT"
  8745.          ],
  8746.          "authors": [
  8747.              {
  8748. -                "name": "Frans",
  8749. -                "homepage": "https://www.drupal.org/user/514222"
  8750. -            },
  8751. -            {
  8752. -                "name": "jeroen.b",
  8753. -                "homepage": "https://www.drupal.org/user/1853532"
  8754. +                "name": "Fabien Potencier",
  8755. +                "email": "fabien@symfony.com"
  8756.              },
  8757.              {
  8758. -                "name": "miro_dietiker",
  8759. -                "homepage": "https://www.drupal.org/user/227761"
  8760. +                "name": "Symfony Community",
  8761. +                "homepage": "https://symfony.com/contributors"
  8762.              }
  8763.          ],
  8764. -        "description": "Adds a Entity Reference field type with revision support.",
  8765. -        "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  8766. -        "support": {
  8767. -            "source": "http://cgit.drupalcode.org/entity_reference_revisions"
  8768. -        }
  8769. +        "description": "Symfony Config Component",
  8770. +        "homepage": "https://symfony.com"
  8771.      },
  8772.      {
  8773. -        "name": "drupal/paragraphs",
  8774. -        "version": "1.2.0",
  8775. -        "version_normalized": "1.2.0.0",
  8776. +        "name": "symfony/console",
  8777. +        "version": "v3.2.14",
  8778. +        "version_normalized": "3.2.14.0",
  8779.          "source": {
  8780.              "type": "git",
  8781. -            "url": "https://git.drupal.org/project/paragraphs",
  8782. -            "reference": "8.x-1.2"
  8783. +            "url": "https://github.com/symfony/console.git",
  8784. +            "reference": "eced439413608647aeff243038a33ea246b2b33a"
  8785.          },
  8786.          "dist": {
  8787.              "type": "zip",
  8788. -            "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.2.zip",
  8789. -            "reference": "8.x-1.2",
  8790. -            "shasum": "6efc9d4351d4b21a55e7a6428c78495aaca662ef"
  8791. +            "url": "https://api.github.com/repos/symfony/console/zipball/eced439413608647aeff243038a33ea246b2b33a",
  8792. +            "reference": "eced439413608647aeff243038a33ea246b2b33a",
  8793. +            "shasum": ""
  8794.          },
  8795.          "require": {
  8796. -            "drupal/core": "~8",
  8797. -            "drupal/entity_reference_revisions": "~1.3"
  8798. +            "php": ">=5.5.9",
  8799. +            "symfony/debug": "~2.8|~3.0",
  8800. +            "symfony/polyfill-mbstring": "~1.0"
  8801.          },
  8802.          "require-dev": {
  8803. -            "drupal/block_field": "~1.0",
  8804. -            "drupal/diff": "~1.0",
  8805. -            "drupal/field_group": "~1.0",
  8806. -            "drupal/inline_entity_form": "~1.0",
  8807. -            "drupal/replicate": "~1.0",
  8808. -            "drupal/search_api": "*",
  8809. -            "drupal/search_api_db": "*"
  8810. +            "psr/log": "~1.0",
  8811. +            "symfony/event-dispatcher": "~2.8|~3.0",
  8812. +            "symfony/filesystem": "~2.8|~3.0",
  8813. +            "symfony/process": "~2.8|~3.0"
  8814.          },
  8815. -        "type": "drupal-module",
  8816. +        "suggest": {
  8817. +            "psr/log": "For using the console logger",
  8818. +            "symfony/event-dispatcher": "",
  8819. +            "symfony/filesystem": "",
  8820. +            "symfony/process": ""
  8821. +        },
  8822. +        "time": "2017-07-29T21:27:41+00:00",
  8823. +        "type": "library",
  8824.          "extra": {
  8825.              "branch-alias": {
  8826. -                "dev-1.x": "1.x-dev"
  8827. -            },
  8828. -            "drupal": {
  8829. -                "version": "8.x-1.2",
  8830. -                "datestamp": "1505802867",
  8831. -                "security-coverage": {
  8832. -                    "status": "covered",
  8833. -                    "message": "Covered by Drupal's security advisory policy"
  8834. -                }
  8835. +                "dev-master": "3.2-dev"
  8836.              }
  8837.          },
  8838.          "installation-source": "dist",
  8839. -        "notification-url": "https://packages.drupal.org/8/downloads",
  8840. +        "autoload": {
  8841. +            "psr-4": {
  8842. +                "Symfony\\Component\\Console\\": ""
  8843. +            },
  8844. +            "exclude-from-classmap": [
  8845. +                "/Tests/"
  8846. +            ]
  8847. +        },
  8848. +        "notification-url": "https://packagist.org/downloads/",
  8849.          "license": [
  8850. -            "GPL-2.0"
  8851. +            "MIT"
  8852.          ],
  8853.          "authors": [
  8854.              {
  8855. -                "name": "Berdir",
  8856. -                "homepage": "https://www.drupal.org/user/214652"
  8857. -            },
  8858. -            {
  8859. -                "name": "Frans",
  8860. -                "homepage": "https://www.drupal.org/user/514222"
  8861. -            },
  8862. -            {
  8863. -                "name": "Primsi",
  8864. -                "homepage": "https://www.drupal.org/user/282629"
  8865. -            },
  8866. -            {
  8867. -                "name": "jeroen.b",
  8868. -                "homepage": "https://www.drupal.org/user/1853532"
  8869. +                "name": "Fabien Potencier",
  8870. +                "email": "fabien@symfony.com"
  8871.              },
  8872.              {
  8873. -                "name": "miro_dietiker",
  8874. -                "homepage": "https://www.drupal.org/user/227761"
  8875. +                "name": "Symfony Community",
  8876. +                "homepage": "https://symfony.com/contributors"
  8877.              }
  8878.          ],
  8879. -        "description": "Enables the creation of Paragraphs entities.",
  8880. -        "homepage": "https://www.drupal.org/project/paragraphs",
  8881. -        "support": {
  8882. -            "source": "http://cgit.drupalcode.org/paragraphs"
  8883. -        }
  8884. +        "description": "Symfony Console Component",
  8885. +        "homepage": "https://symfony.com"
  8886.      },
  8887.      {
  8888. -        "name": "symfony/yaml",
  8889. -        "version": "v3.2.14",
  8890. -        "version_normalized": "3.2.14.0",
  8891. +        "name": "symfony/css-selector",
  8892. +        "version": "v3.3.10",
  8893. +        "version_normalized": "3.3.10.0",
  8894.          "source": {
  8895.              "type": "git",
  8896. -            "url": "https://github.com/symfony/yaml.git",
  8897. -            "reference": "78a0c5d7d43713212aac73d7c6a56754a5c26cea"
  8898. +            "url": "https://github.com/symfony/css-selector.git",
  8899. +            "reference": "07447650225ca9223bd5c97180fe7c8267f7d332"
  8900.          },
  8901.          "dist": {
  8902.              "type": "zip",
  8903. -            "url": "https://api.github.com/repos/symfony/yaml/zipball/78a0c5d7d43713212aac73d7c6a56754a5c26cea",
  8904. -            "reference": "78a0c5d7d43713212aac73d7c6a56754a5c26cea",
  8905. +            "url": "https://api.github.com/repos/symfony/css-selector/zipball/07447650225ca9223bd5c97180fe7c8267f7d332",
  8906. +            "reference": "07447650225ca9223bd5c97180fe7c8267f7d332",
  8907.              "shasum": ""
  8908.          },
  8909.          "require": {
  8910. -            "php": ">=5.5.9"
  8911. -        },
  8912. -        "require-dev": {
  8913. -            "symfony/console": "~2.8|~3.0"
  8914. -        },
  8915. -        "suggest": {
  8916. -            "symfony/console": "For validating YAML files using the lint command"
  8917. +            "php": "^5.5.9|>=7.0.8"
  8918.          },
  8919. -        "time": "2017-06-02T09:43:35+00:00",
  8920. +        "time": "2017-10-02T06:42:24+00:00",
  8921.          "type": "library",
  8922.          "extra": {
  8923.              "branch-alias": {
  8924. -                "dev-master": "3.2-dev"
  8925. +                "dev-master": "3.3-dev"
  8926.              }
  8927.          },
  8928.          "installation-source": "dist",
  8929.          "autoload": {
  8930.              "psr-4": {
  8931. -                "Symfony\\Component\\Yaml\\": ""
  8932. +                "Symfony\\Component\\CssSelector\\": ""
  8933.              },
  8934.              "exclude-from-classmap": [
  8935.                  "/Tests/"
  8936. @@ -5647,6 +5940,10 @@
  8937.              "MIT"
  8938.          ],
  8939.          "authors": [
  8940. +            {
  8941. +                "name": "Jean-François Simon",
  8942. +                "email": "jeanfrancois.simon@sensiolabs.com"
  8943. +            },
  8944.              {
  8945.                  "name": "Fabien Potencier",
  8946.                  "email": "fabien@symfony.com"
  8947. @@ -5656,53 +5953,45 @@
  8948.                  "homepage": "https://symfony.com/contributors"
  8949.              }
  8950.          ],
  8951. -        "description": "Symfony Yaml Component",
  8952. +        "description": "Symfony CssSelector Component",
  8953.          "homepage": "https://symfony.com"
  8954.      },
  8955.      {
  8956. -        "name": "symfony/translation",
  8957. -        "version": "v3.2.14",
  8958. -        "version_normalized": "3.2.14.0",
  8959. +        "name": "symfony/debug",
  8960. +        "version": "v3.3.13",
  8961. +        "version_normalized": "3.3.13.0",
  8962.          "source": {
  8963.              "type": "git",
  8964. -            "url": "https://github.com/symfony/translation.git",
  8965. -            "reference": "df36a48672b929bf3995eb62c58d83004b1d0d50"
  8966. +            "url": "https://github.com/symfony/debug.git",
  8967. +            "reference": "74557880e2846b5c84029faa96b834da37e29810"
  8968.          },
  8969.          "dist": {
  8970.              "type": "zip",
  8971. -            "url": "https://api.github.com/repos/symfony/translation/zipball/df36a48672b929bf3995eb62c58d83004b1d0d50",
  8972. -            "reference": "df36a48672b929bf3995eb62c58d83004b1d0d50",
  8973. +            "url": "https://api.github.com/repos/symfony/debug/zipball/74557880e2846b5c84029faa96b834da37e29810",
  8974. +            "reference": "74557880e2846b5c84029faa96b834da37e29810",
  8975.              "shasum": ""
  8976.          },
  8977.          "require": {
  8978. -            "php": ">=5.5.9",
  8979. -            "symfony/polyfill-mbstring": "~1.0"
  8980. +            "php": "^5.5.9|>=7.0.8",
  8981. +            "psr/log": "~1.0"
  8982.          },
  8983.          "conflict": {
  8984. -            "symfony/config": "<2.8"
  8985. +            "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  8986.          },
  8987.          "require-dev": {
  8988. -            "psr/log": "~1.0",
  8989. -            "symfony/config": "~2.8|~3.0",
  8990. -            "symfony/intl": "^2.8.18|^3.2.5",
  8991. -            "symfony/yaml": "~2.8|~3.0"
  8992. -        },
  8993. -        "suggest": {
  8994. -            "psr/log": "To use logging capability in translator",
  8995. -            "symfony/config": "",
  8996. -            "symfony/yaml": ""
  8997. +            "symfony/http-kernel": "~2.8|~3.0"
  8998.          },
  8999. -        "time": "2017-06-24T16:45:17+00:00",
  9000. +        "time": "2017-11-10T16:38:39+00:00",
  9001.          "type": "library",
  9002.          "extra": {
  9003.              "branch-alias": {
  9004. -                "dev-master": "3.2-dev"
  9005. +                "dev-master": "3.3-dev"
  9006.              }
  9007.          },
  9008.          "installation-source": "dist",
  9009.          "autoload": {
  9010.              "psr-4": {
  9011. -                "Symfony\\Component\\Translation\\": ""
  9012. +                "Symfony\\Component\\Debug\\": ""
  9013.              },
  9014.              "exclude-from-classmap": [
  9015.                  "/Tests/"
  9016. @@ -5722,55 +6011,42 @@
  9017.                  "homepage": "https://symfony.com/contributors"
  9018.              }
  9019.          ],
  9020. -        "description": "Symfony Translation Component",
  9021. +        "description": "Symfony Debug Component",
  9022.          "homepage": "https://symfony.com"
  9023.      },
  9024.      {
  9025. -        "name": "symfony/validator",
  9026. +        "name": "symfony/dependency-injection",
  9027.          "version": "v3.2.14",
  9028.          "version_normalized": "3.2.14.0",
  9029.          "source": {
  9030.              "type": "git",
  9031. -            "url": "https://github.com/symfony/validator.git",
  9032. -            "reference": "39244fbf580e01acc3f5df01238a8f69b1b3e46f"
  9033. +            "url": "https://github.com/symfony/dependency-injection.git",
  9034. +            "reference": "d9f2e62e1a93d52ad4e4f6faaf66f6eef723d761"
  9035.          },
  9036.          "dist": {
  9037.              "type": "zip",
  9038. -            "url": "https://api.github.com/repos/symfony/validator/zipball/39244fbf580e01acc3f5df01238a8f69b1b3e46f",
  9039. -            "reference": "39244fbf580e01acc3f5df01238a8f69b1b3e46f",
  9040. +            "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d9f2e62e1a93d52ad4e4f6faaf66f6eef723d761",
  9041. +            "reference": "d9f2e62e1a93d52ad4e4f6faaf66f6eef723d761",
  9042.              "shasum": ""
  9043.          },
  9044.          "require": {
  9045. -            "php": ">=5.5.9",
  9046. -            "symfony/polyfill-mbstring": "~1.0",
  9047. -            "symfony/translation": "~2.8|~3.0"
  9048. +            "php": ">=5.5.9"
  9049.          },
  9050.          "conflict": {
  9051. -            "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  9052. +            "symfony/yaml": "<3.2"
  9053.          },
  9054.          "require-dev": {
  9055. -            "doctrine/annotations": "~1.0",
  9056. -            "doctrine/cache": "~1.0",
  9057. -            "egulias/email-validator": "^1.2.8|~2.0",
  9058. -            "symfony/cache": "~3.1",
  9059.              "symfony/config": "~2.8|~3.0",
  9060.              "symfony/expression-language": "~2.8|~3.0",
  9061. -            "symfony/http-foundation": "~2.8|~3.0",
  9062. -            "symfony/intl": "^2.8.18|^3.2.5",
  9063. -            "symfony/yaml": "~2.8|~3.0"
  9064. +            "symfony/yaml": "~3.2"
  9065.          },
  9066.          "suggest": {
  9067. -            "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9068. -            "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9069. -            "egulias/email-validator": "Strict (RFC compliant) email validation",
  9070. -            "psr/cache-implementation": "For using the metadata cache.",
  9071.              "symfony/config": "",
  9072. -            "symfony/expression-language": "For using the Expression validator",
  9073. -            "symfony/http-foundation": "",
  9074. -            "symfony/intl": "",
  9075. +            "symfony/expression-language": "For using expressions in service container configuration",
  9076. +            "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  9077.              "symfony/yaml": ""
  9078.          },
  9079. -        "time": "2017-07-26T06:34:07+00:00",
  9080. +        "time": "2017-07-28T15:22:55+00:00",
  9081.          "type": "library",
  9082.          "extra": {
  9083.              "branch-alias": {
  9084. @@ -5780,7 +6056,7 @@
  9085.          "installation-source": "dist",
  9086.          "autoload": {
  9087.              "psr-4": {
  9088. -                "Symfony\\Component\\Validator\\": ""
  9089. +                "Symfony\\Component\\DependencyInjection\\": ""
  9090.              },
  9091.              "exclude-from-classmap": [
  9092.                  "/Tests/"
  9093. @@ -5800,64 +6076,45 @@
  9094.                  "homepage": "https://symfony.com/contributors"
  9095.              }
  9096.          ],
  9097. -        "description": "Symfony Validator Component",
  9098. +        "description": "Symfony DependencyInjection Component",
  9099.          "homepage": "https://symfony.com"
  9100.      },
  9101.      {
  9102. -        "name": "symfony/serializer",
  9103. -        "version": "v3.2.14",
  9104. -        "version_normalized": "3.2.14.0",
  9105. +        "name": "symfony/dom-crawler",
  9106. +        "version": "v3.3.10",
  9107. +        "version_normalized": "3.3.10.0",
  9108.          "source": {
  9109.              "type": "git",
  9110. -            "url": "https://github.com/symfony/serializer.git",
  9111. -            "reference": "dc98d5ab4ae29dc47bfb1507b39806bfe13d3477"
  9112. +            "url": "https://github.com/symfony/dom-crawler.git",
  9113. +            "reference": "40dafd42d5dad7fe5ad4e958413d92a207522ac1"
  9114.          },
  9115.          "dist": {
  9116.              "type": "zip",
  9117. -            "url": "https://api.github.com/repos/symfony/serializer/zipball/dc98d5ab4ae29dc47bfb1507b39806bfe13d3477",
  9118. -            "reference": "dc98d5ab4ae29dc47bfb1507b39806bfe13d3477",
  9119. +            "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/40dafd42d5dad7fe5ad4e958413d92a207522ac1",
  9120. +            "reference": "40dafd42d5dad7fe5ad4e958413d92a207522ac1",
  9121.              "shasum": ""
  9122.          },
  9123.          "require": {
  9124. -            "php": ">=5.5.9"
  9125. -        },
  9126. -        "conflict": {
  9127. -            "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9128. -            "symfony/property-info": "<3.1",
  9129. -            "symfony/yaml": "<3.1"
  9130. -        },
  9131. -        "require-dev": {
  9132. -            "doctrine/annotations": "~1.0",
  9133. -            "doctrine/cache": "~1.0",
  9134. -            "phpdocumentor/reflection-docblock": "~3.0",
  9135. -            "symfony/cache": "~3.1",
  9136. -            "symfony/config": "~2.8|~3.0",
  9137. -            "symfony/http-foundation": "~2.8|~3.0",
  9138. -            "symfony/property-access": "~2.8|~3.0",
  9139. -            "symfony/property-info": "~3.1",
  9140. -            "symfony/yaml": "~3.1"
  9141. +            "php": "^5.5.9|>=7.0.8",
  9142. +            "symfony/polyfill-mbstring": "~1.0"
  9143.          },
  9144. -        "suggest": {
  9145. -            "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9146. -            "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9147. -            "psr/cache-implementation": "For using the metadata cache.",
  9148. -            "symfony/config": "For using the XML mapping loader.",
  9149. -            "symfony/http-foundation": "To use the DataUriNormalizer.",
  9150. -            "symfony/property-access": "For using the ObjectNormalizer.",
  9151. -            "symfony/property-info": "To deserialize relations.",
  9152. -            "symfony/yaml": "For using the default YAML mapping loader."
  9153. +        "require-dev": {
  9154. +            "symfony/css-selector": "~2.8|~3.0"
  9155.          },
  9156. -        "time": "2017-07-06T07:39:51+00:00",
  9157. +        "suggest": {
  9158. +            "symfony/css-selector": ""
  9159. +        },
  9160. +        "time": "2017-10-02T06:42:24+00:00",
  9161.          "type": "library",
  9162.          "extra": {
  9163.              "branch-alias": {
  9164. -                "dev-master": "3.2-dev"
  9165. +                "dev-master": "3.3-dev"
  9166.              }
  9167.          },
  9168.          "installation-source": "dist",
  9169.          "autoload": {
  9170.              "psr-4": {
  9171. -                "Symfony\\Component\\Serializer\\": ""
  9172. +                "Symfony\\Component\\DomCrawler\\": ""
  9173.              },
  9174.              "exclude-from-classmap": [
  9175.                  "/Tests/"
  9176. @@ -5877,48 +6134,39 @@
  9177.                  "homepage": "https://symfony.com/contributors"
  9178.              }
  9179.          ],
  9180. -        "description": "Symfony Serializer Component",
  9181. +        "description": "Symfony DomCrawler Component",
  9182.          "homepage": "https://symfony.com"
  9183.      },
  9184.      {
  9185. -        "name": "symfony/routing",
  9186. +        "name": "symfony/event-dispatcher",
  9187.          "version": "v3.2.14",
  9188.          "version_normalized": "3.2.14.0",
  9189.          "source": {
  9190.              "type": "git",
  9191. -            "url": "https://github.com/symfony/routing.git",
  9192. -            "reference": "b382d7c4f443372c118efcd0cd2bf1028434f2f5"
  9193. +            "url": "https://github.com/symfony/event-dispatcher.git",
  9194. +            "reference": "b8de6ee252af19330dd72ad5fc0dd4658a1d6325"
  9195.          },
  9196.          "dist": {
  9197.              "type": "zip",
  9198. -            "url": "https://api.github.com/repos/symfony/routing/zipball/b382d7c4f443372c118efcd0cd2bf1028434f2f5",
  9199. -            "reference": "b382d7c4f443372c118efcd0cd2bf1028434f2f5",
  9200. +            "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b8de6ee252af19330dd72ad5fc0dd4658a1d6325",
  9201. +            "reference": "b8de6ee252af19330dd72ad5fc0dd4658a1d6325",
  9202.              "shasum": ""
  9203.          },
  9204.          "require": {
  9205.              "php": ">=5.5.9"
  9206.          },
  9207. -        "conflict": {
  9208. -            "symfony/config": "<2.8"
  9209. -        },
  9210.          "require-dev": {
  9211. -            "doctrine/annotations": "~1.0",
  9212. -            "doctrine/common": "~2.2",
  9213.              "psr/log": "~1.0",
  9214.              "symfony/config": "~2.8|~3.0",
  9215. +            "symfony/dependency-injection": "~2.8|~3.0",
  9216.              "symfony/expression-language": "~2.8|~3.0",
  9217. -            "symfony/http-foundation": "~2.8|~3.0",
  9218. -            "symfony/yaml": "~2.8|~3.0"
  9219. +            "symfony/stopwatch": "~2.8|~3.0"
  9220.          },
  9221.          "suggest": {
  9222. -            "doctrine/annotations": "For using the annotation loader",
  9223. -            "symfony/config": "For using the all-in-one router or any loader",
  9224. -            "symfony/dependency-injection": "For loading routes from a service",
  9225. -            "symfony/expression-language": "For using expression matching",
  9226. -            "symfony/http-foundation": "For using a Symfony Request object",
  9227. -            "symfony/yaml": "For using the YAML loader"
  9228. +            "symfony/dependency-injection": "",
  9229. +            "symfony/http-kernel": ""
  9230.          },
  9231. -        "time": "2017-06-23T06:35:45+00:00",
  9232. +        "time": "2017-06-02T08:26:05+00:00",
  9233.          "type": "library",
  9234.          "extra": {
  9235.              "branch-alias": {
  9236. @@ -5928,7 +6176,7 @@
  9237.          "installation-source": "dist",
  9238.          "autoload": {
  9239.              "psr-4": {
  9240. -                "Symfony\\Component\\Routing\\": ""
  9241. +                "Symfony\\Component\\EventDispatcher\\": ""
  9242.              },
  9243.              "exclude-from-classmap": [
  9244.                  "/Tests/"
  9245. @@ -5948,48 +6196,39 @@
  9246.                  "homepage": "https://symfony.com/contributors"
  9247.              }
  9248.          ],
  9249. -        "description": "Symfony Routing Component",
  9250. -        "homepage": "https://symfony.com",
  9251. -        "keywords": [
  9252. -            "router",
  9253. -            "routing",
  9254. -            "uri",
  9255. -            "url"
  9256. -        ]
  9257. +        "description": "Symfony EventDispatcher Component",
  9258. +        "homepage": "https://symfony.com"
  9259.      },
  9260.      {
  9261. -        "name": "symfony/http-foundation",
  9262. -        "version": "v3.2.14",
  9263. -        "version_normalized": "3.2.14.0",
  9264. +        "name": "symfony/expression-language",
  9265. +        "version": "v3.3.10",
  9266. +        "version_normalized": "3.3.10.0",
  9267.          "source": {
  9268.              "type": "git",
  9269. -            "url": "https://github.com/symfony/http-foundation.git",
  9270. -            "reference": "107b7e6c2372ad4859b8a8c8c5b4fb9d7a208fe1"
  9271. +            "url": "https://github.com/symfony/expression-language.git",
  9272. +            "reference": "6e8837e9e18d3b16c5e8379b519d030aa3a08a0c"
  9273.          },
  9274.          "dist": {
  9275.              "type": "zip",
  9276. -            "url": "https://api.github.com/repos/symfony/http-foundation/zipball/107b7e6c2372ad4859b8a8c8c5b4fb9d7a208fe1",
  9277. -            "reference": "107b7e6c2372ad4859b8a8c8c5b4fb9d7a208fe1",
  9278. +            "url": "https://api.github.com/repos/symfony/expression-language/zipball/6e8837e9e18d3b16c5e8379b519d030aa3a08a0c",
  9279. +            "reference": "6e8837e9e18d3b16c5e8379b519d030aa3a08a0c",
  9280.              "shasum": ""
  9281.          },
  9282.          "require": {
  9283. -            "php": ">=5.5.9",
  9284. -            "symfony/polyfill-mbstring": "~1.1"
  9285. -        },
  9286. -        "require-dev": {
  9287. -            "symfony/expression-language": "~2.8|~3.0"
  9288. +            "php": "^5.5.9|>=7.0.8",
  9289. +            "symfony/cache": "~3.1"
  9290.          },
  9291. -        "time": "2017-07-20T07:58:49+00:00",
  9292. +        "time": "2017-10-02T06:42:24+00:00",
  9293.          "type": "library",
  9294.          "extra": {
  9295.              "branch-alias": {
  9296. -                "dev-master": "3.2-dev"
  9297. +                "dev-master": "3.3-dev"
  9298.              }
  9299.          },
  9300.          "installation-source": "dist",
  9301.          "autoload": {
  9302.              "psr-4": {
  9303. -                "Symfony\\Component\\HttpFoundation\\": ""
  9304. +                "Symfony\\Component\\ExpressionLanguage\\": ""
  9305.              },
  9306.              "exclude-from-classmap": [
  9307.                  "/Tests/"
  9308. @@ -6009,38 +6248,38 @@
  9309.                  "homepage": "https://symfony.com/contributors"
  9310.              }
  9311.          ],
  9312. -        "description": "Symfony HttpFoundation Component",
  9313. +        "description": "Symfony ExpressionLanguage Component",
  9314.          "homepage": "https://symfony.com"
  9315.      },
  9316.      {
  9317. -        "name": "symfony/process",
  9318. -        "version": "v3.2.14",
  9319. -        "version_normalized": "3.2.14.0",
  9320. +        "name": "symfony/filesystem",
  9321. +        "version": "v3.3.10",
  9322. +        "version_normalized": "3.3.10.0",
  9323.          "source": {
  9324.              "type": "git",
  9325. -            "url": "https://github.com/symfony/process.git",
  9326. -            "reference": "b39d805dd6c4d1cba1f00cd80361ec80eed0d7bc"
  9327. +            "url": "https://github.com/symfony/filesystem.git",
  9328. +            "reference": "90bc45abf02ae6b7deb43895c1052cb0038506f1"
  9329.          },
  9330.          "dist": {
  9331.              "type": "zip",
  9332. -            "url": "https://api.github.com/repos/symfony/process/zipball/b39d805dd6c4d1cba1f00cd80361ec80eed0d7bc",
  9333. -            "reference": "b39d805dd6c4d1cba1f00cd80361ec80eed0d7bc",
  9334. +            "url": "https://api.github.com/repos/symfony/filesystem/zipball/90bc45abf02ae6b7deb43895c1052cb0038506f1",
  9335. +            "reference": "90bc45abf02ae6b7deb43895c1052cb0038506f1",
  9336.              "shasum": ""
  9337.          },
  9338.          "require": {
  9339. -            "php": ">=5.5.9"
  9340. +            "php": "^5.5.9|>=7.0.8"
  9341.          },
  9342. -        "time": "2017-07-03T08:06:20+00:00",
  9343. +        "time": "2017-10-03T13:33:10+00:00",
  9344.          "type": "library",
  9345.          "extra": {
  9346.              "branch-alias": {
  9347. -                "dev-master": "3.2-dev"
  9348. +                "dev-master": "3.3-dev"
  9349.              }
  9350.          },
  9351.          "installation-source": "dist",
  9352.          "autoload": {
  9353.              "psr-4": {
  9354. -                "Symfony\\Component\\Process\\": ""
  9355. +                "Symfony\\Component\\Filesystem\\": ""
  9356.              },
  9357.              "exclude-from-classmap": [
  9358.                  "/Tests/"
  9359. @@ -6060,49 +6299,38 @@
  9360.                  "homepage": "https://symfony.com/contributors"
  9361.              }
  9362.          ],
  9363. -        "description": "Symfony Process Component",
  9364. +        "description": "Symfony Filesystem Component",
  9365.          "homepage": "https://symfony.com"
  9366.      },
  9367.      {
  9368. -        "name": "symfony/event-dispatcher",
  9369. -        "version": "v3.2.14",
  9370. -        "version_normalized": "3.2.14.0",
  9371. +        "name": "symfony/finder",
  9372. +        "version": "v3.3.10",
  9373. +        "version_normalized": "3.3.10.0",
  9374.          "source": {
  9375.              "type": "git",
  9376. -            "url": "https://github.com/symfony/event-dispatcher.git",
  9377. -            "reference": "b8de6ee252af19330dd72ad5fc0dd4658a1d6325"
  9378. +            "url": "https://github.com/symfony/finder.git",
  9379. +            "reference": "773e19a491d97926f236942484cb541560ce862d"
  9380.          },
  9381.          "dist": {
  9382.              "type": "zip",
  9383. -            "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b8de6ee252af19330dd72ad5fc0dd4658a1d6325",
  9384. -            "reference": "b8de6ee252af19330dd72ad5fc0dd4658a1d6325",
  9385. +            "url": "https://api.github.com/repos/symfony/finder/zipball/773e19a491d97926f236942484cb541560ce862d",
  9386. +            "reference": "773e19a491d97926f236942484cb541560ce862d",
  9387.              "shasum": ""
  9388.          },
  9389.          "require": {
  9390. -            "php": ">=5.5.9"
  9391. -        },
  9392. -        "require-dev": {
  9393. -            "psr/log": "~1.0",
  9394. -            "symfony/config": "~2.8|~3.0",
  9395. -            "symfony/dependency-injection": "~2.8|~3.0",
  9396. -            "symfony/expression-language": "~2.8|~3.0",
  9397. -            "symfony/stopwatch": "~2.8|~3.0"
  9398. -        },
  9399. -        "suggest": {
  9400. -            "symfony/dependency-injection": "",
  9401. -            "symfony/http-kernel": ""
  9402. +            "php": "^5.5.9|>=7.0.8"
  9403.          },
  9404. -        "time": "2017-06-02T08:26:05+00:00",
  9405. +        "time": "2017-10-02T06:42:24+00:00",
  9406.          "type": "library",
  9407.          "extra": {
  9408.              "branch-alias": {
  9409. -                "dev-master": "3.2-dev"
  9410. +                "dev-master": "3.3-dev"
  9411.              }
  9412.          },
  9413.          "installation-source": "dist",
  9414.          "autoload": {
  9415.              "psr-4": {
  9416. -                "Symfony\\Component\\EventDispatcher\\": ""
  9417. +                "Symfony\\Component\\Finder\\": ""
  9418.              },
  9419.              "exclude-from-classmap": [
  9420.                  "/Tests/"
  9421. @@ -6122,45 +6350,42 @@
  9422.                  "homepage": "https://symfony.com/contributors"
  9423.              }
  9424.          ],
  9425. -        "description": "Symfony EventDispatcher Component",
  9426. +        "description": "Symfony Finder Component",
  9427.          "homepage": "https://symfony.com"
  9428.      },
  9429.      {
  9430. -        "name": "symfony/debug",
  9431. -        "version": "v3.3.13",
  9432. -        "version_normalized": "3.3.13.0",
  9433. +        "name": "symfony/http-foundation",
  9434. +        "version": "v3.2.14",
  9435. +        "version_normalized": "3.2.14.0",
  9436.          "source": {
  9437.              "type": "git",
  9438. -            "url": "https://github.com/symfony/debug.git",
  9439. -            "reference": "74557880e2846b5c84029faa96b834da37e29810"
  9440. +            "url": "https://github.com/symfony/http-foundation.git",
  9441. +            "reference": "107b7e6c2372ad4859b8a8c8c5b4fb9d7a208fe1"
  9442.          },
  9443.          "dist": {
  9444.              "type": "zip",
  9445. -            "url": "https://api.github.com/repos/symfony/debug/zipball/74557880e2846b5c84029faa96b834da37e29810",
  9446. -            "reference": "74557880e2846b5c84029faa96b834da37e29810",
  9447. +            "url": "https://api.github.com/repos/symfony/http-foundation/zipball/107b7e6c2372ad4859b8a8c8c5b4fb9d7a208fe1",
  9448. +            "reference": "107b7e6c2372ad4859b8a8c8c5b4fb9d7a208fe1",
  9449.              "shasum": ""
  9450.          },
  9451.          "require": {
  9452. -            "php": "^5.5.9|>=7.0.8",
  9453. -            "psr/log": "~1.0"
  9454. -        },
  9455. -        "conflict": {
  9456. -            "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  9457. +            "php": ">=5.5.9",
  9458. +            "symfony/polyfill-mbstring": "~1.1"
  9459.          },
  9460.          "require-dev": {
  9461. -            "symfony/http-kernel": "~2.8|~3.0"
  9462. +            "symfony/expression-language": "~2.8|~3.0"
  9463.          },
  9464. -        "time": "2017-11-10T16:38:39+00:00",
  9465. +        "time": "2017-07-20T07:58:49+00:00",
  9466.          "type": "library",
  9467.          "extra": {
  9468.              "branch-alias": {
  9469. -                "dev-master": "3.3-dev"
  9470. +                "dev-master": "3.2-dev"
  9471.              }
  9472.          },
  9473.          "installation-source": "dist",
  9474.          "autoload": {
  9475.              "psr-4": {
  9476. -                "Symfony\\Component\\Debug\\": ""
  9477. +                "Symfony\\Component\\HttpFoundation\\": ""
  9478.              },
  9479.              "exclude-from-classmap": [
  9480.                  "/Tests/"
  9481. @@ -6180,7 +6405,7 @@
  9482.                  "homepage": "https://symfony.com/contributors"
  9483.              }
  9484.          ],
  9485. -        "description": "Symfony Debug Component",
  9486. +        "description": "Symfony HttpFoundation Component",
  9487.          "homepage": "https://symfony.com"
  9488.      },
  9489.      {
  9490. @@ -6269,51 +6494,37 @@
  9491.          "homepage": "https://symfony.com"
  9492.      },
  9493.      {
  9494. -        "name": "symfony/dependency-injection",
  9495. -        "version": "v3.2.14",
  9496. -        "version_normalized": "3.2.14.0",
  9497. +        "name": "symfony/polyfill-apcu",
  9498. +        "version": "v1.6.0",
  9499. +        "version_normalized": "1.6.0.0",
  9500.          "source": {
  9501.              "type": "git",
  9502. -            "url": "https://github.com/symfony/dependency-injection.git",
  9503. -            "reference": "d9f2e62e1a93d52ad4e4f6faaf66f6eef723d761"
  9504. +            "url": "https://github.com/symfony/polyfill-apcu.git",
  9505. +            "reference": "04f62674339602def515bff4bc6901fc1d4951e8"
  9506.          },
  9507.          "dist": {
  9508.              "type": "zip",
  9509. -            "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d9f2e62e1a93d52ad4e4f6faaf66f6eef723d761",
  9510. -            "reference": "d9f2e62e1a93d52ad4e4f6faaf66f6eef723d761",
  9511. +            "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/04f62674339602def515bff4bc6901fc1d4951e8",
  9512. +            "reference": "04f62674339602def515bff4bc6901fc1d4951e8",
  9513.              "shasum": ""
  9514.          },
  9515.          "require": {
  9516. -            "php": ">=5.5.9"
  9517. -        },
  9518. -        "conflict": {
  9519. -            "symfony/yaml": "<3.2"
  9520. -        },
  9521. -        "require-dev": {
  9522. -            "symfony/config": "~2.8|~3.0",
  9523. -            "symfony/expression-language": "~2.8|~3.0",
  9524. -            "symfony/yaml": "~3.2"
  9525. -        },
  9526. -        "suggest": {
  9527. -            "symfony/config": "",
  9528. -            "symfony/expression-language": "For using expressions in service container configuration",
  9529. -            "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  9530. -            "symfony/yaml": ""
  9531. +            "php": ">=5.3.3"
  9532.          },
  9533. -        "time": "2017-07-28T15:22:55+00:00",
  9534. +        "time": "2017-10-11T12:05:26+00:00",
  9535.          "type": "library",
  9536.          "extra": {
  9537.              "branch-alias": {
  9538. -                "dev-master": "3.2-dev"
  9539. +                "dev-master": "1.6-dev"
  9540.              }
  9541.          },
  9542.          "installation-source": "dist",
  9543.          "autoload": {
  9544.              "psr-4": {
  9545. -                "Symfony\\Component\\DependencyInjection\\": ""
  9546. +                "Symfony\\Polyfill\\Apcu\\": ""
  9547.              },
  9548. -            "exclude-from-classmap": [
  9549. -                "/Tests/"
  9550. +            "files": [
  9551. +                "bootstrap.php"
  9552.              ]
  9553.          },
  9554.          "notification-url": "https://packagist.org/downloads/",
  9555. @@ -6322,63 +6533,59 @@
  9556.          ],
  9557.          "authors": [
  9558.              {
  9559. -                "name": "Fabien Potencier",
  9560. -                "email": "fabien@symfony.com"
  9561. +                "name": "Nicolas Grekas",
  9562. +                "email": "p@tchwork.com"
  9563.              },
  9564.              {
  9565.                  "name": "Symfony Community",
  9566.                  "homepage": "https://symfony.com/contributors"
  9567.              }
  9568.          ],
  9569. -        "description": "Symfony DependencyInjection Component",
  9570. -        "homepage": "https://symfony.com"
  9571. +        "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions",
  9572. +        "homepage": "https://symfony.com",
  9573. +        "keywords": [
  9574. +            "apcu",
  9575. +            "compatibility",
  9576. +            "polyfill",
  9577. +            "portable",
  9578. +            "shim"
  9579. +        ]
  9580.      },
  9581.      {
  9582. -        "name": "symfony/console",
  9583. -        "version": "v3.2.14",
  9584. -        "version_normalized": "3.2.14.0",
  9585. +        "name": "symfony/polyfill-iconv",
  9586. +        "version": "v1.6.0",
  9587. +        "version_normalized": "1.6.0.0",
  9588.          "source": {
  9589.              "type": "git",
  9590. -            "url": "https://github.com/symfony/console.git",
  9591. -            "reference": "eced439413608647aeff243038a33ea246b2b33a"
  9592. +            "url": "https://github.com/symfony/polyfill-iconv.git",
  9593. +            "reference": "7a84ccdb8c953ee274c96dd6bde778d873fc824a"
  9594.          },
  9595.          "dist": {
  9596.              "type": "zip",
  9597. -            "url": "https://api.github.com/repos/symfony/console/zipball/eced439413608647aeff243038a33ea246b2b33a",
  9598. -            "reference": "eced439413608647aeff243038a33ea246b2b33a",
  9599. +            "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/7a84ccdb8c953ee274c96dd6bde778d873fc824a",
  9600. +            "reference": "7a84ccdb8c953ee274c96dd6bde778d873fc824a",
  9601.              "shasum": ""
  9602.          },
  9603.          "require": {
  9604. -            "php": ">=5.5.9",
  9605. -            "symfony/debug": "~2.8|~3.0",
  9606. -            "symfony/polyfill-mbstring": "~1.0"
  9607. -        },
  9608. -        "require-dev": {
  9609. -            "psr/log": "~1.0",
  9610. -            "symfony/event-dispatcher": "~2.8|~3.0",
  9611. -            "symfony/filesystem": "~2.8|~3.0",
  9612. -            "symfony/process": "~2.8|~3.0"
  9613. +            "php": ">=5.3.3"
  9614.          },
  9615.          "suggest": {
  9616. -            "psr/log": "For using the console logger",
  9617. -            "symfony/event-dispatcher": "",
  9618. -            "symfony/filesystem": "",
  9619. -            "symfony/process": ""
  9620. +            "ext-iconv": "For best performance"
  9621.          },
  9622. -        "time": "2017-07-29T21:27:41+00:00",
  9623. +        "time": "2017-10-11T12:05:26+00:00",
  9624.          "type": "library",
  9625.          "extra": {
  9626.              "branch-alias": {
  9627. -                "dev-master": "3.2-dev"
  9628. +                "dev-master": "1.6-dev"
  9629.              }
  9630.          },
  9631.          "installation-source": "dist",
  9632.          "autoload": {
  9633.              "psr-4": {
  9634. -                "Symfony\\Component\\Console\\": ""
  9635. +                "Symfony\\Polyfill\\Iconv\\": ""
  9636.              },
  9637. -            "exclude-from-classmap": [
  9638. -                "/Tests/"
  9639. +            "files": [
  9640. +                "bootstrap.php"
  9641.              ]
  9642.          },
  9643.          "notification-url": "https://packagist.org/downloads/",
  9644. @@ -6387,56 +6594,59 @@
  9645.          ],
  9646.          "authors": [
  9647.              {
  9648. -                "name": "Fabien Potencier",
  9649. -                "email": "fabien@symfony.com"
  9650. +                "name": "Nicolas Grekas",
  9651. +                "email": "p@tchwork.com"
  9652.              },
  9653.              {
  9654.                  "name": "Symfony Community",
  9655.                  "homepage": "https://symfony.com/contributors"
  9656.              }
  9657.          ],
  9658. -        "description": "Symfony Console Component",
  9659. -        "homepage": "https://symfony.com"
  9660. +        "description": "Symfony polyfill for the Iconv extension",
  9661. +        "homepage": "https://symfony.com",
  9662. +        "keywords": [
  9663. +            "compatibility",
  9664. +            "iconv",
  9665. +            "polyfill",
  9666. +            "portable",
  9667. +            "shim"
  9668. +        ]
  9669.      },
  9670.      {
  9671. -        "name": "symfony/class-loader",
  9672. -        "version": "v3.2.14",
  9673. -        "version_normalized": "3.2.14.0",
  9674. +        "name": "symfony/polyfill-mbstring",
  9675. +        "version": "v1.6.0",
  9676. +        "version_normalized": "1.6.0.0",
  9677.          "source": {
  9678.              "type": "git",
  9679. -            "url": "https://github.com/symfony/class-loader.git",
  9680. -            "reference": "e192d96b15fdd168bdb1c91001d26c93ba4af482"
  9681. +            "url": "https://github.com/symfony/polyfill-mbstring.git",
  9682. +            "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296"
  9683.          },
  9684.          "dist": {
  9685.              "type": "zip",
  9686. -            "url": "https://api.github.com/repos/symfony/class-loader/zipball/e192d96b15fdd168bdb1c91001d26c93ba4af482",
  9687. -            "reference": "e192d96b15fdd168bdb1c91001d26c93ba4af482",
  9688. +            "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  9689. +            "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  9690.              "shasum": ""
  9691.          },
  9692.          "require": {
  9693. -            "php": ">=5.5.9"
  9694. -        },
  9695. -        "require-dev": {
  9696. -            "symfony/finder": "~2.8|~3.0",
  9697. -            "symfony/polyfill-apcu": "~1.1"
  9698. +            "php": ">=5.3.3"
  9699.          },
  9700.          "suggest": {
  9701. -            "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  9702. +            "ext-mbstring": "For best performance"
  9703.          },
  9704. -        "time": "2017-06-01T21:00:24+00:00",
  9705. +        "time": "2017-10-11T12:05:26+00:00",
  9706.          "type": "library",
  9707.          "extra": {
  9708.              "branch-alias": {
  9709. -                "dev-master": "3.2-dev"
  9710. +                "dev-master": "1.6-dev"
  9711.              }
  9712.          },
  9713.          "installation-source": "dist",
  9714.          "autoload": {
  9715.              "psr-4": {
  9716. -                "Symfony\\Component\\ClassLoader\\": ""
  9717. +                "Symfony\\Polyfill\\Mbstring\\": ""
  9718.              },
  9719. -            "exclude-from-classmap": [
  9720. -                "/Tests/"
  9721. +            "files": [
  9722. +                "bootstrap.php"
  9723.              ]
  9724.          },
  9725.          "notification-url": "https://packagist.org/downloads/",
  9726. @@ -6445,899 +6655,753 @@
  9727.          ],
  9728.          "authors": [
  9729.              {
  9730. -                "name": "Fabien Potencier",
  9731. -                "email": "fabien@symfony.com"
  9732. +                "name": "Nicolas Grekas",
  9733. +                "email": "p@tchwork.com"
  9734.              },
  9735.              {
  9736.                  "name": "Symfony Community",
  9737.                  "homepage": "https://symfony.com/contributors"
  9738.              }
  9739.          ],
  9740. -        "description": "Symfony ClassLoader Component",
  9741. -        "homepage": "https://symfony.com"
  9742. +        "description": "Symfony polyfill for the Mbstring extension",
  9743. +        "homepage": "https://symfony.com",
  9744. +        "keywords": [
  9745. +            "compatibility",
  9746. +            "mbstring",
  9747. +            "polyfill",
  9748. +            "portable",
  9749. +            "shim"
  9750. +        ]
  9751.      },
  9752.      {
  9753. -        "name": "drupal/core",
  9754. -        "version": "8.4.2",
  9755. -        "version_normalized": "8.4.2.0",
  9756. +        "name": "symfony/process",
  9757. +        "version": "v3.2.14",
  9758. +        "version_normalized": "3.2.14.0",
  9759.          "source": {
  9760.              "type": "git",
  9761. -            "url": "https://github.com/drupal/core.git",
  9762. -            "reference": "68d25c07b7306340900abc4020c38683a817f0eb"
  9763. +            "url": "https://github.com/symfony/process.git",
  9764. +            "reference": "b39d805dd6c4d1cba1f00cd80361ec80eed0d7bc"
  9765.          },
  9766.          "dist": {
  9767.              "type": "zip",
  9768. -            "url": "https://api.github.com/repos/drupal/core/zipball/68d25c07b7306340900abc4020c38683a817f0eb",
  9769. -            "reference": "68d25c07b7306340900abc4020c38683a817f0eb",
  9770. +            "url": "https://api.github.com/repos/symfony/process/zipball/b39d805dd6c4d1cba1f00cd80361ec80eed0d7bc",
  9771. +            "reference": "b39d805dd6c4d1cba1f00cd80361ec80eed0d7bc",
  9772.              "shasum": ""
  9773.          },
  9774.          "require": {
  9775. -            "asm89/stack-cors": "^1.1",
  9776. -            "composer/semver": "^1.0",
  9777. -            "doctrine/annotations": "^1.2",
  9778. -            "doctrine/common": "^2.5",
  9779. -            "easyrdf/easyrdf": "^0.9",
  9780. -            "egulias/email-validator": "^1.2",
  9781. -            "guzzlehttp/guzzle": "^6.2.1",
  9782. -            "masterminds/html5": "^2.1",
  9783. -            "paragonie/random_compat": "^1.0|^2.0",
  9784. -            "php": ">=5.5.9",
  9785. -            "stack/builder": "^1.0",
  9786. -            "symfony-cmf/routing": "^1.4",
  9787. -            "symfony/class-loader": "~3.2.8",
  9788. -            "symfony/console": "~3.2.8",
  9789. -            "symfony/dependency-injection": "~3.2.8",
  9790. -            "symfony/event-dispatcher": "~3.2.8",
  9791. -            "symfony/http-foundation": "~3.2.8",
  9792. -            "symfony/http-kernel": "~3.2.8",
  9793. -            "symfony/polyfill-iconv": "^1.0",
  9794. -            "symfony/process": "~3.2.8",
  9795. -            "symfony/psr-http-message-bridge": "^1.0",
  9796. -            "symfony/routing": "~3.2.8",
  9797. -            "symfony/serializer": "~3.2.8",
  9798. -            "symfony/translation": "~3.2.8",
  9799. -            "symfony/validator": "~3.2.8",
  9800. -            "symfony/yaml": "~3.2.8",
  9801. -            "twig/twig": "^1.23.1",
  9802. -            "zendframework/zend-diactoros": "^1.1",
  9803. -            "zendframework/zend-feed": "^2.4"
  9804. -        },
  9805. -        "conflict": {
  9806. -            "drush/drush": "<8.1.10"
  9807. -        },
  9808. -        "replace": {
  9809. -            "drupal/action": "self.version",
  9810. -            "drupal/aggregator": "self.version",
  9811. -            "drupal/automated_cron": "self.version",
  9812. -            "drupal/ban": "self.version",
  9813. -            "drupal/bartik": "self.version",
  9814. -            "drupal/basic_auth": "self.version",
  9815. -            "drupal/big_pipe": "self.version",
  9816. -            "drupal/block": "self.version",
  9817. -            "drupal/block_content": "self.version",
  9818. -            "drupal/block_place": "self.version",
  9819. -            "drupal/book": "self.version",
  9820. -            "drupal/breakpoint": "self.version",
  9821. -            "drupal/ckeditor": "self.version",
  9822. -            "drupal/classy": "self.version",
  9823. -            "drupal/color": "self.version",
  9824. -            "drupal/comment": "self.version",
  9825. -            "drupal/config": "self.version",
  9826. -            "drupal/config_translation": "self.version",
  9827. -            "drupal/contact": "self.version",
  9828. -            "drupal/content_moderation": "self.version",
  9829. -            "drupal/content_translation": "self.version",
  9830. -            "drupal/contextual": "self.version",
  9831. -            "drupal/core-annotation": "self.version",
  9832. -            "drupal/core-assertion": "self.version",
  9833. -            "drupal/core-bridge": "self.version",
  9834. -            "drupal/core-class-finder": "self.version",
  9835. -            "drupal/core-datetime": "self.version",
  9836. -            "drupal/core-dependency-injection": "self.version",
  9837. -            "drupal/core-diff": "self.version",
  9838. -            "drupal/core-discovery": "self.version",
  9839. -            "drupal/core-event-dispatcher": "self.version",
  9840. -            "drupal/core-file-cache": "self.version",
  9841. -            "drupal/core-filesystem": "self.version",
  9842. -            "drupal/core-gettext": "self.version",
  9843. -            "drupal/core-graph": "self.version",
  9844. -            "drupal/core-http-foundation": "self.version",
  9845. -            "drupal/core-php-storage": "self.version",
  9846. -            "drupal/core-plugin": "self.version",
  9847. -            "drupal/core-proxy-builder": "self.version",
  9848. -            "drupal/core-render": "self.version",
  9849. -            "drupal/core-serialization": "self.version",
  9850. -            "drupal/core-transliteration": "self.version",
  9851. -            "drupal/core-utility": "self.version",
  9852. -            "drupal/core-uuid": "self.version",
  9853. -            "drupal/datetime": "self.version",
  9854. -            "drupal/datetime_range": "self.version",
  9855. -            "drupal/dblog": "self.version",
  9856. -            "drupal/dynamic_page_cache": "self.version",
  9857. -            "drupal/editor": "self.version",
  9858. -            "drupal/entity_reference": "self.version",
  9859. -            "drupal/field": "self.version",
  9860. -            "drupal/field_layout": "self.version",
  9861. -            "drupal/field_ui": "self.version",
  9862. -            "drupal/file": "self.version",
  9863. -            "drupal/filter": "self.version",
  9864. -            "drupal/forum": "self.version",
  9865. -            "drupal/hal": "self.version",
  9866. -            "drupal/help": "self.version",
  9867. -            "drupal/history": "self.version",
  9868. -            "drupal/image": "self.version",
  9869. -            "drupal/inline_form_errors": "self.version",
  9870. -            "drupal/language": "self.version",
  9871. -            "drupal/layout_discovery": "self.version",
  9872. -            "drupal/link": "self.version",
  9873. -            "drupal/locale": "self.version",
  9874. -            "drupal/media": "self.version",
  9875. -            "drupal/menu_link_content": "self.version",
  9876. -            "drupal/menu_ui": "self.version",
  9877. -            "drupal/migrate": "self.version",
  9878. -            "drupal/migrate_drupal": "self.version",
  9879. -            "drupal/migrate_drupal_ui": "self.version",
  9880. -            "drupal/minimal": "self.version",
  9881. -            "drupal/node": "self.version",
  9882. -            "drupal/options": "self.version",
  9883. -            "drupal/page_cache": "self.version",
  9884. -            "drupal/path": "self.version",
  9885. -            "drupal/quickedit": "self.version",
  9886. -            "drupal/rdf": "self.version",
  9887. -            "drupal/responsive_image": "self.version",
  9888. -            "drupal/rest": "self.version",
  9889. -            "drupal/search": "self.version",
  9890. -            "drupal/serialization": "self.version",
  9891. -            "drupal/settings_tray": "self.version",
  9892. -            "drupal/seven": "self.version",
  9893. -            "drupal/shortcut": "self.version",
  9894. -            "drupal/simpletest": "self.version",
  9895. -            "drupal/standard": "self.version",
  9896. -            "drupal/stark": "self.version",
  9897. -            "drupal/statistics": "self.version",
  9898. -            "drupal/syslog": "self.version",
  9899. -            "drupal/system": "self.version",
  9900. -            "drupal/taxonomy": "self.version",
  9901. -            "drupal/telephone": "self.version",
  9902. -            "drupal/text": "self.version",
  9903. -            "drupal/toolbar": "self.version",
  9904. -            "drupal/tour": "self.version",
  9905. -            "drupal/tracker": "self.version",
  9906. -            "drupal/update": "self.version",
  9907. -            "drupal/user": "self.version",
  9908. -            "drupal/views": "self.version",
  9909. -            "drupal/views_ui": "self.version",
  9910. -            "drupal/workflows": "self.version"
  9911. +            "php": ">=5.5.9"
  9912.          },
  9913. -        "require-dev": {
  9914. -            "behat/mink": "1.7.x-dev",
  9915. -            "behat/mink-goutte-driver": "^1.2",
  9916. -            "drupal/coder": "^8.2.12",
  9917. -            "jcalderonzumba/gastonjs": "^1.0.2",
  9918. -            "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  9919. -            "mikey179/vfsstream": "^1.2",
  9920. -            "phpspec/prophecy": "^1.4",
  9921. -            "phpunit/phpunit": ">=4.8.35 <5",
  9922. -            "symfony/css-selector": "~3.2.8",
  9923. -            "symfony/phpunit-bridge": "~3.2.8"
  9924. +        "time": "2017-07-03T08:06:20+00:00",
  9925. +        "type": "library",
  9926. +        "extra": {
  9927. +            "branch-alias": {
  9928. +                "dev-master": "3.2-dev"
  9929. +            }
  9930.          },
  9931. -        "time": "2017-11-03T13:20:16+00:00",
  9932. -        "type": "drupal-core",
  9933.          "installation-source": "dist",
  9934.          "autoload": {
  9935.              "psr-4": {
  9936. -                "Drupal\\Core\\": "lib/Drupal/Core",
  9937. -                "Drupal\\Component\\": "lib/Drupal/Component",
  9938. -                "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  9939. -            },
  9940. -            "classmap": [
  9941. -                "lib/Drupal.php",
  9942. -                "lib/Drupal/Component/Utility/Timer.php",
  9943. -                "lib/Drupal/Component/Utility/Unicode.php",
  9944. -                "lib/Drupal/Core/Database/Database.php",
  9945. -                "lib/Drupal/Core/DrupalKernel.php",
  9946. -                "lib/Drupal/Core/DrupalKernelInterface.php",
  9947. -                "lib/Drupal/Core/Site/Settings.php"
  9948. +                "Symfony\\Component\\Process\\": ""
  9949. +            },
  9950. +            "exclude-from-classmap": [
  9951. +                "/Tests/"
  9952.              ]
  9953.          },
  9954.          "notification-url": "https://packagist.org/downloads/",
  9955.          "license": [
  9956. -            "GPL-2.0+"
  9957. +            "MIT"
  9958.          ],
  9959. -        "description": "Drupal is an open source content management platform powering millions of websites and applications."
  9960. +        "authors": [
  9961. +            {
  9962. +                "name": "Fabien Potencier",
  9963. +                "email": "fabien@symfony.com"
  9964. +            },
  9965. +            {
  9966. +                "name": "Symfony Community",
  9967. +                "homepage": "https://symfony.com/contributors"
  9968. +            }
  9969. +        ],
  9970. +        "description": "Symfony Process Component",
  9971. +        "homepage": "https://symfony.com"
  9972.      },
  9973.      {
  9974. -        "name": "drupal/migrate_plus",
  9975. -        "version": "4.0.0-beta1",
  9976. -        "version_normalized": "4.0.0.0-beta1",
  9977. +        "name": "symfony/psr-http-message-bridge",
  9978. +        "version": "v1.0.0",
  9979. +        "version_normalized": "1.0.0.0",
  9980.          "source": {
  9981.              "type": "git",
  9982. -            "url": "https://git.drupal.org/project/migrate_plus",
  9983. -            "reference": "8.x-4.0-beta1"
  9984. +            "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9985. +            "reference": "66085f246d3893cbdbcec5f5ad15ac60546cf0de"
  9986.          },
  9987.          "dist": {
  9988.              "type": "zip",
  9989. -            "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.0-beta1.zip",
  9990. -            "reference": "8.x-4.0-beta1",
  9991. -            "shasum": "e64bac006e3ef9ae697b0f2c4b3744af0524e208"
  9992. +            "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/66085f246d3893cbdbcec5f5ad15ac60546cf0de",
  9993. +            "reference": "66085f246d3893cbdbcec5f5ad15ac60546cf0de",
  9994. +            "shasum": ""
  9995.          },
  9996.          "require": {
  9997. -            "drupal/core": "^8.3"
  9998. +            "php": ">=5.3.3",
  9999. +            "psr/http-message": "~1.0",
  10000. +            "symfony/http-foundation": "~2.3|~3.0"
  10001.          },
  10002.          "require-dev": {
  10003. -            "drupal/migrate_example_advanced_setup": "*",
  10004. -            "drupal/migrate_example_setup": "*"
  10005. +            "symfony/phpunit-bridge": "~2.7|~3.0"
  10006.          },
  10007.          "suggest": {
  10008. -            "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  10009. +            "psr/http-message-implementation": "To use the HttpFoundation factory",
  10010. +            "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  10011.          },
  10012. -        "type": "drupal-module",
  10013. +        "time": "2016-09-14T18:37:20+00:00",
  10014. +        "type": "symfony-bridge",
  10015.          "extra": {
  10016.              "branch-alias": {
  10017. -                "dev-4.x": "4.x-dev"
  10018. -            },
  10019. -            "drupal": {
  10020. -                "version": "8.x-4.0-beta1",
  10021. -                "datestamp": "1494450185",
  10022. -                "security-coverage": {
  10023. -                    "status": "not-covered",
  10024. -                    "message": "Beta releases are not covered by Drupal security advisories."
  10025. -                }
  10026. +                "dev-master": "1.0-dev"
  10027.              }
  10028.          },
  10029.          "installation-source": "dist",
  10030. -        "notification-url": "https://packages.drupal.org/8/downloads",
  10031. +        "autoload": {
  10032. +            "psr-4": {
  10033. +                "Symfony\\Bridge\\PsrHttpMessage\\": ""
  10034. +            }
  10035. +        },
  10036. +        "notification-url": "https://packagist.org/downloads/",
  10037.          "license": [
  10038. -            "GPL-2.0+"
  10039. +            "MIT"
  10040.          ],
  10041.          "authors": [
  10042.              {
  10043. -                "name": "Mike Ryan",
  10044. -                "homepage": "https://www.drupal.org/u/mikeryan",
  10045. -                "role": "Maintainer"
  10046. +                "name": "Symfony Community",
  10047. +                "homepage": "http://symfony.com/contributors"
  10048.              },
  10049.              {
  10050. -                "name": "mikeryan",
  10051. -                "homepage": "https://www.drupal.org/user/4420"
  10052. +                "name": "Fabien Potencier",
  10053. +                "email": "fabien@symfony.com"
  10054.              }
  10055.          ],
  10056. -        "description": "Enhancements to core migration support.",
  10057. -        "homepage": "https://www.drupal.org/project/migrate_plus",
  10058. -        "support": {
  10059. -            "source": "https://cgit.drupalcode.org/migrate_plus",
  10060. -            "issues": "https://www.drupal.org/project/issues/migrate_plus",
  10061. -            "irc": "irc://irc.freenode.org/drupal-migrate"
  10062. -        }
  10063. +        "description": "PSR HTTP message bridge",
  10064. +        "homepage": "http://symfony.com",
  10065. +        "keywords": [
  10066. +            "http",
  10067. +            "http-message",
  10068. +            "psr-7"
  10069. +        ]
  10070.      },
  10071.      {
  10072. -        "name": "drupal/migrate_tools",
  10073. -        "version": "4.0.0-beta2",
  10074. -        "version_normalized": "4.0.0.0-beta2",
  10075. +        "name": "symfony/routing",
  10076. +        "version": "v3.2.14",
  10077. +        "version_normalized": "3.2.14.0",
  10078.          "source": {
  10079.              "type": "git",
  10080. -            "url": "https://git.drupal.org/project/migrate_tools",
  10081. -            "reference": "8.x-4.0-beta2"
  10082. +            "url": "https://github.com/symfony/routing.git",
  10083. +            "reference": "b382d7c4f443372c118efcd0cd2bf1028434f2f5"
  10084.          },
  10085.          "dist": {
  10086.              "type": "zip",
  10087. -            "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.0-beta2.zip",
  10088. -            "reference": "8.x-4.0-beta2",
  10089. -            "shasum": "8d7442253e100078e28f18fff062e3431153c0b2"
  10090. +            "url": "https://api.github.com/repos/symfony/routing/zipball/b382d7c4f443372c118efcd0cd2bf1028434f2f5",
  10091. +            "reference": "b382d7c4f443372c118efcd0cd2bf1028434f2f5",
  10092. +            "shasum": ""
  10093.          },
  10094.          "require": {
  10095. -            "drupal/core": "^8.3",
  10096. -            "drupal/migrate_plus": "*"
  10097. +            "php": ">=5.5.9"
  10098. +        },
  10099. +        "conflict": {
  10100. +            "symfony/config": "<2.8"
  10101.          },
  10102.          "require-dev": {
  10103. -            "drupal/coder": "^8"
  10104. +            "doctrine/annotations": "~1.0",
  10105. +            "doctrine/common": "~2.2",
  10106. +            "psr/log": "~1.0",
  10107. +            "symfony/config": "~2.8|~3.0",
  10108. +            "symfony/expression-language": "~2.8|~3.0",
  10109. +            "symfony/http-foundation": "~2.8|~3.0",
  10110. +            "symfony/yaml": "~2.8|~3.0"
  10111.          },
  10112. -        "type": "drupal-module",
  10113. +        "suggest": {
  10114. +            "doctrine/annotations": "For using the annotation loader",
  10115. +            "symfony/config": "For using the all-in-one router or any loader",
  10116. +            "symfony/dependency-injection": "For loading routes from a service",
  10117. +            "symfony/expression-language": "For using expression matching",
  10118. +            "symfony/http-foundation": "For using a Symfony Request object",
  10119. +            "symfony/yaml": "For using the YAML loader"
  10120. +        },
  10121. +        "time": "2017-06-23T06:35:45+00:00",
  10122. +        "type": "library",
  10123.          "extra": {
  10124.              "branch-alias": {
  10125. -                "dev-4.x": "4.x-dev"
  10126. -            },
  10127. -            "drupal": {
  10128. -                "version": "8.x-4.0-beta2",
  10129. -                "datestamp": "1511790485",
  10130. -                "security-coverage": {
  10131. -                    "status": "not-covered",
  10132. -                    "message": "Beta releases are not covered by Drupal security advisories."
  10133. -                }
  10134. +                "dev-master": "3.2-dev"
  10135.              }
  10136.          },
  10137.          "installation-source": "dist",
  10138. -        "notification-url": "https://packages.drupal.org/8/downloads",
  10139. +        "autoload": {
  10140. +            "psr-4": {
  10141. +                "Symfony\\Component\\Routing\\": ""
  10142. +            },
  10143. +            "exclude-from-classmap": [
  10144. +                "/Tests/"
  10145. +            ]
  10146. +        },
  10147. +        "notification-url": "https://packagist.org/downloads/",
  10148.          "license": [
  10149. -            "GPL-2.0+"
  10150. +            "MIT"
  10151.          ],
  10152.          "authors": [
  10153.              {
  10154. -                "name": "heddn",
  10155. -                "homepage": "https://www.drupal.org/user/1463982"
  10156. -            },
  10157. -            {
  10158. -                "name": "mikeryan",
  10159. -                "homepage": "https://www.drupal.org/user/4420"
  10160. +                "name": "Fabien Potencier",
  10161. +                "email": "fabien@symfony.com"
  10162.              },
  10163.              {
  10164. -                "name": "moshe weitzman",
  10165. -                "homepage": "https://www.drupal.org/user/23"
  10166. +                "name": "Symfony Community",
  10167. +                "homepage": "https://symfony.com/contributors"
  10168.              }
  10169.          ],
  10170. -        "description": "Tools to assist in developing and running migrations.",
  10171. -        "homepage": "https://www.drupal.org/project/migrate_tools",
  10172. -        "support": {
  10173. -            "source": "http://cgit.drupalcode.org/migrate_tools"
  10174. -        }
  10175. +        "description": "Symfony Routing Component",
  10176. +        "homepage": "https://symfony.com",
  10177. +        "keywords": [
  10178. +            "router",
  10179. +            "routing",
  10180. +            "uri",
  10181. +            "url"
  10182. +        ]
  10183.      },
  10184.      {
  10185. -        "name": "drupal/token",
  10186. -        "version": "1.0.0",
  10187. -        "version_normalized": "1.0.0.0",
  10188. +        "name": "symfony/serializer",
  10189. +        "version": "v3.2.14",
  10190. +        "version_normalized": "3.2.14.0",
  10191.          "source": {
  10192.              "type": "git",
  10193. -            "url": "https://git.drupal.org/project/token",
  10194. -            "reference": "8.x-1.0"
  10195. +            "url": "https://github.com/symfony/serializer.git",
  10196. +            "reference": "dc98d5ab4ae29dc47bfb1507b39806bfe13d3477"
  10197.          },
  10198.          "dist": {
  10199.              "type": "zip",
  10200. -            "url": "https://ftp.drupal.org/files/projects/token-8.x-1.0.zip",
  10201. -            "reference": "8.x-1.0",
  10202. -            "shasum": "d24c7f1ffddbd0fc56bc92bacae1c4ff769a4442"
  10203. +            "url": "https://api.github.com/repos/symfony/serializer/zipball/dc98d5ab4ae29dc47bfb1507b39806bfe13d3477",
  10204. +            "reference": "dc98d5ab4ae29dc47bfb1507b39806bfe13d3477",
  10205. +            "shasum": ""
  10206.          },
  10207.          "require": {
  10208. -            "drupal/core": "~8.0"
  10209. +            "php": ">=5.5.9"
  10210.          },
  10211. -        "type": "drupal-module",
  10212. +        "conflict": {
  10213. +            "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  10214. +            "symfony/property-info": "<3.1",
  10215. +            "symfony/yaml": "<3.1"
  10216. +        },
  10217. +        "require-dev": {
  10218. +            "doctrine/annotations": "~1.0",
  10219. +            "doctrine/cache": "~1.0",
  10220. +            "phpdocumentor/reflection-docblock": "~3.0",
  10221. +            "symfony/cache": "~3.1",
  10222. +            "symfony/config": "~2.8|~3.0",
  10223. +            "symfony/http-foundation": "~2.8|~3.0",
  10224. +            "symfony/property-access": "~2.8|~3.0",
  10225. +            "symfony/property-info": "~3.1",
  10226. +            "symfony/yaml": "~3.1"
  10227. +        },
  10228. +        "suggest": {
  10229. +            "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10230. +            "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10231. +            "psr/cache-implementation": "For using the metadata cache.",
  10232. +            "symfony/config": "For using the XML mapping loader.",
  10233. +            "symfony/http-foundation": "To use the DataUriNormalizer.",
  10234. +            "symfony/property-access": "For using the ObjectNormalizer.",
  10235. +            "symfony/property-info": "To deserialize relations.",
  10236. +            "symfony/yaml": "For using the default YAML mapping loader."
  10237. +        },
  10238. +        "time": "2017-07-06T07:39:51+00:00",
  10239. +        "type": "library",
  10240.          "extra": {
  10241.              "branch-alias": {
  10242. -                "dev-1.x": "1.x-dev"
  10243. -            },
  10244. -            "drupal": {
  10245. -                "version": "8.x-1.0",
  10246. -                "datestamp": "1493466843",
  10247. -                "security-coverage": {
  10248. -                    "status": "covered",
  10249. -                    "message": "Covered by Drupal's security advisory policy"
  10250. -                }
  10251. +                "dev-master": "3.2-dev"
  10252.              }
  10253.          },
  10254.          "installation-source": "dist",
  10255. -        "notification-url": "https://packages.drupal.org/8/downloads",
  10256. -        "license": [
  10257. -            "GPL-2.0+"
  10258. -        ],
  10259. -        "authors": [
  10260. -            {
  10261. -                "name": "Berdir",
  10262. -                "homepage": "https://www.drupal.org/user/214652"
  10263. -            },
  10264. -            {
  10265. -                "name": "Dave Reid",
  10266. -                "homepage": "https://www.drupal.org/user/53892"
  10267. -            },
  10268. -            {
  10269. -                "name": "eaton",
  10270. -                "homepage": "https://www.drupal.org/user/16496"
  10271. -            },
  10272. -            {
  10273. -                "name": "fago",
  10274. -                "homepage": "https://www.drupal.org/user/16747"
  10275. +        "autoload": {
  10276. +            "psr-4": {
  10277. +                "Symfony\\Component\\Serializer\\": ""
  10278.              },
  10279. +            "exclude-from-classmap": [
  10280. +                "/Tests/"
  10281. +            ]
  10282. +        },
  10283. +        "notification-url": "https://packagist.org/downloads/",
  10284. +        "license": [
  10285. +            "MIT"
  10286. +        ],
  10287. +        "authors": [
  10288.              {
  10289. -                "name": "greggles",
  10290. -                "homepage": "https://www.drupal.org/user/36762"
  10291. +                "name": "Fabien Potencier",
  10292. +                "email": "fabien@symfony.com"
  10293.              },
  10294.              {
  10295. -                "name": "mikeryan",
  10296. -                "homepage": "https://www.drupal.org/user/4420"
  10297. +                "name": "Symfony Community",
  10298. +                "homepage": "https://symfony.com/contributors"
  10299.              }
  10300.          ],
  10301. -        "description": "Provides a user interface for the Token API and some missing core tokens.",
  10302. -        "homepage": "https://www.drupal.org/project/token",
  10303. -        "support": {
  10304. -            "source": "http://cgit.drupalcode.org/token"
  10305. -        }
  10306. +        "description": "Symfony Serializer Component",
  10307. +        "homepage": "https://symfony.com"
  10308.      },
  10309.      {
  10310. -        "name": "drupal/ctools",
  10311. -        "version": "3.0.0",
  10312. -        "version_normalized": "3.0.0.0",
  10313. +        "name": "symfony/translation",
  10314. +        "version": "v3.2.14",
  10315. +        "version_normalized": "3.2.14.0",
  10316.          "source": {
  10317.              "type": "git",
  10318. -            "url": "https://git.drupal.org/project/ctools",
  10319. -            "reference": "8.x-3.0"
  10320. +            "url": "https://github.com/symfony/translation.git",
  10321. +            "reference": "df36a48672b929bf3995eb62c58d83004b1d0d50"
  10322.          },
  10323.          "dist": {
  10324.              "type": "zip",
  10325. -            "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.0.zip",
  10326. -            "reference": "8.x-3.0",
  10327. -            "shasum": "302e869ecd1e59fe55663673999fee2ccac5daa8"
  10328. +            "url": "https://api.github.com/repos/symfony/translation/zipball/df36a48672b929bf3995eb62c58d83004b1d0d50",
  10329. +            "reference": "df36a48672b929bf3995eb62c58d83004b1d0d50",
  10330. +            "shasum": ""
  10331.          },
  10332.          "require": {
  10333. -            "drupal/core": "~8.0"
  10334. +            "php": ">=5.5.9",
  10335. +            "symfony/polyfill-mbstring": "~1.0"
  10336.          },
  10337. -        "type": "drupal-module",
  10338. +        "conflict": {
  10339. +            "symfony/config": "<2.8"
  10340. +        },
  10341. +        "require-dev": {
  10342. +            "psr/log": "~1.0",
  10343. +            "symfony/config": "~2.8|~3.0",
  10344. +            "symfony/intl": "^2.8.18|^3.2.5",
  10345. +            "symfony/yaml": "~2.8|~3.0"
  10346. +        },
  10347. +        "suggest": {
  10348. +            "psr/log": "To use logging capability in translator",
  10349. +            "symfony/config": "",
  10350. +            "symfony/yaml": ""
  10351. +        },
  10352. +        "time": "2017-06-24T16:45:17+00:00",
  10353. +        "type": "library",
  10354.          "extra": {
  10355.              "branch-alias": {
  10356. -                "dev-3.x": "3.x-dev"
  10357. -            },
  10358. -            "drupal": {
  10359. -                "version": "8.x-3.0",
  10360. -                "datestamp": "1493401742",
  10361. -                "security-coverage": {
  10362. -                    "status": "covered",
  10363. -                    "message": "Covered by Drupal's security advisory policy"
  10364. -                }
  10365. +                "dev-master": "3.2-dev"
  10366.              }
  10367.          },
  10368.          "installation-source": "dist",
  10369. -        "notification-url": "https://packages.drupal.org/8/downloads",
  10370. +        "autoload": {
  10371. +            "psr-4": {
  10372. +                "Symfony\\Component\\Translation\\": ""
  10373. +            },
  10374. +            "exclude-from-classmap": [
  10375. +                "/Tests/"
  10376. +            ]
  10377. +        },
  10378. +        "notification-url": "https://packagist.org/downloads/",
  10379.          "license": [
  10380. -            "GPL-2.0+"
  10381. +            "MIT"
  10382.          ],
  10383.          "authors": [
  10384.              {
  10385. -                "name": "Kris Vanderwater (EclipseGc)",
  10386. -                "homepage": "https://www.drupal.org/u/eclipsegc",
  10387. -                "role": "Maintainer"
  10388. -            },
  10389. -            {
  10390. -                "name": "Jakob Perry (japerry)",
  10391. -                "homepage": "https://www.drupal.org/u/japerry",
  10392. -                "role": "Maintainer"
  10393. -            },
  10394. -            {
  10395. -                "name": "Tim Plunkett (tim.plunkett)",
  10396. -                "homepage": "https://www.drupal.org/u/timplunkett",
  10397. -                "role": "Maintainer"
  10398. -            },
  10399. -            {
  10400. -                "name": "James Gilliland (neclimdul)",
  10401. -                "homepage": "https://www.drupal.org/u/neclimdul",
  10402. -                "role": "Maintainer"
  10403. -            },
  10404. -            {
  10405. -                "name": "Daniel Wehner (dawehner)",
  10406. -                "homepage": "https://www.drupal.org/u/dawehner",
  10407. -                "role": "Maintainer"
  10408. -            },
  10409. -            {
  10410. -                "name": "merlinofchaos",
  10411. -                "homepage": "https://www.drupal.org/user/26979"
  10412. -            },
  10413. -            {
  10414. -                "name": "neclimdul",
  10415. -                "homepage": "https://www.drupal.org/user/48673"
  10416. -            },
  10417. -            {
  10418. -                "name": "sdboyer",
  10419. -                "homepage": "https://www.drupal.org/user/146719"
  10420. -            },
  10421. -            {
  10422. -                "name": "sun",
  10423. -                "homepage": "https://www.drupal.org/user/54136"
  10424. +                "name": "Fabien Potencier",
  10425. +                "email": "fabien@symfony.com"
  10426.              },
  10427.              {
  10428. -                "name": "tim.plunkett",
  10429. -                "homepage": "https://www.drupal.org/user/241634"
  10430. +                "name": "Symfony Community",
  10431. +                "homepage": "https://symfony.com/contributors"
  10432.              }
  10433.          ],
  10434. -        "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  10435. -        "homepage": "https://www.drupal.org/project/ctools",
  10436. -        "support": {
  10437. -            "source": "http://cgit.drupalcode.org/ctools",
  10438. -            "issues": "https://www.drupal.org/project/issues/ctools"
  10439. -        }
  10440. +        "description": "Symfony Translation Component",
  10441. +        "homepage": "https://symfony.com"
  10442.      },
  10443.      {
  10444. -        "name": "drupal/pathauto",
  10445. -        "version": "1.0.0",
  10446. -        "version_normalized": "1.0.0.0",
  10447. +        "name": "symfony/validator",
  10448. +        "version": "v3.2.14",
  10449. +        "version_normalized": "3.2.14.0",
  10450.          "source": {
  10451.              "type": "git",
  10452. -            "url": "https://git.drupal.org/project/pathauto",
  10453. -            "reference": "8.x-1.0"
  10454. +            "url": "https://github.com/symfony/validator.git",
  10455. +            "reference": "39244fbf580e01acc3f5df01238a8f69b1b3e46f"
  10456.          },
  10457.          "dist": {
  10458.              "type": "zip",
  10459. -            "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.0.zip",
  10460. -            "reference": "8.x-1.0",
  10461. -            "shasum": "4c82a5689a18421c8c73fcc8be7b333bb21ae02a"
  10462. +            "url": "https://api.github.com/repos/symfony/validator/zipball/39244fbf580e01acc3f5df01238a8f69b1b3e46f",
  10463. +            "reference": "39244fbf580e01acc3f5df01238a8f69b1b3e46f",
  10464. +            "shasum": ""
  10465.          },
  10466.          "require": {
  10467. -            "drupal/core": "*",
  10468. -            "drupal/ctools": "*",
  10469. -            "drupal/token": "*"
  10470. +            "php": ">=5.5.9",
  10471. +            "symfony/polyfill-mbstring": "~1.0",
  10472. +            "symfony/translation": "~2.8|~3.0"
  10473.          },
  10474. -        "type": "drupal-module",
  10475. +        "conflict": {
  10476. +            "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  10477. +        },
  10478. +        "require-dev": {
  10479. +            "doctrine/annotations": "~1.0",
  10480. +            "doctrine/cache": "~1.0",
  10481. +            "egulias/email-validator": "^1.2.8|~2.0",
  10482. +            "symfony/cache": "~3.1",
  10483. +            "symfony/config": "~2.8|~3.0",
  10484. +            "symfony/expression-language": "~2.8|~3.0",
  10485. +            "symfony/http-foundation": "~2.8|~3.0",
  10486. +            "symfony/intl": "^2.8.18|^3.2.5",
  10487. +            "symfony/yaml": "~2.8|~3.0"
  10488. +        },
  10489. +        "suggest": {
  10490. +            "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10491. +            "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10492. +            "egulias/email-validator": "Strict (RFC compliant) email validation",
  10493. +            "psr/cache-implementation": "For using the metadata cache.",
  10494. +            "symfony/config": "",
  10495. +            "symfony/expression-language": "For using the Expression validator",
  10496. +            "symfony/http-foundation": "",
  10497. +            "symfony/intl": "",
  10498. +            "symfony/yaml": ""
  10499. +        },
  10500. +        "time": "2017-07-26T06:34:07+00:00",
  10501. +        "type": "library",
  10502.          "extra": {
  10503.              "branch-alias": {
  10504. -                "dev-1.x": "1.x-dev"
  10505. -            },
  10506. -            "drupal": {
  10507. -                "version": "8.x-1.0",
  10508. -                "datestamp": "1493468044",
  10509. -                "security-coverage": {
  10510. -                    "status": "covered",
  10511. -                    "message": "Covered by Drupal's security advisory policy"
  10512. -                }
  10513. +                "dev-master": "3.2-dev"
  10514.              }
  10515.          },
  10516.          "installation-source": "dist",
  10517. -        "notification-url": "https://packages.drupal.org/8/downloads",
  10518. +        "autoload": {
  10519. +            "psr-4": {
  10520. +                "Symfony\\Component\\Validator\\": ""
  10521. +            },
  10522. +            "exclude-from-classmap": [
  10523. +                "/Tests/"
  10524. +            ]
  10525. +        },
  10526. +        "notification-url": "https://packagist.org/downloads/",
  10527.          "license": [
  10528. -            "GPL-2.0+"
  10529. +            "MIT"
  10530.          ],
  10531.          "authors": [
  10532.              {
  10533. -                "name": "Berdir",
  10534. -                "homepage": "https://www.drupal.org/user/214652"
  10535. -            },
  10536. -            {
  10537. -                "name": "Dave Reid",
  10538. -                "homepage": "https://www.drupal.org/user/53892"
  10539. -            },
  10540. -            {
  10541. -                "name": "Freso",
  10542. -                "homepage": "https://www.drupal.org/user/27504"
  10543. +                "name": "Fabien Potencier",
  10544. +                "email": "fabien@symfony.com"
  10545.              },
  10546.              {
  10547. -                "name": "greggles",
  10548. -                "homepage": "https://www.drupal.org/user/36762"
  10549. +                "name": "Symfony Community",
  10550. +                "homepage": "https://symfony.com/contributors"
  10551.              }
  10552.          ],
  10553. -        "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  10554. -        "homepage": "https://www.drupal.org/project/pathauto",
  10555. -        "support": {
  10556. -            "source": "http://cgit.drupalcode.org/pathauto"
  10557. -        }
  10558. +        "description": "Symfony Validator Component",
  10559. +        "homepage": "https://symfony.com"
  10560.      },
  10561.      {
  10562. -        "name": "drupal/migrate_source_csv",
  10563. -        "version": "2.0.0",
  10564. -        "version_normalized": "2.0.0.0",
  10565. +        "name": "symfony/var-dumper",
  10566. +        "version": "v3.3.10",
  10567. +        "version_normalized": "3.3.10.0",
  10568.          "source": {
  10569.              "type": "git",
  10570. -            "url": "https://git.drupal.org/project/migrate_source_csv",
  10571. -            "reference": "8.x-2.0"
  10572. +            "url": "https://github.com/symfony/var-dumper.git",
  10573. +            "reference": "03e3693a36701f1c581dd24a6d6eea2eba2113f6"
  10574.          },
  10575.          "dist": {
  10576.              "type": "zip",
  10577. -            "url": "https://ftp.drupal.org/files/projects/migrate_source_csv-8.x-2.0.zip",
  10578. -            "reference": "8.x-2.0",
  10579. -            "shasum": "056845ce1679a051733b12576e3204609dce293d"
  10580. +            "url": "https://api.github.com/repos/symfony/var-dumper/zipball/03e3693a36701f1c581dd24a6d6eea2eba2113f6",
  10581. +            "reference": "03e3693a36701f1c581dd24a6d6eea2eba2113f6",
  10582. +            "shasum": ""
  10583.          },
  10584.          "require": {
  10585. -            "drupal/core": "~8.1"
  10586. +            "php": "^5.5.9|>=7.0.8",
  10587. +            "symfony/polyfill-mbstring": "~1.0"
  10588. +        },
  10589. +        "conflict": {
  10590. +            "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  10591. +        },
  10592. +        "require-dev": {
  10593. +            "ext-iconv": "*",
  10594. +            "twig/twig": "~1.34|~2.4"
  10595.          },
  10596. -        "require-dev": {
  10597. -            "mikey179/vfsstream": "~1",
  10598. -            "phpunit/phpunit": "~4"
  10599. +        "suggest": {
  10600. +            "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10601. +            "ext-symfony_debug": ""
  10602.          },
  10603. -        "type": "drupal-module",
  10604. +        "time": "2017-10-02T06:42:24+00:00",
  10605. +        "type": "library",
  10606.          "extra": {
  10607.              "branch-alias": {
  10608. -                "dev-2.x": "2.x-dev"
  10609. -            },
  10610. -            "drupal": {
  10611. -                "version": "8.x-2.0",
  10612. -                "datestamp": "1479750843",
  10613. -                "security-coverage": {
  10614. -                    "status": "covered",
  10615. -                    "message": "Covered by Drupal's security advisory policy"
  10616. -                }
  10617. +                "dev-master": "3.3-dev"
  10618.              }
  10619.          },
  10620.          "installation-source": "dist",
  10621. -        "notification-url": "https://packages.drupal.org/8/downloads",
  10622. +        "autoload": {
  10623. +            "files": [
  10624. +                "Resources/functions/dump.php"
  10625. +            ],
  10626. +            "psr-4": {
  10627. +                "Symfony\\Component\\VarDumper\\": ""
  10628. +            },
  10629. +            "exclude-from-classmap": [
  10630. +                "/Tests/"
  10631. +            ]
  10632. +        },
  10633. +        "notification-url": "https://packagist.org/downloads/",
  10634.          "license": [
  10635. -            "GPL-2.0+"
  10636. +            "MIT"
  10637.          ],
  10638.          "authors": [
  10639.              {
  10640. -                "name": "Lucas Hedding",
  10641. -                "homepage": "https://www.drupal.org/u/heddn",
  10642. -                "role": "Maintainer"
  10643. +                "name": "Nicolas Grekas",
  10644. +                "email": "p@tchwork.com"
  10645.              },
  10646.              {
  10647. -                "name": "mikeryan",
  10648. -                "homepage": "https://www.drupal.org/user/4420"
  10649. +                "name": "Symfony Community",
  10650. +                "homepage": "https://symfony.com/contributors"
  10651.              }
  10652.          ],
  10653. -        "description": "CSV source migration.",
  10654. -        "homepage": "https://www.drupal.org/project/migrate_source_csv",
  10655. -        "support": {
  10656. -            "source": "https://cgit.drupalcode.org/migrate_source_csv",
  10657. -            "issues": "https://www.drupal.org/project/issues/migrate_source_csv",
  10658. -            "irc": "irc://irc.freenode.org/drupal-migrate"
  10659. -        }
  10660. +        "description": "Symfony mechanism for exploring and dumping PHP variables",
  10661. +        "homepage": "https://symfony.com",
  10662. +        "keywords": [
  10663. +            "debug",
  10664. +            "dump"
  10665. +        ]
  10666.      },
  10667.      {
  10668. -        "name": "drupal/coffee",
  10669. -        "version": "1.0.0-beta2",
  10670. -        "version_normalized": "1.0.0.0-beta2",
  10671. +        "name": "symfony/yaml",
  10672. +        "version": "v3.2.14",
  10673. +        "version_normalized": "3.2.14.0",
  10674.          "source": {
  10675.              "type": "git",
  10676. -            "url": "https://git.drupal.org/project/coffee",
  10677. -            "reference": "8.x-1.0-beta2"
  10678. +            "url": "https://github.com/symfony/yaml.git",
  10679. +            "reference": "78a0c5d7d43713212aac73d7c6a56754a5c26cea"
  10680.          },
  10681.          "dist": {
  10682.              "type": "zip",
  10683. -            "url": "https://ftp.drupal.org/files/projects/coffee-8.x-1.0-beta2.zip",
  10684. -            "reference": "8.x-1.0-beta2",
  10685. -            "shasum": "92631b9ea65298a057cc4143e0939bb156ef5e8d"
  10686. +            "url": "https://api.github.com/repos/symfony/yaml/zipball/78a0c5d7d43713212aac73d7c6a56754a5c26cea",
  10687. +            "reference": "78a0c5d7d43713212aac73d7c6a56754a5c26cea",
  10688. +            "shasum": ""
  10689.          },
  10690.          "require": {
  10691. -            "drupal/core": "~8.0"
  10692. +            "php": ">=5.5.9"
  10693.          },
  10694. -        "type": "drupal-module",
  10695. +        "require-dev": {
  10696. +            "symfony/console": "~2.8|~3.0"
  10697. +        },
  10698. +        "suggest": {
  10699. +            "symfony/console": "For validating YAML files using the lint command"
  10700. +        },
  10701. +        "time": "2017-06-02T09:43:35+00:00",
  10702. +        "type": "library",
  10703.          "extra": {
  10704.              "branch-alias": {
  10705. -                "dev-1.x": "1.x-dev",
  10706. -                "dev-8.x-1.x": "8.1.x-dev"
  10707. -            },
  10708. -            "drupal": {
  10709. -                "version": "8.x-1.0-beta2",
  10710. -                "datestamp": "1477414741",
  10711. -                "security-coverage": {
  10712. -                    "status": "not-covered",
  10713. -                    "message": "Beta releases are not covered by Drupal security advisories."
  10714. -                }
  10715. +                "dev-master": "3.2-dev"
  10716.              }
  10717.          },
  10718.          "installation-source": "dist",
  10719. -        "notification-url": "https://packages.drupal.org/8/downloads",
  10720. +        "autoload": {
  10721. +            "psr-4": {
  10722. +                "Symfony\\Component\\Yaml\\": ""
  10723. +            },
  10724. +            "exclude-from-classmap": [
  10725. +                "/Tests/"
  10726. +            ]
  10727. +        },
  10728. +        "notification-url": "https://packagist.org/downloads/",
  10729.          "license": [
  10730. -            "GPL-2.0+"
  10731. +            "MIT"
  10732.          ],
  10733.          "authors": [
  10734.              {
  10735. -                "name": "Michael Mol",
  10736. -                "homepage": "https://www.drupal.org/u/michaelmol",
  10737. -                "role": "Maintainer"
  10738. -            },
  10739. -            {
  10740. -                "name": "Marco",
  10741. -                "homepage": "https://www.drupal.org/u/willzyx",
  10742. -                "role": "Maintainer"
  10743. -            },
  10744. -            {
  10745. -                "name": "Oliver Köhler",
  10746. -                "homepage": "https://www.drupal.org/u/nebel54",
  10747. -                "role": "Maintainer"
  10748. -            },
  10749. -            {
  10750. -                "name": "Alli Price",
  10751. -                "homepage": "https://www.drupal.org/u/heylookalive",
  10752. -                "role": "Maintainer"
  10753. +                "name": "Fabien Potencier",
  10754. +                "email": "fabien@symfony.com"
  10755.              },
  10756.              {
  10757. -                "name": "See other contributors",
  10758. -                "homepage": "https://www.drupal.org/node/1356930/committers",
  10759. -                "role": "contributor"
  10760. +                "name": "Symfony Community",
  10761. +                "homepage": "https://symfony.com/contributors"
  10762.              }
  10763.          ],
  10764. -        "description": "Provides an Alfred like search box to navigate within your site.",
  10765. -        "homepage": "https://drupal.org/project/coffee",
  10766. -        "support": {
  10767. -            "source": "https://cgit.drupalcode.org/coffee",
  10768. -            "issues": "https://drupal.org/project/issues/coffee",
  10769. -            "irc": "irc://irc.freenode.org/drupal-contribute"
  10770. -        }
  10771. +        "description": "Symfony Yaml Component",
  10772. +        "homepage": "https://symfony.com"
  10773.      },
  10774.      {
  10775. -        "name": "drupal/admin_toolbar",
  10776. -        "version": "1.21.0",
  10777. -        "version_normalized": "1.21.0.0",
  10778. +        "name": "twig/twig",
  10779. +        "version": "v1.35.0",
  10780. +        "version_normalized": "1.35.0.0",
  10781.          "source": {
  10782.              "type": "git",
  10783. -            "url": "https://git.drupal.org/project/admin_toolbar",
  10784. -            "reference": "8.x-1.21"
  10785. +            "url": "https://github.com/twigphp/Twig.git",
  10786. +            "reference": "daa657073e55b0a78cce8fdd22682fddecc6385f"
  10787.          },
  10788.          "dist": {
  10789.              "type": "zip",
  10790. -            "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.21.zip",
  10791. -            "reference": "8.x-1.21",
  10792. -            "shasum": "af3213bd3f1c73a710e0c594ec2f97968d217dee"
  10793. +            "url": "https://api.github.com/repos/twigphp/Twig/zipball/daa657073e55b0a78cce8fdd22682fddecc6385f",
  10794. +            "reference": "daa657073e55b0a78cce8fdd22682fddecc6385f",
  10795. +            "shasum": ""
  10796.          },
  10797.          "require": {
  10798. -            "drupal/core": "*"
  10799. +            "php": ">=5.3.3"
  10800.          },
  10801. -        "type": "drupal-module",
  10802. +        "require-dev": {
  10803. +            "psr/container": "^1.0",
  10804. +            "symfony/debug": "~2.7",
  10805. +            "symfony/phpunit-bridge": "~3.3@dev"
  10806. +        },
  10807. +        "time": "2017-09-27T18:06:46+00:00",
  10808. +        "type": "library",
  10809.          "extra": {
  10810.              "branch-alias": {
  10811. -                "dev-1.x": "1.x-dev"
  10812. -            },
  10813. -            "drupal": {
  10814. -                "version": "8.x-1.21",
  10815. -                "datestamp": "1511283695",
  10816. -                "security-coverage": {
  10817. -                    "status": "covered",
  10818. -                    "message": "Covered by Drupal's security advisory policy"
  10819. -                }
  10820. +                "dev-master": "1.35-dev"
  10821.              }
  10822.          },
  10823.          "installation-source": "dist",
  10824. -        "notification-url": "https://packages.drupal.org/8/downloads",
  10825. +        "autoload": {
  10826. +            "psr-0": {
  10827. +                "Twig_": "lib/"
  10828. +            },
  10829. +            "psr-4": {
  10830. +                "Twig\\": "src/"
  10831. +            }
  10832. +        },
  10833. +        "notification-url": "https://packagist.org/downloads/",
  10834.          "license": [
  10835. -            "GPL-2.0+"
  10836. +            "BSD-3-Clause"
  10837.          ],
  10838.          "authors": [
  10839.              {
  10840. -                "name": "Mohamed Anis Taktak",
  10841. -                "homepage": "https://www.drupal.org/u/matio89"
  10842. -            },
  10843. -            {
  10844. -                "name": "adriancid",
  10845. -                "homepage": "https://www.drupal.org/user/1962106"
  10846. -            },
  10847. -            {
  10848. -                "name": "bolbol",
  10849. -                "homepage": "https://www.drupal.org/user/3400070"
  10850. -            },
  10851. -            {
  10852. -                "name": "eme",
  10853. -                "homepage": "https://www.drupal.org/user/542492"
  10854. -            },
  10855. -            {
  10856. -                "name": "fethi.krout",
  10857. -                "homepage": "https://www.drupal.org/user/3206765"
  10858. +                "name": "Fabien Potencier",
  10859. +                "email": "fabien@symfony.com",
  10860. +                "homepage": "http://fabien.potencier.org",
  10861. +                "role": "Lead Developer"
  10862.              },
  10863.              {
  10864. -                "name": "matio89",
  10865. -                "homepage": "https://www.drupal.org/user/2320090"
  10866. +                "name": "Armin Ronacher",
  10867. +                "email": "armin.ronacher@active-4.com",
  10868. +                "role": "Project Founder"
  10869.              },
  10870.              {
  10871. -                "name": "romainj",
  10872. -                "homepage": "https://www.drupal.org/user/370706"
  10873. +                "name": "Twig Team",
  10874. +                "homepage": "http://twig.sensiolabs.org/contributors",
  10875. +                "role": "Contributors"
  10876.              }
  10877.          ],
  10878. -        "description": "Admin Toolbar improve the default Drupal Toolbar, it lets the hover of sub menus.",
  10879. -        "homepage": "http://drupal.org/project/admin_toolbar",
  10880. -        "support": {
  10881. -            "source": "http://cgit.drupalcode.org/admin_toolbar",
  10882. -            "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  10883. -        }
  10884. +        "description": "Twig, the flexible, fast, and secure template language for PHP",
  10885. +        "homepage": "http://twig.sensiolabs.org",
  10886. +        "keywords": [
  10887. +            "templating"
  10888. +        ]
  10889.      },
  10890.      {
  10891. -        "name": "commerceguys/enum",
  10892. -        "version": "v1.0",
  10893. -        "version_normalized": "1.0.0.0",
  10894. +        "name": "vlucas/phpdotenv",
  10895. +        "version": "v2.4.0",
  10896. +        "version_normalized": "2.4.0.0",
  10897.          "source": {
  10898.              "type": "git",
  10899. -            "url": "https://github.com/commerceguys/enum.git",
  10900. -            "reference": "1d9db2dbeb1a02500e7a14589ae2f9cb402c5c95"
  10901. +            "url": "https://github.com/vlucas/phpdotenv.git",
  10902. +            "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c"
  10903.          },
  10904.          "dist": {
  10905.              "type": "zip",
  10906. -            "url": "https://api.github.com/repos/commerceguys/enum/zipball/1d9db2dbeb1a02500e7a14589ae2f9cb402c5c95",
  10907. -            "reference": "1d9db2dbeb1a02500e7a14589ae2f9cb402c5c95",
  10908. +            "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c",
  10909. +            "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c",
  10910.              "shasum": ""
  10911.          },
  10912.          "require": {
  10913. -            "php": ">=5.4.0"
  10914. +            "php": ">=5.3.9"
  10915.          },
  10916.          "require-dev": {
  10917. -            "phpunit/phpunit": "~4.0"
  10918. +            "phpunit/phpunit": "^4.8 || ^5.0"
  10919. +        },
  10920. +        "time": "2016-09-01T10:05:43+00:00",
  10921. +        "type": "library",
  10922. +        "extra": {
  10923. +            "branch-alias": {
  10924. +                "dev-master": "2.4-dev"
  10925. +            }
  10926.          },
  10927. -        "time": "2015-02-27T21:36:56+00:00",
  10928. -        "type": "library",
  10929.          "installation-source": "dist",
  10930.          "autoload": {
  10931.              "psr-4": {
  10932. -                "CommerceGuys\\Enum\\": "src"
  10933. +                "Dotenv\\": "src/"
  10934.              }
  10935.          },
  10936.          "notification-url": "https://packagist.org/downloads/",
  10937.          "license": [
  10938. -            "MIT"
  10939. +            "BSD-3-Clause-Attribution"
  10940.          ],
  10941.          "authors": [
  10942.              {
  10943. -                "name": "Bojan Zivanovic"
  10944. +                "name": "Vance Lucas",
  10945. +                "email": "vance@vancelucas.com",
  10946. +                "homepage": "http://www.vancelucas.com"
  10947.              }
  10948.          ],
  10949. -        "description": "A PHP 5.4+ enumeration library."
  10950. +        "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10951. +        "keywords": [
  10952. +            "dotenv",
  10953. +            "env",
  10954. +            "environment"
  10955. +        ]
  10956.      },
  10957.      {
  10958. -        "name": "commerceguys/addressing",
  10959. -        "version": "v1.0.0-beta3",
  10960. -        "version_normalized": "1.0.0.0-beta3",
  10961. +        "name": "webflo/drupal-finder",
  10962. +        "version": "1.1.0",
  10963. +        "version_normalized": "1.1.0.0",
  10964.          "source": {
  10965.              "type": "git",
  10966. -            "url": "https://github.com/commerceguys/addressing.git",
  10967. -            "reference": "615464980031d353865fd0a4b5da3acb3f567129"
  10968. +            "url": "https://github.com/webflo/drupal-finder.git",
  10969. +            "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  10970.          },
  10971.          "dist": {
  10972.              "type": "zip",
  10973. -            "url": "https://api.github.com/repos/commerceguys/addressing/zipball/615464980031d353865fd0a4b5da3acb3f567129",
  10974. -            "reference": "615464980031d353865fd0a4b5da3acb3f567129",
  10975. +            "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  10976. +            "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  10977.              "shasum": ""
  10978.          },
  10979. -        "require": {
  10980. -            "commerceguys/enum": "~1.0",
  10981. -            "doctrine/collections": "~1.0",
  10982. -            "php": ">=5.5.0"
  10983. -        },
  10984.          "require-dev": {
  10985. -            "mikey179/vfsstream": "1.*",
  10986. -            "phpunit/phpunit": "~4.0",
  10987. -            "squizlabs/php_codesniffer": "2.*",
  10988. -            "symfony/intl": ">=2.3",
  10989. -            "symfony/validator": ">=2.3"
  10990. -        },
  10991. -        "suggest": {
  10992. -            "commerceguys/intl": "to use it as the source of country data",
  10993. -            "symfony/intl": "to use it as the source of country data",
  10994. -            "symfony/validator": "to validate addresses"
  10995. +            "mikey179/vfsstream": "^1.6",
  10996. +            "phpunit/phpunit": "^4.8"
  10997.          },
  10998. -        "time": "2017-04-20T12:32:07+00:00",
  10999. +        "time": "2017-10-24T08:12:11+00:00",
  11000.          "type": "library",
  11001. -        "extra": {
  11002. -            "branch-alias": {
  11003. -                "dev-master": "1.x-dev"
  11004. -            }
  11005. -        },
  11006.          "installation-source": "dist",
  11007.          "autoload": {
  11008. -            "psr-4": {
  11009. -                "CommerceGuys\\Addressing\\": "src"
  11010. -            }
  11011. +            "classmap": [
  11012. +                "src/DrupalFinder.php"
  11013. +            ]
  11014.          },
  11015.          "notification-url": "https://packagist.org/downloads/",
  11016.          "license": [
  11017. -            "MIT"
  11018. +            "GPL-2.0+"
  11019.          ],
  11020.          "authors": [
  11021.              {
  11022. -                "name": "Bojan Zivanovic"
  11023. -            },
  11024. -            {
  11025. -                "name": "Damien Tournoud"
  11026. +                "name": "Florian Weber",
  11027. +                "email": "florian@webflo.org"
  11028.              }
  11029.          ],
  11030. -        "description": "Addressing library powered by Google's address data.",
  11031. -        "keywords": [
  11032. -            "address",
  11033. -            "internationalization",
  11034. -            "localization",
  11035. -            "postal"
  11036. -        ]
  11037. +        "description": "Helper class to locate a Drupal installation from a given path."
  11038.      },
  11039.      {
  11040. -        "name": "commerceguys/intl",
  11041. -        "version": "v0.7.4",
  11042. -        "version_normalized": "0.7.4.0",
  11043. +        "name": "webmozart/assert",
  11044. +        "version": "1.2.0",
  11045. +        "version_normalized": "1.2.0.0",
  11046.          "source": {
  11047.              "type": "git",
  11048. -            "url": "https://github.com/commerceguys/intl.git",
  11049. -            "reference": "edfcfc26ed8505c4f6fcf862eb36dfda1af74b00"
  11050. +            "url": "https://github.com/webmozart/assert.git",
  11051. +            "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f"
  11052.          },
  11053.          "dist": {
  11054.              "type": "zip",
  11055. -            "url": "https://api.github.com/repos/commerceguys/intl/zipball/edfcfc26ed8505c4f6fcf862eb36dfda1af74b00",
  11056. -            "reference": "edfcfc26ed8505c4f6fcf862eb36dfda1af74b00",
  11057. +            "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f",
  11058. +            "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f",
  11059.              "shasum": ""
  11060.          },
  11061.          "require": {
  11062. -            "php": ">=5.4.0"
  11063. +            "php": "^5.3.3 || ^7.0"
  11064.          },
  11065.          "require-dev": {
  11066. -            "mikey179/vfsstream": "1.*",
  11067. -            "phpunit/phpunit": "~4.0"
  11068. +            "phpunit/phpunit": "^4.6",
  11069. +            "sebastian/version": "^1.0.1"
  11070.          },
  11071. -        "time": "2016-12-13T12:33:19+00:00",
  11072. +        "time": "2016-11-23T20:04:58+00:00",
  11073.          "type": "library",
  11074.          "extra": {
  11075.              "branch-alias": {
  11076. -                "dev-master": "0.x-dev"
  11077. +                "dev-master": "1.3-dev"
  11078.              }
  11079.          },
  11080.          "installation-source": "dist",
  11081.          "autoload": {
  11082.              "psr-4": {
  11083. -                "CommerceGuys\\Intl\\": "src"
  11084. +                "Webmozart\\Assert\\": "src/"
  11085.              }
  11086.          },
  11087.          "notification-url": "https://packagist.org/downloads/",
  11088. @@ -7346,337 +7410,273 @@
  11089.          ],
  11090.          "authors": [
  11091.              {
  11092. -                "name": "Bojan Zivanovic"
  11093. +                "name": "Bernhard Schussek",
  11094. +                "email": "bschussek@gmail.com"
  11095.              }
  11096.          ],
  11097. -        "description": "Internationalization library powered by CLDR data."
  11098. +        "description": "Assertions to validate method input/output with nice error messages.",
  11099. +        "keywords": [
  11100. +            "assert",
  11101. +            "check",
  11102. +            "validate"
  11103. +        ]
  11104.      },
  11105.      {
  11106. -        "name": "drupal/address",
  11107. -        "version": "1.3.0",
  11108. -        "version_normalized": "1.3.0.0",
  11109. +        "name": "webmozart/path-util",
  11110. +        "version": "2.3.0",
  11111. +        "version_normalized": "2.3.0.0",
  11112.          "source": {
  11113.              "type": "git",
  11114. -            "url": "https://git.drupal.org/project/address",
  11115. -            "reference": "8.x-1.3"
  11116. +            "url": "https://github.com/webmozart/path-util.git",
  11117. +            "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  11118.          },
  11119.          "dist": {
  11120.              "type": "zip",
  11121. -            "url": "https://ftp.drupal.org/files/projects/address-8.x-1.3.zip",
  11122. -            "reference": "8.x-1.3",
  11123. -            "shasum": "170551d6ecf4a08bac178f31b9869a626279d9eb"
  11124. +            "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  11125. +            "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  11126. +            "shasum": ""
  11127.          },
  11128.          "require": {
  11129. -            "commerceguys/addressing": "~1.0",
  11130. -            "commerceguys/intl": "~0.7",
  11131. -            "drupal/core": "*"
  11132. +            "php": ">=5.3.3",
  11133. +            "webmozart/assert": "~1.0"
  11134.          },
  11135. -        "type": "drupal-module",
  11136. +        "require-dev": {
  11137. +            "phpunit/phpunit": "^4.6",
  11138. +            "sebastian/version": "^1.0.1"
  11139. +        },
  11140. +        "time": "2015-12-17T08:42:14+00:00",
  11141. +        "type": "library",
  11142.          "extra": {
  11143.              "branch-alias": {
  11144. -                "dev-1.x": "1.x-dev"
  11145. -            },
  11146. -            "drupal": {
  11147. -                "version": "8.x-1.3",
  11148. -                "datestamp": "1511382784",
  11149. -                "security-coverage": {
  11150. -                    "status": "covered",
  11151. -                    "message": "Covered by Drupal's security advisory policy"
  11152. -                }
  11153. +                "dev-master": "2.3-dev"
  11154.              }
  11155.          },
  11156.          "installation-source": "dist",
  11157. -        "notification-url": "https://packages.drupal.org/8/downloads",
  11158. +        "autoload": {
  11159. +            "psr-4": {
  11160. +                "Webmozart\\PathUtil\\": "src/"
  11161. +            }
  11162. +        },
  11163. +        "notification-url": "https://packagist.org/downloads/",
  11164.          "license": [
  11165. -            "GPL-2.0+"
  11166. +            "MIT"
  11167.          ],
  11168.          "authors": [
  11169.              {
  11170. -                "name": "bojanz",
  11171. -                "homepage": "https://www.drupal.org/user/86106"
  11172. -            },
  11173. -            {
  11174. -                "name": "googletorp",
  11175. -                "homepage": "https://www.drupal.org/user/386230"
  11176. -            },
  11177. -            {
  11178. -                "name": "rszrama",
  11179. -                "homepage": "https://www.drupal.org/user/49344"
  11180. +                "name": "Bernhard Schussek",
  11181. +                "email": "bschussek@gmail.com"
  11182.              }
  11183.          ],
  11184. -        "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  11185. -        "homepage": "http://drupal.org/project/address",
  11186. -        "support": {
  11187. -            "source": "http://cgit.drupalcode.org/address"
  11188. -        }
  11189. +        "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths."
  11190.      },
  11191.      {
  11192. -        "name": "drupal/video_embed_field",
  11193. -        "version": "2.0.0-alpha2",
  11194. -        "version_normalized": "2.0.0.0-alpha2",
  11195. +        "name": "zendframework/zend-diactoros",
  11196. +        "version": "1.6.1",
  11197. +        "version_normalized": "1.6.1.0",
  11198.          "source": {
  11199.              "type": "git",
  11200. -            "url": "https://git.drupal.org/project/video_embed_field",
  11201. -            "reference": "8.x-2.0-alpha2"
  11202. +            "url": "https://github.com/zendframework/zend-diactoros.git",
  11203. +            "reference": "c8664b92a6d5bc229e48b0923486c097e45a7877"
  11204.          },
  11205.          "dist": {
  11206.              "type": "zip",
  11207. -            "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.0-alpha2.zip",
  11208. -            "reference": "8.x-2.0-alpha2",
  11209. -            "shasum": "45b67ad5e0092f2ec9c2873ceabc85ff3a5e9620"
  11210. +            "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/c8664b92a6d5bc229e48b0923486c097e45a7877",
  11211. +            "reference": "c8664b92a6d5bc229e48b0923486c097e45a7877",
  11212. +            "shasum": ""
  11213.          },
  11214.          "require": {
  11215. -            "drupal/core": "*"
  11216. +            "php": "^5.6 || ^7.0",
  11217. +            "psr/http-message": "^1.0"
  11218. +        },
  11219. +        "provide": {
  11220. +            "psr/http-message-implementation": "1.0"
  11221.          },
  11222.          "require-dev": {
  11223. -            "drupal/colorbox": "*",
  11224. -            "drupal/media_entity": "*",
  11225. -            "drupal/media_entity_embeddable_video": "*"
  11226. +            "ext-dom": "*",
  11227. +            "ext-libxml": "*",
  11228. +            "phpunit/phpunit": "^5.7.16 || ^6.0.8",
  11229. +            "zendframework/zend-coding-standard": "~1.0"
  11230.          },
  11231. -        "type": "drupal-module",
  11232. +        "time": "2017-10-12T15:24:51+00:00",
  11233. +        "type": "library",
  11234.          "extra": {
  11235.              "branch-alias": {
  11236. -                "dev-2.x": "2.x-dev"
  11237. -            },
  11238. -            "drupal": {
  11239. -                "version": "8.x-1.x",
  11240. -                "datestamp": "1512694688",
  11241. -                "security-coverage": {
  11242. -                    "status": "not-covered",
  11243. -                    "message": "Alpha releases are not covered by Drupal security advisories."
  11244. -                },
  11245. -                "package": "Field types"
  11246. +                "dev-master": "1.6-dev",
  11247. +                "dev-develop": "1.7-dev"
  11248.              }
  11249.          },
  11250.          "installation-source": "dist",
  11251. -        "notification-url": "https://packages.drupal.org/8/downloads",
  11252. -        "license": [
  11253. -            "GPL-2.0+"
  11254. -        ],
  11255. -        "authors": [
  11256. -            {
  11257. -                "name": "Sam152",
  11258. -                "homepage": "https://www.drupal.org/user/1485048"
  11259. -            },
  11260. -            {
  11261. -                "name": "jec006",
  11262. -                "homepage": "https://www.drupal.org/user/855980"
  11263. -            },
  11264. -            {
  11265. -                "name": "plopesc",
  11266. -                "homepage": "https://www.drupal.org/user/282415"
  11267. +        "autoload": {
  11268. +            "psr-4": {
  11269. +                "Zend\\Diactoros\\": "src/"
  11270.              }
  11271. +        },
  11272. +        "notification-url": "https://packagist.org/downloads/",
  11273. +        "license": [
  11274. +            "BSD-2-Clause"
  11275.          ],
  11276. -        "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  11277. -        "homepage": "https://www.drupal.org/project/video_embed_field",
  11278. -        "support": {
  11279. -            "source": "http://cgit.drupalcode.org/video_embed_field"
  11280. -        }
  11281. +        "description": "PSR HTTP Message implementations",
  11282. +        "homepage": "https://github.com/zendframework/zend-diactoros",
  11283. +        "keywords": [
  11284. +            "http",
  11285. +            "psr",
  11286. +            "psr-7"
  11287. +        ]
  11288.      },
  11289.      {
  11290. -        "name": "drupal/entity_browser",
  11291. -        "version": "2.0.0-alpha2",
  11292. -        "version_normalized": "2.0.0.0-alpha2",
  11293. +        "name": "zendframework/zend-escaper",
  11294. +        "version": "2.5.2",
  11295. +        "version_normalized": "2.5.2.0",
  11296.          "source": {
  11297.              "type": "git",
  11298. -            "url": "https://git.drupal.org/project/entity_browser",
  11299. -            "reference": "8.x-2.0-alpha2"
  11300. +            "url": "https://github.com/zendframework/zend-escaper.git",
  11301. +            "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e"
  11302.          },
  11303.          "dist": {
  11304.              "type": "zip",
  11305. -            "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.0-alpha2.zip",
  11306. -            "reference": "8.x-2.0-alpha2",
  11307. -            "shasum": "f31ad069e5c5e95db9b9410a4d71038ac0c5b370"
  11308. +            "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  11309. +            "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  11310. +            "shasum": ""
  11311.          },
  11312.          "require": {
  11313. -            "drupal/core": "~8.0"
  11314. +            "php": ">=5.5"
  11315.          },
  11316.          "require-dev": {
  11317. -            "drupal/ctools": "*",
  11318. -            "drupal/inline_entity_form": "*",
  11319. -            "drupal/paragraphs": "*",
  11320. -            "drupal/token": "*"
  11321. +            "fabpot/php-cs-fixer": "1.7.*",
  11322. +            "phpunit/phpunit": "~4.0"
  11323.          },
  11324. -        "type": "drupal-module",
  11325. +        "time": "2016-06-30T19:48:38+00:00",
  11326. +        "type": "library",
  11327.          "extra": {
  11328.              "branch-alias": {
  11329. -                "dev-2.x": "2.x-dev",
  11330. -                "dev-8.x-1.x": "8.1.x-dev"
  11331. -            },
  11332. -            "drupal": {
  11333. -                "version": "8.x-2.0-alpha2",
  11334. -                "datestamp": "1512118387",
  11335. -                "security-coverage": {
  11336. -                    "status": "not-covered",
  11337. -                    "message": "Alpha releases are not covered by Drupal security advisories."
  11338. -                }
  11339. +                "dev-master": "2.5-dev",
  11340. +                "dev-develop": "2.6-dev"
  11341.              }
  11342.          },
  11343.          "installation-source": "dist",
  11344. -        "notification-url": "https://packages.drupal.org/8/downloads",
  11345. -        "license": [
  11346. -            "GPL-2.0+"
  11347. -        ],
  11348. -        "authors": [
  11349. -            {
  11350. -                "name": "Janez Urevc",
  11351. -                "homepage": "https://github.com/slashrsm",
  11352. -                "role": "Maintainer"
  11353. -            },
  11354. -            {
  11355. -                "name": "Primoz Hmeljak",
  11356. -                "homepage": "https://github.com/primsi",
  11357. -                "role": "Maintainer"
  11358. -            },
  11359. -            {
  11360. -                "name": "See other contributors",
  11361. -                "homepage": "https://www.drupal.org/node/1943336/committers",
  11362. -                "role": "contributor"
  11363. -            },
  11364. -            {
  11365. -                "name": "Primsi",
  11366. -                "homepage": "https://www.drupal.org/user/282629"
  11367. -            },
  11368. -            {
  11369. -                "name": "marcingy",
  11370. -                "homepage": "https://www.drupal.org/user/77320"
  11371. -            },
  11372. -            {
  11373. -                "name": "samuel.mortenson",
  11374. -                "homepage": "https://www.drupal.org/user/2582268"
  11375. -            },
  11376. -            {
  11377. -                "name": "slashrsm",
  11378. -                "homepage": "https://www.drupal.org/user/744628"
  11379. +        "autoload": {
  11380. +            "psr-4": {
  11381. +                "Zend\\Escaper\\": "src/"
  11382.              }
  11383. +        },
  11384. +        "notification-url": "https://packagist.org/downloads/",
  11385. +        "license": [
  11386. +            "BSD-3-Clause"
  11387.          ],
  11388. -        "description": "Entity browsing and selecting component.",
  11389. -        "homepage": "http://drupal.org/project/entity_browser",
  11390. -        "support": {
  11391. -            "source": "http://cgit.drupalcode.org/entity_browser",
  11392. -            "issues": "http://drupal.org/project/issues/entity_browser",
  11393. -            "irc": "irc://irc.freenode.org/drupal-contribute"
  11394. -        }
  11395. +        "homepage": "https://github.com/zendframework/zend-escaper",
  11396. +        "keywords": [
  11397. +            "escaper",
  11398. +            "zf2"
  11399. +        ]
  11400.      },
  11401.      {
  11402. -        "name": "drupal/inline_entity_form",
  11403. -        "version": "1.0.0-beta1",
  11404. -        "version_normalized": "1.0.0.0-beta1",
  11405. +        "name": "zendframework/zend-feed",
  11406. +        "version": "2.8.0",
  11407. +        "version_normalized": "2.8.0.0",
  11408.          "source": {
  11409.              "type": "git",
  11410. -            "url": "https://git.drupal.org/project/inline_entity_form",
  11411. -            "reference": "8.x-1.0-beta1"
  11412. +            "url": "https://github.com/zendframework/zend-feed.git",
  11413. +            "reference": "94579e805dd108683209fe14b3b5d4276de3de6e"
  11414.          },
  11415.          "dist": {
  11416.              "type": "zip",
  11417. -            "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-beta1.zip",
  11418. -            "reference": "8.x-1.0-beta1",
  11419. -            "shasum": "185ffc28a7b68d19cce057855d1c111f1741a3ea"
  11420. +            "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/94579e805dd108683209fe14b3b5d4276de3de6e",
  11421. +            "reference": "94579e805dd108683209fe14b3b5d4276de3de6e",
  11422. +            "shasum": ""
  11423.          },
  11424.          "require": {
  11425. -            "drupal/core": "~8.0"
  11426. +            "php": "^5.6 || ^7.0",
  11427. +            "zendframework/zend-escaper": "^2.5",
  11428. +            "zendframework/zend-stdlib": "^2.7 || ^3.1"
  11429.          },
  11430.          "require-dev": {
  11431. -            "drupal/entity_reference_revisions": "*"
  11432. +            "phpunit/phpunit": "^6.0.8 || ^5.7.15",
  11433. +            "psr/http-message": "^1.0",
  11434. +            "zendframework/zend-cache": "^2.6",
  11435. +            "zendframework/zend-coding-standard": "~1.0.0",
  11436. +            "zendframework/zend-db": "^2.7",
  11437. +            "zendframework/zend-http": "^2.5.4",
  11438. +            "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  11439. +            "zendframework/zend-validator": "^2.6"
  11440.          },
  11441. -        "type": "drupal-module",
  11442. +        "suggest": {
  11443. +            "psr/http-message": "PSR-7 ^1.0, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  11444. +            "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  11445. +            "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  11446. +            "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  11447. +            "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  11448. +            "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries ehen using the Writer subcomponent"
  11449. +        },
  11450. +        "time": "2017-04-01T15:03:14+00:00",
  11451. +        "type": "library",
  11452.          "extra": {
  11453.              "branch-alias": {
  11454. -                "dev-1.x": "1.x-dev"
  11455. -            },
  11456. -            "drupal": {
  11457. -                "version": "8.x-1.0-beta1",
  11458. -                "datestamp": "1477868343",
  11459. -                "security-coverage": {
  11460. -                    "status": "not-covered",
  11461. -                    "message": "Beta releases are not covered by Drupal security advisories."
  11462. -                }
  11463. +                "dev-master": "2.8-dev",
  11464. +                "dev-develop": "2.9-dev"
  11465.              }
  11466.          },
  11467. -        "installation-source": "source",
  11468. -        "notification-url": "https://packages.drupal.org/8/downloads",
  11469. -        "license": [
  11470. -            "GPL-2.0+"
  11471. -        ],
  11472. -        "authors": [
  11473. -            {
  11474. -                "name": "bojanz",
  11475. -                "homepage": "https://www.drupal.org/user/86106"
  11476. -            },
  11477. -            {
  11478. -                "name": "dawehner",
  11479. -                "homepage": "https://www.drupal.org/user/99340"
  11480. -            },
  11481. -            {
  11482. -                "name": "rszrama",
  11483. -                "homepage": "https://www.drupal.org/user/49344"
  11484. -            },
  11485. -            {
  11486. -                "name": "slashrsm",
  11487. -                "homepage": "https://www.drupal.org/user/744628"
  11488. -            },
  11489. -            {
  11490. -                "name": "webflo",
  11491. -                "homepage": "https://www.drupal.org/user/254778"
  11492. +        "installation-source": "dist",
  11493. +        "autoload": {
  11494. +            "psr-4": {
  11495. +                "Zend\\Feed\\": "src/"
  11496.              }
  11497. +        },
  11498. +        "notification-url": "https://packagist.org/downloads/",
  11499. +        "license": [
  11500. +            "BSD-3-Clause"
  11501.          ],
  11502. -        "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  11503. -        "homepage": "https://www.drupal.org/project/inline_entity_form",
  11504. -        "support": {
  11505. -            "source": "http://cgit.drupalcode.org/inline_entity_form"
  11506. -        }
  11507. +        "description": "provides functionality for consuming RSS and Atom feeds",
  11508. +        "homepage": "https://github.com/zendframework/zend-feed",
  11509. +        "keywords": [
  11510. +            "feed",
  11511. +            "zf2"
  11512. +        ]
  11513.      },
  11514.      {
  11515. -        "name": "drupal/group",
  11516. -        "version": "1.0.0-rc1",
  11517. -        "version_normalized": "1.0.0.0-RC1",
  11518. +        "name": "zendframework/zend-stdlib",
  11519. +        "version": "3.1.0",
  11520. +        "version_normalized": "3.1.0.0",
  11521.          "source": {
  11522.              "type": "git",
  11523. -            "url": "https://git.drupal.org/project/group",
  11524. -            "reference": "8.x-1.0-rc1"
  11525. +            "url": "https://github.com/zendframework/zend-stdlib.git",
  11526. +            "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78"
  11527.          },
  11528.          "dist": {
  11529.              "type": "zip",
  11530. -            "url": "https://ftp.drupal.org/files/projects/group-8.x-1.0-rc1.zip",
  11531. -            "reference": "8.x-1.0-rc1",
  11532. -            "shasum": "6991939b310fbc5ac19151eb0d70e9b30f340354"
  11533. +            "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/debedcfc373a293f9250cc9aa03cf121428c8e78",
  11534. +            "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78",
  11535. +            "shasum": ""
  11536.          },
  11537.          "require": {
  11538. -            "drupal/core": "*"
  11539. +            "php": "^5.6 || ^7.0"
  11540.          },
  11541. -        "type": "drupal-module",
  11542. +        "require-dev": {
  11543. +            "athletic/athletic": "~0.1",
  11544. +            "phpunit/phpunit": "~4.0",
  11545. +            "squizlabs/php_codesniffer": "^2.6.2"
  11546. +        },
  11547. +        "time": "2016-09-13T14:38:50+00:00",
  11548. +        "type": "library",
  11549.          "extra": {
  11550.              "branch-alias": {
  11551. -                "dev-1.x": "1.x-dev"
  11552. -            },
  11553. -            "drupal": {
  11554. -                "version": "8.x-1.0-rc1",
  11555. -                "datestamp": "1498033733",
  11556. -                "security-coverage": {
  11557. -                    "status": "not-covered",
  11558. -                    "message": "RC releases are not covered by Drupal security advisories."
  11559. -                }
  11560. -            },
  11561. -            "patches_applied": {
  11562. -                "The group_roles field gets created too early during configuration sync": "https://www.drupal.org/files/issues/2869554-12.patch",
  11563. -                "Errors when deleting groups or group content": "https://www.drupal.org/files/issues/2908830-04.patch"
  11564. +                "dev-master": "3.1-dev",
  11565. +                "dev-develop": "3.2-dev"
  11566.              }
  11567.          },
  11568.          "installation-source": "dist",
  11569. -        "notification-url": "https://packages.drupal.org/8/downloads",
  11570. -        "license": [
  11571. -            "GPL-2.0+"
  11572. -        ],
  11573. -        "authors": [
  11574. -            {
  11575. -                "name": "kristiaanvandeneynde",
  11576. -                "homepage": "https://www.drupal.org/user/1345130"
  11577. +        "autoload": {
  11578. +            "psr-4": {
  11579. +                "Zend\\Stdlib\\": "src/"
  11580.              }
  11581. +        },
  11582. +        "notification-url": "https://packagist.org/downloads/",
  11583. +        "license": [
  11584. +            "BSD-3-Clause"
  11585.          ],
  11586. -        "description": "This module allows you to group users, content and other entities",
  11587. -        "homepage": "https://www.drupal.org/project/group",
  11588. -        "support": {
  11589. -            "source": "http://cgit.drupalcode.org/group"
  11590. -        }
  11591. +        "homepage": "https://github.com/zendframework/zend-stdlib",
  11592. +        "keywords": [
  11593. +            "stdlib",
  11594. +            "zf2"
  11595. +        ]
  11596.      }
  11597.  ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement