jetpack_autoload_classmap.php
196 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
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
<?php
// This file `jetpack_autoload_classmap.php` was auto generated by automattic/jetpack-autoloader.
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
return array(
'Symfony\\Polyfill\\Php80\\PhpToken' => array(
'version' => '1.27.0.0',
'path' => $vendorDir . '/symfony/polyfill-php80/PhpToken.php'
),
'Attribute' => array(
'version' => '1.27.0.0',
'path' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php'
),
'ValueError' => array(
'version' => '1.27.0.0',
'path' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/ValueError.php'
),
'PhpToken' => array(
'version' => '1.27.0.0',
'path' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php'
),
'Stringable' => array(
'version' => '1.27.0.0',
'path' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Stringable.php'
),
'UnhandledMatchError' => array(
'version' => '1.27.0.0',
'path' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php'
),
'Symfony\\Polyfill\\Php80\\Php80' => array(
'version' => '1.27.0.0',
'path' => $vendorDir . '/symfony/polyfill-php80/Php80.php'
),
'Symfony\\Component\\CssSelector\\XPath\\Translator' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/XPath/Translator.php'
),
'Symfony\\Component\\CssSelector\\XPath\\Extension\\AttributeMatchingExtension' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php'
),
'Symfony\\Component\\CssSelector\\XPath\\Extension\\CombinationExtension' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/CombinationExtension.php'
),
'Symfony\\Component\\CssSelector\\XPath\\Extension\\ExtensionInterface' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/ExtensionInterface.php'
),
'Symfony\\Component\\CssSelector\\XPath\\Extension\\AbstractExtension' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/AbstractExtension.php'
),
'Symfony\\Component\\CssSelector\\XPath\\Extension\\HtmlExtension' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/HtmlExtension.php'
),
'Symfony\\Component\\CssSelector\\XPath\\Extension\\FunctionExtension' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/FunctionExtension.php'
),
'Symfony\\Component\\CssSelector\\XPath\\Extension\\NodeExtension' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/NodeExtension.php'
),
'Symfony\\Component\\CssSelector\\XPath\\Extension\\PseudoClassExtension' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/PseudoClassExtension.php'
),
'Symfony\\Component\\CssSelector\\XPath\\TranslatorInterface' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/XPath/TranslatorInterface.php'
),
'Symfony\\Component\\CssSelector\\XPath\\XPathExpr' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/XPath/XPathExpr.php'
),
'Symfony\\Component\\CssSelector\\CssSelectorConverter' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/CssSelectorConverter.php'
),
'Symfony\\Component\\CssSelector\\Exception\\InternalErrorException' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Exception/InternalErrorException.php'
),
'Symfony\\Component\\CssSelector\\Exception\\ExceptionInterface' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Exception/ExceptionInterface.php'
),
'Symfony\\Component\\CssSelector\\Exception\\ExpressionErrorException' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Exception/ExpressionErrorException.php'
),
'Symfony\\Component\\CssSelector\\Exception\\ParseException' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Exception/ParseException.php'
),
'Symfony\\Component\\CssSelector\\Exception\\SyntaxErrorException' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Exception/SyntaxErrorException.php'
),
'Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/StringHandler.php'
),
'Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/HashHandler.php'
),
'Symfony\\Component\\CssSelector\\Parser\\Handler\\HandlerInterface' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/HandlerInterface.php'
),
'Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/IdentifierHandler.php'
),
'Symfony\\Component\\CssSelector\\Parser\\Handler\\CommentHandler' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/CommentHandler.php'
),
'Symfony\\Component\\CssSelector\\Parser\\Handler\\NumberHandler' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/NumberHandler.php'
),
'Symfony\\Component\\CssSelector\\Parser\\Handler\\WhitespaceHandler' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/WhitespaceHandler.php'
),
'Symfony\\Component\\CssSelector\\Parser\\Token' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/Token.php'
),
'Symfony\\Component\\CssSelector\\Parser\\TokenStream' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/TokenStream.php'
),
'Symfony\\Component\\CssSelector\\Parser\\Parser' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/Parser.php'
),
'Symfony\\Component\\CssSelector\\Parser\\Reader' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/Reader.php'
),
'Symfony\\Component\\CssSelector\\Parser\\ParserInterface' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/ParserInterface.php'
),
'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerPatterns' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php'
),
'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerEscaping' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php'
),
'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\Tokenizer' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/Tokenizer.php'
),
'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\EmptyStringParser' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php'
),
'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ClassParser' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ClassParser.php'
),
'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ElementParser' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ElementParser.php'
),
'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\HashParser' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/HashParser.php'
),
'Symfony\\Component\\CssSelector\\Node\\PseudoNode' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Node/PseudoNode.php'
),
'Symfony\\Component\\CssSelector\\Node\\NodeInterface' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Node/NodeInterface.php'
),
'Symfony\\Component\\CssSelector\\Node\\NegationNode' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Node/NegationNode.php'
),
'Symfony\\Component\\CssSelector\\Node\\HashNode' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Node/HashNode.php'
),
'Symfony\\Component\\CssSelector\\Node\\AttributeNode' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Node/AttributeNode.php'
),
'Symfony\\Component\\CssSelector\\Node\\SelectorNode' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Node/SelectorNode.php'
),
'Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Node/CombinedSelectorNode.php'
),
'Symfony\\Component\\CssSelector\\Node\\FunctionNode' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Node/FunctionNode.php'
),
'Symfony\\Component\\CssSelector\\Node\\AbstractNode' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Node/AbstractNode.php'
),
'Symfony\\Component\\CssSelector\\Node\\Specificity' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Node/Specificity.php'
),
'Symfony\\Component\\CssSelector\\Node\\ClassNode' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Node/ClassNode.php'
),
'Symfony\\Component\\CssSelector\\Node\\ElementNode' => array(
'version' => '4.4.44.0',
'path' => $vendorDir . '/symfony/css-selector/Node/ElementNode.php'
),
'Sabberworm\\CSS\\Renderable' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Renderable.php'
),
'Sabberworm\\CSS\\Settings' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Settings.php'
),
'Sabberworm\\CSS\\Parser' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Parser.php'
),
'Sabberworm\\CSS\\Comment\\Commentable' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Comment/Commentable.php'
),
'Sabberworm\\CSS\\Comment\\Comment' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Comment/Comment.php'
),
'Sabberworm\\CSS\\Rule\\Rule' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Rule/Rule.php'
),
'Sabberworm\\CSS\\Property\\KeyframeSelector' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Property/KeyframeSelector.php'
),
'Sabberworm\\CSS\\Property\\Import' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Property/Import.php'
),
'Sabberworm\\CSS\\Property\\CSSNamespace' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Property/CSSNamespace.php'
),
'Sabberworm\\CSS\\Property\\AtRule' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Property/AtRule.php'
),
'Sabberworm\\CSS\\Property\\Charset' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Property/Charset.php'
),
'Sabberworm\\CSS\\Property\\Selector' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Property/Selector.php'
),
'Sabberworm\\CSS\\RuleSet\\DeclarationBlock' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/RuleSet/DeclarationBlock.php'
),
'Sabberworm\\CSS\\RuleSet\\RuleSet' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/RuleSet/RuleSet.php'
),
'Sabberworm\\CSS\\RuleSet\\AtRuleSet' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/RuleSet/AtRuleSet.php'
),
'Sabberworm\\CSS\\OutputFormat' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/OutputFormat.php'
),
'Sabberworm\\CSS\\OutputFormatter' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/OutputFormatter.php'
),
'Sabberworm\\CSS\\Value\\RuleValueList' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/RuleValueList.php'
),
'Sabberworm\\CSS\\Value\\CalcFunction' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/CalcFunction.php'
),
'Sabberworm\\CSS\\Value\\Value' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/Value.php'
),
'Sabberworm\\CSS\\Value\\Size' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/Size.php'
),
'Sabberworm\\CSS\\Value\\LineName' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/LineName.php'
),
'Sabberworm\\CSS\\Value\\URL' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/URL.php'
),
'Sabberworm\\CSS\\Value\\PrimitiveValue' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/PrimitiveValue.php'
),
'Sabberworm\\CSS\\Value\\CalcRuleValueList' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/CalcRuleValueList.php'
),
'Sabberworm\\CSS\\Value\\Color' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/Color.php'
),
'Sabberworm\\CSS\\Value\\ValueList' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/ValueList.php'
),
'Sabberworm\\CSS\\Value\\CSSFunction' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/CSSFunction.php'
),
'Sabberworm\\CSS\\Value\\CSSString' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/CSSString.php'
),
'Sabberworm\\CSS\\Parsing\\SourceException' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Parsing/SourceException.php'
),
'Sabberworm\\CSS\\Parsing\\ParserState' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Parsing/ParserState.php'
),
'Sabberworm\\CSS\\Parsing\\UnexpectedEOFException' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Parsing/UnexpectedEOFException.php'
),
'Sabberworm\\CSS\\Parsing\\UnexpectedTokenException' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Parsing/UnexpectedTokenException.php'
),
'Sabberworm\\CSS\\Parsing\\OutputException' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/Parsing/OutputException.php'
),
'Sabberworm\\CSS\\CSSList\\CSSBlockList' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/CSSList/CSSBlockList.php'
),
'Sabberworm\\CSS\\CSSList\\Document' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/CSSList/Document.php'
),
'Sabberworm\\CSS\\CSSList\\CSSList' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/CSSList/CSSList.php'
),
'Sabberworm\\CSS\\CSSList\\AtRuleBlockList' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/CSSList/AtRuleBlockList.php'
),
'Sabberworm\\CSS\\CSSList\\KeyFrame' => array(
'version' => '8.4.0.0',
'path' => $vendorDir . '/sabberworm/php-css-parser/src/CSSList/KeyFrame.php'
),
'Pelago\\Emogrifier\\CssInliner' => array(
'version' => '6.0.0.0',
'path' => $vendorDir . '/pelago/emogrifier/src/CssInliner.php'
),
'Pelago\\Emogrifier\\HtmlProcessor\\HtmlPruner' => array(
'version' => '6.0.0.0',
'path' => $vendorDir . '/pelago/emogrifier/src/HtmlProcessor/HtmlPruner.php'
),
'Pelago\\Emogrifier\\HtmlProcessor\\AbstractHtmlProcessor' => array(
'version' => '6.0.0.0',
'path' => $vendorDir . '/pelago/emogrifier/src/HtmlProcessor/AbstractHtmlProcessor.php'
),
'Pelago\\Emogrifier\\HtmlProcessor\\CssToAttributeConverter' => array(
'version' => '6.0.0.0',
'path' => $vendorDir . '/pelago/emogrifier/src/HtmlProcessor/CssToAttributeConverter.php'
),
'Pelago\\Emogrifier\\HtmlProcessor\\HtmlNormalizer' => array(
'version' => '6.0.0.0',
'path' => $vendorDir . '/pelago/emogrifier/src/HtmlProcessor/HtmlNormalizer.php'
),
'Pelago\\Emogrifier\\Css\\StyleRule' => array(
'version' => '6.0.0.0',
'path' => $vendorDir . '/pelago/emogrifier/src/Css/StyleRule.php'
),
'Pelago\\Emogrifier\\Css\\CssDocument' => array(
'version' => '6.0.0.0',
'path' => $vendorDir . '/pelago/emogrifier/src/Css/CssDocument.php'
),
'Pelago\\Emogrifier\\Utilities\\CssConcatenator' => array(
'version' => '6.0.0.0',
'path' => $vendorDir . '/pelago/emogrifier/src/Utilities/CssConcatenator.php'
),
'Pelago\\Emogrifier\\Utilities\\ArrayIntersector' => array(
'version' => '6.0.0.0',
'path' => $vendorDir . '/pelago/emogrifier/src/Utilities/ArrayIntersector.php'
),
'Pelago\\Emogrifier\\Caching\\SimpleStringCache' => array(
'version' => '6.0.0.0',
'path' => $vendorDir . '/pelago/emogrifier/src/Caching/SimpleStringCache.php'
),
'MaxMind\\Db\\Reader' => array(
'version' => '1.11.0.0',
'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader.php'
),
'MaxMind\\Db\\Reader\\Decoder' => array(
'version' => '1.11.0.0',
'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php'
),
'MaxMind\\Db\\Reader\\Util' => array(
'version' => '1.11.0.0',
'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php'
),
'MaxMind\\Db\\Reader\\Metadata' => array(
'version' => '1.11.0.0',
'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php'
),
'MaxMind\\Db\\Reader\\InvalidDatabaseException' => array(
'version' => '1.11.0.0',
'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php'
),
'Composer\\Installers\\KirbyInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KirbyInstaller.php'
),
'Composer\\Installers\\GravInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/GravInstaller.php'
),
'Composer\\Installers\\CroogoInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CroogoInstaller.php'
),
'Composer\\Installers\\OxidInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OxidInstaller.php'
),
'Composer\\Installers\\OctoberInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OctoberInstaller.php'
),
'Composer\\Installers\\MoodleInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MoodleInstaller.php'
),
'Composer\\Installers\\KohanaInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KohanaInstaller.php'
),
'Composer\\Installers\\VanillaInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/VanillaInstaller.php'
),
'Composer\\Installers\\FuelInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/FuelInstaller.php'
),
'Composer\\Installers\\DolibarrInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DolibarrInstaller.php'
),
'Composer\\Installers\\WinterInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WinterInstaller.php'
),
'Composer\\Installers\\CiviCrmInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CiviCrmInstaller.php'
),
'Composer\\Installers\\JoomlaInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/JoomlaInstaller.php'
),
'Composer\\Installers\\MauticInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MauticInstaller.php'
),
'Composer\\Installers\\TaoInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TaoInstaller.php'
),
'Composer\\Installers\\LavaLiteInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LavaLiteInstaller.php'
),
'Composer\\Installers\\SiteDirectInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SiteDirectInstaller.php'
),
'Composer\\Installers\\PantheonInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PantheonInstaller.php'
),
'Composer\\Installers\\KodiCMSInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KodiCMSInstaller.php'
),
'Composer\\Installers\\BaseInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BaseInstaller.php'
),
'Composer\\Installers\\SMFInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SMFInstaller.php'
),
'Composer\\Installers\\AnnotateCmsInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'
),
'Composer\\Installers\\LaravelInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LaravelInstaller.php'
),
'Composer\\Installers\\TuskInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TuskInstaller.php'
),
'Composer\\Installers\\ModxInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ModxInstaller.php'
),
'Composer\\Installers\\PlentymarketsInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php'
),
'Composer\\Installers\\PiwikInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PiwikInstaller.php'
),
'Composer\\Installers\\HuradInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/HuradInstaller.php'
),
'Composer\\Installers\\FuelphpInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/FuelphpInstaller.php'
),
'Composer\\Installers\\ElggInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ElggInstaller.php'
),
'Composer\\Installers\\MODXEvoInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'
),
'Composer\\Installers\\ImageCMSInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ImageCMSInstaller.php'
),
'Composer\\Installers\\SilverStripeInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'
),
'Composer\\Installers\\WHMCSInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WHMCSInstaller.php'
),
'Composer\\Installers\\ShopwareInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ShopwareInstaller.php'
),
'Composer\\Installers\\DrupalInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DrupalInstaller.php'
),
'Composer\\Installers\\MagentoInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MagentoInstaller.php'
),
'Composer\\Installers\\DokuWikiInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'
),
'Composer\\Installers\\EzPlatformInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/EzPlatformInstaller.php'
),
'Composer\\Installers\\Symfony1Installer' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Symfony1Installer.php'
),
'Composer\\Installers\\AsgardInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AsgardInstaller.php'
),
'Composer\\Installers\\RedaxoInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RedaxoInstaller.php'
),
'Composer\\Installers\\TheliaInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TheliaInstaller.php'
),
'Composer\\Installers\\CraftInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CraftInstaller.php'
),
'Composer\\Installers\\UserFrostingInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/UserFrostingInstaller.php'
),
'Composer\\Installers\\ProcessWireInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ProcessWireInstaller.php'
),
'Composer\\Installers\\PxcmsInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PxcmsInstaller.php'
),
'Composer\\Installers\\VgmcpInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/VgmcpInstaller.php'
),
'Composer\\Installers\\PrestashopInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PrestashopInstaller.php'
),
'Composer\\Installers\\MajimaInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MajimaInstaller.php'
),
'Composer\\Installers\\PuppetInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PuppetInstaller.php'
),
'Composer\\Installers\\PhpBBInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PhpBBInstaller.php'
),
'Composer\\Installers\\Redaxo5Installer' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Redaxo5Installer.php'
),
'Composer\\Installers\\CakePHPInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CakePHPInstaller.php'
),
'Composer\\Installers\\RoundcubeInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'
),
'Composer\\Installers\\WolfCMSInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'
),
'Composer\\Installers\\ZikulaInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ZikulaInstaller.php'
),
'Composer\\Installers\\MODULEWorkInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'
),
'Composer\\Installers\\MicroweberInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MicroweberInstaller.php'
),
'Composer\\Installers\\RadPHPInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RadPHPInstaller.php'
),
'Composer\\Installers\\ClanCatsFrameworkInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'
),
'Composer\\Installers\\MantisBTInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MantisBTInstaller.php'
),
'Composer\\Installers\\WordPressInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WordPressInstaller.php'
),
'Composer\\Installers\\KanboardInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KanboardInstaller.php'
),
'Composer\\Installers\\Plugin' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Plugin.php'
),
'Composer\\Installers\\ReIndexInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ReIndexInstaller.php'
),
'Composer\\Installers\\Concrete5Installer' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Concrete5Installer.php'
),
'Composer\\Installers\\TastyIgniterInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php'
),
'Composer\\Installers\\BonefishInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BonefishInstaller.php'
),
'Composer\\Installers\\AttogramInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AttogramInstaller.php'
),
'Composer\\Installers\\DecibelInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DecibelInstaller.php'
),
'Composer\\Installers\\ZendInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ZendInstaller.php'
),
'Composer\\Installers\\DframeInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DframeInstaller.php'
),
'Composer\\Installers\\LanManagementSystemInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php'
),
'Composer\\Installers\\AglInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AglInstaller.php'
),
'Composer\\Installers\\MiaoxingInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MiaoxingInstaller.php'
),
'Composer\\Installers\\KnownInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KnownInstaller.php'
),
'Composer\\Installers\\YawikInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/YawikInstaller.php'
),
'Composer\\Installers\\CodeIgniterInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'
),
'Composer\\Installers\\MediaWikiInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'
),
'Composer\\Installers\\OsclassInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OsclassInstaller.php'
),
'Composer\\Installers\\TYPO3CmsInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php'
),
'Composer\\Installers\\TYPO3FlowInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php'
),
'Composer\\Installers\\ItopInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ItopInstaller.php'
),
'Composer\\Installers\\PPIInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PPIInstaller.php'
),
'Composer\\Installers\\Installer' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Installer.php'
),
'Composer\\Installers\\PimcoreInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PimcoreInstaller.php'
),
'Composer\\Installers\\CockpitInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CockpitInstaller.php'
),
'Composer\\Installers\\MayaInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MayaInstaller.php'
),
'Composer\\Installers\\AimeosInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AimeosInstaller.php'
),
'Composer\\Installers\\StarbugInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/StarbugInstaller.php'
),
'Composer\\Installers\\ExpressionEngineInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php'
),
'Composer\\Installers\\MakoInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MakoInstaller.php'
),
'Composer\\Installers\\PortoInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PortoInstaller.php'
),
'Composer\\Installers\\SyliusInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SyliusInstaller.php'
),
'Composer\\Installers\\EliasisInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/EliasisInstaller.php'
),
'Composer\\Installers\\ChefInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ChefInstaller.php'
),
'Composer\\Installers\\LithiumInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LithiumInstaller.php'
),
'Composer\\Installers\\SyDESInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SyDESInstaller.php'
),
'Composer\\Installers\\OntoWikiInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OntoWikiInstaller.php'
),
'Composer\\Installers\\BitrixInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BitrixInstaller.php'
),
'Composer\\Installers\\PhiftyInstaller' => array(
'version' => '1.12.0.0',
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PhiftyInstaller.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareInterface.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\NotFoundException' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/Exception/NotFoundException.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\ContainerException' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/Exception/ContainerException.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Container' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/Container.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\Definition' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/Definition/Definition.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregate' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregate.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregateInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregateInterface.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionInterface.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareTrait' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareTrait.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ReflectionContainer' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/ReflectionContainer.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregateInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderInterface.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregate' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregate.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\AbstractServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/AbstractServiceProvider.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\BootableServiceProviderInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/BootableServiceProviderInterface.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregateInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregateInterface.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorInterface.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregate' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregate.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\Inflector' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/Inflector/Inflector.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgumentInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgumentInterface.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassName' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassName.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgument' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgument.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameWithOptionalValue' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameWithOptionalValue.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameInterface.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverTrait' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverTrait.php'
),
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverInterface.php'
),
'Automattic\\WooCommerce\\Vendor\\Psr\\Container\\NotFoundExceptionInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/Psr/Container/NotFoundExceptionInterface.php'
),
'Automattic\\WooCommerce\\Vendor\\Psr\\Container\\ContainerExceptionInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/Psr/Container/ContainerExceptionInterface.php'
),
'Automattic\\WooCommerce\\Vendor\\Psr\\Container\\ContainerInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/lib/packages/Psr/Container/ContainerInterface.php'
),
'BatchProcessingControllerTests' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/BatchProcessing/BatchProcessingControllerTests.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\ProductDownloads\\RegisterTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/ProductDownloads/ApprovedDirectories/RegisterTest.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\ProductDownloads\\SynchronizeTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/ProductDownloads/ApprovedDirectories/SynchronizeTest.php'
),
'COTRedirectionControllerTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/Admin/Orders/COTRedirectionControllerTest.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\ProductReviews\\ReviewsUtilTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/Admin/ProductReviews/ReviewsUtilTest.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\ProductReviews\\ReviewsListTableTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/Admin/ProductReviews/ReviewsListTableTest.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\ProductReviews\\ReviewsCommentsOverridesTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/Admin/ProductReviews/ReviewsCommentsOverridesTest.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\Admin\\ProductReviews\\ReviewsTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/Admin/ProductReviews/ReviewsTest.php'
),
'ClassWithLoadMethod' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithLoadMethod.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithNonFinalInjectionMethod' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithNonFinalInjectionMethod.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithPrivateInjectionMethod' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithPrivateInjectionMethod.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithDependencies' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithDependencies.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithScalarInjectionMethodArgument' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithScalarInjectionMethodArgument.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\DependencyClass' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/DependencyClass.php'
),
'ClassWithSingleton' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithSingleton.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithInjectionMethodArgumentWithoutTypeHint' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithInjectionMethodArgumentWithoutTypeHint.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\AbstractServiceProviderTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/AbstractServiceProviderTest.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExtendedContainerTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExtendedContainerTest.php'
),
'MobileMessagingHandlerTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/Orders/MobileMessagingHandlerTest.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\Orders\\IppFunctionsTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/Orders/IppFunctionsTest.php'
),
'OrdersTableDataStoreTests' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/DataStores/Orders/OrdersTableDataStoreTests.php'
),
'OrdersTableRefundDataStoreTests' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/DataStores/Orders/OrdersTableRefundDataStoreTests.php'
),
'OrdersTableDataStoreRestOrdersControllerTests' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/DataStores/Orders/OrdersTableDataStoreRestOrdersControllerTests.php'
),
'DataSynchronizerTests' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/DataStores/Orders/DataSynchronizerTests.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\WCCom\\ConnectionHelperTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/WCCom/ConnectionHelperTest.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\AssignDefaultCategoryTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/AssignDefaultCategoryTest.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\Features\\FeaturesControllerTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/Features/FeaturesControllerTest.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\DownloadPermissionsAdjusterTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/DownloadPermissionsAdjusterTest.php'
),
'HtmlSanitizerTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/Utilities/HtmlSanitizerTest.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\Utilities\\URLTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/Utilities/URLTest.php'
),
'COTMigrationUtilTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/Utilities/COTMigrationUtilTest.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\ProductAttributesLookup\\DataRegeneratorTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/ProductAttributesLookup/DataRegeneratorTest.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\ProductAttributesLookup\\FiltererTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/ProductAttributesLookup/FiltererTest.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\ProductAttributesLookup\\LookupDataStoreTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/ProductAttributesLookup/LookupDataStoreTest.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\RestApiUtilTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/RestApiUtilTest.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\Traits\\AccessiblePrivateMethodsTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/Traits/AccessiblePrivateMethodsTest.php'
),
'Automattic\\WooCommerce\\Tests\\Internal\\Traits\\BaseClass' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Internal/Traits/AccessiblePrivateMethodsTest.php'
),
'Automattic\\WooCommerce\\Tests\\Proxies\\MockableLegacyProxyTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Proxies/MockableLegacyProxyTest.php'
),
'Automattic\\WooCommerce\\Tests\\Proxies\\ExampleClasses\\ClassThatDependsOnLegacyCode' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Proxies/ExampleClasses/ClassThatDependsOnLegacyCode.php'
),
'Automattic\\WooCommerce\\Tests\\Proxies\\ExampleClasses\\ClassWithReplaceableMembers' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Proxies/ExampleClasses/ClassWithReplaceableMembers.php'
),
'Automattic\\WooCommerce\\Tests\\Proxies\\LegacyProxyTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Proxies/LegacyProxyTest.php'
),
'Automattic\\WooCommerce\\Tests\\Proxies\\DynamicDecoratorTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Proxies/DynamicDecoratorTest.php'
),
'Automattic\\WooCommerce\\Tests\\Proxies\\ClassThatDependsOnLegacyCodeTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Proxies/ClassThatDependsOnLegacyCodeTest.php'
),
'PostsToOrdersMigrationControllerTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Database/Migrations/CustomOrderTable/PostsToOrdersMigrationControllerTest.php'
),
'Automattic\\WooCommerce\\Tests\\Utilities\\NumberUtilTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Utilities/NumberUtilTest.php'
),
'Automattic\\WooCommerce\\Tests\\Utilities\\ArrayUtilTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Utilities/ArrayUtilTest.php'
),
'Automattic\\WooCommerce\\Tests\\Utilities\\PluginUtilTests' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Utilities/PluginUtilTests.php'
),
'Automattic\\WooCommerce\\Tests\\Utilities\\StringUtilTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Utilities/StringUtilTest.php'
),
'Automattic\\WooCommerce\\Tests\\Caching\\ObjectCacheTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Caching/ObjectCacheTest.php'
),
'Automattic\\WooCommerce\\Tests\\Caching\\InMemoryObjectCacheEngine' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Caching/InMemoryObjectCacheEngine.php'
),
'Automattic\\WooCommerce\\Tests\\Caching\\InvalidObjectCacheClass' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Caching/InvalidObjectCacheClass.php'
),
'Automattic\\WooCommerce\\Tests\\Caching\\CacheExceptionTest' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/php/src/Caching/CacheExceptionTest.php'
),
'Automattic\\WooCommerce\\Testing\\Tools\\FakeQueue' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/Tools/FakeQueue.php'
),
'Automattic\\WooCommerce\\Testing\\Tools\\DependencyManagement\\MockableLegacyProxy' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/Tools/DependencyManagement/MockableLegacyProxy.php'
),
'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\CodeHacker' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/Tools/CodeHacking/CodeHacker.php'
),
'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\StaticMockerHack' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/StaticMockerHack.php'
),
'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\BypassFinalsHack' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/BypassFinalsHack.php'
),
'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\CodeHack' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/CodeHack.php'
),
'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\FunctionsMockerHack' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/FunctionsMockerHack.php'
),
'Automattic\\WooCommerce\\Testing\\Tools\\DynamicDecorator' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/Tools/DynamicDecorator.php'
),
'Automattic\\WooCommerce\\StoreApi\\Authentication' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Authentication.php'
),
'Automattic\\WooCommerce\\StoreApi\\Exceptions\\InvalidStockLevelsInCartException' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/InvalidStockLevelsInCartException.php'
),
'Automattic\\WooCommerce\\StoreApi\\Exceptions\\OutOfStockException' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/OutOfStockException.php'
),
'Automattic\\WooCommerce\\StoreApi\\Exceptions\\InvalidCartException' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/InvalidCartException.php'
),
'Automattic\\WooCommerce\\StoreApi\\Exceptions\\TooManyInCartException' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/TooManyInCartException.php'
),
'Automattic\\WooCommerce\\StoreApi\\Exceptions\\StockAvailabilityException' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/StockAvailabilityException.php'
),
'Automattic\\WooCommerce\\StoreApi\\Exceptions\\PartialOutOfStockException' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/PartialOutOfStockException.php'
),
'Automattic\\WooCommerce\\StoreApi\\Exceptions\\NotPurchasableException' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/NotPurchasableException.php'
),
'Automattic\\WooCommerce\\StoreApi\\Exceptions\\RouteException' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/RouteException.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\RouteInterface' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/RouteInterface.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartExtensions' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartExtensions.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductAttributesById' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductAttributesById.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductReviews' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductReviews.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\AbstractRoute' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/AbstractRoute.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\Products' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Products.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartCoupons' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartCoupons.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductTags' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductTags.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartAddItem' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartAddItem.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\Checkout' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Checkout.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductCollectionData' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductCollectionData.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\AbstractTermsRoute' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/AbstractTermsRoute.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartApplyCoupon' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartApplyCoupon.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductCategoriesById' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductCategoriesById.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartUpdateCustomer' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartUpdateCustomer.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\AbstractCartRoute' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/AbstractCartRoute.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductCategories' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductCategories.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductAttributeTerms' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductAttributeTerms.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartRemoveItem' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartRemoveItem.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductAttributes' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductAttributes.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartRemoveCoupon' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartRemoveCoupon.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\Batch' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Batch.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartItemsByKey' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartItemsByKey.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\Cart' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Cart.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductsById' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductsById.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartSelectShippingRate' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartSelectShippingRate.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartItems' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartItems.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartUpdateItem' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartUpdateItem.php'
),
'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartCouponsByCode' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartCouponsByCode.php'
),
'Automattic\\WooCommerce\\StoreApi\\Formatters\\DefaultFormatter' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/DefaultFormatter.php'
),
'Automattic\\WooCommerce\\StoreApi\\Formatters\\HtmlFormatter' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/HtmlFormatter.php'
),
'Automattic\\WooCommerce\\StoreApi\\Formatters\\FormatterInterface' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/FormatterInterface.php'
),
'Automattic\\WooCommerce\\StoreApi\\Formatters\\CurrencyFormatter' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/CurrencyFormatter.php'
),
'Automattic\\WooCommerce\\StoreApi\\Formatters\\MoneyFormatter' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/MoneyFormatter.php'
),
'Automattic\\WooCommerce\\StoreApi\\Payments\\PaymentResult' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Payments/PaymentResult.php'
),
'Automattic\\WooCommerce\\StoreApi\\Payments\\PaymentContext' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Payments/PaymentContext.php'
),
'Automattic\\WooCommerce\\StoreApi\\StoreApi' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/StoreApi.php'
),
'Automattic\\WooCommerce\\StoreApi\\RoutesController' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/RoutesController.php'
),
'Automattic\\WooCommerce\\StoreApi\\Formatters' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\ExtendSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ExtendSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ErrorSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ErrorSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartFeeSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartFeeSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\AbstractAddressSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/AbstractAddressSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartItemSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartItemSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\BatchSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/BatchSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CheckoutSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CheckoutSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\AbstractSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/AbstractSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartExtensionsSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartExtensionsSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductAttributeSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductAttributeSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartShippingRateSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartShippingRateSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\BillingAddressSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/BillingAddressSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\TermSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/TermSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductCategorySchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductCategorySchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartCouponSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartCouponSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\OrderCouponSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/OrderCouponSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ImageAttachmentSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ImageAttachmentSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductReviewSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductReviewSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ShippingAddressSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ShippingAddressSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductCollectionDataSchema' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductCollectionDataSchema.php'
),
'Automattic\\WooCommerce\\StoreApi\\SchemaController' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/SchemaController.php'
),
'Automattic\\WooCommerce\\StoreApi\\Legacy' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Legacy.php'
),
'Automattic\\WooCommerce\\StoreApi\\Utilities\\ProductQueryFilters' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/ProductQueryFilters.php'
),
'Automattic\\WooCommerce\\StoreApi\\Utilities\\Pagination' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/Pagination.php'
),
'Automattic\\WooCommerce\\StoreApi\\Utilities\\NoticeHandler' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/NoticeHandler.php'
),
'Automattic\\WooCommerce\\StoreApi\\Utilities\\RateLimits' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/RateLimits.php'
),
'Automattic\\WooCommerce\\StoreApi\\Utilities\\ProductQuery' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/ProductQuery.php'
),
'Automattic\\WooCommerce\\StoreApi\\Utilities\\CartController' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/CartController.php'
),
'Automattic\\WooCommerce\\StoreApi\\Utilities\\ArrayUtils' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/ArrayUtils.php'
),
'Automattic\\WooCommerce\\StoreApi\\Utilities\\QuantityLimits' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/QuantityLimits.php'
),
'Automattic\\WooCommerce\\StoreApi\\Utilities\\DraftOrderTrait' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/DraftOrderTrait.php'
),
'Automattic\\WooCommerce\\StoreApi\\Utilities\\OrderController' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/OrderController.php'
),
'Automattic\\WooCommerce\\StoreApi\\Utilities\\JsonWebToken' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/JsonWebToken.php'
),
'Automattic\\WooCommerce\\StoreApi\\SessionHandler' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/SessionHandler.php'
),
'Automattic\\WooCommerce\\Blocks\\Integrations\\IntegrationInterface' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Integrations/IntegrationInterface.php'
),
'Automattic\\WooCommerce\\Blocks\\Integrations\\IntegrationRegistry' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Integrations/IntegrationRegistry.php'
),
'Automattic\\WooCommerce\\Blocks\\Options' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Options.php'
),
'Automattic\\WooCommerce\\Blocks\\InboxNotifications' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/InboxNotifications.php'
),
'Automattic\\WooCommerce\\Blocks\\Library' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Library.php'
),
'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\CashOnDelivery' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/CashOnDelivery.php'
),
'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\Cheque' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/Cheque.php'
),
'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\AbstractPaymentMethodType' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/AbstractPaymentMethodType.php'
),
'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\PayPal' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/PayPal.php'
),
'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\BankTransfer' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/BankTransfer.php'
),
'Automattic\\WooCommerce\\Blocks\\Payments\\PaymentMethodTypeInterface' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/PaymentMethodTypeInterface.php'
),
'Automattic\\WooCommerce\\Blocks\\Payments\\Api' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Api.php'
),
'Automattic\\WooCommerce\\Blocks\\Payments\\PaymentMethodRegistry' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/PaymentMethodRegistry.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockPatterns' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockPatterns.php'
),
'Automattic\\WooCommerce\\Blocks\\Utils\\StyleAttributesUtils' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Utils/StyleAttributesUtils.php'
),
'Automattic\\WooCommerce\\Blocks\\Utils\\BlocksWpQuery' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Utils/BlocksWpQuery.php'
),
'Automattic\\WooCommerce\\Blocks\\Utils\\BlockTemplateUtils' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Utils/BlockTemplateUtils.php'
),
'Automattic\\WooCommerce\\Blocks\\Package' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Package.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTemplatesController' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTemplatesController.php'
),
'Automattic\\WooCommerce\\Blocks\\Registry\\AbstractDependencyType' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/AbstractDependencyType.php'
),
'Automattic\\WooCommerce\\Blocks\\Registry\\SharedType' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/SharedType.php'
),
'Automattic\\WooCommerce\\Blocks\\Registry\\FactoryType' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/FactoryType.php'
),
'Automattic\\WooCommerce\\Blocks\\Registry\\Container' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/Container.php'
),
'Automattic\\WooCommerce\\Blocks\\Migration' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Migration.php'
),
'Automattic\\WooCommerce\\Blocks\\Templates\\ProductSearchResultsTemplate' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Templates/ProductSearchResultsTemplate.php'
),
'Automattic\\WooCommerce\\Blocks\\Templates\\ClassicTemplatesCompatibility' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Templates/ClassicTemplatesCompatibility.php'
),
'Automattic\\WooCommerce\\Blocks\\Templates\\ProductAttributeTemplate' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Templates/ProductAttributeTemplate.php'
),
'Automattic\\WooCommerce\\Blocks\\Templates\\MiniCartTemplate' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Templates/MiniCartTemplate.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypesController' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypesController.php'
),
'Automattic\\WooCommerce\\Blocks\\Domain\\Package' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Package.php'
),
'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\GoogleAnalytics' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/GoogleAnalytics.php'
),
'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\CreateAccount' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/CreateAccount.php'
),
'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\FeatureGating' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/FeatureGating.php'
),
'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\Email\\CustomerNewAccount' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/Email/CustomerNewAccount.php'
),
'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\DraftOrders' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/DraftOrders.php'
),
'Automattic\\WooCommerce\\Blocks\\Domain\\Bootstrap' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Bootstrap.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ActiveFilters' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ActiveFilters.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductBestSellers' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductBestSellers.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractDynamicBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractDynamicBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductsByAttribute' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductsByAttribute.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FilterWrapper' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/FilterWrapper.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryCouponFormBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutOrderSummaryCouponFormBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractProductGrid' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractProductGrid.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTag' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTag.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryCouponFormBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartOrderSummaryCouponFormBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AttributeFilter' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AttributeFilter.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartItemsBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartItemsBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FeaturedProduct' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/FeaturedProduct.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSummary' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductSummary.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\HandpickedProducts' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/HandpickedProducts.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProceedToCheckoutBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProceedToCheckoutBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutBillingAddressBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutBillingAddressBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AllReviews' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AllReviews.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryHeadingBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartOrderSummaryHeadingBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummarySubtotalBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartOrderSummarySubtotalBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartOrderSummaryBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryShippingBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartOrderSummaryShippingBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartExpressPaymentBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartExpressPaymentBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ClassicTemplate' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ClassicTemplate.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\Checkout' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/Checkout.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSKU' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductSKU.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartLineItemsBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartLineItemsBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductButton' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductButton.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTopRated' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTopRated.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryFeeBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutOrderSummaryFeeBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FeaturedCategory' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/FeaturedCategory.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartCrossSellsProductsBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartCrossSellsProductsBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTitle' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTitle.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractInnerBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractInnerBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductStockIndicator' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductStockIndicator.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutTermsBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutTermsBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartCrossSellsBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartCrossSellsBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\EmptyCartBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/EmptyCartBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCategoryList' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductCategoryList.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductAddToCart' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductAddToCart.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCartContents' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/MiniCartContents.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryTaxesBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartOrderSummaryTaxesBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryDiscountBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutOrderSummaryDiscountBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ReviewsByProduct' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ReviewsByProduct.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCategories' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductCategories.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\SingleProduct' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/SingleProduct.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartAcceptedPaymentMethodsBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartAcceptedPaymentMethodsBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartTotalsBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartTotalsBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FilledCartBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/FilledCartBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryShippingBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutOrderSummaryShippingBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductNew' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductNew.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCategory' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductCategory.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryDiscountBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartOrderSummaryDiscountBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSearch' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductSearch.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutActionsBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutActionsBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummarySubtotalBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutOrderSummarySubtotalBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutTotalsBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutTotalsBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductQuery' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductQuery.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutOrderSummaryBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\PriceFilter' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/PriceFilter.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutFieldsBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutFieldsBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductOnSale' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductOnSale.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutContactInformationBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutContactInformationBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductImage' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductImage.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AllProducts' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AllProducts.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AtomicBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AtomicBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FeaturedItem' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/FeaturedItem.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutShippingAddressBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutShippingAddressBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderNoteBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutOrderNoteBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ReviewsByCategory' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ReviewsByCategory.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\Cart' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/Cart.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSaleBadge' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductSaleBadge.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutShippingMethodsBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutShippingMethodsBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\RatingFilter' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/RatingFilter.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryTaxesBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutOrderSummaryTaxesBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCart' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/MiniCart.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryCartItemsBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutOrderSummaryCartItemsBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTagList' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTagList.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\StockFilter' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/StockFilter.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductPrice' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductPrice.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductRating' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductRating.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutExpressPaymentBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutExpressPaymentBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryFeeBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartOrderSummaryFeeBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutPaymentBlock' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutPaymentBlock.php'
),
'Automattic\\WooCommerce\\Blocks\\Assets\\Api' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Assets/Api.php'
),
'Automattic\\WooCommerce\\Blocks\\Assets\\AssetDataRegistry' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Assets/AssetDataRegistry.php'
),
'Automattic\\WooCommerce\\Blocks\\Installer' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Installer.php'
),
'Automattic\\WooCommerce\\Blocks\\AssetsController' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/AssetsController.php'
),
'Automattic\\WooCommerce\\Blocks\\Assets' => array(
'version' => '9.1.5.0',
'path' => $baseDir . '/packages/woocommerce-blocks/src/Assets.php'
),
'Automattic\\WooCommerce\\Packages' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Packages.php'
),
'Automattic\\WooCommerce\\Internal\\BatchProcessing\\BatchProcessorInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/BatchProcessing/BatchProcessorInterface.php'
),
'Automattic\\WooCommerce\\Internal\\BatchProcessing\\BatchProcessingController' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/BatchProcessing/BatchProcessingController.php'
),
'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\StoredUrl' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/StoredUrl.php'
),
'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Synchronize' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Synchronize.php'
),
'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Admin\\Table' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Admin/Table.php'
),
'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Admin\\SyncUI' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Admin/SyncUI.php'
),
'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Admin\\UI' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Admin/UI.php'
),
'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Register' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Register.php'
),
'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\ApprovedDirectoriesException' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/ApprovedDirectoriesException.php'
),
'Automattic\\WooCommerce\\Internal\\RestockRefundedItemsAdjuster' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/RestockRefundedItemsAdjuster.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Marketing' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Marketing.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\SettingsNavigationFeature' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/SettingsNavigationFeature.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Coupons' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Coupons.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Loader' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Loader.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Analytics' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Analytics.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\FeaturePlugin' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/FeaturePlugin.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\WCAdminUser' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/WCAdminUser.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Events' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Events.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\CustomerEffortScoreTracks' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/CustomerEffortScoreTracks.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\WcPayWelcomePage' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/WcPayWelcomePage.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Settings' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Settings.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\CouponPageMoved' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/CouponPageMoved.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\PaymentsRemindMeLater' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/PaymentsRemindMeLater.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\ChoosingTheme' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/ChoosingTheme.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\WooSubscriptionsNotes' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/WooSubscriptionsNotes.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\NewSalesRecord' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/NewSalesRecord.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\WooCommerceSubscriptions' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/WooCommerceSubscriptions.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MagentoMigration' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/MagentoMigration.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\EmailNotification' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/EmailNotification.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\TestCheckout' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/TestCheckout.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\TrackingOptIn' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/TrackingOptIn.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\GivingFeedbackNotes' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/GivingFeedbackNotes.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\ManageOrdersOnTheGo' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/ManageOrdersOnTheGo.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\FirstProduct' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/FirstProduct.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\OnboardingPayments' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/OnboardingPayments.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\PerformanceOnMobile' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/PerformanceOnMobile.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\CustomizingProductCatalog' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/CustomizingProductCatalog.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\PersonalizeStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/PersonalizeStore.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MigrateFromShopify' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/MigrateFromShopify.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\UnsecuredReportFiles' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/UnsecuredReportFiles.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\OrderMilestones' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/OrderMilestones.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\RealTimeOrderAlerts' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/RealTimeOrderAlerts.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\EUVATNumber' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/EUVATNumber.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MarketingJetpack' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/MarketingJetpack.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MerchantEmailNotifications' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/MerchantEmailNotifications.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\OnlineClothingStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/OnlineClothingStore.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\WooCommercePayments' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/WooCommercePayments.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\SellingOnlineCourses' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/SellingOnlineCourses.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\InstallJPAndWCSPlugins' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/InstallJPAndWCSPlugins.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\AddFirstProduct' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/AddFirstProduct.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\PaymentsMoreInfoNeeded' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/PaymentsMoreInfoNeeded.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\CustomizeStoreWithBlocks' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/CustomizeStoreWithBlocks.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\LaunchChecklist' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/LaunchChecklist.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MobileApp' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/MobileApp.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\EditProductsOnTheMove' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Notes/EditProductsOnTheMove.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\MobileAppBanner' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/MobileAppBanner.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\RemoteInboxNotifications' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/RemoteInboxNotifications.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\WCAdminAssets' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/WCAdminAssets.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\WCAdminSharedSettings' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/WCAdminSharedSettings.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\CouponsMovedTrait' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/CouponsMovedTrait.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Survey' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Survey.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\Init' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/Init.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\EvaluateExtension' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/EvaluateExtension.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\RemoteFreeExtensionsDataSourcePoller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/RemoteFreeExtensionsDataSourcePoller.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\DefaultFreeExtensions' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/DefaultFreeExtensions.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\Edit' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Orders/Edit.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\MetaBoxes\\CustomMetaBox' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Orders/MetaBoxes/CustomMetaBox.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\ListTable' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Orders/ListTable.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\COTRedirectionController' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Orders/COTRedirectionController.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\PageController' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Orders/PageController.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\PostsRedirectionController' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Orders/PostsRedirectionController.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\SystemStatusReport' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/SystemStatusReport.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Homescreen' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Homescreen.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\CategoryLookup' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/CategoryLookup.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\CustomersScheduler' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Schedulers/CustomersScheduler.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\OrdersScheduler' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Schedulers/OrdersScheduler.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\ImportInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Schedulers/ImportInterface.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\ImportScheduler' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Schedulers/ImportScheduler.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\MailchimpScheduler' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Schedulers/MailchimpScheduler.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingThemes' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingThemes.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingIndustries' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingIndustries.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingProfile' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingProfile.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingMailchimp' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingMailchimp.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingSync' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingSync.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingSetupWizard' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingSetupWizard.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingHelper' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingHelper.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingJetpack' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingJetpack.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingProducts' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingProducts.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\Onboarding' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Onboarding/Onboarding.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\ProductReviews\\ReviewsListTable' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/ProductReviews/ReviewsListTable.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\ProductReviews\\Reviews' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/ProductReviews/Reviews.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\ProductReviews\\ReviewsCommentsOverrides' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/ProductReviews/ReviewsCommentsOverrides.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\ProductReviews\\ReviewsUtil' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/ProductReviews/ReviewsUtil.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\Translations' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/Translations.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\ShippingLabelBannerDisplayRules' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/ShippingLabelBannerDisplayRules.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\ActivityPanels' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/ActivityPanels.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\WCPayPromotion\\Init' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/WCPayPromotion/Init.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\WCPayPromotion\\WCPaymentGatewayPreInstallWCPayPromotion' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/WCPayPromotion/WCPaymentGatewayPreInstallWCPayPromotion.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\WCPayPromotion\\WCPayPromotionDataSourcePoller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/WCPayPromotion/WCPayPromotionDataSourcePoller.php'
),
'Automattic\\WooCommerce\\Internal\\Admin\\ShippingLabelBanner' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Admin/ShippingLabelBanner.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\Definition' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/Definition.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\AssignDefaultCategoryServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/AssignDefaultCategoryServiceProvider.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProductAttributesLookupServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProductAttributesLookupServiceProvider.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\DownloadPermissionsAdjusterServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/DownloadPermissionsAdjusterServiceProvider.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OrderAdminServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OrderAdminServiceProvider.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OptionSanitizerServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OptionSanitizerServiceProvider.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\UtilsClassesServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/UtilsClassesServiceProvider.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\RestockRefundedItemsAdjusterServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/RestockRefundedItemsAdjusterServiceProvider.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProxiesServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProxiesServiceProvider.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\COTMigrationServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/COTMigrationServiceProvider.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OrderMetaBoxServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OrderMetaBoxServiceProvider.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProductReviewsServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProductReviewsServiceProvider.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\FeaturesServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/FeaturesServiceProvider.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OrdersDataStoreServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OrdersDataStoreServiceProvider.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\BatchProcessingServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/BatchProcessingServiceProvider.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OrdersControllersServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OrdersControllersServiceProvider.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ObjectCacheServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ObjectCacheServiceProvider.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProductDownloadsServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProductDownloadsServiceProvider.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ContainerException' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ContainerException.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ExtendedContainer' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/ExtendedContainer.php'
),
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\AbstractServiceProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DependencyManagement/AbstractServiceProvider.php'
),
'Automattic\\WooCommerce\\Internal\\Orders\\TaxesController' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Orders/TaxesController.php'
),
'Automattic\\WooCommerce\\Internal\\Orders\\MobileMessagingHandler' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Orders/MobileMessagingHandler.php'
),
'Automattic\\WooCommerce\\Internal\\Orders\\CouponsController' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Orders/CouponsController.php'
),
'Automattic\\WooCommerce\\Internal\\Orders\\IppFunctions' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Orders/IppFunctions.php'
),
'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\DataSynchronizer' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DataStores/Orders/DataSynchronizer.php'
),
'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableMetaQuery' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableMetaQuery.php'
),
'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableDataStoreMeta' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableDataStoreMeta.php'
),
'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\CustomOrdersTableController' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DataStores/Orders/CustomOrdersTableController.php'
),
'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableFieldQuery' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableFieldQuery.php'
),
'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableDataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableDataStore.php'
),
'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableSearchQuery' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableSearchQuery.php'
),
'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableRefundDataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableRefundDataStore.php'
),
'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableQuery' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableQuery.php'
),
'Automattic\\WooCommerce\\Internal\\DataStores\\CustomMetaDataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DataStores/CustomMetaDataStore.php'
),
'Automattic\\WooCommerce\\Internal\\DownloadPermissionsAdjuster' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/DownloadPermissionsAdjuster.php'
),
'Automattic\\WooCommerce\\Internal\\WCCom\\ConnectionHelper' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/WCCom/ConnectionHelper.php'
),
'Automattic\\WooCommerce\\Internal\\Features\\FeaturesController' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Features/FeaturesController.php'
),
'Automattic\\WooCommerce\\Internal\\RestApiUtil' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/RestApiUtil.php'
),
'Automattic\\WooCommerce\\Internal\\AssignDefaultCategory' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/AssignDefaultCategory.php'
),
'Automattic\\WooCommerce\\Internal\\Utilities\\Users' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Utilities/Users.php'
),
'Automattic\\WooCommerce\\Internal\\Utilities\\DatabaseUtil' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Utilities/DatabaseUtil.php'
),
'Automattic\\WooCommerce\\Internal\\Utilities\\URL' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Utilities/URL.php'
),
'Automattic\\WooCommerce\\Internal\\Utilities\\URLException' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Utilities/URLException.php'
),
'Automattic\\WooCommerce\\Internal\\Utilities\\BlocksUtil' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Utilities/BlocksUtil.php'
),
'Automattic\\WooCommerce\\Internal\\Utilities\\COTMigrationUtil' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Utilities/COTMigrationUtil.php'
),
'Automattic\\WooCommerce\\Internal\\Utilities\\HtmlSanitizer' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Utilities/HtmlSanitizer.php'
),
'Automattic\\WooCommerce\\Internal\\Settings\\OptionSanitizer' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Settings/OptionSanitizer.php'
),
'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\DataRegenerator' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/ProductAttributesLookup/DataRegenerator.php'
),
'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\LookupDataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/ProductAttributesLookup/LookupDataStore.php'
),
'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\Filterer' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/ProductAttributesLookup/Filterer.php'
),
'Automattic\\WooCommerce\\Internal\\Traits\\AccessiblePrivateMethods' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Internal/Traits/AccessiblePrivateMethods.php'
),
'Automattic\\WooCommerce\\Container' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Container.php'
),
'Automattic\\WooCommerce\\Proxies\\ActionsProxy' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Proxies/ActionsProxy.php'
),
'Automattic\\WooCommerce\\Proxies\\LegacyProxy' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Proxies/LegacyProxy.php'
),
'Automattic\\WooCommerce\\Admin\\Loader' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Loader.php'
),
'Automattic\\WooCommerce\\Admin\\PluginsHelper' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/PluginsHelper.php'
),
'Automattic\\WooCommerce\\Admin\\FeaturePlugin' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/FeaturePlugin.php'
),
'Automattic\\WooCommerce\\Admin\\ReportCSVExporter' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/ReportCSVExporter.php'
),
'Automattic\\WooCommerce\\Admin\\ReportExporter' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/ReportExporter.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\Note' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/Note.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\Notes' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/Notes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\DataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DataStore.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\NoteTraits' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/NoteTraits.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\NotesUnavailableException' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/NotesUnavailableException.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Note' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Coupon_Page_Moved' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Customize_Store_With_Blocks' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Edit_Products_On_The_Move' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_EU_VAT_Number' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Facebook_Marketing_Expert' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_First_Product' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Giving_Feedback_Notes' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Install_JP_And_WCS_Plugins' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Launch_Checklist' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Migrate_From_Shopify' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Mobile_App' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_New_Sales_Record' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Email_Marketing' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Payments' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Online_Clothing_Store' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Order_Milestones' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Performance_On_Mobile' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Personalize_Store' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Real_Time_Order_Alerts' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Selling_Online_Courses' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Test_Checkout' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Tracking_Opt_In' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Woo_Subscriptions_Notes' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_WooCommerce_Payments' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_WooCommerce_Subscriptions' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
),
'Automattic\\WooCommerce\\Admin\\Marketing\\InstalledExtensions' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Marketing/InstalledExtensions.php'
),
'Automattic\\WooCommerce\\Admin\\PluginsInstaller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/PluginsInstaller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Taxes' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Taxes.php'
),
'Automattic\\WooCommerce\\Admin\\API\\OnboardingThemes' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/OnboardingThemes.php'
),
'Automattic\\WooCommerce\\Admin\\API\\SettingOptions' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/SettingOptions.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Marketing' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Marketing.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Coupons' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Coupons.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Options' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Options.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Themes' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Themes.php'
),
'Automattic\\WooCommerce\\Admin\\API\\OnboardingFreeExtensions' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/OnboardingFreeExtensions.php'
),
'Automattic\\WooCommerce\\Admin\\API\\NoteActions' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/NoteActions.php'
),
'Automattic\\WooCommerce\\Admin\\API\\ProductsLowInStock' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/ProductsLowInStock.php'
),
'Automattic\\WooCommerce\\Admin\\API\\ProductReviews' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/ProductReviews.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Init' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Init.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Experiments' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Experiments.php'
),
'Automattic\\WooCommerce\\Admin\\API\\OnboardingProfile' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/OnboardingProfile.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Products' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Products.php'
),
'Automattic\\WooCommerce\\Admin\\API\\MarketingOverview' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/MarketingOverview.php'
),
'Automattic\\WooCommerce\\Admin\\API\\ProductVariations' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/ProductVariations.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Notes' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Notes.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Orders' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Orders.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Data' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Data.php'
),
'Automattic\\WooCommerce\\Admin\\API\\PaymentGatewaySuggestions' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/PaymentGatewaySuggestions.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Features' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Features.php'
),
'Automattic\\WooCommerce\\Admin\\API\\ProductCategories' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/ProductCategories.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\Query' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Stock/Stats/Query.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\DataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Stock/Stats/DataStore.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Stock/Stats/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Stock/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\PerformanceIndicators\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/PerformanceIndicators/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\SqlQuery' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/SqlQuery.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Segmenter' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Segmenter.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Query' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Customers/Stats/Query.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\DataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Customers/Stats/DataStore.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Customers/Stats/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Query' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Customers/Query.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\DataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Customers/DataStore.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Customers/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Segmenter' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Taxes/Stats/Segmenter.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Query' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Taxes/Stats/Query.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\DataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Taxes/Stats/DataStore.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Taxes/Stats/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Query' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Taxes/Query.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\DataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Taxes/DataStore.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Taxes/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableTraits' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/ExportableTraits.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Segmenter' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Stats/Segmenter.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Query' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Stats/Query.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\DataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Stats/DataStore.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Stats/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Query' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Query.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\DataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Coupons/DataStore.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Export\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Export/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Query' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Query.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Stats\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Revenue/Stats/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Query' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Revenue/Query.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Cache' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Cache.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Import\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Import/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/DataStore.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Segmenter' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Orders/Stats/Segmenter.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Query' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Orders/Stats/Query.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\DataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Orders/Stats/DataStore.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Orders/Stats/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Query' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Orders/Query.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\DataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Orders/DataStore.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Orders/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\Segmenter' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Variations/Stats/Segmenter.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\Query' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Variations/Stats/Query.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\DataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Variations/Stats/DataStore.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Variations/Stats/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Query' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Variations/Query.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\DataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Variations/DataStore.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Variations/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStoreInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/DataStoreInterface.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\ParameterException' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/ParameterException.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Segmenter' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Products/Stats/Segmenter.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Query' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Products/Stats/Query.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\DataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Products/Stats/DataStore.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Products/Stats/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Query' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Products/Query.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\DataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Products/DataStore.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Products/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\TimeInterval' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/TimeInterval.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Files\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Downloads/Files/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\Query' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Downloads/Stats/Query.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\DataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Downloads/Stats/DataStore.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Downloads/Stats/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Query' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Downloads/Query.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\DataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Downloads/DataStore.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Downloads/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/ExportableInterface.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Query' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Categories/Query.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\DataStore' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Categories/DataStore.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Reports/Categories/Controller.php'
),
'Automattic\\WooCommerce\\Admin\\API\\ProductAttributeTerms' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/ProductAttributeTerms.php'
),
'Automattic\\WooCommerce\\Admin\\API\\NavigationFavorites' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/NavigationFavorites.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Leaderboards' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Leaderboards.php'
),
'Automattic\\WooCommerce\\Admin\\API\\DataCountries' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/DataCountries.php'
),
'Automattic\\WooCommerce\\Admin\\API\\ProductAttributes' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/ProductAttributes.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Plugins' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Plugins.php'
),
'Automattic\\WooCommerce\\Admin\\API\\CustomAttributeTraits' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/CustomAttributeTraits.php'
),
'Automattic\\WooCommerce\\Admin\\API\\DataDownloadIPs' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/DataDownloadIPs.php'
),
'Automattic\\WooCommerce\\Admin\\API\\MobileAppMagicLink' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/MobileAppMagicLink.php'
),
'Automattic\\WooCommerce\\Admin\\API\\Customers' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/Customers.php'
),
'Automattic\\WooCommerce\\Admin\\API\\OnboardingProductTypes' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/OnboardingProductTypes.php'
),
'Automattic\\WooCommerce\\Admin\\API\\OnboardingTasks' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/API/OnboardingTasks.php'
),
'Automattic\\WooCommerce\\Admin\\WCAdminHelper' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/WCAdminHelper.php'
),
'Automattic\\WooCommerce\\Admin\\Overrides\\Order' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Overrides/Order.php'
),
'Automattic\\WooCommerce\\Admin\\Overrides\\OrderTraits' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Overrides/OrderTraits.php'
),
'Automattic\\WooCommerce\\Admin\\Overrides\\OrderRefund' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Overrides/OrderRefund.php'
),
'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgraderSkin' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Overrides/ThemeUpgraderSkin.php'
),
'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgrader' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Overrides/ThemeUpgrader.php'
),
'Automattic\\WooCommerce\\Admin\\Composer\\Package' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Composer/Package.php'
),
'Automattic\\WooCommerce\\Admin\\ReportsSync' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/ReportsSync.php'
),
'Automattic\\WooCommerce\\Admin\\DeprecatedClassFacade' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/DeprecatedClassFacade.php'
),
'Automattic\\WooCommerce\\Admin\\PluginsProvider\\PluginsProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/PluginsProvider/PluginsProvider.php'
),
'Automattic\\WooCommerce\\Admin\\PluginsProvider\\PluginsProviderInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/PluginsProvider/PluginsProviderInterface.php'
),
'Automattic\\WooCommerce\\Admin\\DataSourcePoller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/DataSourcePoller.php'
),
'Automattic\\WooCommerce\\Admin\\PageController' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/PageController.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\MultichannelMarketing\\Init' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/MultichannelMarketing/Init.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Init' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/Navigation/Init.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Menu' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/Navigation/Menu.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\CoreMenu' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/Navigation/CoreMenu.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Favorites' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/Navigation/Favorites.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Screen' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/Navigation/Screen.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\EvaluateSuggestion' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/EvaluateSuggestion.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\Init' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/Init.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\PaymentGatewaySuggestionsDataSourcePoller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/PaymentGatewaySuggestionsDataSourcePoller.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\DefaultPaymentGateways' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\PaymentGatewaysController' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/PaymentGatewaysController.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\Features' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/Features.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Init' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Init.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskList' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskList.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskListSection' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskListSection.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\DeprecatedOptions' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/DeprecatedOptions.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Marketing' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Marketing.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Payments' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Payments.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Products' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Products.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Shipping' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Shipping.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\StoreDetails' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/StoreDetails.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Tax' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Tax.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\AdditionalPayments' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/AdditionalPayments.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\ExperimentalShippingRecommendation' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/ExperimentalShippingRecommendation.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\GetMobileApp' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/GetMobileApp.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\ReviewShippingOptions' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/ReviewShippingOptions.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\StoreCreation' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/StoreCreation.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\WooCommercePayments' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/WooCommercePayments.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Appearance' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Appearance.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Purchase' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Purchase.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\TourInAppMarketplace' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/TourInAppMarketplace.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\DeprecatedExtendedTask' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/DeprecatedExtendedTask.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskTraits' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskTraits.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskLists' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskLists.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Task' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Task.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\NewProductManagementExperience' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/NewProductManagementExperience.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\Onboarding' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/Onboarding.php'
),
'Automattic\\WooCommerce\\Admin\\Features\\TransientNotices' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Features/TransientNotices.php'
),
'Automattic\\WooCommerce\\Admin\\Schedulers\\SchedulerTraits' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/Schedulers/SchedulerTraits.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WCAdminActiveForProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/WCAdminActiveForProvider.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\EvaluationLogger' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/EvaluationLogger.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RemoteInboxNotificationsEngine' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/RemoteInboxNotificationsEngine.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\BaseLocationCountryRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/BaseLocationCountryRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\SpecRunner' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/SpecRunner.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\ProductCountRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/ProductCountRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\IsEcommerceRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/IsEcommerceRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\EvaluateAndGetStatus' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/EvaluateAndGetStatus.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrderCountRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OrderCountRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\BaseLocationStateRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/BaseLocationStateRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PublishAfterTimeRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PublishAfterTimeRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OptionRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OptionRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PluginsActivatedRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PluginsActivatedRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\TransformerService' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/TransformerService.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RuleProcessorInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/RuleProcessorInterface.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrdersProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OrdersProvider.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PublishBeforeTimeRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PublishBeforeTimeRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\DataSourcePoller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/DataSourcePoller.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\ComparisonOperation' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/ComparisonOperation.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\TransformerInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/TransformerInterface.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\StoredStateRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/StoredStateRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PluginVersionRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PluginVersionRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArraySearch' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArraySearch.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayColumn' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayColumn.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\Count' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/Count.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayFlatten' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayFlatten.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayValues' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayValues.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayKeys' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayKeys.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\DotNotation' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/DotNotation.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OnboardingProfileRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OnboardingProfileRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WooCommerceAdminUpdatedRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/WooCommerceAdminUpdatedRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\GetRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/GetRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OrRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\NotRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/NotRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\TotalPaymentsVolumeProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/TotalPaymentsVolumeProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\NoteStatusRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/NoteStatusRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\FailRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/FailRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\StoredStateSetupForProducts' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/StoredStateSetupForProducts.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RuleEvaluator' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/RuleEvaluator.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WCAdminActiveForRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/WCAdminActiveForRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PassRuleProcessor' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PassRuleProcessor.php'
),
'Automattic\\WooCommerce\\Admin\\DateTimeProvider\\CurrentDateTimeProvider' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/DateTimeProvider/CurrentDateTimeProvider.php'
),
'Automattic\\WooCommerce\\Admin\\DateTimeProvider\\DateTimeProviderInterface' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/DateTimeProvider/DateTimeProviderInterface.php'
),
'Automattic\\WooCommerce\\Admin\\ReportCSVEmail' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Admin/ReportCSVEmail.php'
),
'Automattic\\WooCommerce\\Database\\Migrations\\TableMigrator' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Database/Migrations/TableMigrator.php'
),
'Automattic\\WooCommerce\\DataBase\\Migrations\\CustomOrderTable\\CLIRunner' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/CLIRunner.php'
),
'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostToOrderOpTableMigrator' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostToOrderOpTableMigrator.php'
),
'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostToOrderAddressTableMigrator' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostToOrderAddressTableMigrator.php'
),
'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostsToOrdersMigrationController' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostsToOrdersMigrationController.php'
),
'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostToOrderTableMigrator' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostToOrderTableMigrator.php'
),
'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostMetaToOrderMetaMigrator' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostMetaToOrderMetaMigrator.php'
),
'Automattic\\WooCommerce\\Database\\Migrations\\MetaToCustomTableMigrator' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Database/Migrations/MetaToCustomTableMigrator.php'
),
'Automattic\\WooCommerce\\Database\\Migrations\\MigrationHelper' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Database/Migrations/MigrationHelper.php'
),
'Automattic\\WooCommerce\\Database\\Migrations\\MetaToMetaTableMigrator' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Database/Migrations/MetaToMetaTableMigrator.php'
),
'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStockException' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Checkout/Helpers/ReserveStockException.php'
),
'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStock' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Checkout/Helpers/ReserveStock.php'
),
'Automattic\\WooCommerce\\Autoloader' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Autoloader.php'
),
'Automattic\\WooCommerce\\Utilities\\OrderUtil' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Utilities/OrderUtil.php'
),
'Automattic\\WooCommerce\\Utilities\\NumberUtil' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Utilities/NumberUtil.php'
),
'Automattic\\WooCommerce\\Utilities\\FeaturesUtil' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Utilities/FeaturesUtil.php'
),
'Automattic\\WooCommerce\\Utilities\\PluginUtil' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Utilities/PluginUtil.php'
),
'Automattic\\WooCommerce\\Utilities\\ArrayUtil' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Utilities/ArrayUtil.php'
),
'Automattic\\WooCommerce\\Utilities\\StringUtil' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Utilities/StringUtil.php'
),
'Automattic\\WooCommerce\\Caching\\CacheException' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Caching/CacheException.php'
),
'Automattic\\WooCommerce\\Caching\\ObjectCache' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Caching/ObjectCache.php'
),
'Automattic\\WooCommerce\\Caching\\WpCacheEngine' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Caching/WpCacheEngine.php'
),
'Automattic\\WooCommerce\\Caching\\CacheEngine' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/src/Caching/CacheEngine.php'
),
'Hook_Manager' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-hook-manager.php'
),
'Automattic\\Jetpack\\Autoloader\\ManifestGenerator' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/ManifestGenerator.php'
),
'Plugins_Handler' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-plugins-handler.php'
),
'Autoloader_Handler' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-autoloader-handler.php'
),
'Plugin_Locator' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-plugin-locator.php'
),
'Autoloader' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-autoloader.php'
),
'Shutdown_Handler' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-shutdown-handler.php'
),
'Version_Selector' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-version-selector.php'
),
'Latest_Autoloader_Guard' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-latest-autoloader-guard.php'
),
'Path_Processor' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-path-processor.php'
),
'Automattic\\Jetpack\\Autoloader\\AutoloadFileWriter' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadFileWriter.php'
),
'Version_Loader' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-version-loader.php'
),
'PHP_Autoloader' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-php-autoloader.php'
),
'Autoloader_Locator' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-autoloader-locator.php'
),
'Automattic\\Jetpack\\Autoloader\\AutoloadProcessor' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadProcessor.php'
),
'Container' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-container.php'
),
'Manifest_Reader' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-manifest-reader.php'
),
'Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php'
),
'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array(
'version' => '2.10.1.0',
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php'
),
'Automattic\\WooCommerce\\RestApi\\Server' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Server.php'
),
'Automattic\\WooCommerce\\RestApi\\Package' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Package.php'
),
'WC_REST_Webhook_Deliveries_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-webhook-deliveries-v2-controller.php'
),
'WC_REST_Products_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-products-v2-controller.php'
),
'WC_REST_Shipping_Zone_Locations_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-locations-v2-controller.php'
),
'WC_REST_Product_Categories_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-categories-v2-controller.php'
),
'WC_REST_Shipping_Zone_Methods_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-methods-v2-controller.php'
),
'WC_REST_Webhooks_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-webhooks-v2-controller.php'
),
'WC_REST_Shipping_Methods_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-methods-v2-controller.php'
),
'WC_REST_System_Status_Tools_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-tools-v2-controller.php'
),
'WC_REST_Product_Shipping_Classes_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-shipping-classes-v2-controller.php'
),
'WC_REST_Order_Refunds_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-order-refunds-v2-controller.php'
),
'WC_REST_Customer_Downloads_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-customer-downloads-v2-controller.php'
),
'WC_REST_Tax_Classes_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-tax-classes-v2-controller.php'
),
'WC_REST_Order_Notes_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-order-notes-v2-controller.php'
),
'WC_REST_Network_Orders_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-network-orders-v2-controller.php'
),
'WC_REST_Product_Variations_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-variations-v2-controller.php'
),
'WC_REST_System_Status_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-v2-controller.php'
),
'WC_REST_Product_Reviews_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-reviews-v2-controller.php'
),
'WC_REST_Settings_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-settings-v2-controller.php'
),
'WC_REST_Product_Attributes_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-attributes-v2-controller.php'
),
'WC_REST_Product_Attribute_Terms_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-attribute-terms-v2-controller.php'
),
'WC_REST_Shipping_Zones_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zones-v2-controller.php'
),
'WC_REST_Setting_Options_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-setting-options-v2-controller.php'
),
'WC_REST_Customers_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-customers-v2-controller.php'
),
'WC_REST_Report_Sales_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-report-sales-v2-controller.php'
),
'WC_REST_Payment_Gateways_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-payment-gateways-v2-controller.php'
),
'WC_REST_Product_Tags_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-tags-v2-controller.php'
),
'WC_REST_Report_Top_Sellers_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-report-top-sellers-v2-controller.php'
),
'WC_REST_Orders_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-orders-v2-controller.php'
),
'WC_REST_Taxes_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-taxes-v2-controller.php'
),
'WC_REST_Coupons_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-coupons-v2-controller.php'
),
'WC_REST_Reports_V2_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-reports-v2-controller.php'
),
'WC_REST_Orders_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-orders-controller.php'
),
'WC_REST_Report_Sales_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-sales-controller.php'
),
'WC_REST_Order_Notes_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-order-notes-controller.php'
),
'WC_REST_CRUD_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-crud-controller.php'
),
'WC_REST_Setting_Options_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-setting-options-controller.php'
),
'WC_REST_Product_Variations_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-variations-controller.php'
),
'WC_REST_Product_Attributes_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-attributes-controller.php'
),
'WC_REST_Shipping_Zone_Methods_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-methods-controller.php'
),
'WC_REST_Report_Products_Totals_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-products-totals-controller.php'
),
'WC_REST_Data_Currencies_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-currencies-controller.php'
),
'WC_REST_Data_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-controller.php'
),
'WC_REST_Shipping_Methods_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-methods-controller.php'
),
'WC_REST_System_Status_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-controller.php'
),
'WC_REST_Product_Attribute_Terms_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-attribute-terms-controller.php'
),
'WC_REST_Product_Categories_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-categories-controller.php'
),
'WC_REST_Taxes_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-taxes-controller.php'
),
'WC_REST_Customers_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-customers-controller.php'
),
'WC_REST_Shipping_Zones_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller.php'
),
'WC_REST_Terms_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-terms-controller.php'
),
'WC_REST_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-controller.php'
),
'WC_REST_Report_Reviews_Totals_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-reviews-totals-controller.php'
),
'WC_REST_Payment_Gateways_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-payment-gateways-controller.php'
),
'WC_REST_Posts_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-posts-controller.php'
),
'WC_REST_Report_Customers_Totals_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-customers-totals-controller.php'
),
'WC_REST_Tax_Classes_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-tax-classes-controller.php'
),
'WC_REST_Shipping_Zone_Locations_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-locations-controller.php'
),
'WC_REST_Shipping_Zones_Controller_Base' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller-base.php'
),
'WC_REST_Product_Reviews_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-reviews-controller.php'
),
'WC_REST_Coupons_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-coupons-controller.php'
),
'WC_REST_Network_Orders_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-network-orders-controller.php'
),
'WC_REST_Data_Continents_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-continents-controller.php'
),
'WC_REST_Order_Refunds_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-order-refunds-controller.php'
),
'WC_REST_Customer_Downloads_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-customer-downloads-controller.php'
),
'WC_REST_Product_Tags_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-tags-controller.php'
),
'WC_REST_Report_Coupons_Totals_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-coupons-totals-controller.php'
),
'WC_REST_Data_Countries_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-countries-controller.php'
),
'WC_REST_Product_Shipping_Classes_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-shipping-classes-controller.php'
),
'WC_REST_Reports_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-reports-controller.php'
),
'WC_REST_System_Status_Tools_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-tools-controller.php'
),
'WC_REST_Report_Orders_Totals_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-orders-totals-controller.php'
),
'WC_REST_Report_Top_Sellers_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-top-sellers-controller.php'
),
'WC_REST_Settings_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-settings-controller.php'
),
'WC_REST_Products_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-products-controller.php'
),
'WC_REST_Webhooks_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-webhooks-controller.php'
),
'WC_REST_Telemetry_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Telemetry/class-wc-rest-telemetry-controller.php'
),
'WC_REST_Customer_Downloads_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-customer-downloads-v1-controller.php'
),
'WC_REST_Webhooks_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-webhooks-v1-controller.php'
),
'WC_REST_Order_Notes_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-order-notes-v1-controller.php'
),
'WC_REST_Report_Top_Sellers_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-report-top-sellers-v1-controller.php'
),
'WC_REST_Product_Shipping_Classes_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-shipping-classes-v1-controller.php'
),
'WC_REST_Products_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-products-v1-controller.php'
),
'WC_REST_Product_Attributes_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-attributes-v1-controller.php'
),
'WC_REST_Taxes_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-taxes-v1-controller.php'
),
'WC_REST_Webhook_Deliveries_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-webhook-deliveries-v1-controller.php'
),
'WC_REST_Coupons_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-coupons-v1-controller.php'
),
'WC_REST_Order_Refunds_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-order-refunds-v1-controller.php'
),
'WC_REST_Product_Reviews_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-reviews-v1-controller.php'
),
'WC_REST_Reports_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-reports-v1-controller.php'
),
'WC_REST_Customers_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-customers-v1-controller.php'
),
'WC_REST_Report_Sales_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-report-sales-v1-controller.php'
),
'WC_REST_Product_Categories_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-categories-v1-controller.php'
),
'WC_REST_Product_Tags_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-tags-v1-controller.php'
),
'WC_REST_Orders_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-orders-v1-controller.php'
),
'WC_REST_Tax_Classes_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-tax-classes-v1-controller.php'
),
'WC_REST_Product_Attribute_Terms_V1_Controller' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-attribute-terms-v1-controller.php'
),
'Automattic\\WooCommerce\\RestApi\\Utilities\\SingletonTrait' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Utilities/SingletonTrait.php'
),
'Automattic\\WooCommerce\\RestApi\\Utilities\\ImageAttachment' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/includes/rest-api/Utilities/ImageAttachment.php'
),
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\CustomerHelper' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/CustomerHelper.php'
),
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\AdminNotesHelper' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/AdminNotesHelper.php'
),
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\SettingsHelper' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/SettingsHelper.php'
),
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\QueueHelper' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/QueueHelper.php'
),
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\ProductHelper' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/ProductHelper.php'
),
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\ShippingHelper' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/ShippingHelper.php'
),
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\OrderHelper' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/OrderHelper.php'
),
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\CouponHelper' => array(
'version' => '7.3.0.0',
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/CouponHelper.php'
),
'Automattic\\Jetpack\\Constants' => array(
'version' => '1.5.1.0',
'path' => $vendorDir . '/automattic/jetpack-constants/src/class-constants.php'
),
);