installed.php 92.5 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362
<?php return array(
    'root' => array(
        'name' => 'drupal/cms',
        'pretty_version' => '1.0.0',
        'version' => '1.0.0.0',
        'reference' => null,
        'type' => 'project',
        'install_path' => __DIR__ . '/../../',
        'aliases' => array(),
        'dev' => true,
    ),
    'versions' => array(
        'asm89/stack-cors' => array(
            'pretty_version' => 'v2.3.0',
            'version' => '2.3.0.0',
            'reference' => 'acf3142e6c5eafa378dc8ef3c069ab4558993f70',
            'type' => 'library',
            'install_path' => __DIR__ . '/../asm89/stack-cors',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'chi-teck/drupal-code-generator' => array(
            'pretty_version' => '4.2.0',
            'version' => '4.2.0.0',
            'reference' => '984dd69522b5839976df51470a00a51616a21f42',
            'type' => 'library',
            'install_path' => __DIR__ . '/../chi-teck/drupal-code-generator',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'clue/stream-filter' => array(
            'pretty_version' => 'v1.7.0',
            'version' => '1.7.0.0',
            'reference' => '049509fef80032cb3f051595029ab75b49a3c2f7',
            'type' => 'library',
            'install_path' => __DIR__ . '/../clue/stream-filter',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'commerceguys/addressing' => array(
            'pretty_version' => 'v2.2.4',
            'version' => '2.2.4.0',
            'reference' => 'ea826dbe5b3fe76960073a2167d5cf996c811cda',
            'type' => 'library',
            'install_path' => __DIR__ . '/../commerceguys/addressing',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'composer/installers' => array(
            'pretty_version' => 'v2.3.0',
            'version' => '2.3.0.0',
            'reference' => '12fb2dfe5e16183de69e784a7b84046c43d97e8e',
            'type' => 'composer-plugin',
            'install_path' => __DIR__ . '/./installers',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'composer/semver' => array(
            'pretty_version' => '3.4.4',
            'version' => '3.4.4.0',
            'reference' => '198166618906cb2de69b95d7d47e5fa8aa1b2b95',
            'type' => 'library',
            'install_path' => __DIR__ . '/./semver',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'consolidation/annotated-command' => array(
            'pretty_version' => '4.10.2',
            'version' => '4.10.2.0',
            'reference' => 'e550ea4f177f199e0e9451168342bf3f321d92b0',
            'type' => 'library',
            'install_path' => __DIR__ . '/../consolidation/annotated-command',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'consolidation/config' => array(
            'pretty_version' => '3.1.1',
            'version' => '3.1.1.0',
            'reference' => '54bb59d156e01698cd52d4dbbf6df98924f9ff7e',
            'type' => 'library',
            'install_path' => __DIR__ . '/../consolidation/config',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'consolidation/filter-via-dot-access-data' => array(
            'pretty_version' => '2.0.2',
            'version' => '2.0.2.0',
            'reference' => 'cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b',
            'type' => 'library',
            'install_path' => __DIR__ . '/../consolidation/filter-via-dot-access-data',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'consolidation/log' => array(
            'pretty_version' => '3.1.0',
            'version' => '3.1.0.0',
            'reference' => 'c27a3beb36137c141ccbce0d89f64befb243c015',
            'type' => 'library',
            'install_path' => __DIR__ . '/../consolidation/log',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'consolidation/output-formatters' => array(
            'pretty_version' => '4.6.1',
            'version' => '4.6.1.0',
            'reference' => 'b6bcaf13bec9f4597e75ae853f3b3ac0d53b798d',
            'type' => 'library',
            'install_path' => __DIR__ . '/../consolidation/output-formatters',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'consolidation/robo' => array(
            'pretty_version' => '5.1.0',
            'version' => '5.1.0.0',
            'reference' => 'dde6bd88de5e1e8a7f6ed8906f80353817647ad9',
            'type' => 'library',
            'install_path' => __DIR__ . '/../consolidation/robo',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'consolidation/site-alias' => array(
            'pretty_version' => '4.1.1',
            'version' => '4.1.1.0',
            'reference' => 'aff6189aae17da813d23249cb2fc0fff33f26d40',
            'type' => 'library',
            'install_path' => __DIR__ . '/../consolidation/site-alias',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'consolidation/site-process' => array(
            'pretty_version' => '5.4.2',
            'version' => '5.4.2.0',
            'reference' => 'e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da',
            'type' => 'library',
            'install_path' => __DIR__ . '/../consolidation/site-process',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'davedevelopment/stiphle' => array(
            'pretty_version' => '0.9.4',
            'version' => '0.9.4.0',
            'reference' => '5d1c244f0525d265e231a65db538b74eb5483768',
            'type' => 'library',
            'install_path' => __DIR__ . '/../davedevelopment/stiphle',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'deepseek-php/deepseek-php-client' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => 'c46ac6a92abaed80ce6e5aa37342f8c43a09cf8b',
            'type' => 'library',
            'install_path' => __DIR__ . '/../deepseek-php/deepseek-php-client',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'dflydev/dot-access-data' => array(
            'pretty_version' => 'v3.0.3',
            'version' => '3.0.3.0',
            'reference' => 'a23a2bf4f31d3518f3ecb38660c95715dfead60f',
            'type' => 'library',
            'install_path' => __DIR__ . '/../dflydev/dot-access-data',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'doctrine/annotations' => array(
            'pretty_version' => '2.0.2',
            'version' => '2.0.2.0',
            'reference' => '901c2ee5d26eb64ff43c47976e114bf00843acf7',
            'type' => 'library',
            'install_path' => __DIR__ . '/../doctrine/annotations',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'doctrine/collections' => array(
            'pretty_version' => '2.3.0',
            'version' => '2.3.0.0',
            'reference' => '2eb07e5953eed811ce1b309a7478a3b236f2273d',
            'type' => 'library',
            'install_path' => __DIR__ . '/../doctrine/collections',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'doctrine/common' => array(
            'pretty_version' => '3.5.0',
            'version' => '3.5.0.0',
            'reference' => 'd9ea4a54ca2586db781f0265d36bea731ac66ec5',
            'type' => 'library',
            'install_path' => __DIR__ . '/../doctrine/common',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'doctrine/deprecations' => array(
            'pretty_version' => '1.1.5',
            'version' => '1.1.5.0',
            'reference' => '459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38',
            'type' => 'library',
            'install_path' => __DIR__ . '/../doctrine/deprecations',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'doctrine/event-manager' => array(
            'pretty_version' => '2.0.1',
            'version' => '2.0.1.0',
            'reference' => 'b680156fa328f1dfd874fd48c7026c41570b9c6e',
            'type' => 'library',
            'install_path' => __DIR__ . '/../doctrine/event-manager',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'doctrine/lexer' => array(
            'pretty_version' => '2.1.1',
            'version' => '2.1.1.0',
            'reference' => '861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6',
            'type' => 'library',
            'install_path' => __DIR__ . '/../doctrine/lexer',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'doctrine/persistence' => array(
            'pretty_version' => '4.1.0',
            'version' => '4.1.0.0',
            'reference' => 'dcbdfe4b211ae09478e192289cae7ab0987b29a4',
            'type' => 'library',
            'install_path' => __DIR__ . '/../doctrine/persistence',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'dragonmantank/cron-expression' => array(
            'pretty_version' => 'v3.4.0',
            'version' => '3.4.0.0',
            'reference' => '8c784d071debd117328803d86b2097615b457500',
            'type' => 'library',
            'install_path' => __DIR__ . '/../dragonmantank/cron-expression',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/add_content_by_bundle' => array(
            'pretty_version' => '1.2.2',
            'version' => '1.2.2.0',
            'reference' => '1.2.2',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/add_content_by_bundle',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/address' => array(
            'pretty_version' => '2.0.4',
            'version' => '2.0.4.0',
            'reference' => '2.0.4',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/address',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/addtocal_augment' => array(
            'pretty_version' => '1.2.4',
            'version' => '1.2.4.0',
            'reference' => '1.2.4',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/addtocal_augment',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/ai' => array(
            'pretty_version' => '1.1.3',
            'version' => '1.1.3.0',
            'reference' => '1.1.3',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/ai',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/ai_agents' => array(
            'pretty_version' => '1.1.2',
            'version' => '1.1.2.0',
            'reference' => '1.1.2',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/ai_agents',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/ai_image_alt_text' => array(
            'pretty_version' => '1.0.1',
            'version' => '1.0.1.0',
            'reference' => '1.0.1',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/ai_image_alt_text',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/ai_provider_anthropic' => array(
            'pretty_version' => '1.1.0',
            'version' => '1.1.0.0',
            'reference' => '1.1.0',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/ai_provider_anthropic',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/ai_provider_deepseek' => array(
            'pretty_version' => '1.0.0-alpha1',
            'version' => '1.0.0.0-alpha1',
            'reference' => '1.0.0-alpha1',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/ai_provider_deepseek',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/ai_provider_ollama' => array(
            'pretty_version' => '1.1.0-beta2',
            'version' => '1.1.0.0-beta2',
            'reference' => '1.1.0-beta2',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/ai_provider_ollama',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/ai_provider_openai' => array(
            'pretty_version' => '1.1.0',
            'version' => '1.1.0.0',
            'reference' => '1.1.0',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/ai_provider_openai',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/ai_search' => array(
            'pretty_version' => '1.1.3',
            'version' => '1.1.3.0',
            'reference' => null,
            'type' => 'metapackage',
            'install_path' => null,
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/ai_vdb_provider_milvus' => array(
            'pretty_version' => '1.1.0-beta2',
            'version' => '1.1.0.0-beta2',
            'reference' => '1.1.0-beta2',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/ai_vdb_provider_milvus',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/automatic_updates' => array(
            'pretty_version' => '4.0.0',
            'version' => '4.0.0.0',
            'reference' => '4.0.0',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/automatic_updates',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/autosave_form' => array(
            'pretty_version' => '1.10.0',
            'version' => '1.10.0.0',
            'reference' => '8.x-1.10',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/autosave_form',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/better_exposed_filters' => array(
            'pretty_version' => '7.0.5',
            'version' => '7.0.5.0',
            'reference' => '7.0.5',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/better_exposed_filters',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/bpmn_io' => array(
            'pretty_version' => '2.0.10',
            'version' => '2.0.10.0',
            'reference' => '2.0.10',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/bpmn_io',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/captcha' => array(
            'pretty_version' => '2.0.9',
            'version' => '2.0.9.0',
            'reference' => '2.0.9',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/captcha',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/checklistapi' => array(
            'pretty_version' => '2.1.6',
            'version' => '2.1.6.0',
            'reference' => '2.1.6',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/checklistapi',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/cms' => array(
            'pretty_version' => '1.0.0',
            'version' => '1.0.0.0',
            'reference' => null,
            'type' => 'project',
            'install_path' => __DIR__ . '/../../',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/coffee' => array(
            'pretty_version' => '2.0.1',
            'version' => '2.0.1.0',
            'reference' => '2.0.1',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/coffee',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/content_only' => array(
            'pretty_version' => '1.2.1',
            'version' => '1.2.1.0',
            'reference' => '1.2.1',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/content_only',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/core' => array(
            'pretty_version' => '11.2.3',
            'version' => '11.2.3.0',
            'reference' => '2e115b19fcff820bd7e2ba41aeaa23ff04cfe8a8',
            'type' => 'drupal-core',
            'install_path' => __DIR__ . '/../../web/core',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/core-annotation' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-assertion' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-class-finder' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-composer-scaffold' => array(
            'pretty_version' => '11.2.3',
            'version' => '11.2.3.0',
            'reference' => '891b4615c479e17245c81571c9be0156be4b03f8',
            'type' => 'composer-plugin',
            'install_path' => __DIR__ . '/../drupal/core-composer-scaffold',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/core-datetime' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-dependency-injection' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-diff' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-discovery' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-event-dispatcher' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-file-cache' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-file-security' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-filesystem' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-front-matter' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-gettext' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-graph' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-http-foundation' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-php-storage' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-plugin' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-project-message' => array(
            'pretty_version' => '11.2.3',
            'version' => '11.2.3.0',
            'reference' => '656efa00f296415ed6be2ff366ef67ae2725d7d6',
            'type' => 'composer-plugin',
            'install_path' => __DIR__ . '/../drupal/core-project-message',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/core-proxy-builder' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-recommended' => array(
            'pretty_version' => '11.2.3',
            'version' => '11.2.3.0',
            'reference' => '07ed2ffda41e106017a8b4ed450c8bb0d775bd35',
            'type' => 'metapackage',
            'install_path' => null,
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/core-render' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-serialization' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-transliteration' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-utility' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-uuid' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/core-version' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.2.3',
            ),
        ),
        'drupal/crop' => array(
            'pretty_version' => '2.4.0',
            'version' => '2.4.0.0',
            'reference' => '8.x-2.4',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/crop',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/ctools' => array(
            'pretty_version' => '4.1.0',
            'version' => '4.1.0.0',
            'reference' => '4.1.0',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/ctools',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/dashboard' => array(
            'pretty_version' => '2.0.1',
            'version' => '2.0.1.0',
            'reference' => '2.0.1',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/dashboard',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/date_augmenter' => array(
            'pretty_version' => '1.1.2',
            'version' => '1.1.2.0',
            'reference' => '1.1.2',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/date_augmenter',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/devel' => array(
            'pretty_version' => '5.4.0',
            'version' => '5.4.0.0',
            'reference' => '5.4.0',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/devel',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/devel_php' => array(
            'pretty_version' => '1.7.0',
            'version' => '1.7.0.0',
            'reference' => '8.x-1.7',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/devel_php',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/domain' => array(
            'pretty_version' => '2.0.0-beta3',
            'version' => '2.0.0.0-beta3',
            'reference' => '2.0.0-beta3',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/domain',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_accessibility_tools' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => '5da58df475927fa3ec4733c6ee2fd60d3a98d4b2',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_accessibility_tools',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_admin_ui' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => 'c25bc08283029e543707f82154a5144e5dd4b3a1',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_admin_ui',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_ai' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => 'eba5e0e2bfc75c937f698fa7f7a4e0c466584310',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_ai',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_analytics' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => '78691531d2807d03703a16e6a8dfc7eb46394323',
            'type' => 'metapackage',
            'install_path' => null,
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_anti_spam' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => 'a670d248eda345896515d585b26c9f8ef6ebc19a',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_anti_spam',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_authentication' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => '0832005e18ed7a989ce64b7ae87aa85ec1b0cfdb',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_authentication',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_blog' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => 'de28677a7edd232eca712e4f7e03572a54a2d59d',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_blog',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_case_study' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => 'f347e76a5f7111d413824289c2ef848559d89356',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_case_study',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_content_type_base' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => '241fcf42d3820113dd1cdfa6a8c2b69d01ddcd35',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_content_type_base',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_events' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => '82e003678d210ba1484d7c48c179c8f52e1f7e9b',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_events',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_forms' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => '4db69d8690c91b090eb32385889b982765b5d6ca',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_forms',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_google_analytics' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => '817f8390f8884e7327148f57bb56114aa4e31817',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_google_analytics',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_image' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => '78a6a2248093fab652f78b790eb1f7873cfdf3df',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_image',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_news' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => '0029f14020711a69f7594df5374a874a829ba747',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_news',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_olivero' => array(
            'pretty_version' => '1.2.0',
            'version' => '1.2.0.0',
            'reference' => '1.2.0',
            'type' => 'drupal-theme',
            'install_path' => __DIR__ . '/../../web/themes/contrib/drupal_cms_olivero',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_page' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => '5973d7ad256c67285fc49cfa549458a44ea2f136',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_page',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_person' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => 'f5f72934ee3457f46d2fde1671b27b1260ca7033',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_person',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_privacy_basic' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => '0fd31d5515a681dbac620f292c5e6180ab68781f',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_privacy_basic',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_project' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => 'b513d3b655f86a245d2e268174218468fae26473',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_project',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_remote_video' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => 'c74e75b4ade2324f2277b7ae905913b37cca7596',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_remote_video',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_search' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => 'b6a41f030417a8acb80f1f7be9b6d08cf1802098',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_search',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_seo_basic' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => 'd8805e87b2612380b40823e1d8b03f3bc49a4e9e',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_seo_basic',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_seo_tools' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => 'e4ec846546508811aee256db264f2aaf1e2626ed',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_seo_tools',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_starter' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => '5a3658419c27fd97f94eafe2417413f5aa916e51',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_starter',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/easy_breadcrumb' => array(
            'pretty_version' => '2.0.9',
            'version' => '2.0.9.0',
            'reference' => '2.0.9',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/easy_breadcrumb',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/easy_email' => array(
            'pretty_version' => '3.0.5',
            'version' => '3.0.5.0',
            'reference' => '3.0.5',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/easy_email',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/easy_email_express' => array(
            'pretty_version' => '1.0.4',
            'version' => '1.0.4.0',
            'reference' => 'aff24f73fe8b2e04cbb524a7887c035385ba8662',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/easy_email_express',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/easy_email_standard' => array(
            'pretty_version' => '1.0.3',
            'version' => '1.0.3.0',
            'reference' => 'e252ab7285864d7e3d63ee3e78d5c7a518f00a17',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/easy_email_standard',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/easy_email_text_format' => array(
            'pretty_version' => '1.0.3',
            'version' => '1.0.3.0',
            'reference' => '568b1d97a91c4aab6aa2e6a3936f280cc49f8385',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/easy_email_text_format',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/easy_email_theme' => array(
            'pretty_version' => '1.0.0',
            'version' => '1.0.0.0',
            'reference' => '1.0.0',
            'type' => 'drupal-theme',
            'install_path' => __DIR__ . '/../../web/themes/contrib/easy_email_theme',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/easy_email_types_core' => array(
            'pretty_version' => '1.0.4',
            'version' => '1.0.4.0',
            'reference' => 'd8e41ba370031d8978e4dc30efaed9d91be1a75c',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/easy_email_types_core',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/easy_email_types_default' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => '7f981984cd1d1d9e6eddf4a914210d7ae3d490e2',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/easy_email_types_default',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/eca' => array(
            'pretty_version' => '2.1.13',
            'version' => '2.1.13.0',
            'reference' => '2.1.13',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/eca',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/eca_modeller_bpmn' => array(
            'pretty_version' => '2.1.13',
            'version' => '2.1.13.0',
            'reference' => null,
            'type' => 'metapackage',
            'install_path' => null,
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/eca_ui' => array(
            'pretty_version' => '3.0.2',
            'version' => '3.0.2.0',
            'reference' => null,
            'type' => 'metapackage',
            'install_path' => null,
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/editoria11y' => array(
            'pretty_version' => '2.2.15',
            'version' => '2.2.15.0',
            'reference' => '2.2.15',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/editoria11y',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/experience_builder' => array(
            'pretty_version' => '0.7.4-alpha1',
            'version' => '0.7.4.0-alpha1',
            'reference' => '0.7.4-alpha1',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/experience_builder',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/field_group' => array(
            'pretty_version' => '4.0.0',
            'version' => '4.0.0.0',
            'reference' => '4.0.0',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/field_group',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/focal_point' => array(
            'pretty_version' => '2.1.2',
            'version' => '2.1.2.0',
            'reference' => '2.1.2',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/focal_point',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/friendly_captcha_challenge' => array(
            'pretty_version' => '0.9.18',
            'version' => '0.9.18.0',
            'reference' => '4c2f561e5d99f7673b1f0e055d2340dea28990cf',
            'type' => 'drupal-library',
            'install_path' => __DIR__ . '/../../web/libraries/friendly-challenge',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/friendlycaptcha' => array(
            'pretty_version' => '1.1.4',
            'version' => '1.1.4.0',
            'reference' => '1.1.4',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/friendlycaptcha',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/geocoder' => array(
            'pretty_version' => '4.30.0',
            'version' => '4.30.0.0',
            'reference' => '8.x-4.30',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/geocoder',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/geofield' => array(
            'pretty_version' => '1.65.0',
            'version' => '1.65.0.0',
            'reference' => '8.x-1.65',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/geofield',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/gin' => array(
            'pretty_version' => '5.0.3',
            'version' => '5.0.3.0',
            'reference' => '5.0.3',
            'type' => 'drupal-theme',
            'install_path' => __DIR__ . '/../../web/themes/contrib/gin',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/gin_toolbar' => array(
            'pretty_version' => '3.0.2',
            'version' => '3.0.2.0',
            'reference' => '3.0.2',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/gin_toolbar',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/google_tag' => array(
            'pretty_version' => '2.0.9',
            'version' => '2.0.9.0',
            'reference' => '2.0.9',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/google_tag',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/honeypot' => array(
            'pretty_version' => '2.2.2',
            'version' => '2.2.2.0',
            'reference' => '2.2.2',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/honeypot',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/jquery_ui' => array(
            'pretty_version' => '1.7.0',
            'version' => '1.7.0.0',
            'reference' => '8.x-1.7',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/jquery_ui',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/jquery_ui_resizable' => array(
            'pretty_version' => '2.1.0',
            'version' => '2.1.0.0',
            'reference' => '2.1.0',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/jquery_ui_resizable',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/key' => array(
            'pretty_version' => '1.20.0',
            'version' => '1.20.0.0',
            'reference' => '8.x-1.20',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/key',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/klaro' => array(
            'pretty_version' => '3.0.7',
            'version' => '3.0.7.0',
            'reference' => '3.0.7',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/klaro',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/klaro_js' => array(
            'pretty_version' => '3.0.1',
            'version' => '3.0.1.0',
            'reference' => 'c5398a0bc9dccd3ccc2c33c9393966bc874bba8c',
            'type' => 'drupal-library',
            'install_path' => __DIR__ . '/../../web/libraries/klaro',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/leaflet' => array(
            'pretty_version' => '10.3.7',
            'version' => '10.3.7.0',
            'reference' => '10.3.7',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/leaflet',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/linkit' => array(
            'pretty_version' => '7.0.8',
            'version' => '7.0.8.0',
            'reference' => '7.0.8',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/linkit',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/login_emailusername' => array(
            'pretty_version' => '3.0.1',
            'version' => '3.0.1.0',
            'reference' => '3.0.1',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/login_emailusername',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/mailsystem' => array(
            'pretty_version' => '4.5.0',
            'version' => '4.5.0.0',
            'reference' => '8.x-4.5',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/mailsystem',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/mcp_client' => array(
            'pretty_version' => 'dev-1.0.x',
            'version' => 'dev-1.0.x',
            'reference' => '85975555668e326a01cec6eaccac192dba9b8c43',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/mcp_client',
            'aliases' => array(
                0 => '1.0.x-dev',
            ),
            'dev_requirement' => false,
        ),
        'drupal/menu_link_attributes' => array(
            'pretty_version' => '1.5.0',
            'version' => '1.5.0.0',
            'reference' => '8.x-1.5',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/menu_link_attributes',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/metatag' => array(
            'pretty_version' => '2.1.1',
            'version' => '2.1.1.0',
            'reference' => '2.1.1',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/metatag',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/modeler_api' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => '1.0.2',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/modeler_api',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/nouislider_js' => array(
            'pretty_version' => '15.8.1',
            'version' => '15.8.1.0',
            'reference' => 'b5610d5842784581e4c766cd1c3852ca0b355ed5',
            'type' => 'drupal-library',
            'install_path' => __DIR__ . '/../../web/libraries/nouislider',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/pathauto' => array(
            'pretty_version' => '1.13.0',
            'version' => '1.13.0.0',
            'reference' => '8.x-1.13',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/pathauto',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/project_browser' => array(
            'pretty_version' => '2.1.0-beta3',
            'version' => '2.1.0.0-beta3',
            'reference' => '2.1.0-beta3',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/project_browser',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/readonlymode' => array(
            'pretty_version' => '2.0.1-alpha1',
            'version' => '2.0.1.0-alpha1',
            'reference' => '2.0.1-alpha1',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/readonlymode',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/redirect' => array(
            'pretty_version' => '1.11.0',
            'version' => '1.11.0.0',
            'reference' => '8.x-1.11',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/redirect',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/robotstxt' => array(
            'pretty_version' => '1.6.0',
            'version' => '1.6.0.0',
            'reference' => '8.x-1.6',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/robotstxt',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/sam' => array(
            'pretty_version' => '1.3.2',
            'version' => '1.3.2.0',
            'reference' => '1.3.2',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/sam',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/scheduler' => array(
            'pretty_version' => '2.2.1',
            'version' => '2.2.1.0',
            'reference' => '2.2.1',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/scheduler',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/scheduler_content_moderation_integration' => array(
            'pretty_version' => '3.0.4',
            'version' => '3.0.4.0',
            'reference' => '3.0.4',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/scheduler_content_moderation_integration',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/search_api' => array(
            'pretty_version' => '1.38.0',
            'version' => '1.38.0.0',
            'reference' => '8.x-1.38',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/search_api',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/search_api_autocomplete' => array(
            'pretty_version' => '1.10.0',
            'version' => '1.10.0.0',
            'reference' => '8.x-1.10',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/search_api_autocomplete',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/search_api_exclude' => array(
            'pretty_version' => '2.0.3',
            'version' => '2.0.3.0',
            'reference' => '2.0.3',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/search_api_exclude',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/selective_better_exposed_filters' => array(
            'pretty_version' => '3.0.3',
            'version' => '3.0.3.0',
            'reference' => '3.0.3',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/selective_better_exposed_filters',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/seo_checklist' => array(
            'pretty_version' => '5.2.4',
            'version' => '5.2.4.0',
            'reference' => '5.2.4',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/seo_checklist',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/simple_search_form' => array(
            'pretty_version' => '1.7.0',
            'version' => '1.7.0.0',
            'reference' => '8.x-1.7',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/simple_search_form',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/simple_sitemap' => array(
            'pretty_version' => '4.2.2',
            'version' => '4.2.2.0',
            'reference' => '4.2.2',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/simple_sitemap',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/sitemap' => array(
            'pretty_version' => '2.3.0',
            'version' => '2.3.0.0',
            'reference' => '8.x-2.3',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/sitemap',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/smart_date' => array(
            'pretty_version' => '4.2.4',
            'version' => '4.2.4.0',
            'reference' => '4.2.4',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/smart_date',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/svg_image' => array(
            'pretty_version' => '3.2.2',
            'version' => '3.2.2.0',
            'reference' => '3.2.2',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/svg_image',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/symfony_mailer_lite' => array(
            'pretty_version' => '2.0.3',
            'version' => '2.0.3.0',
            'reference' => '2.0.3',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/symfony_mailer_lite',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/tagify' => array(
            'pretty_version' => '1.2.41',
            'version' => '1.2.41.0',
            'reference' => '1.2.41',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/tagify',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/token' => array(
            'pretty_version' => '1.15.0',
            'version' => '1.15.0.0',
            'reference' => '8.x-1.15',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/token',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/token_or' => array(
            'pretty_version' => '2.3.2',
            'version' => '2.3.2.0',
            'reference' => '2.3.2',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/token_or',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/trash' => array(
            'pretty_version' => '3.0.18',
            'version' => '3.0.18.0',
            'reference' => '3.0.18',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/trash',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/webform' => array(
            'pretty_version' => '6.3.0-beta4',
            'version' => '6.3.0.0-beta4',
            'reference' => '6.3.0-beta4',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/webform',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/yoast_seo' => array(
            'pretty_version' => '2.2.0',
            'version' => '2.2.0.0',
            'reference' => '8.x-2.2',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/yoast_seo',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drush/drush' => array(
            'pretty_version' => '13.6.2',
            'version' => '13.6.2.0',
            'reference' => '635fce5f8223bae5c39495ee5709e993127ca413',
            'type' => 'library',
            'install_path' => __DIR__ . '/../drush/drush',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'egulias/email-validator' => array(
            'pretty_version' => '4.0.4',
            'version' => '4.0.4.0',
            'reference' => 'd42c8731f0624ad6bdc8d3e5e9a4524f68801cfa',
            'type' => 'library',
            'install_path' => __DIR__ . '/../egulias/email-validator',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'enshrined/svg-sanitize' => array(
            'pretty_version' => '0.22.0',
            'version' => '0.22.0.0',
            'reference' => '0afa95ea74be155a7bcd6c6fb60c276c39984500',
            'type' => 'library',
            'install_path' => __DIR__ . '/../enshrined/svg-sanitize',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'geocoder-php/common-http' => array(
            'pretty_version' => '4.7.0',
            'version' => '4.7.0.0',
            'reference' => '4209be6c31946ed5a658f6240ab21faaf5413f61',
            'type' => 'library',
            'install_path' => __DIR__ . '/../geocoder-php/common-http',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'geocoder-php/nominatim-provider' => array(
            'pretty_version' => '5.8.0',
            'version' => '5.8.0.0',
            'reference' => '1b6852d33e9b558a13d98510fff66e76f4aed9b2',
            'type' => 'library',
            'install_path' => __DIR__ . '/../geocoder-php/nominatim-provider',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'geocoder-php/provider-implementation' => array(
            'dev_requirement' => false,
            'provided' => array(
                0 => '1.0',
            ),
        ),
        'goalgorilla/rtseo.js' => array(
            'pretty_version' => '2.1.0',
            'version' => '2.1.0.0',
            'reference' => 'ab5f9c3ff478e0e9d61f5cc3831038e4f22bbbb0',
            'type' => 'drupal-library',
            'install_path' => __DIR__ . '/../../web/libraries/rtseo.js',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'grasmash/expander' => array(
            'pretty_version' => '3.0.1',
            'version' => '3.0.1.0',
            'reference' => 'eea11b9afb0c32483b18b9009f4ca07b770e39f4',
            'type' => 'library',
            'install_path' => __DIR__ . '/../grasmash/expander',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'grasmash/yaml-cli' => array(
            'pretty_version' => '3.2.1',
            'version' => '3.2.1.0',
            'reference' => '09a8860566958a1576cc54bbe910a03477e54971',
            'type' => 'library',
            'install_path' => __DIR__ . '/../grasmash/yaml-cli',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'guzzlehttp/guzzle' => array(
            'pretty_version' => '7.9.3',
            'version' => '7.9.3.0',
            'reference' => '7b2f29fe81dc4da0ca0ea7d42107a0845946ea77',
            'type' => 'library',
            'install_path' => __DIR__ . '/../guzzlehttp/guzzle',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'guzzlehttp/promises' => array(
            'pretty_version' => '2.2.0',
            'version' => '2.2.0.0',
            'reference' => '7c69f28996b0a6920945dd20b3857e499d9ca96c',
            'type' => 'library',
            'install_path' => __DIR__ . '/../guzzlehttp/promises',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'guzzlehttp/psr7' => array(
            'pretty_version' => '2.7.1',
            'version' => '2.7.1.0',
            'reference' => 'c2270caaabe631b3b44c85f99e5a04bbb8060d16',
            'type' => 'library',
            'install_path' => __DIR__ . '/../guzzlehttp/psr7',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'html2text/html2text' => array(
            'pretty_version' => '4.3.2',
            'version' => '4.3.2.0',
            'reference' => '3b443cbe302b52eb5806a21a9dbd79524203970a',
            'type' => 'library',
            'install_path' => __DIR__ . '/../html2text/html2text',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'itamair/geophp' => array(
            'pretty_version' => '1.7',
            'version' => '1.7.0.0',
            'reference' => 'c8cf587256cdd1a72a732f59138ee3bfa3372956',
            'type' => 'library',
            'install_path' => __DIR__ . '/../itamair/geophp',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'justinrainbow/json-schema' => array(
            'pretty_version' => '5.3.0',
            'version' => '5.3.0.0',
            'reference' => 'feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8',
            'type' => 'library',
            'install_path' => __DIR__ . '/../justinrainbow/json-schema',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'laravel/prompts' => array(
            'pretty_version' => 'v0.3.6',
            'version' => '0.3.6.0',
            'reference' => '86a8b692e8661d0fb308cec64f3d176821323077',
            'type' => 'library',
            'install_path' => __DIR__ . '/../laravel/prompts',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'league/commonmark' => array(
            'pretty_version' => '2.7.1',
            'version' => '2.7.1.0',
            'reference' => '10732241927d3971d28e7ea7b5712721fa2296ca',
            'type' => 'library',
            'install_path' => __DIR__ . '/../league/commonmark',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'league/config' => array(
            'pretty_version' => 'v1.2.0',
            'version' => '1.2.0.0',
            'reference' => '754b3604fb2984c71f4af4a9cbe7b57f346ec1f3',
            'type' => 'library',
            'install_path' => __DIR__ . '/../league/config',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'league/container' => array(
            'pretty_version' => '4.2.5',
            'version' => '4.2.5.0',
            'reference' => 'd3cebb0ff4685ff61c749e54b27db49319e2ec00',
            'type' => 'library',
            'install_path' => __DIR__ . '/../league/container',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'league/html-to-markdown' => array(
            'pretty_version' => '5.1.1',
            'version' => '5.1.1.0',
            'reference' => '0b4066eede55c48f38bcee4fb8f0aa85654390fd',
            'type' => 'library',
            'install_path' => __DIR__ . '/../league/html-to-markdown',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'masterminds/html5' => array(
            'pretty_version' => '2.9.0',
            'version' => '2.9.0.0',
            'reference' => 'f5ac2c0b0a2eefca70b2ce32a5809992227e75a6',
            'type' => 'library',
            'install_path' => __DIR__ . '/../masterminds/html5',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'mck89/peast' => array(
            'pretty_version' => 'v1.17.2',
            'version' => '1.17.2.0',
            'reference' => '465810689c477fbba17f4f949b75e4d0bdab13ea',
            'type' => 'library',
            'install_path' => __DIR__ . '/../mck89/peast',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'mtdowling/cron-expression' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '^1.0',
            ),
        ),
        'mtownsend/xml-to-array' => array(
            'pretty_version' => '2.0.0',
            'version' => '2.0.0.0',
            'reference' => '0734720a8462dba36d90fb8b2723bf46af0091f4',
            'type' => 'library',
            'install_path' => __DIR__ . '/../mtownsend/xml-to-array',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'nette/schema' => array(
            'pretty_version' => 'v1.3.2',
            'version' => '1.3.2.0',
            'reference' => 'da801d52f0354f70a638673c4a0f04e16529431d',
            'type' => 'library',
            'install_path' => __DIR__ . '/../nette/schema',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'nette/utils' => array(
            'pretty_version' => 'v4.0.8',
            'version' => '4.0.8.0',
            'reference' => 'c930ca4e3cf4f17dcfb03037703679d2396d2ede',
            'type' => 'library',
            'install_path' => __DIR__ . '/../nette/utils',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'nikic/php-parser' => array(
            'pretty_version' => 'v5.6.1',
            'version' => '5.6.1.0',
            'reference' => 'f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2',
            'type' => 'library',
            'install_path' => __DIR__ . '/../nikic/php-parser',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'openai-php/client' => array(
            'pretty_version' => 'v0.16.0',
            'version' => '0.16.0.0',
            'reference' => 'd857954cb96731e183adc5e51e5f79d16717ab2a',
            'type' => 'library',
            'install_path' => __DIR__ . '/../openai-php/client',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'orno/di' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '~2.0',
            ),
        ),
        'pear/archive_tar' => array(
            'pretty_version' => '1.5.0',
            'version' => '1.5.0.0',
            'reference' => 'b439c859564f5cbb0f64ad6002d0afe84a889602',
            'type' => 'library',
            'install_path' => __DIR__ . '/../pear/archive_tar',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'pear/console_getopt' => array(
            'pretty_version' => 'v1.4.3',
            'version' => '1.4.3.0',
            'reference' => 'a41f8d3e668987609178c7c4a9fe48fecac53fa0',
            'type' => 'library',
            'install_path' => __DIR__ . '/../pear/console_getopt',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'pear/pear-core-minimal' => array(
            'pretty_version' => 'v1.10.16',
            'version' => '1.10.16.0',
            'reference' => 'c0f51b45f50683bf5bbf558036854ebc9b54d033',
            'type' => 'library',
            'install_path' => __DIR__ . '/../pear/pear-core-minimal',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'pear/pear_exception' => array(
            'pretty_version' => 'v1.0.2',
            'version' => '1.0.2.0',
            'reference' => 'b14fbe2ddb0b9f94f5b24cf08783d599f776fff0',
            'type' => 'class',
            'install_path' => __DIR__ . '/../pear/pear_exception',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'phootwork/collection' => array(
            'pretty_version' => 'v3.2.3',
            'version' => '3.2.3.0',
            'reference' => '46dde20420fba17766c89200bc3ff91d3e58eafa',
            'type' => 'library',
            'install_path' => __DIR__ . '/../phootwork/collection',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'phootwork/lang' => array(
            'pretty_version' => 'v3.2.3',
            'version' => '3.2.3.0',
            'reference' => '52ec8cce740ce1c424eef02f43b43d5ddfec7b5e',
            'type' => 'library',
            'install_path' => __DIR__ . '/../phootwork/lang',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'php-http/async-client-implementation' => array(
            'dev_requirement' => false,
            'provided' => array(
                0 => '*',
                1 => '1.0',
            ),
        ),
        'php-http/client-implementation' => array(
            'dev_requirement' => false,
            'provided' => array(
                0 => '*',
                1 => '1.0',
            ),
        ),
        'php-http/discovery' => array(
            'pretty_version' => '1.20.0',
            'version' => '1.20.0.0',
            'reference' => '82fe4c73ef3363caed49ff8dd1539ba06044910d',
            'type' => 'composer-plugin',
            'install_path' => __DIR__ . '/../php-http/discovery',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'php-http/guzzle7-adapter' => array(
            'pretty_version' => '1.1.0',
            'version' => '1.1.0.0',
            'reference' => '03a415fde709c2f25539790fecf4d9a31bc3d0eb',
            'type' => 'library',
            'install_path' => __DIR__ . '/../php-http/guzzle7-adapter',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'php-http/httplug' => array(
            'pretty_version' => '2.4.1',
            'version' => '2.4.1.0',
            'reference' => '5cad731844891a4c282f3f3e1b582c46839d22f4',
            'type' => 'library',
            'install_path' => __DIR__ . '/../php-http/httplug',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'php-http/message' => array(
            'pretty_version' => '1.16.2',
            'version' => '1.16.2.0',
            'reference' => '06dd5e8562f84e641bf929bfe699ee0f5ce8080a',
            'type' => 'library',
            'install_path' => __DIR__ . '/../php-http/message',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'php-http/message-factory-implementation' => array(
            'dev_requirement' => false,
            'provided' => array(
                0 => '1.0',
            ),
        ),
        'php-http/multipart-stream-builder' => array(
            'pretty_version' => '1.4.2',
            'version' => '1.4.2.0',
            'reference' => '10086e6de6f53489cca5ecc45b6f468604d3460e',
            'type' => 'library',
            'install_path' => __DIR__ . '/../php-http/multipart-stream-builder',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'php-http/promise' => array(
            'pretty_version' => '1.3.1',
            'version' => '1.3.1.0',
            'reference' => 'fc85b1fba37c169a69a07ef0d5a8075770cc1f83',
            'type' => 'library',
            'install_path' => __DIR__ . '/../php-http/promise',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'php-tuf/composer-stager' => array(
            'pretty_version' => 'v2.0.1',
            'version' => '2.0.1.0',
            'reference' => '95ea147ae5eccb4ac19fd9b978549634bb9f46d4',
            'type' => 'library',
            'install_path' => __DIR__ . '/../php-tuf/composer-stager',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'phpowermove/docblock' => array(
            'pretty_version' => 'v4.0',
            'version' => '4.0.0.0',
            'reference' => 'a73f6e17b7d4e1b92ca5378c248c952c9fae7826',
            'type' => 'library',
            'install_path' => __DIR__ . '/../phpowermove/docblock',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'psr/cache' => array(
            'pretty_version' => '3.0.0',
            'version' => '3.0.0.0',
            'reference' => 'aa5030cfa5405eccfdcb1083ce040c2cb8d253bf',
            'type' => 'library',
            'install_path' => __DIR__ . '/../psr/cache',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'psr/container' => array(
            'pretty_version' => '2.0.2',
            'version' => '2.0.2.0',
            'reference' => 'c71ecc56dfe541dbd90c5360474fbc405f8d5963',
            'type' => 'library',
            'install_path' => __DIR__ . '/../psr/container',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'psr/container-implementation' => array(
            'dev_requirement' => false,
            'provided' => array(
                0 => '1.1|2.0',
                1 => '^1.0',
            ),
        ),
        'psr/event-dispatcher' => array(
            'pretty_version' => '1.0.0',
            'version' => '1.0.0.0',
            'reference' => 'dbefd12671e8a14ec7f180cab83036ed26714bb0',
            'type' => 'library',
            'install_path' => __DIR__ . '/../psr/event-dispatcher',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'psr/event-dispatcher-implementation' => array(
            'dev_requirement' => false,
            'provided' => array(
                0 => '1.0',
            ),
        ),
        'psr/http-client' => array(
            'pretty_version' => '1.0.3',
            'version' => '1.0.3.0',
            'reference' => 'bb5906edc1c324c9a05aa0873d40117941e5fa90',
            'type' => 'library',
            'install_path' => __DIR__ . '/../psr/http-client',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'psr/http-client-implementation' => array(
            'dev_requirement' => false,
            'provided' => array(
                0 => '*',
                1 => '1.0',
            ),
        ),
        'psr/http-factory' => array(
            'pretty_version' => '1.1.0',
            'version' => '1.1.0.0',
            'reference' => '2b4765fddfe3b508ac62f829e852b1501d3f6e8a',
            'type' => 'library',
            'install_path' => __DIR__ . '/../psr/http-factory',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'psr/http-factory-implementation' => array(
            'dev_requirement' => false,
            'provided' => array(
                0 => '*',
                1 => '1.0',
            ),
        ),
        'psr/http-message' => array(
            'pretty_version' => '2.0',
            'version' => '2.0.0.0',
            'reference' => '402d35bcb92c70c026d1a6a9883f06b2ead23d71',
            'type' => 'library',
            'install_path' => __DIR__ . '/../psr/http-message',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'psr/http-message-implementation' => array(
            'dev_requirement' => false,
            'provided' => array(
                0 => '*',
                1 => '1.0',
            ),
        ),
        'psr/log' => array(
            'pretty_version' => '3.0.2',
            'version' => '3.0.2.0',
            'reference' => 'f16e1d5863e37f8d8c2a01719f5b34baa2b714d3',
            'type' => 'library',
            'install_path' => __DIR__ . '/../psr/log',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'psr/log-implementation' => array(
            'dev_requirement' => false,
            'provided' => array(
                0 => '1.0|2.0|3.0',
            ),
        ),
        'psy/psysh' => array(
            'pretty_version' => 'v0.12.10',
            'version' => '0.12.10.0',
            'reference' => '6e80abe6f2257121f1eb9a4c55bf29d921025b22',
            'type' => 'library',
            'install_path' => __DIR__ . '/../psy/psysh',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'ralouphie/getallheaders' => array(
            'pretty_version' => '3.0.3',
            'version' => '3.0.3.0',
            'reference' => '120b605dfeb996808c31b6477290a714d356e822',
            'type' => 'library',
            'install_path' => __DIR__ . '/../ralouphie/getallheaders',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'revolt/event-loop' => array(
            'pretty_version' => 'v1.0.7',
            'version' => '1.0.7.0',
            'reference' => '09bf1bf7f7f574453efe43044b06fafe12216eb3',
            'type' => 'library',
            'install_path' => __DIR__ . '/../revolt/event-loop',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'rsky/pear-core-min' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => 'v1.10.16',
            ),
        ),
        'sebastian/diff' => array(
            'pretty_version' => '7.0.0',
            'version' => '7.0.0.0',
            'reference' => '7ab1ea946c012266ca32390913653d844ecd085f',
            'type' => 'library',
            'install_path' => __DIR__ . '/../sebastian/diff',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'simshaun/recurr' => array(
            'pretty_version' => 'v5.0.3',
            'version' => '5.0.3.0',
            'reference' => '7b136768d64f257065e38a804ee6d2f9af6ba6d1',
            'type' => 'library',
            'install_path' => __DIR__ . '/../simshaun/recurr',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/console' => array(
            'pretty_version' => 'v7.3.2',
            'version' => '7.3.2.0',
            'reference' => '5f360ebc65c55265a74d23d7fe27f957870158a1',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/console',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/css-selector' => array(
            'pretty_version' => 'v7.3.0',
            'version' => '7.3.0.0',
            'reference' => '601a5ce9aaad7bf10797e3663faefce9e26c24e2',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/css-selector',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/dependency-injection' => array(
            'pretty_version' => 'v7.3.2',
            'version' => '7.3.2.0',
            'reference' => '6cd2a1a77e8a0676a26e8bcddf10acfe7b0ba352',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/dependency-injection',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/deprecation-contracts' => array(
            'pretty_version' => 'v3.6.0',
            'version' => '3.6.0.0',
            'reference' => '63afe740e99a13ba87ec199bb07bbdee937a5b62',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/error-handler' => array(
            'pretty_version' => 'v7.3.2',
            'version' => '7.3.2.0',
            'reference' => '0b31a944fcd8759ae294da4d2808cbc53aebd0c3',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/error-handler',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/event-dispatcher' => array(
            'pretty_version' => 'v7.3.0',
            'version' => '7.3.0.0',
            'reference' => '497f73ac996a598c92409b44ac43b6690c4f666d',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/event-dispatcher',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/event-dispatcher-contracts' => array(
            'pretty_version' => 'v3.6.0',
            'version' => '3.6.0.0',
            'reference' => '59eb412e93815df44f05f342958efa9f46b1e586',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/event-dispatcher-contracts',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/event-dispatcher-implementation' => array(
            'dev_requirement' => false,
            'provided' => array(
                0 => '2.0|3.0',
            ),
        ),
        'symfony/filesystem' => array(
            'pretty_version' => 'v7.3.2',
            'version' => '7.3.2.0',
            'reference' => 'edcbb768a186b5c3f25d0643159a787d3e63b7fd',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/filesystem',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/finder' => array(
            'pretty_version' => 'v7.3.2',
            'version' => '7.3.2.0',
            'reference' => '2a6614966ba1074fa93dae0bc804227422df4dfe',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/finder',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/http-foundation' => array(
            'pretty_version' => 'v7.3.2',
            'version' => '7.3.2.0',
            'reference' => '6877c122b3a6cc3695849622720054f6e6fa5fa6',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/http-foundation',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/http-kernel' => array(
            'pretty_version' => 'v7.3.2',
            'version' => '7.3.2.0',
            'reference' => '6ecc895559ec0097e221ed2fd5eb44d5fede083c',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/http-kernel',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/mailer' => array(
            'pretty_version' => 'v7.3.2',
            'version' => '7.3.2.0',
            'reference' => 'd43e84d9522345f96ad6283d5dfccc8c1cfc299b',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/mailer',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/mime' => array(
            'pretty_version' => 'v7.3.2',
            'version' => '7.3.2.0',
            'reference' => 'e0a0f859148daf1edf6c60b398eb40bfc96697d1',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/mime',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/polyfill-ctype' => array(
            'pretty_version' => 'v1.32.0',
            'version' => '1.32.0.0',
            'reference' => 'a3cc8b044a6ea513310cbd48ef7333b384945638',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/polyfill-iconv' => array(
            'pretty_version' => 'v1.32.0',
            'version' => '1.32.0.0',
            'reference' => '5f3b930437ae03ae5dff61269024d8ea1b3774aa',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/polyfill-iconv',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/polyfill-intl-grapheme' => array(
            'pretty_version' => 'v1.32.0',
            'version' => '1.32.0.0',
            'reference' => 'b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/polyfill-intl-grapheme',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/polyfill-intl-idn' => array(
            'pretty_version' => 'v1.32.0',
            'version' => '1.32.0.0',
            'reference' => '9614ac4d8061dc257ecc64cba1b140873dce8ad3',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/polyfill-intl-idn',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/polyfill-intl-normalizer' => array(
            'pretty_version' => 'v1.32.0',
            'version' => '1.32.0.0',
            'reference' => '3833d7255cc303546435cb650316bff708a1c75c',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/polyfill-intl-normalizer',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/polyfill-mbstring' => array(
            'pretty_version' => 'v1.32.0',
            'version' => '1.32.0.0',
            'reference' => '6d857f4d76bd4b343eac26d6b539585d2bc56493',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/polyfill-php80' => array(
            'pretty_version' => 'v1.33.0',
            'version' => '1.33.0.0',
            'reference' => '0cc9dd0f17f61d8131e7df6b84bd344899fe2608',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/polyfill-php80',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/polyfill-php81' => array(
            'pretty_version' => 'v1.33.0',
            'version' => '1.33.0.0',
            'reference' => '4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/polyfill-php81',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/polyfill-php83' => array(
            'pretty_version' => 'v1.33.0',
            'version' => '1.33.0.0',
            'reference' => '17f6f9a6b1735c0f163024d959f700cfbc5155e5',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/polyfill-php83',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/polyfill-php84' => array(
            'pretty_version' => 'v1.32.0',
            'version' => '1.32.0.0',
            'reference' => '000df7860439609837bbe28670b0be15783b7fbf',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/polyfill-php84',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/process' => array(
            'pretty_version' => 'v7.3.0',
            'version' => '7.3.0.0',
            'reference' => '40c295f2deb408d5e9d2d32b8ba1dd61e36f05af',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/process',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/psr-http-message-bridge' => array(
            'pretty_version' => 'v7.3.0',
            'version' => '7.3.0.0',
            'reference' => '03f2f72319e7acaf2a9f6fcbe30ef17eec51594f',
            'type' => 'symfony-bridge',
            'install_path' => __DIR__ . '/../symfony/psr-http-message-bridge',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/routing' => array(
            'pretty_version' => 'v7.3.2',
            'version' => '7.3.2.0',
            'reference' => '7614b8ca5fa89b9cd233e21b627bfc5774f586e4',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/routing',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/serializer' => array(
            'pretty_version' => 'v7.3.2',
            'version' => '7.3.2.0',
            'reference' => '0ed011583fd24899fa003abf77c45d4a901714da',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/serializer',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/service-contracts' => array(
            'pretty_version' => 'v3.6.0',
            'version' => '3.6.0.0',
            'reference' => 'f021b05a130d35510bd6b25fe9053c2a8a15d5d4',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/service-contracts',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/service-implementation' => array(
            'dev_requirement' => false,
            'provided' => array(
                0 => '1.1|2.0|3.0',
            ),
        ),
        'symfony/string' => array(
            'pretty_version' => 'v7.3.2',
            'version' => '7.3.2.0',
            'reference' => '42f505aff654e62ac7ac2ce21033818297ca89ca',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/string',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/translation-contracts' => array(
            'pretty_version' => 'v3.6.0',
            'version' => '3.6.0.0',
            'reference' => 'df210c7a2573f1913b2d17cc95f90f53a73d8f7d',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/translation-contracts',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/validator' => array(
            'pretty_version' => 'v7.3.2',
            'version' => '7.3.2.0',
            'reference' => 'e5cc60fd44aab8e1d662fc0d954da322c2e08b43',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/validator',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/var-dumper' => array(
            'pretty_version' => 'v7.3.2',
            'version' => '7.3.2.0',
            'reference' => '53205bea27450dc5c65377518b3275e126d45e75',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/var-dumper',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/var-exporter' => array(
            'pretty_version' => 'v7.3.2',
            'version' => '7.3.2.0',
            'reference' => '05b3e90654c097817325d6abd284f7938b05f467',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/var-exporter',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/yaml' => array(
            'pretty_version' => 'v7.3.2',
            'version' => '7.3.2.0',
            'reference' => 'b8d7d868da9eb0919e99c8830431ea087d6aae30',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/yaml',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'tijsverkoyen/css-to-inline-styles' => array(
            'pretty_version' => 'v2.3.0',
            'version' => '2.3.0.0',
            'reference' => '0d72ac1c00084279c1816675284073c5a337c20d',
            'type' => 'library',
            'install_path' => __DIR__ . '/../tijsverkoyen/css-to-inline-styles',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'twig/twig' => array(
            'pretty_version' => 'v3.21.1',
            'version' => '3.21.1.0',
            'reference' => '285123877d4dd97dd7c11842ac5fb7e86e60d81d',
            'type' => 'library',
            'install_path' => __DIR__ . '/../twig/twig',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'webmozart/assert' => array(
            'pretty_version' => '1.11.0',
            'version' => '1.11.0.0',
            'reference' => '11cb2199493b2f8a3b53e7f19068fc6aac760991',
            'type' => 'library',
            'install_path' => __DIR__ . '/../webmozart/assert',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'willdurand/geocoder' => array(
            'pretty_version' => '5.0.0',
            'version' => '5.0.0.0',
            'reference' => 'a749e00819d2929bd0ec40fb79853956332970ba',
            'type' => 'library',
            'install_path' => __DIR__ . '/../willdurand/geocoder',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'yethee/tiktoken' => array(
            'pretty_version' => '0.5.1',
            'version' => '0.5.1.0',
            'reference' => '94a4ac18ab505198f5a0955948ab29ce659c1697',
            'type' => 'library',
            'install_path' => __DIR__ . '/../yethee/tiktoken',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
    ),
);