installed.php 92.7 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 2363 2364 2365 2366 2367 2368 2369
<?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.2.0',
            'version' => '2.2.0.0',
            'reference' => '50f57105bad3d97a43ec4a485eb57daf347eafea',
            'type' => 'library',
            'install_path' => __DIR__ . '/../asm89/stack-cors',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'carbonphp/carbon-doctrine-types' => array(
            'pretty_version' => '3.2.0',
            'version' => '3.2.0.0',
            'reference' => '18ba5ddfec8976260ead6e866180bd5d2f71aa1d',
            'type' => 'library',
            'install_path' => __DIR__ . '/../carbonphp/carbon-doctrine-types',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'chi-teck/drupal-code-generator' => array(
            'pretty_version' => '4.1.0',
            'version' => '4.1.0.0',
            'reference' => '9a5501beb1a7aa2400afa5e5679bf21c526c497c',
            '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.3',
            'version' => '3.4.3.0',
            'reference' => '4313d26ada5e0c4edfbd1dc481a92ff7bff91f12',
            'type' => 'library',
            'install_path' => __DIR__ . '/./semver',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'consolidation/annotated-command' => array(
            'pretty_version' => '4.10.1',
            'version' => '4.10.1.0',
            'reference' => '362310b13ececa9f6f0a4a880811fa08fecc348b',
            'type' => 'library',
            'install_path' => __DIR__ . '/../consolidation/annotated-command',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'consolidation/config' => array(
            'pretty_version' => '3.1.0',
            'version' => '3.1.0.0',
            'reference' => '0615499781449ab773ffc609b97b934b3357b3f9',
            '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.0',
            'version' => '4.6.0.0',
            'reference' => '5fd5656718d7068a02d046f418a7ba873d5abbfe',
            '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.2.2',
            'version' => '2.2.2.0',
            'reference' => 'd8af7f248c74f195f7347424600fd9e17b57af59',
            'type' => 'library',
            'install_path' => __DIR__ . '/../doctrine/collections',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'doctrine/deprecations' => array(
            'pretty_version' => '1.1.4',
            'version' => '1.1.4.0',
            'reference' => '31610dbb31faa98e6b5447b62340826f54fbc4e9',
            'type' => 'library',
            'install_path' => __DIR__ . '/../doctrine/deprecations',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'doctrine/inflector' => array(
            'pretty_version' => '2.0.10',
            'version' => '2.0.10.0',
            'reference' => '5817d0659c5b50c9b950feb9af7b9668e2c436bc',
            'type' => 'library',
            'install_path' => __DIR__ . '/../doctrine/inflector',
            '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,
        ),
        '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.3',
            'version' => '2.0.3.0',
            'reference' => '2.0.3',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/address',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/addtocal_augment' => array(
            'pretty_version' => '1.2.3',
            'version' => '1.2.3.0',
            'reference' => '1.2.3',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/addtocal_augment',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/ai' => array(
            'pretty_version' => '1.0.4',
            'version' => '1.0.4.0',
            'reference' => '1.0.4',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/ai',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/ai_agents' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => '1.0.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.0.0',
            'version' => '1.0.0.0',
            'reference' => '1.0.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.0.0-beta1',
            'version' => '1.0.0.0-beta1',
            'reference' => '1.0.0-beta1',
            '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.0.2',
            'version' => '1.0.2.0',
            'reference' => '1.0.2',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/ai_provider_openai',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/automatic_updates' => array(
            'pretty_version' => '3.1.7',
            'version' => '3.1.7.0',
            'reference' => '3.1.7',
            '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.7',
            'version' => '2.0.7.0',
            'reference' => '2.0.7',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/bpmn_io',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/captcha' => array(
            'pretty_version' => '2.0.7',
            'version' => '2.0.7.0',
            'reference' => '2.0.7',
            '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/core' => array(
            'pretty_version' => '11.1.3',
            'version' => '11.1.3.0',
            'reference' => 'd856ab80fd902a26a740977a02a161f4e39d36de',
            'type' => 'drupal-core',
            'install_path' => __DIR__ . '/../../web/core',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/core-annotation' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-assertion' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-class-finder' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-composer-scaffold' => array(
            'pretty_version' => '11.1.3',
            'version' => '11.1.3.0',
            'reference' => '30e2dce1d08858236ae2703c0a72d120d8075bc5',
            '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.1.3',
            ),
        ),
        'drupal/core-dependency-injection' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-diff' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-discovery' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-event-dispatcher' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-file-cache' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-file-security' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-filesystem' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-front-matter' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-gettext' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-graph' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-http-foundation' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-php-storage' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-plugin' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-project-message' => array(
            'pretty_version' => '11.1.3',
            'version' => '11.1.3.0',
            'reference' => 'd1da83722735cb0f7ccabf9fef7b5607b442c3a8',
            '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.1.3',
            ),
        ),
        'drupal/core-recommended' => array(
            'pretty_version' => '11.1.3',
            'version' => '11.1.3.0',
            'reference' => '03dbc777454f415c8f47c6abcadf1afd146b8144',
            'type' => 'metapackage',
            'install_path' => NULL,
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/core-render' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-serialization' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-transliteration' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-utility' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-uuid' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.3',
            ),
        ),
        'drupal/core-version' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '11.1.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.0',
            'version' => '2.0.0.0',
            'reference' => '2.0.0',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/dashboard',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/date_augmenter' => array(
            'pretty_version' => '1.1.1',
            'version' => '1.1.1.0',
            'reference' => '1.1.1',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/date_augmenter',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_accessibility_tools' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => '44c87a2205125ed1c4244f29084aa8c4f737e94e',
            '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.0.2',
            'version' => '1.0.2.0',
            'reference' => 'db6bd002f3c14e9f8d691998a5958888d49fe37d',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_admin_ui',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_ai' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => '1525b47893affbfad9cb9d59aaedcccf35ad3644',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_ai',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_analytics' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => 'a52cf8cd272bdfce2a617713f9bd968a0c85fa5d',
            'type' => 'metapackage',
            'install_path' => NULL,
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_anti_spam' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => 'a4856cb09f7cec7844d7ac8aef594319bac73f71',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_anti_spam',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_authentication' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => '5ada5ed39c1cba554a6c5d811591683a695a7b57',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_authentication',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_blog' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => '56c9490fd802da5d0d4202e4eda45d7af4608f6e',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_blog',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_case_study' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => 'a9b7d4abbc3bfaf98c8d8b29c6999afdb18b12be',
            '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.0.2',
            'version' => '1.0.2.0',
            'reference' => '13c6f055cec51943c36ad14e3524d7a92cf80b8d',
            '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.0.2',
            'version' => '1.0.2.0',
            'reference' => '927fa4595123daef210420b61e555c419c124c00',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_events',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_forms' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => '7ba6bfba3e2b6e0522b618bd02eaf5b5ef49ec3c',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_forms',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_google_analytics' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => '41e0378bd6bb1e73cf5785efbc86131f3b236491',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_google_analytics',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_image' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => '11db1bf6e4f9b7613247952969614911a183b951',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_image',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_news' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => '243b81094eb9a4c8b91630dd5d133dad10501e61',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_news',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_olivero' => array(
            'pretty_version' => '1.0.1',
            'version' => '1.0.1.0',
            'reference' => '1.0.1',
            '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.0.2',
            'version' => '1.0.2.0',
            'reference' => '412e782bb17414bc02efc7c3e3d9fd8b3320e15c',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_page',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_person' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => 'e6d0d9d641c70e610bf5e5e8ca68fc7a7749d8bf',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_person',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_privacy_basic' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => '513bd7ef34eac5ea8ae67c394aac52998c88e0a2',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_privacy_basic',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_project' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => '9137bab1d8f359ae95594c6a0de4f86025e8255b',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_project',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_remote_video' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => '4d54a40ddc5ae161a2a2ef8328652e59a2c114eb',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_remote_video',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_search' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => 'd1acf9bbe93caee2435fe348f821fda7d4cbfb67',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_search',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_seo_basic' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => 'e6da347d5cf29c09bb2956ef88a0040a8cd0c6bd',
            '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.0.2',
            'version' => '1.0.2.0',
            'reference' => '4bd8c4e1529e6c71a97c7825a214a56ce0728210',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/drupal_cms_seo_tools',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/drupal_cms_starter' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => '85eb950ef1fa01e311a6dda70819a8ae8f989ddd',
            '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.4',
            'version' => '3.0.4.0',
            'reference' => '3.0.4',
            '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.3',
            'version' => '1.0.3.0',
            'reference' => '324e63083b41dbeab29bf8c480da1b081d864092',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/easy_email_express',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/easy_email_standard' => array(
            'pretty_version' => '1.0.2',
            'version' => '1.0.2.0',
            'reference' => '80cfbcfdc5d9a84d17a81502aa7189bc011f07c0',
            '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.2',
            'version' => '1.0.2.0',
            'reference' => '43798ff5924bdeb07ef30531faa2ab8271a3169f',
            '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.3',
            'version' => '1.0.3.0',
            'reference' => 'fcbf5253f35f16e94dc92e6fd6b35e6f620effe5',
            '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.1',
            'version' => '1.0.1.0',
            'reference' => 'edad52fa8dd7d14b7dbd01e5da250b9d79f20246',
            'type' => 'drupal-recipe',
            'install_path' => __DIR__ . '/../../recipes/easy_email_types_default',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/eca' => array(
            'pretty_version' => '2.1.5',
            'version' => '2.1.5.0',
            'reference' => '2.1.5',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/eca',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/eca_modeller_bpmn' => array(
            'pretty_version' => '2.1.5',
            'version' => '2.1.5.0',
            'reference' => NULL,
            'type' => 'metapackage',
            'install_path' => NULL,
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/eca_ui' => array(
            'pretty_version' => '2.1.5',
            'version' => '2.1.5.0',
            'reference' => NULL,
            'type' => 'metapackage',
            'install_path' => NULL,
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/editoria11y' => array(
            'pretty_version' => '2.2.4',
            'version' => '2.2.4.0',
            'reference' => '2.2.4',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/editoria11y',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/field_group' => array(
            'pretty_version' => '3.6.0',
            'version' => '3.6.0.0',
            'reference' => '8.x-3.6',
            '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.3',
            'version' => '1.1.3.0',
            'reference' => '1.1.3',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/friendlycaptcha',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/geocoder' => array(
            'pretty_version' => '4.26.0',
            'version' => '4.26.0.0',
            'reference' => '8.x-4.26',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/geocoder',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/geofield' => array(
            'pretty_version' => '1.64.0',
            'version' => '1.64.0.0',
            'reference' => '8.x-1.64',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/geofield',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/gin' => array(
            'pretty_version' => '4.0.6',
            'version' => '4.0.6.0',
            'reference' => '4.0.6',
            'type' => 'drupal-theme',
            'install_path' => __DIR__ . '/../../web/themes/contrib/gin',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/gin_toolbar' => array(
            'pretty_version' => '2.0.0',
            'version' => '2.0.0.0',
            'reference' => '2.0.0',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/gin_toolbar',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/google_tag' => array(
            'pretty_version' => '2.0.8',
            'version' => '2.0.8.0',
            'reference' => '2.0.8',
            '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.19.0',
            'version' => '1.19.0.0',
            'reference' => '8.x-1.19',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/key',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/klaro' => array(
            'pretty_version' => '3.0.0',
            'version' => '3.0.0.0',
            'reference' => '3.0.0',
            '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.2.42',
            'version' => '10.2.42.0',
            'reference' => '10.2.42',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/leaflet',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/linkit' => array(
            'pretty_version' => '7.0.3',
            'version' => '7.0.3.0',
            'reference' => '7.0.3',
            '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/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.0',
            'version' => '2.1.0.0',
            'reference' => '2.1.0',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/metatag',
            '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.0.0-alpha10',
            'version' => '2.0.0.0-alpha10',
            'reference' => '2.0.0-alpha10',
            '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.6.0',
            'version' => '1.6.0.0',
            'reference' => '8.x-1.6',
            '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.0.0',
            'version' => '2.0.0.0',
            'reference' => '8.x-2.0',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/sitemap',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/smart_date' => array(
            'pretty_version' => '4.2.3',
            'version' => '4.2.3.0',
            'reference' => '4.2.3',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/smart_date',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/svg_image' => array(
            'pretty_version' => '3.2.1',
            'version' => '3.2.1.0',
            'reference' => '3.2.1',
            '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.2',
            'version' => '2.0.2.0',
            'reference' => '2.0.2',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/symfony_mailer_lite',
            '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.0',
            'version' => '2.3.0.0',
            'reference' => '2.3.0',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/token_or',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/trash' => array(
            'pretty_version' => '3.0.13',
            'version' => '3.0.13.0',
            'reference' => '3.0.13',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/trash',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/webform' => array(
            'pretty_version' => '6.3.0-beta1',
            'version' => '6.3.0.0-beta1',
            'reference' => '6.3.0-beta1',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/webform',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drupal/yoast_seo' => array(
            'pretty_version' => '2.1.0',
            'version' => '2.1.0.0',
            'reference' => '8.x-2.1',
            'type' => 'drupal-module',
            'install_path' => __DIR__ . '/../../web/modules/contrib/yoast_seo',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'drush/drush' => array(
            'pretty_version' => '13.3.3',
            'version' => '13.3.3.0',
            'reference' => 'd124723dacb4208ccb875b7114722e420fccf06d',
            'type' => 'library',
            'install_path' => __DIR__ . '/../drush/drush',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'egulias/email-validator' => array(
            'pretty_version' => '4.0.3',
            'version' => '4.0.3.0',
            'reference' => 'b115554301161fa21467629f1e1391c1936de517',
            'type' => 'library',
            'install_path' => __DIR__ . '/../egulias/email-validator',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'enshrined/svg-sanitize' => array(
            'pretty_version' => '0.21.0',
            'version' => '0.21.0.0',
            'reference' => '5e477468fac5c5ce933dce53af3e8e4e58dcccc9',
            'type' => 'library',
            'install_path' => __DIR__ . '/../enshrined/svg-sanitize',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'geocoder-php/common-http' => array(
            'pretty_version' => '4.6.0',
            'version' => '4.6.0.0',
            'reference' => 'd8c22a66120daed35ba8017467bc1ebfec28a63e',
            'type' => 'library',
            'install_path' => __DIR__ . '/../geocoder-php/common-http',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'geocoder-php/nominatim-provider' => array(
            'pretty_version' => '5.7.0',
            'version' => '5.7.0.0',
            'reference' => 'a50486161f6babad7b1ed7ee7bf86147b0844413',
            '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.2',
            'version' => '7.9.2.0',
            'reference' => 'd281ed313b989f213357e3be1a179f02196ac99b',
            'type' => 'library',
            'install_path' => __DIR__ . '/../guzzlehttp/guzzle',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'guzzlehttp/promises' => array(
            'pretty_version' => '2.0.4',
            'version' => '2.0.4.0',
            'reference' => 'f9c436286ab2892c7db7be8c8da4ef61ccf7b455',
            'type' => 'library',
            'install_path' => __DIR__ . '/../guzzlehttp/promises',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'guzzlehttp/psr7' => array(
            'pretty_version' => '2.7.0',
            'version' => '2.7.0.0',
            'reference' => 'a70f5c95fb43bc83f07c9c948baa0dc1829bf201',
            '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,
        ),
        'illuminate/collections' => array(
            'pretty_version' => 'v11.44.0',
            'version' => '11.44.0.0',
            'reference' => '8a650cf80dce7f37f20b8bf33e11922b291bf0e2',
            'type' => 'library',
            'install_path' => __DIR__ . '/../illuminate/collections',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'illuminate/conditionable' => array(
            'pretty_version' => 'v11.44.0',
            'version' => '11.44.0.0',
            'reference' => '911df1bda950a3b799cf80671764e34eede131c6',
            'type' => 'library',
            'install_path' => __DIR__ . '/../illuminate/conditionable',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'illuminate/contracts' => array(
            'pretty_version' => 'v11.44.0',
            'version' => '11.44.0.0',
            'reference' => 'b350a3cd8450846325cb49e1cbc1293598b18898',
            'type' => 'library',
            'install_path' => __DIR__ . '/../illuminate/contracts',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'illuminate/macroable' => array(
            'pretty_version' => 'v11.44.0',
            'version' => '11.44.0.0',
            'reference' => 'e1cb9e51b9ed5d3c9bc1ab431d0a52fe42a990ed',
            'type' => 'library',
            'install_path' => __DIR__ . '/../illuminate/macroable',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'illuminate/support' => array(
            'pretty_version' => 'v11.44.0',
            'version' => '11.44.0.0',
            'reference' => 'd86d42ad0c75a020e0e4a7c734e9424ca86811cc',
            'type' => 'library',
            'install_path' => __DIR__ . '/../illuminate/support',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'itamair/geophp' => array(
            'pretty_version' => '1.6',
            'version' => '1.6.0.0',
            'reference' => 'f210e37ab3d4706b7e8cfe3183fec2f5be8a85e6',
            'type' => 'library',
            'install_path' => __DIR__ . '/../itamair/geophp',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'laravel/prompts' => array(
            'pretty_version' => 'v0.1.25',
            'version' => '0.1.25.0',
            'reference' => '7b4029a84c37cb2725fc7f011586e2997040bc95',
            'type' => 'library',
            'install_path' => __DIR__ . '/../laravel/prompts',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'league/commonmark' => array(
            'pretty_version' => '2.6.1',
            'version' => '2.6.1.0',
            'reference' => 'd990688c91cedfb69753ffc2512727ec646df2ad',
            '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.4',
            'version' => '4.2.4.0',
            'reference' => '7ea728b013b9a156c409c6f0fc3624071b742dec',
            '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.16.3',
            'version' => '1.16.3.0',
            'reference' => '645ec21b650bc2aced18285c85f220d22afc1430',
            '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,
        ),
        'nesbot/carbon' => array(
            'pretty_version' => '3.8.6',
            'version' => '3.8.6.0',
            'reference' => 'ff2f20cf83bd4d503720632ce8a426dc747bf7fd',
            'type' => 'library',
            'install_path' => __DIR__ . '/../nesbot/carbon',
            '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.5',
            'version' => '4.0.5.0',
            'reference' => '736c567e257dbe0fcf6ce81b4d6dbe05c6899f96',
            'type' => 'library',
            'install_path' => __DIR__ . '/../nette/utils',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'nikic/php-parser' => array(
            'pretty_version' => 'v5.4.0',
            'version' => '5.4.0.0',
            'reference' => '447a020a1f875a434d62f2a401f53b82a396e494',
            'type' => 'library',
            'install_path' => __DIR__ . '/../nikic/php-parser',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'openai-php/client' => array(
            'pretty_version' => 'v0.10.3',
            'version' => '0.10.3.0',
            'reference' => '4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c',
            '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.0',
            'version' => '2.0.0.0',
            'reference' => 'abaf3e26110199d999e5bf8f6086ddeeef011c22',
            '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/clock' => array(
            'pretty_version' => '1.0.0',
            'version' => '1.0.0.0',
            'reference' => 'e41a24703d4560fd0acb709162f73b8adfc3aa0d',
            'type' => 'library',
            'install_path' => __DIR__ . '/../psr/clock',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'psr/clock-implementation' => array(
            'dev_requirement' => false,
            'provided' => array(
                0 => '1.0',
            ),
        ),
        '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.0',
                1 => '1.1|2.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.0',
                1 => '*',
            ),
        ),
        '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.0',
                1 => '*',
            ),
        ),
        '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.0',
                1 => '*',
            ),
        ),
        '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',
            ),
        ),
        'psr/simple-cache' => array(
            'pretty_version' => '3.0.0',
            'version' => '3.0.0.0',
            'reference' => '764e0b3939f5ca87cb904f570ef9be2d78a07865',
            'type' => 'library',
            'install_path' => __DIR__ . '/../psr/simple-cache',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'psy/psysh' => array(
            'pretty_version' => 'v0.12.7',
            'version' => '0.12.7.0',
            'reference' => 'd73fa3c74918ef4522bb8a3bf9cab39161c4b57c',
            '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' => '5.1.1',
            'version' => '5.1.1.0',
            'reference' => 'c41e007b4b62af48218231d6c2275e4c9b975b2e',
            '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,
        ),
        'spatie/once' => array(
            'dev_requirement' => false,
            'replaced' => array(
                0 => '*',
            ),
        ),
        'symfony/clock' => array(
            'pretty_version' => 'v7.2.0',
            'version' => '7.2.0.0',
            'reference' => 'b81435fbd6648ea425d1ee96a2d8e68f4ceacd24',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/clock',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/console' => array(
            'pretty_version' => 'v7.2.1',
            'version' => '7.2.1.0',
            'reference' => 'fefcc18c0f5d0efe3ab3152f15857298868dc2c3',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/console',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/css-selector' => array(
            'pretty_version' => 'v7.2.0',
            'version' => '7.2.0.0',
            'reference' => '601a5ce9aaad7bf10797e3663faefce9e26c24e2',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/css-selector',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/dependency-injection' => array(
            'pretty_version' => 'v7.2.4',
            'version' => '7.2.4.0',
            'reference' => 'f0a1614cccb4b8431a97076f9debc08ddca321ca',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/dependency-injection',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/deprecation-contracts' => array(
            'pretty_version' => 'v3.5.1',
            'version' => '3.5.1.0',
            'reference' => '74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/error-handler' => array(
            'pretty_version' => 'v7.2.4',
            'version' => '7.2.4.0',
            'reference' => 'aabf79938aa795350c07ce6464dd1985607d95d5',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/error-handler',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/event-dispatcher' => array(
            'pretty_version' => 'v7.2.0',
            'version' => '7.2.0.0',
            'reference' => '910c5db85a5356d0fea57680defec4e99eb9c8c1',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/event-dispatcher',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/event-dispatcher-contracts' => array(
            'pretty_version' => 'v3.5.1',
            'version' => '3.5.1.0',
            'reference' => '7642f5e970b672283b7823222ae8ef8bbc160b9f',
            '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.2.0',
            'version' => '7.2.0.0',
            'reference' => 'b8dce482de9d7c9fe2891155035a7248ab5c7fdb',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/filesystem',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/finder' => array(
            'pretty_version' => 'v7.2.2',
            'version' => '7.2.2.0',
            'reference' => '87a71856f2f56e4100373e92529eed3171695cfb',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/finder',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/http-foundation' => array(
            'pretty_version' => 'v7.2.3',
            'version' => '7.2.3.0',
            'reference' => 'ee1b504b8926198be89d05e5b6fc4c3810c090f0',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/http-foundation',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/http-kernel' => array(
            'pretty_version' => 'v7.2.4',
            'version' => '7.2.4.0',
            'reference' => '9f1103734c5789798fefb90e91de4586039003ed',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/http-kernel',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/mailer' => array(
            'pretty_version' => 'v7.2.3',
            'version' => '7.2.3.0',
            'reference' => 'f3871b182c44997cf039f3b462af4a48fb85f9d3',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/mailer',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/mime' => array(
            'pretty_version' => 'v7.2.4',
            'version' => '7.2.4.0',
            'reference' => '87ca22046b78c3feaff04b337f33b38510fd686b',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/mime',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/polyfill-ctype' => array(
            'pretty_version' => 'v1.31.0',
            'version' => '1.31.0.0',
            'reference' => 'a3cc8b044a6ea513310cbd48ef7333b384945638',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/polyfill-iconv' => array(
            'pretty_version' => 'v1.31.0',
            'version' => '1.31.0.0',
            'reference' => '48becf00c920479ca2e910c22a5a39e5d47ca956',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/polyfill-iconv',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/polyfill-intl-grapheme' => array(
            'pretty_version' => 'v1.31.0',
            'version' => '1.31.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.31.0',
            'version' => '1.31.0.0',
            'reference' => 'c36586dcf89a12315939e00ec9b4474adcb1d773',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/polyfill-intl-idn',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/polyfill-intl-normalizer' => array(
            'pretty_version' => 'v1.31.0',
            'version' => '1.31.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.31.0',
            'version' => '1.31.0.0',
            'reference' => '85181ba99b2345b0ef10ce42ecac37612d9fd341',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/polyfill-php80' => array(
            'pretty_version' => 'v1.31.0',
            'version' => '1.31.0.0',
            'reference' => '60328e362d4c2c802a54fcbf04f9d3fb892b4cf8',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/polyfill-php80',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/polyfill-php81' => array(
            'pretty_version' => 'v1.31.0',
            'version' => '1.31.0.0',
            'reference' => '4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/polyfill-php81',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/polyfill-php83' => array(
            'pretty_version' => 'v1.31.0',
            'version' => '1.31.0.0',
            'reference' => '2fb86d65e2d424369ad2905e83b236a8805ba491',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/polyfill-php83',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/process' => array(
            'pretty_version' => 'v7.2.4',
            'version' => '7.2.4.0',
            'reference' => 'd8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/process',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/psr-http-message-bridge' => array(
            'pretty_version' => 'v7.2.0',
            'version' => '7.2.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.2.3',
            'version' => '7.2.3.0',
            'reference' => 'ee9a67edc6baa33e5fae662f94f91fd262930996',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/routing',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/serializer' => array(
            'pretty_version' => 'v7.2.4',
            'version' => '7.2.4.0',
            'reference' => 'd3e6cd13f035e1061647f0144b5623a1e7e775ba',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/serializer',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/service-contracts' => array(
            'pretty_version' => 'v3.5.1',
            'version' => '3.5.1.0',
            'reference' => 'e53260aabf78fb3d63f8d79d69ece59f80d5eda0',
            '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.2.0',
            'version' => '7.2.0.0',
            'reference' => '446e0d146f991dde3e73f45f2c97a9faad773c82',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/string',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/translation' => array(
            'pretty_version' => 'v7.2.4',
            'version' => '7.2.4.0',
            'reference' => '283856e6981286cc0d800b53bd5703e8e363f05a',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/translation',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/translation-contracts' => array(
            'pretty_version' => 'v3.5.1',
            'version' => '3.5.1.0',
            'reference' => '4667ff3bd513750603a09c8dedbea942487fb07c',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/translation-contracts',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/translation-implementation' => array(
            'dev_requirement' => false,
            'provided' => array(
                0 => '2.3|3.0',
            ),
        ),
        'symfony/validator' => array(
            'pretty_version' => 'v7.2.4',
            'version' => '7.2.4.0',
            'reference' => '00936b34ef29d0e0e9a5340bbce6e7562092da56',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/validator',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/var-dumper' => array(
            'pretty_version' => 'v7.2.3',
            'version' => '7.2.3.0',
            'reference' => '82b478c69745d8878eb60f9a049a4d584996f73a',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/var-dumper',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/var-exporter' => array(
            'pretty_version' => 'v7.2.4',
            'version' => '7.2.4.0',
            'reference' => '4ede73aa7a73d81506002d2caadbbdad1ef5b69a',
            'type' => 'library',
            'install_path' => __DIR__ . '/../symfony/var-exporter',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'symfony/yaml' => array(
            'pretty_version' => 'v7.2.3',
            'version' => '7.2.3.0',
            'reference' => 'ac238f173df0c9c1120f862d0f599e17535a87ec',
            '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.19.0',
            'version' => '3.19.0.0',
            'reference' => 'd4f8c2b86374f08efc859323dbcd95c590f7124e',
            'type' => 'library',
            'install_path' => __DIR__ . '/../twig/twig',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'voku/portable-ascii' => array(
            'pretty_version' => '2.0.3',
            'version' => '2.0.3.0',
            'reference' => 'b1d923f88091c6bf09699efcd7c8a1b1bfd7351d',
            'type' => 'library',
            'install_path' => __DIR__ . '/../voku/portable-ascii',
            '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' => '4.6.0',
            'version' => '4.6.0.0',
            'reference' => 'be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1',
            'type' => 'library',
            'install_path' => __DIR__ . '/../willdurand/geocoder',
            'aliases' => array(),
            'dev_requirement' => false,
        ),
        'wpai-inc/anthropic-sdk-php' => array(
            'pretty_version' => '0.2.1',
            'version' => '0.2.1.0',
            'reference' => '64bd99228b878cd247c4da0909c2e50c6fd84097',
            'type' => 'library',
            'install_path' => __DIR__ . '/../wpai-inc/anthropic-sdk-php',
            '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,
        ),
    ),
);