generator-chisel 1.0.0 → 2.0.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (302) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/README.md +2 -4
  3. package/bin/chisel.js +2 -22
  4. package/lib/commands/create/creators/app/chisel-starter-theme/.nvmrc +1 -0
  5. package/lib/commands/create/creators/app/chisel-starter-theme/.twig-cs-fixer.php +13 -0
  6. package/lib/commands/create/creators/app/chisel-starter-theme/404.php +16 -0
  7. package/lib/commands/create/creators/app/chisel-starter-theme/README.md +3 -0
  8. package/lib/commands/create/creators/app/chisel-starter-theme/acf-json/group_666eb7f38d2ed.json +59 -0
  9. package/lib/commands/create/creators/app/chisel-starter-theme/acf-json/group_66d5a4ebb41cd.json +148 -0
  10. package/lib/commands/create/creators/app/chisel-starter-theme/archive.php +38 -0
  11. package/lib/commands/create/creators/app/chisel-starter-theme/assets/fonts/quicksand-700.woff2 +0 -0
  12. package/lib/commands/create/creators/app/chisel-starter-theme/assets/fonts/quicksand-regular.woff2 +0 -0
  13. package/lib/commands/create/creators/app/chisel-starter-theme/assets/icons/loader.svg +17 -0
  14. package/lib/commands/create/creators/app/chisel-starter-theme/assets/icons/minus.svg +4 -0
  15. package/lib/commands/create/creators/app/chisel-starter-theme/assets/icons/plus.svg +4 -0
  16. package/lib/commands/create/creators/app/chisel-starter-theme/assets/images/chisel.png +0 -0
  17. package/lib/commands/create/creators/app/chisel-starter-theme/author.php +18 -0
  18. package/lib/commands/create/creators/app/chisel-starter-theme/classes/Acf.php +191 -0
  19. package/lib/commands/create/creators/app/chisel-starter-theme/classes/AcfBlocks.php +190 -0
  20. package/lib/commands/create/creators/app/chisel-starter-theme/classes/AcfSync.php +230 -0
  21. package/lib/commands/create/creators/app/chisel-starter-theme/classes/Ajax.php +161 -0
  22. package/lib/commands/create/creators/app/chisel-starter-theme/classes/AjaxEnpoints.php +103 -0
  23. package/lib/commands/create/creators/app/chisel-starter-theme/classes/Assets.php +607 -0
  24. package/lib/commands/create/creators/app/chisel-starter-theme/classes/Blocks.php +270 -0
  25. package/lib/commands/create/creators/app/chisel-starter-theme/classes/ChiselCache.php +87 -0
  26. package/lib/commands/create/creators/app/chisel-starter-theme/classes/Components.php +208 -0
  27. package/lib/commands/create/creators/app/chisel-starter-theme/classes/CustomPostTypes.php +442 -0
  28. package/lib/commands/create/creators/app/chisel-starter-theme/classes/ExtendedImage.php +24 -0
  29. package/lib/commands/create/creators/app/chisel-starter-theme/classes/ExtendedPost.php +42 -0
  30. package/lib/commands/create/creators/app/chisel-starter-theme/classes/ExtendedProduct.php +41 -0
  31. package/lib/commands/create/creators/app/chisel-starter-theme/classes/ExtendedTerm.php +13 -0
  32. package/lib/commands/create/creators/app/chisel-starter-theme/classes/Helpers.php +135 -0
  33. package/lib/commands/create/creators/app/chisel-starter-theme/classes/RegisterBlocks.php +273 -0
  34. package/lib/commands/create/creators/app/chisel-starter-theme/classes/Sidebars.php +110 -0
  35. package/lib/commands/create/creators/app/chisel-starter-theme/classes/Site.php +123 -0
  36. package/lib/commands/create/creators/app/chisel-starter-theme/classes/Theme.php +277 -0
  37. package/lib/commands/create/creators/app/chisel-starter-theme/classes/Twig.php +241 -0
  38. package/lib/commands/create/creators/app/chisel-starter-theme/classes/Woocommerce.php +183 -0
  39. package/lib/commands/create/creators/app/chisel-starter-theme/classes/interfaces/Instance.php +31 -0
  40. package/lib/commands/create/creators/app/chisel-starter-theme/composer.json +18 -0
  41. package/lib/commands/create/creators/app/chisel-starter-theme/composer.lock +2180 -0
  42. package/lib/commands/create/creators/{wp → app}/chisel-starter-theme/footer.php +11 -4
  43. package/lib/commands/create/creators/app/chisel-starter-theme/functions.php +47 -0
  44. package/lib/commands/create/creators/{wp → app}/chisel-starter-theme/header.php +3 -1
  45. package/lib/commands/create/creators/{wp/chisel-starter-theme/index.chisel-tpl.php → app/chisel-starter-theme/index.php} +15 -8
  46. package/lib/commands/create/creators/app/chisel-starter-theme/languages/.gitkeep +0 -0
  47. package/lib/commands/create/creators/app/chisel-starter-theme/lint-staged.config.mjs +8 -0
  48. package/lib/commands/create/creators/app/chisel-starter-theme/package.chisel-tpl.json +40 -0
  49. package/lib/commands/create/creators/app/chisel-starter-theme/page.php +25 -0
  50. package/lib/commands/create/creators/app/chisel-starter-theme/patterns/cta.php +39 -0
  51. package/lib/commands/create/creators/app/chisel-starter-theme/phpcs.xml +63 -0
  52. package/lib/commands/create/creators/app/chisel-starter-theme/screenshot.jpg +0 -0
  53. package/lib/commands/create/creators/app/chisel-starter-theme/search.php +15 -0
  54. package/lib/commands/create/creators/app/chisel-starter-theme/single.php +19 -0
  55. package/lib/commands/create/creators/app/chisel-starter-theme/src/blocks/accordion/accordion-item.js +79 -0
  56. package/lib/commands/create/creators/app/chisel-starter-theme/src/blocks/accordion/block.json +36 -0
  57. package/lib/commands/create/creators/app/chisel-starter-theme/src/blocks/accordion/edit.js +80 -0
  58. package/lib/commands/create/creators/app/chisel-starter-theme/src/blocks/accordion/editor.scss +24 -0
  59. package/lib/commands/create/creators/app/chisel-starter-theme/src/blocks/accordion/index.js +44 -0
  60. package/lib/commands/create/creators/app/chisel-starter-theme/src/blocks/accordion/save.js +40 -0
  61. package/lib/commands/create/creators/app/chisel-starter-theme/src/blocks/accordion/style.scss +81 -0
  62. package/lib/commands/create/creators/app/chisel-starter-theme/src/blocks/accordion/view.js +146 -0
  63. package/lib/commands/create/creators/app/chisel-starter-theme/src/blocks-acf/slider/acf-json/group_66462c70b851f.json +131 -0
  64. package/lib/commands/create/creators/app/chisel-starter-theme/src/blocks-acf/slider/block.json +28 -0
  65. package/lib/commands/create/creators/app/chisel-starter-theme/src/blocks-acf/slider/script.js +1 -0
  66. package/lib/commands/create/creators/app/chisel-starter-theme/src/blocks-acf/slider/slider.twig +26 -0
  67. package/lib/commands/create/creators/app/chisel-starter-theme/src/blocks-acf/slider/style.scss +5 -0
  68. package/lib/commands/create/creators/app/chisel-starter-theme/src/design/_index.scss +1 -0
  69. package/lib/commands/create/creators/app/chisel-starter-theme/src/design/settings/_index.scss +24 -0
  70. package/lib/commands/create/creators/app/chisel-starter-theme/src/design/tools/_breakpoints.scss +70 -0
  71. package/lib/commands/create/creators/app/chisel-starter-theme/src/design/tools/_buttons.scss +104 -0
  72. package/lib/commands/create/creators/app/chisel-starter-theme/src/design/tools/_icon.scss +5 -0
  73. package/lib/commands/create/creators/app/chisel-starter-theme/src/design/tools/_index.scss +9 -0
  74. package/lib/commands/create/creators/app/chisel-starter-theme/src/design/tools/_link.scss +15 -0
  75. package/lib/commands/create/creators/app/chisel-starter-theme/src/design/tools/_media.scss +6 -0
  76. package/lib/commands/create/creators/app/chisel-starter-theme/src/design/tools/_px-to-rem.scss +21 -0
  77. package/lib/commands/create/creators/app/chisel-starter-theme/src/design/tools/_screen-readers.scss +30 -0
  78. package/lib/commands/create/creators/app/chisel-starter-theme/src/design/tools/_theme.scss +57 -0
  79. package/lib/commands/create/creators/app/chisel-starter-theme/src/design/tools/_width.scss +14 -0
  80. package/lib/commands/create/creators/app/chisel-starter-theme/src/scripts/acf-sync.js +26 -0
  81. package/lib/commands/create/creators/app/chisel-starter-theme/src/scripts/admin/acf.js +27 -0
  82. package/lib/commands/create/creators/app/chisel-starter-theme/src/scripts/admin.js +1 -0
  83. package/lib/commands/create/creators/app/chisel-starter-theme/src/scripts/app.js +7 -0
  84. package/lib/commands/create/creators/app/chisel-starter-theme/src/scripts/blog.js +0 -0
  85. package/lib/commands/create/creators/app/chisel-starter-theme/src/scripts/editor/blocks-attributes.js +0 -0
  86. package/lib/commands/create/creators/app/chisel-starter-theme/src/scripts/editor/blocks-styles.js +124 -0
  87. package/lib/commands/create/creators/app/chisel-starter-theme/src/scripts/editor/blocks.js +55 -0
  88. package/lib/commands/create/creators/app/chisel-starter-theme/src/scripts/editor/components/BlockEditSelector.js +39 -0
  89. package/lib/commands/create/creators/app/chisel-starter-theme/src/scripts/editor/components/RenderAppender.js +32 -0
  90. package/lib/commands/create/creators/app/chisel-starter-theme/src/scripts/editor.js +2 -0
  91. package/lib/commands/create/creators/app/chisel-starter-theme/src/scripts/login.js +29 -0
  92. package/lib/commands/create/creators/app/chisel-starter-theme/src/scripts/modules/load-more.js +93 -0
  93. package/lib/commands/create/creators/app/chisel-starter-theme/src/scripts/modules/main-nav.js +99 -0
  94. package/lib/commands/create/creators/app/chisel-starter-theme/src/scripts/modules/slider.js +385 -0
  95. package/lib/commands/create/creators/app/chisel-starter-theme/src/scripts/modules/utils.js +43 -0
  96. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/acf-sync.scss +64 -0
  97. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/admin.scss +1 -0
  98. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/blocks/_core-button.scss +62 -0
  99. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/blocks/_core-details.scss +18 -0
  100. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/blocks/_core-gallery.scss +9 -0
  101. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/blocks/_core-latest-comments.scss +3 -0
  102. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/blocks/_core-latest-posts.scss +82 -0
  103. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/blocks/_core-media-text.scss +34 -0
  104. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/blocks/_core-post-date.scss +5 -0
  105. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/blocks/_core-post-title.scss +7 -0
  106. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/blocks/_core-query.scss +65 -0
  107. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/blocks/_core-search.scss +15 -0
  108. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/blocks/_core-spacer.scss +33 -0
  109. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/blocks/_core.scss +66 -0
  110. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/components/_badge.scss +24 -0
  111. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/components/_buttons.scss +67 -0
  112. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/components/_content.scss +42 -0
  113. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/components/_footer.scss +18 -0
  114. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/components/_header.scss +34 -0
  115. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/components/_icon.scss +19 -0
  116. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/components/_load-more.scss +6 -0
  117. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/components/_main-nav-toggle.scss +804 -0
  118. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/components/_main-nav.scss +305 -0
  119. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/components/_pagination.scss +34 -0
  120. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/components/_post-card.scss +12 -0
  121. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/components/_post.scss +22 -0
  122. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/components/_posts-items.scss +90 -0
  123. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/components/_select2.scss +45 -0
  124. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/components/_sidebar.scss +20 -0
  125. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/components/_slider.scss +122 -0
  126. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/editor.scss +4 -0
  127. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/elements/_form.scss +346 -0
  128. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/elements/_html.scss +17 -0
  129. package/lib/commands/create/creators/app/{template → chisel-starter-theme}/src/styles/elements/_images.scss +2 -12
  130. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/elements/_link.scss +7 -0
  131. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/elements/_shared.scss +44 -0
  132. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/elements/_table.scss +3 -0
  133. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/generic/_reset.scss +84 -0
  134. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/login.scss +156 -0
  135. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/main.scss +10 -0
  136. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/objects/_grid.scss +30 -0
  137. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/objects/_layout.scss +62 -0
  138. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/objects/_wrapper.scss +18 -0
  139. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/utilities/_sr.scss +9 -0
  140. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/vendor/.gitkeep +0 -0
  141. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/vendor/_gravity-forms.scss +140 -0
  142. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/widgets/_nav-menu.scss +20 -0
  143. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/widgets/_widget.scss +5 -0
  144. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/woo/_account.scss +25 -0
  145. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/woo/_archive.scss +32 -0
  146. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/woo/_btn.scss +49 -0
  147. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/woo/_cart.scss +9 -0
  148. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/woo/_checkout.scss +53 -0
  149. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/woo/_general.scss +68 -0
  150. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/woo/_notices.scss +60 -0
  151. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/woo/_product-item.scss +29 -0
  152. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/woo/_product.scss +24 -0
  153. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/woocommerce.scss +3 -0
  154. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/wp-editor/_block-edit-selector.scss +47 -0
  155. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/wp-editor/_block-sidebar.scss +30 -0
  156. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/wp-editor/_core-button.scss +6 -0
  157. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/wp-editor/_core-pagination.scss +12 -0
  158. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/wp-editor/_core-spacer.scss +14 -0
  159. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/wp-editor/_editor.scss +5 -0
  160. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/wp-editor/_render-appender.scss +33 -0
  161. package/lib/commands/create/creators/app/chisel-starter-theme/src/styles/wp-editor/_swiper-sliders.scss +12 -0
  162. package/lib/commands/create/creators/app/chisel-starter-theme/style.chisel-tpl.css +12 -0
  163. package/lib/commands/create/creators/app/chisel-starter-theme/theme.json +481 -0
  164. package/lib/commands/create/creators/app/chisel-starter-theme/twig_cs.php +14 -0
  165. package/lib/commands/create/creators/app/chisel-starter-theme/views/404.twig +7 -0
  166. package/lib/commands/create/creators/app/chisel-starter-theme/views/archive.twig +10 -0
  167. package/lib/commands/create/creators/app/chisel-starter-theme/views/author.twig +11 -0
  168. package/lib/commands/create/creators/app/chisel-starter-theme/views/base.twig +43 -0
  169. package/lib/commands/create/creators/app/chisel-starter-theme/views/components/footer.twig +9 -0
  170. package/lib/commands/create/creators/app/chisel-starter-theme/views/components/header.twig +7 -0
  171. package/lib/commands/create/creators/app/chisel-starter-theme/views/components/main-nav-item.twig +21 -0
  172. package/lib/commands/create/creators/app/chisel-starter-theme/views/components/main-nav.twig +27 -0
  173. package/lib/commands/create/creators/app/chisel-starter-theme/views/components/page-title.twig +5 -0
  174. package/lib/commands/create/creators/app/chisel-starter-theme/views/components/pagination.twig +0 -0
  175. package/lib/commands/create/creators/app/chisel-starter-theme/views/components/post-item.twig +26 -0
  176. package/lib/commands/create/creators/app/chisel-starter-theme/views/components/search-form.twig +0 -0
  177. package/lib/commands/create/creators/app/chisel-starter-theme/views/components/slider.twig +12 -0
  178. package/lib/commands/create/creators/app/chisel-starter-theme/views/index.twig +36 -0
  179. package/lib/commands/create/creators/app/chisel-starter-theme/views/page-plugin.twig +5 -0
  180. package/lib/commands/create/creators/app/chisel-starter-theme/views/page.twig +6 -0
  181. package/lib/commands/create/creators/app/chisel-starter-theme/views/partials/logo.twig +10 -0
  182. package/lib/commands/create/creators/app/chisel-starter-theme/views/partials/pagination.twig +70 -0
  183. package/lib/commands/create/creators/app/chisel-starter-theme/views/partials/the-title.twig +1 -0
  184. package/lib/commands/create/creators/app/chisel-starter-theme/views/search.twig +10 -0
  185. package/lib/commands/create/creators/app/chisel-starter-theme/views/sidebar-blog.twig +5 -0
  186. package/lib/commands/create/creators/app/chisel-starter-theme/views/sidebar-woocommerce.twig +5 -0
  187. package/lib/commands/create/creators/app/chisel-starter-theme/views/single-password.twig +7 -0
  188. package/lib/commands/create/creators/app/chisel-starter-theme/views/single.twig +56 -0
  189. package/lib/commands/create/creators/app/chisel-starter-theme/views/woocommerce/archive-product.twig +83 -0
  190. package/lib/commands/create/creators/app/chisel-starter-theme/views/woocommerce/content-product.twig +51 -0
  191. package/lib/commands/create/creators/app/chisel-starter-theme/views/woocommerce/linked-products.twig +15 -0
  192. package/lib/commands/create/creators/app/chisel-starter-theme/views/woocommerce/single-product.twig +76 -0
  193. package/lib/commands/create/creators/app/chisel-starter-theme/webpack.config.js +6 -0
  194. package/lib/commands/create/creators/app/chisel-starter-theme/woocommerce.php +57 -0
  195. package/lib/commands/create/creators/app/index.js +28 -75
  196. package/lib/commands/create/creators/app/template/.gitignore.chisel-tpl +2 -2
  197. package/lib/commands/create/creators/init.js +2 -4
  198. package/lib/commands/create/creators/wp/index.js +28 -36
  199. package/lib/commands/create/creators/wp-plugins/index.js +3 -1
  200. package/lib/commands/create/creators/wp-plugins/plugins.json +0 -1
  201. package/lib/commands/create/packages-versions.js +3 -9
  202. package/lib/commands/create/priorities.js +0 -3
  203. package/lib/utils/sort-package.js +3 -9
  204. package/package.json +3 -9
  205. package/lib/commands/create/creators/app/template/.browserslistrc.chisel-tpl +0 -19
  206. package/lib/commands/create/creators/app/template/.editorconfig +0 -17
  207. package/lib/commands/create/creators/app/template/.eslintignore +0 -4
  208. package/lib/commands/create/creators/app/template/.eslintrc.js +0 -25
  209. package/lib/commands/create/creators/app/template/.prettierignore +0 -4
  210. package/lib/commands/create/creators/app/template/.stylelintignore +0 -3
  211. package/lib/commands/create/creators/app/template/babel.config.js +0 -16
  212. package/lib/commands/create/creators/app/template/chisel.config.chisel-tpl.js +0 -48
  213. package/lib/commands/create/creators/app/template/package.chisel-tpl.json +0 -43
  214. package/lib/commands/create/creators/app/template/postcss.config.js +0 -8
  215. package/lib/commands/create/creators/app/template/prettier.config.js +0 -4
  216. package/lib/commands/create/creators/app/template/src/scripts/app.chisel-tpl.js +0 -8
  217. package/lib/commands/create/creators/app/template/src/scripts/modules/greeting.chisel-tpl.js +0 -17
  218. package/lib/commands/create/creators/app/template/src/styles/components/_btn.scss +0 -60
  219. package/lib/commands/create/creators/app/template/src/styles/components/_footer.scss +0 -10
  220. package/lib/commands/create/creators/app/template/src/styles/components/_header.scss +0 -9
  221. package/lib/commands/create/creators/app/template/src/styles/elements/_blockquote.scss +0 -20
  222. package/lib/commands/create/creators/app/template/src/styles/elements/_headings.scss +0 -33
  223. package/lib/commands/create/creators/app/template/src/styles/elements/_html.scss +0 -40
  224. package/lib/commands/create/creators/app/template/src/styles/elements/_links.scss +0 -12
  225. package/lib/commands/create/creators/app/template/src/styles/elements/_lists.scss +0 -23
  226. package/lib/commands/create/creators/app/template/src/styles/elements/_tables.scss +0 -11
  227. package/lib/commands/create/creators/app/template/src/styles/generic/_box-sizing.scss +0 -20
  228. package/lib/commands/create/creators/app/template/src/styles/generic/_font-face.scss +0 -8
  229. package/lib/commands/create/creators/app/template/src/styles/generic/_normalize.scss +0 -5
  230. package/lib/commands/create/creators/app/template/src/styles/generic/_reset.scss +0 -51
  231. package/lib/commands/create/creators/app/template/src/styles/generic/_shared.scss +0 -32
  232. package/lib/commands/create/creators/app/template/src/styles/main.chisel-tpl.scss +0 -13
  233. package/lib/commands/create/creators/app/template/src/styles/objects/_layout.scss +0 -49
  234. package/lib/commands/create/creators/app/template/src/styles/objects/_list-bare.scss +0 -13
  235. package/lib/commands/create/creators/app/template/src/styles/objects/_list-inline.scss +0 -16
  236. package/lib/commands/create/creators/app/template/src/styles/objects/_media.scss +0 -53
  237. package/lib/commands/create/creators/app/template/src/styles/objects/_table.scss +0 -26
  238. package/lib/commands/create/creators/app/template/src/styles/objects/_wrapper.scss +0 -14
  239. package/lib/commands/create/creators/app/template/src/styles/settings/_global.scss +0 -50
  240. package/lib/commands/create/creators/app/template/src/styles/tools/_breakpoints.scss +0 -67
  241. package/lib/commands/create/creators/app/template/src/styles/tools/_clearfix.scss +0 -18
  242. package/lib/commands/create/creators/app/template/src/styles/tools/_hidden.scss +0 -17
  243. package/lib/commands/create/creators/app/template/src/styles/utilities/_align.scss +0 -27
  244. package/lib/commands/create/creators/app/template/src/styles/utilities/_clearfix.scss +0 -11
  245. package/lib/commands/create/creators/app/template/src/styles/utilities/_hide.scss +0 -28
  246. package/lib/commands/create/creators/app/template/src/templates/components/footer.chisel-tpl.twig +0 -3
  247. package/lib/commands/create/creators/app/template/src/templates/components/header.chisel-tpl.twig +0 -3
  248. package/lib/commands/create/creators/app/template/src/templates/layouts/base.chisel-tpl.twig +0 -42
  249. package/lib/commands/create/creators/app/template/src/templates/layouts/page.twig +0 -8
  250. package/lib/commands/create/creators/app/template/stylelint.config.js +0 -3
  251. package/lib/commands/create/creators/fe/index-styles.css +0 -147
  252. package/lib/commands/create/creators/fe/index.js +0 -51
  253. package/lib/commands/create/creators/fe/template/.htmlhintrc +0 -3
  254. package/lib/commands/create/creators/fe/template-index/index.chisel-tpl.html +0 -77
  255. package/lib/commands/create/creators/fe/template-index/index.chisel-tpl.html.rej +0 -13
  256. package/lib/commands/create/creators/wp/chisel-starter-theme/.gitignore.chisel-tpl +0 -1
  257. package/lib/commands/create/creators/wp/chisel-starter-theme/404.chisel-tpl.php +0 -9
  258. package/lib/commands/create/creators/wp/chisel-starter-theme/Chisel/Extensions/ChiselExtension.php +0 -14
  259. package/lib/commands/create/creators/wp/chisel-starter-theme/Chisel/Extensions/ChiselTwig.php +0 -234
  260. package/lib/commands/create/creators/wp/chisel-starter-theme/Chisel/Extensions/DataType.php +0 -27
  261. package/lib/commands/create/creators/wp/chisel-starter-theme/Chisel/Extensions/Theme.php +0 -21
  262. package/lib/commands/create/creators/wp/chisel-starter-theme/Chisel/Extensions/Twig.php +0 -137
  263. package/lib/commands/create/creators/wp/chisel-starter-theme/Chisel/Helpers.php +0 -29
  264. package/lib/commands/create/creators/wp/chisel-starter-theme/Chisel/Image.php +0 -29
  265. package/lib/commands/create/creators/wp/chisel-starter-theme/Chisel/Media.php +0 -79
  266. package/lib/commands/create/creators/wp/chisel-starter-theme/Chisel/Performance.php +0 -59
  267. package/lib/commands/create/creators/wp/chisel-starter-theme/Chisel/Post.php +0 -82
  268. package/lib/commands/create/creators/wp/chisel-starter-theme/Chisel/Security.php +0 -30
  269. package/lib/commands/create/creators/wp/chisel-starter-theme/Chisel/Settings.php +0 -38
  270. package/lib/commands/create/creators/wp/chisel-starter-theme/Chisel/Site.php +0 -50
  271. package/lib/commands/create/creators/wp/chisel-starter-theme/README.chisel-tpl.md +0 -5
  272. package/lib/commands/create/creators/wp/chisel-starter-theme/archive.chisel-tpl.php +0 -36
  273. package/lib/commands/create/creators/wp/chisel-starter-theme/author.chisel-tpl.php +0 -16
  274. package/lib/commands/create/creators/wp/chisel-starter-theme/functions.php +0 -31
  275. package/lib/commands/create/creators/wp/chisel-starter-theme/page.chisel-tpl.php +0 -23
  276. package/lib/commands/create/creators/wp/chisel-starter-theme/screenshot.png +0 -0
  277. package/lib/commands/create/creators/wp/chisel-starter-theme/search.chisel-tpl.php +0 -14
  278. package/lib/commands/create/creators/wp/chisel-starter-theme/single.chisel-tpl.php +0 -18
  279. package/lib/commands/create/creators/wp/chisel-starter-theme/style.chisel-tpl.css +0 -5
  280. package/lib/commands/create/creators/wp/chisel-starter-theme/templates/404.twig +0 -5
  281. package/lib/commands/create/creators/wp/chisel-starter-theme/templates/author.twig +0 -7
  282. package/lib/commands/create/creators/wp/chisel-starter-theme/templates/components/comment.twig +0 -7
  283. package/lib/commands/create/creators/wp/chisel-starter-theme/templates/components/main-nav.twig +0 -20
  284. package/lib/commands/create/creators/wp/chisel-starter-theme/templates/components/tease-post.twig +0 -9
  285. package/lib/commands/create/creators/wp/chisel-starter-theme/templates/components/tease.twig +0 -9
  286. package/lib/commands/create/creators/wp/chisel-starter-theme/templates/index.twig +0 -7
  287. package/lib/commands/create/creators/wp/chisel-starter-theme/templates/page-plugin.twig +0 -7
  288. package/lib/commands/create/creators/wp/chisel-starter-theme/templates/page.twig +0 -10
  289. package/lib/commands/create/creators/wp/chisel-starter-theme/templates/single.twig +0 -31
  290. package/lib/commands/create/creators/wp/template/src/styles/components/_comment-form.scss +0 -21
  291. package/lib/commands/create/creators/wp/template/src/styles/components/_comment.scss +0 -17
  292. package/lib/commands/create/creators/wp/template/src/styles/components/_main-nav.scss +0 -54
  293. package/lib/commands/create/creators/wp/template/src/styles/components/_post.scss +0 -36
  294. package/lib/commands/create/creators/wp/template/wp/.gitignore.chisel-tpl +0 -2
  295. package/lib/commands/create/creators/wp/template/wp-cli.yml +0 -1
  296. /package/lib/commands/create/creators/app/{template/src → chisel-starter-theme}/assets/fonts/.keep +0 -0
  297. /package/lib/commands/create/creators/app/{template/src → chisel-starter-theme}/assets/images/.keep +0 -0
  298. /package/lib/commands/create/creators/app/{template/src/styles/vendor/.keep → chisel-starter-theme/classes/Comments.php} +0 -0
  299. /package/lib/commands/create/creators/{fe/template/public/.keep → app/chisel-starter-theme/classes/Yoast.php} +0 -0
  300. /package/lib/commands/create/creators/app/{template → chisel-starter-theme}/src/styles/elements/_hr.scss +0 -0
  301. /package/lib/commands/create/creators/{wp/template/wp → app/template}/.htaccess +0 -0
  302. /package/lib/commands/create/creators/{wp/template/wp → app/template}/wp-config.php +0 -0
@@ -0,0 +1,2180 @@
1
+ {
2
+ "_readme": [
3
+ "This file locks the dependencies of your project to a known state",
4
+ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5
+ "This file is @generated automatically"
6
+ ],
7
+ "content-hash": "bdad2d3ea69267b798e8c620868e21c7",
8
+ "packages": [
9
+ {
10
+ "name": "composer/installers",
11
+ "version": "v2.3.0",
12
+ "source": {
13
+ "type": "git",
14
+ "url": "https://github.com/composer/installers.git",
15
+ "reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e"
16
+ },
17
+ "dist": {
18
+ "type": "zip",
19
+ "url": "https://api.github.com/repos/composer/installers/zipball/12fb2dfe5e16183de69e784a7b84046c43d97e8e",
20
+ "reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e",
21
+ "shasum": ""
22
+ },
23
+ "require": {
24
+ "composer-plugin-api": "^1.0 || ^2.0",
25
+ "php": "^7.2 || ^8.0"
26
+ },
27
+ "require-dev": {
28
+ "composer/composer": "^1.10.27 || ^2.7",
29
+ "composer/semver": "^1.7.2 || ^3.4.0",
30
+ "phpstan/phpstan": "^1.11",
31
+ "phpstan/phpstan-phpunit": "^1",
32
+ "symfony/phpunit-bridge": "^7.1.1",
33
+ "symfony/process": "^5 || ^6 || ^7"
34
+ },
35
+ "type": "composer-plugin",
36
+ "extra": {
37
+ "class": "Composer\\Installers\\Plugin",
38
+ "branch-alias": {
39
+ "dev-main": "2.x-dev"
40
+ },
41
+ "plugin-modifies-install-path": true
42
+ },
43
+ "autoload": {
44
+ "psr-4": {
45
+ "Composer\\Installers\\": "src/Composer/Installers"
46
+ }
47
+ },
48
+ "notification-url": "https://packagist.org/downloads/",
49
+ "license": [
50
+ "MIT"
51
+ ],
52
+ "authors": [
53
+ {
54
+ "name": "Kyle Robinson Young",
55
+ "email": "kyle@dontkry.com",
56
+ "homepage": "https://github.com/shama"
57
+ }
58
+ ],
59
+ "description": "A multi-framework Composer library installer",
60
+ "homepage": "https://composer.github.io/installers/",
61
+ "keywords": [
62
+ "Dolibarr",
63
+ "Eliasis",
64
+ "Hurad",
65
+ "ImageCMS",
66
+ "Kanboard",
67
+ "Lan Management System",
68
+ "MODX Evo",
69
+ "MantisBT",
70
+ "Mautic",
71
+ "Maya",
72
+ "OXID",
73
+ "Plentymarkets",
74
+ "Porto",
75
+ "RadPHP",
76
+ "SMF",
77
+ "Starbug",
78
+ "Thelia",
79
+ "Whmcs",
80
+ "WolfCMS",
81
+ "agl",
82
+ "annotatecms",
83
+ "attogram",
84
+ "bitrix",
85
+ "cakephp",
86
+ "chef",
87
+ "cockpit",
88
+ "codeigniter",
89
+ "concrete5",
90
+ "concreteCMS",
91
+ "croogo",
92
+ "dokuwiki",
93
+ "drupal",
94
+ "eZ Platform",
95
+ "elgg",
96
+ "expressionengine",
97
+ "fuelphp",
98
+ "grav",
99
+ "installer",
100
+ "itop",
101
+ "known",
102
+ "kohana",
103
+ "laravel",
104
+ "lavalite",
105
+ "lithium",
106
+ "magento",
107
+ "majima",
108
+ "mako",
109
+ "matomo",
110
+ "mediawiki",
111
+ "miaoxing",
112
+ "modulework",
113
+ "modx",
114
+ "moodle",
115
+ "osclass",
116
+ "pantheon",
117
+ "phpbb",
118
+ "piwik",
119
+ "ppi",
120
+ "processwire",
121
+ "puppet",
122
+ "pxcms",
123
+ "reindex",
124
+ "roundcube",
125
+ "shopware",
126
+ "silverstripe",
127
+ "sydes",
128
+ "sylius",
129
+ "tastyigniter",
130
+ "wordpress",
131
+ "yawik",
132
+ "zend",
133
+ "zikula"
134
+ ],
135
+ "support": {
136
+ "issues": "https://github.com/composer/installers/issues",
137
+ "source": "https://github.com/composer/installers/tree/v2.3.0"
138
+ },
139
+ "funding": [
140
+ {
141
+ "url": "https://packagist.com",
142
+ "type": "custom"
143
+ },
144
+ {
145
+ "url": "https://github.com/composer",
146
+ "type": "github"
147
+ },
148
+ {
149
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
150
+ "type": "tidelift"
151
+ }
152
+ ],
153
+ "time": "2024-06-24T20:46:46+00:00"
154
+ },
155
+ {
156
+ "name": "symfony/deprecation-contracts",
157
+ "version": "v2.5.3",
158
+ "source": {
159
+ "type": "git",
160
+ "url": "https://github.com/symfony/deprecation-contracts.git",
161
+ "reference": "80d075412b557d41002320b96a096ca65aa2c98d"
162
+ },
163
+ "dist": {
164
+ "type": "zip",
165
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d",
166
+ "reference": "80d075412b557d41002320b96a096ca65aa2c98d",
167
+ "shasum": ""
168
+ },
169
+ "require": {
170
+ "php": ">=7.1"
171
+ },
172
+ "type": "library",
173
+ "extra": {
174
+ "branch-alias": {
175
+ "dev-main": "2.5-dev"
176
+ },
177
+ "thanks": {
178
+ "name": "symfony/contracts",
179
+ "url": "https://github.com/symfony/contracts"
180
+ }
181
+ },
182
+ "autoload": {
183
+ "files": [
184
+ "function.php"
185
+ ]
186
+ },
187
+ "notification-url": "https://packagist.org/downloads/",
188
+ "license": [
189
+ "MIT"
190
+ ],
191
+ "authors": [
192
+ {
193
+ "name": "Nicolas Grekas",
194
+ "email": "p@tchwork.com"
195
+ },
196
+ {
197
+ "name": "Symfony Community",
198
+ "homepage": "https://symfony.com/contributors"
199
+ }
200
+ ],
201
+ "description": "A generic function and convention to trigger deprecation notices",
202
+ "homepage": "https://symfony.com",
203
+ "support": {
204
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3"
205
+ },
206
+ "funding": [
207
+ {
208
+ "url": "https://symfony.com/sponsor",
209
+ "type": "custom"
210
+ },
211
+ {
212
+ "url": "https://github.com/fabpot",
213
+ "type": "github"
214
+ },
215
+ {
216
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
217
+ "type": "tidelift"
218
+ }
219
+ ],
220
+ "time": "2023-01-24T14:02:46+00:00"
221
+ },
222
+ {
223
+ "name": "symfony/polyfill-ctype",
224
+ "version": "v1.30.0",
225
+ "source": {
226
+ "type": "git",
227
+ "url": "https://github.com/symfony/polyfill-ctype.git",
228
+ "reference": "0424dff1c58f028c451efff2045f5d92410bd540"
229
+ },
230
+ "dist": {
231
+ "type": "zip",
232
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/0424dff1c58f028c451efff2045f5d92410bd540",
233
+ "reference": "0424dff1c58f028c451efff2045f5d92410bd540",
234
+ "shasum": ""
235
+ },
236
+ "require": {
237
+ "php": ">=7.1"
238
+ },
239
+ "provide": {
240
+ "ext-ctype": "*"
241
+ },
242
+ "suggest": {
243
+ "ext-ctype": "For best performance"
244
+ },
245
+ "type": "library",
246
+ "extra": {
247
+ "thanks": {
248
+ "name": "symfony/polyfill",
249
+ "url": "https://github.com/symfony/polyfill"
250
+ }
251
+ },
252
+ "autoload": {
253
+ "files": [
254
+ "bootstrap.php"
255
+ ],
256
+ "psr-4": {
257
+ "Symfony\\Polyfill\\Ctype\\": ""
258
+ }
259
+ },
260
+ "notification-url": "https://packagist.org/downloads/",
261
+ "license": [
262
+ "MIT"
263
+ ],
264
+ "authors": [
265
+ {
266
+ "name": "Gert de Pagter",
267
+ "email": "BackEndTea@gmail.com"
268
+ },
269
+ {
270
+ "name": "Symfony Community",
271
+ "homepage": "https://symfony.com/contributors"
272
+ }
273
+ ],
274
+ "description": "Symfony polyfill for ctype functions",
275
+ "homepage": "https://symfony.com",
276
+ "keywords": [
277
+ "compatibility",
278
+ "ctype",
279
+ "polyfill",
280
+ "portable"
281
+ ],
282
+ "support": {
283
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.30.0"
284
+ },
285
+ "funding": [
286
+ {
287
+ "url": "https://symfony.com/sponsor",
288
+ "type": "custom"
289
+ },
290
+ {
291
+ "url": "https://github.com/fabpot",
292
+ "type": "github"
293
+ },
294
+ {
295
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
296
+ "type": "tidelift"
297
+ }
298
+ ],
299
+ "time": "2024-05-31T15:07:36+00:00"
300
+ },
301
+ {
302
+ "name": "symfony/polyfill-mbstring",
303
+ "version": "v1.30.0",
304
+ "source": {
305
+ "type": "git",
306
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
307
+ "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c"
308
+ },
309
+ "dist": {
310
+ "type": "zip",
311
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c",
312
+ "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c",
313
+ "shasum": ""
314
+ },
315
+ "require": {
316
+ "php": ">=7.1"
317
+ },
318
+ "provide": {
319
+ "ext-mbstring": "*"
320
+ },
321
+ "suggest": {
322
+ "ext-mbstring": "For best performance"
323
+ },
324
+ "type": "library",
325
+ "extra": {
326
+ "thanks": {
327
+ "name": "symfony/polyfill",
328
+ "url": "https://github.com/symfony/polyfill"
329
+ }
330
+ },
331
+ "autoload": {
332
+ "files": [
333
+ "bootstrap.php"
334
+ ],
335
+ "psr-4": {
336
+ "Symfony\\Polyfill\\Mbstring\\": ""
337
+ }
338
+ },
339
+ "notification-url": "https://packagist.org/downloads/",
340
+ "license": [
341
+ "MIT"
342
+ ],
343
+ "authors": [
344
+ {
345
+ "name": "Nicolas Grekas",
346
+ "email": "p@tchwork.com"
347
+ },
348
+ {
349
+ "name": "Symfony Community",
350
+ "homepage": "https://symfony.com/contributors"
351
+ }
352
+ ],
353
+ "description": "Symfony polyfill for the Mbstring extension",
354
+ "homepage": "https://symfony.com",
355
+ "keywords": [
356
+ "compatibility",
357
+ "mbstring",
358
+ "polyfill",
359
+ "portable",
360
+ "shim"
361
+ ],
362
+ "support": {
363
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0"
364
+ },
365
+ "funding": [
366
+ {
367
+ "url": "https://symfony.com/sponsor",
368
+ "type": "custom"
369
+ },
370
+ {
371
+ "url": "https://github.com/fabpot",
372
+ "type": "github"
373
+ },
374
+ {
375
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
376
+ "type": "tidelift"
377
+ }
378
+ ],
379
+ "time": "2024-06-19T12:30:46+00:00"
380
+ },
381
+ {
382
+ "name": "symfony/polyfill-php80",
383
+ "version": "v1.30.0",
384
+ "source": {
385
+ "type": "git",
386
+ "url": "https://github.com/symfony/polyfill-php80.git",
387
+ "reference": "77fa7995ac1b21ab60769b7323d600a991a90433"
388
+ },
389
+ "dist": {
390
+ "type": "zip",
391
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433",
392
+ "reference": "77fa7995ac1b21ab60769b7323d600a991a90433",
393
+ "shasum": ""
394
+ },
395
+ "require": {
396
+ "php": ">=7.1"
397
+ },
398
+ "type": "library",
399
+ "extra": {
400
+ "thanks": {
401
+ "name": "symfony/polyfill",
402
+ "url": "https://github.com/symfony/polyfill"
403
+ }
404
+ },
405
+ "autoload": {
406
+ "files": [
407
+ "bootstrap.php"
408
+ ],
409
+ "psr-4": {
410
+ "Symfony\\Polyfill\\Php80\\": ""
411
+ },
412
+ "classmap": [
413
+ "Resources/stubs"
414
+ ]
415
+ },
416
+ "notification-url": "https://packagist.org/downloads/",
417
+ "license": [
418
+ "MIT"
419
+ ],
420
+ "authors": [
421
+ {
422
+ "name": "Ion Bazan",
423
+ "email": "ion.bazan@gmail.com"
424
+ },
425
+ {
426
+ "name": "Nicolas Grekas",
427
+ "email": "p@tchwork.com"
428
+ },
429
+ {
430
+ "name": "Symfony Community",
431
+ "homepage": "https://symfony.com/contributors"
432
+ }
433
+ ],
434
+ "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
435
+ "homepage": "https://symfony.com",
436
+ "keywords": [
437
+ "compatibility",
438
+ "polyfill",
439
+ "portable",
440
+ "shim"
441
+ ],
442
+ "support": {
443
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0"
444
+ },
445
+ "funding": [
446
+ {
447
+ "url": "https://symfony.com/sponsor",
448
+ "type": "custom"
449
+ },
450
+ {
451
+ "url": "https://github.com/fabpot",
452
+ "type": "github"
453
+ },
454
+ {
455
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
456
+ "type": "tidelift"
457
+ }
458
+ ],
459
+ "time": "2024-05-31T15:07:36+00:00"
460
+ },
461
+ {
462
+ "name": "symfony/polyfill-php81",
463
+ "version": "v1.30.0",
464
+ "source": {
465
+ "type": "git",
466
+ "url": "https://github.com/symfony/polyfill-php81.git",
467
+ "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af"
468
+ },
469
+ "dist": {
470
+ "type": "zip",
471
+ "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/3fb075789fb91f9ad9af537c4012d523085bd5af",
472
+ "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af",
473
+ "shasum": ""
474
+ },
475
+ "require": {
476
+ "php": ">=7.1"
477
+ },
478
+ "type": "library",
479
+ "extra": {
480
+ "thanks": {
481
+ "name": "symfony/polyfill",
482
+ "url": "https://github.com/symfony/polyfill"
483
+ }
484
+ },
485
+ "autoload": {
486
+ "files": [
487
+ "bootstrap.php"
488
+ ],
489
+ "psr-4": {
490
+ "Symfony\\Polyfill\\Php81\\": ""
491
+ },
492
+ "classmap": [
493
+ "Resources/stubs"
494
+ ]
495
+ },
496
+ "notification-url": "https://packagist.org/downloads/",
497
+ "license": [
498
+ "MIT"
499
+ ],
500
+ "authors": [
501
+ {
502
+ "name": "Nicolas Grekas",
503
+ "email": "p@tchwork.com"
504
+ },
505
+ {
506
+ "name": "Symfony Community",
507
+ "homepage": "https://symfony.com/contributors"
508
+ }
509
+ ],
510
+ "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
511
+ "homepage": "https://symfony.com",
512
+ "keywords": [
513
+ "compatibility",
514
+ "polyfill",
515
+ "portable",
516
+ "shim"
517
+ ],
518
+ "support": {
519
+ "source": "https://github.com/symfony/polyfill-php81/tree/v1.30.0"
520
+ },
521
+ "funding": [
522
+ {
523
+ "url": "https://symfony.com/sponsor",
524
+ "type": "custom"
525
+ },
526
+ {
527
+ "url": "https://github.com/fabpot",
528
+ "type": "github"
529
+ },
530
+ {
531
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
532
+ "type": "tidelift"
533
+ }
534
+ ],
535
+ "time": "2024-06-19T12:30:46+00:00"
536
+ },
537
+ {
538
+ "name": "timber/timber",
539
+ "version": "v2.1.0",
540
+ "source": {
541
+ "type": "git",
542
+ "url": "https://github.com/timber/timber.git",
543
+ "reference": "d353d1912a1a051f47ba2d3f2e3ae1af1e5bed53"
544
+ },
545
+ "dist": {
546
+ "type": "zip",
547
+ "url": "https://api.github.com/repos/timber/timber/zipball/d353d1912a1a051f47ba2d3f2e3ae1af1e5bed53",
548
+ "reference": "d353d1912a1a051f47ba2d3f2e3ae1af1e5bed53",
549
+ "shasum": ""
550
+ },
551
+ "require": {
552
+ "composer/installers": "^1.0 || ^2.0",
553
+ "php": "^7.4 || ^8.0",
554
+ "symfony/polyfill-php80": "^1.27",
555
+ "twig/twig": "^2.15.3 || ^3.0"
556
+ },
557
+ "require-dev": {
558
+ "ergebnis/composer-normalize": "^2.28",
559
+ "php-parallel-lint/php-parallel-lint": "^1.3",
560
+ "php-stubs/acf-pro-stubs": "^6.0",
561
+ "php-stubs/wp-cli-stubs": "^2.0",
562
+ "phpro/grumphp": "^1.12",
563
+ "phpstan/extension-installer": "^1.1",
564
+ "phpstan/phpstan": "^1.7",
565
+ "squizlabs/php_codesniffer": "^3.0",
566
+ "symplify/easy-coding-standard": "^12.0",
567
+ "szepeviktor/phpstan-wordpress": "^1.1",
568
+ "twig/cache-extra": "^3.3",
569
+ "wpackagist-plugin/advanced-custom-fields": "^5.0 || ^6.0",
570
+ "wpackagist-plugin/co-authors-plus": "^3.3",
571
+ "yoast/wp-test-utils": "^1.0"
572
+ },
573
+ "suggest": {
574
+ "php-coveralls/php-coveralls": "^2.0 for code coverage",
575
+ "twig/cache-extra": "For using the cache tag in Twig"
576
+ },
577
+ "type": "library",
578
+ "autoload": {
579
+ "psr-4": {
580
+ "Timber\\": "src/"
581
+ }
582
+ },
583
+ "notification-url": "https://packagist.org/downloads/",
584
+ "license": [
585
+ "MIT"
586
+ ],
587
+ "authors": [
588
+ {
589
+ "name": "Erik van der Bas",
590
+ "email": "erik@basedonline.nl",
591
+ "homepage": "https://basedonline.nl"
592
+ },
593
+ {
594
+ "name": "Lukas Gächter",
595
+ "email": "lukas.gaechter@mind.ch",
596
+ "homepage": "https://www.mind.ch"
597
+ },
598
+ {
599
+ "name": "Nicolas Lemoine",
600
+ "email": "nico@n5s.dev",
601
+ "homepage": "https://n5s.dev"
602
+ },
603
+ {
604
+ "name": "Jared Novack",
605
+ "email": "jared@upstatement.com",
606
+ "homepage": "https://upstatement.com"
607
+ },
608
+ {
609
+ "name": "Timber Community",
610
+ "homepage": "https://github.com/timber/timber"
611
+ }
612
+ ],
613
+ "description": "Create WordPress themes with beautiful OOP code and the Twig Template Engine",
614
+ "homepage": "http://timber.upstatement.com",
615
+ "keywords": [
616
+ "templating",
617
+ "themes",
618
+ "timber",
619
+ "twig",
620
+ "wordpress"
621
+ ],
622
+ "support": {
623
+ "docs": "https://timber.github.io/docs/",
624
+ "issues": "https://github.com/timber/timber/issues",
625
+ "source": "https://github.com/timber/timber"
626
+ },
627
+ "funding": [
628
+ {
629
+ "url": "https://opencollective.com/timber",
630
+ "type": "open_collective"
631
+ }
632
+ ],
633
+ "time": "2024-04-10T15:02:17+00:00"
634
+ },
635
+ {
636
+ "name": "twig/twig",
637
+ "version": "v3.11.0",
638
+ "source": {
639
+ "type": "git",
640
+ "url": "https://github.com/twigphp/Twig.git",
641
+ "reference": "e80fb8ebba85c7341a97a9ebf825d7fd4b77708d"
642
+ },
643
+ "dist": {
644
+ "type": "zip",
645
+ "url": "https://api.github.com/repos/twigphp/Twig/zipball/e80fb8ebba85c7341a97a9ebf825d7fd4b77708d",
646
+ "reference": "e80fb8ebba85c7341a97a9ebf825d7fd4b77708d",
647
+ "shasum": ""
648
+ },
649
+ "require": {
650
+ "php": ">=7.2.5",
651
+ "symfony/deprecation-contracts": "^2.5|^3",
652
+ "symfony/polyfill-ctype": "^1.8",
653
+ "symfony/polyfill-mbstring": "^1.3",
654
+ "symfony/polyfill-php80": "^1.22",
655
+ "symfony/polyfill-php81": "^1.29"
656
+ },
657
+ "require-dev": {
658
+ "psr/container": "^1.0|^2.0",
659
+ "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
660
+ },
661
+ "type": "library",
662
+ "autoload": {
663
+ "files": [
664
+ "src/Resources/core.php",
665
+ "src/Resources/debug.php",
666
+ "src/Resources/escaper.php",
667
+ "src/Resources/string_loader.php"
668
+ ],
669
+ "psr-4": {
670
+ "Twig\\": "src/"
671
+ }
672
+ },
673
+ "notification-url": "https://packagist.org/downloads/",
674
+ "license": [
675
+ "BSD-3-Clause"
676
+ ],
677
+ "authors": [
678
+ {
679
+ "name": "Fabien Potencier",
680
+ "email": "fabien@symfony.com",
681
+ "homepage": "http://fabien.potencier.org",
682
+ "role": "Lead Developer"
683
+ },
684
+ {
685
+ "name": "Twig Team",
686
+ "role": "Contributors"
687
+ },
688
+ {
689
+ "name": "Armin Ronacher",
690
+ "email": "armin.ronacher@active-4.com",
691
+ "role": "Project Founder"
692
+ }
693
+ ],
694
+ "description": "Twig, the flexible, fast, and secure template language for PHP",
695
+ "homepage": "https://twig.symfony.com",
696
+ "keywords": [
697
+ "templating"
698
+ ],
699
+ "support": {
700
+ "issues": "https://github.com/twigphp/Twig/issues",
701
+ "source": "https://github.com/twigphp/Twig/tree/v3.11.0"
702
+ },
703
+ "funding": [
704
+ {
705
+ "url": "https://github.com/fabpot",
706
+ "type": "github"
707
+ },
708
+ {
709
+ "url": "https://tidelift.com/funding/github/packagist/twig/twig",
710
+ "type": "tidelift"
711
+ }
712
+ ],
713
+ "time": "2024-08-08T16:15:16+00:00"
714
+ }
715
+ ],
716
+ "packages-dev": [
717
+ {
718
+ "name": "dealerdirect/phpcodesniffer-composer-installer",
719
+ "version": "v1.0.0",
720
+ "source": {
721
+ "type": "git",
722
+ "url": "https://github.com/PHPCSStandards/composer-installer.git",
723
+ "reference": "4be43904336affa5c2f70744a348312336afd0da"
724
+ },
725
+ "dist": {
726
+ "type": "zip",
727
+ "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/4be43904336affa5c2f70744a348312336afd0da",
728
+ "reference": "4be43904336affa5c2f70744a348312336afd0da",
729
+ "shasum": ""
730
+ },
731
+ "require": {
732
+ "composer-plugin-api": "^1.0 || ^2.0",
733
+ "php": ">=5.4",
734
+ "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
735
+ },
736
+ "require-dev": {
737
+ "composer/composer": "*",
738
+ "ext-json": "*",
739
+ "ext-zip": "*",
740
+ "php-parallel-lint/php-parallel-lint": "^1.3.1",
741
+ "phpcompatibility/php-compatibility": "^9.0",
742
+ "yoast/phpunit-polyfills": "^1.0"
743
+ },
744
+ "type": "composer-plugin",
745
+ "extra": {
746
+ "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
747
+ },
748
+ "autoload": {
749
+ "psr-4": {
750
+ "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
751
+ }
752
+ },
753
+ "notification-url": "https://packagist.org/downloads/",
754
+ "license": [
755
+ "MIT"
756
+ ],
757
+ "authors": [
758
+ {
759
+ "name": "Franck Nijhof",
760
+ "email": "franck.nijhof@dealerdirect.com",
761
+ "homepage": "http://www.frenck.nl",
762
+ "role": "Developer / IT Manager"
763
+ },
764
+ {
765
+ "name": "Contributors",
766
+ "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
767
+ }
768
+ ],
769
+ "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
770
+ "homepage": "http://www.dealerdirect.com",
771
+ "keywords": [
772
+ "PHPCodeSniffer",
773
+ "PHP_CodeSniffer",
774
+ "code quality",
775
+ "codesniffer",
776
+ "composer",
777
+ "installer",
778
+ "phpcbf",
779
+ "phpcs",
780
+ "plugin",
781
+ "qa",
782
+ "quality",
783
+ "standard",
784
+ "standards",
785
+ "style guide",
786
+ "stylecheck",
787
+ "tests"
788
+ ],
789
+ "support": {
790
+ "issues": "https://github.com/PHPCSStandards/composer-installer/issues",
791
+ "source": "https://github.com/PHPCSStandards/composer-installer"
792
+ },
793
+ "time": "2023-01-05T11:28:13+00:00"
794
+ },
795
+ {
796
+ "name": "friendsoftwig/twigcs",
797
+ "version": "v6.1.0",
798
+ "source": {
799
+ "type": "git",
800
+ "url": "https://github.com/friendsoftwig/twigcs.git",
801
+ "reference": "3c36d606c4f19db0dd2a01b735ec7a8151b7f182"
802
+ },
803
+ "dist": {
804
+ "type": "zip",
805
+ "url": "https://api.github.com/repos/friendsoftwig/twigcs/zipball/3c36d606c4f19db0dd2a01b735ec7a8151b7f182",
806
+ "reference": "3c36d606c4f19db0dd2a01b735ec7a8151b7f182",
807
+ "shasum": ""
808
+ },
809
+ "require": {
810
+ "ext-ctype": "*",
811
+ "ext-hash": "*",
812
+ "ext-json": "*",
813
+ "ext-mbstring": "*",
814
+ "ext-simplexml": "*",
815
+ "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0",
816
+ "symfony/console": "^4.4 || ^5.3 || ^6.0",
817
+ "symfony/filesystem": "^4.4 || ^5.3 || ^6.0",
818
+ "symfony/finder": "^4.4 || ^5.3 || ^6.0"
819
+ },
820
+ "require-dev": {
821
+ "phpunit/phpunit": "^9.5.20",
822
+ "symfony/phpunit-bridge": "^6.2.3"
823
+ },
824
+ "bin": [
825
+ "bin/twigcs"
826
+ ],
827
+ "type": "library",
828
+ "autoload": {
829
+ "psr-4": {
830
+ "FriendsOfTwig\\Twigcs\\": "src/"
831
+ }
832
+ },
833
+ "notification-url": "https://packagist.org/downloads/",
834
+ "license": [
835
+ "MIT"
836
+ ],
837
+ "authors": [
838
+ {
839
+ "name": "Tristan Maindron",
840
+ "email": "tmaindron@gmail.com"
841
+ }
842
+ ],
843
+ "description": "Checkstyle automation for Twig",
844
+ "support": {
845
+ "issues": "https://github.com/friendsoftwig/twigcs/issues",
846
+ "source": "https://github.com/friendsoftwig/twigcs/tree/v6.1.0"
847
+ },
848
+ "time": "2023-01-04T16:01:24+00:00"
849
+ },
850
+ {
851
+ "name": "phpcsstandards/phpcsextra",
852
+ "version": "1.2.1",
853
+ "source": {
854
+ "type": "git",
855
+ "url": "https://github.com/PHPCSStandards/PHPCSExtra.git",
856
+ "reference": "11d387c6642b6e4acaf0bd9bf5203b8cca1ec489"
857
+ },
858
+ "dist": {
859
+ "type": "zip",
860
+ "url": "https://api.github.com/repos/PHPCSStandards/PHPCSExtra/zipball/11d387c6642b6e4acaf0bd9bf5203b8cca1ec489",
861
+ "reference": "11d387c6642b6e4acaf0bd9bf5203b8cca1ec489",
862
+ "shasum": ""
863
+ },
864
+ "require": {
865
+ "php": ">=5.4",
866
+ "phpcsstandards/phpcsutils": "^1.0.9",
867
+ "squizlabs/php_codesniffer": "^3.8.0"
868
+ },
869
+ "require-dev": {
870
+ "php-parallel-lint/php-console-highlighter": "^1.0",
871
+ "php-parallel-lint/php-parallel-lint": "^1.3.2",
872
+ "phpcsstandards/phpcsdevcs": "^1.1.6",
873
+ "phpcsstandards/phpcsdevtools": "^1.2.1",
874
+ "phpunit/phpunit": "^4.5 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
875
+ },
876
+ "type": "phpcodesniffer-standard",
877
+ "extra": {
878
+ "branch-alias": {
879
+ "dev-stable": "1.x-dev",
880
+ "dev-develop": "1.x-dev"
881
+ }
882
+ },
883
+ "notification-url": "https://packagist.org/downloads/",
884
+ "license": [
885
+ "LGPL-3.0-or-later"
886
+ ],
887
+ "authors": [
888
+ {
889
+ "name": "Juliette Reinders Folmer",
890
+ "homepage": "https://github.com/jrfnl",
891
+ "role": "lead"
892
+ },
893
+ {
894
+ "name": "Contributors",
895
+ "homepage": "https://github.com/PHPCSStandards/PHPCSExtra/graphs/contributors"
896
+ }
897
+ ],
898
+ "description": "A collection of sniffs and standards for use with PHP_CodeSniffer.",
899
+ "keywords": [
900
+ "PHP_CodeSniffer",
901
+ "phpcbf",
902
+ "phpcodesniffer-standard",
903
+ "phpcs",
904
+ "standards",
905
+ "static analysis"
906
+ ],
907
+ "support": {
908
+ "issues": "https://github.com/PHPCSStandards/PHPCSExtra/issues",
909
+ "security": "https://github.com/PHPCSStandards/PHPCSExtra/security/policy",
910
+ "source": "https://github.com/PHPCSStandards/PHPCSExtra"
911
+ },
912
+ "funding": [
913
+ {
914
+ "url": "https://github.com/PHPCSStandards",
915
+ "type": "github"
916
+ },
917
+ {
918
+ "url": "https://github.com/jrfnl",
919
+ "type": "github"
920
+ },
921
+ {
922
+ "url": "https://opencollective.com/php_codesniffer",
923
+ "type": "open_collective"
924
+ }
925
+ ],
926
+ "time": "2023-12-08T16:49:07+00:00"
927
+ },
928
+ {
929
+ "name": "phpcsstandards/phpcsutils",
930
+ "version": "1.0.12",
931
+ "source": {
932
+ "type": "git",
933
+ "url": "https://github.com/PHPCSStandards/PHPCSUtils.git",
934
+ "reference": "87b233b00daf83fb70f40c9a28692be017ea7c6c"
935
+ },
936
+ "dist": {
937
+ "type": "zip",
938
+ "url": "https://api.github.com/repos/PHPCSStandards/PHPCSUtils/zipball/87b233b00daf83fb70f40c9a28692be017ea7c6c",
939
+ "reference": "87b233b00daf83fb70f40c9a28692be017ea7c6c",
940
+ "shasum": ""
941
+ },
942
+ "require": {
943
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.4.1 || ^0.5 || ^0.6.2 || ^0.7 || ^1.0",
944
+ "php": ">=5.4",
945
+ "squizlabs/php_codesniffer": "^3.10.0 || 4.0.x-dev@dev"
946
+ },
947
+ "require-dev": {
948
+ "ext-filter": "*",
949
+ "php-parallel-lint/php-console-highlighter": "^1.0",
950
+ "php-parallel-lint/php-parallel-lint": "^1.3.2",
951
+ "phpcsstandards/phpcsdevcs": "^1.1.6",
952
+ "yoast/phpunit-polyfills": "^1.1.0 || ^2.0.0"
953
+ },
954
+ "type": "phpcodesniffer-standard",
955
+ "extra": {
956
+ "branch-alias": {
957
+ "dev-stable": "1.x-dev",
958
+ "dev-develop": "1.x-dev"
959
+ }
960
+ },
961
+ "autoload": {
962
+ "classmap": [
963
+ "PHPCSUtils/"
964
+ ]
965
+ },
966
+ "notification-url": "https://packagist.org/downloads/",
967
+ "license": [
968
+ "LGPL-3.0-or-later"
969
+ ],
970
+ "authors": [
971
+ {
972
+ "name": "Juliette Reinders Folmer",
973
+ "homepage": "https://github.com/jrfnl",
974
+ "role": "lead"
975
+ },
976
+ {
977
+ "name": "Contributors",
978
+ "homepage": "https://github.com/PHPCSStandards/PHPCSUtils/graphs/contributors"
979
+ }
980
+ ],
981
+ "description": "A suite of utility functions for use with PHP_CodeSniffer",
982
+ "homepage": "https://phpcsutils.com/",
983
+ "keywords": [
984
+ "PHP_CodeSniffer",
985
+ "phpcbf",
986
+ "phpcodesniffer-standard",
987
+ "phpcs",
988
+ "phpcs3",
989
+ "standards",
990
+ "static analysis",
991
+ "tokens",
992
+ "utility"
993
+ ],
994
+ "support": {
995
+ "docs": "https://phpcsutils.com/",
996
+ "issues": "https://github.com/PHPCSStandards/PHPCSUtils/issues",
997
+ "security": "https://github.com/PHPCSStandards/PHPCSUtils/security/policy",
998
+ "source": "https://github.com/PHPCSStandards/PHPCSUtils"
999
+ },
1000
+ "funding": [
1001
+ {
1002
+ "url": "https://github.com/PHPCSStandards",
1003
+ "type": "github"
1004
+ },
1005
+ {
1006
+ "url": "https://github.com/jrfnl",
1007
+ "type": "github"
1008
+ },
1009
+ {
1010
+ "url": "https://opencollective.com/php_codesniffer",
1011
+ "type": "open_collective"
1012
+ }
1013
+ ],
1014
+ "time": "2024-05-20T13:34:27+00:00"
1015
+ },
1016
+ {
1017
+ "name": "psr/container",
1018
+ "version": "1.1.2",
1019
+ "source": {
1020
+ "type": "git",
1021
+ "url": "https://github.com/php-fig/container.git",
1022
+ "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
1023
+ },
1024
+ "dist": {
1025
+ "type": "zip",
1026
+ "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
1027
+ "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
1028
+ "shasum": ""
1029
+ },
1030
+ "require": {
1031
+ "php": ">=7.4.0"
1032
+ },
1033
+ "type": "library",
1034
+ "autoload": {
1035
+ "psr-4": {
1036
+ "Psr\\Container\\": "src/"
1037
+ }
1038
+ },
1039
+ "notification-url": "https://packagist.org/downloads/",
1040
+ "license": [
1041
+ "MIT"
1042
+ ],
1043
+ "authors": [
1044
+ {
1045
+ "name": "PHP-FIG",
1046
+ "homepage": "https://www.php-fig.org/"
1047
+ }
1048
+ ],
1049
+ "description": "Common Container Interface (PHP FIG PSR-11)",
1050
+ "homepage": "https://github.com/php-fig/container",
1051
+ "keywords": [
1052
+ "PSR-11",
1053
+ "container",
1054
+ "container-interface",
1055
+ "container-interop",
1056
+ "psr"
1057
+ ],
1058
+ "support": {
1059
+ "issues": "https://github.com/php-fig/container/issues",
1060
+ "source": "https://github.com/php-fig/container/tree/1.1.2"
1061
+ },
1062
+ "time": "2021-11-05T16:50:12+00:00"
1063
+ },
1064
+ {
1065
+ "name": "squizlabs/php_codesniffer",
1066
+ "version": "3.10.2",
1067
+ "source": {
1068
+ "type": "git",
1069
+ "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
1070
+ "reference": "86e5f5dd9a840c46810ebe5ff1885581c42a3017"
1071
+ },
1072
+ "dist": {
1073
+ "type": "zip",
1074
+ "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/86e5f5dd9a840c46810ebe5ff1885581c42a3017",
1075
+ "reference": "86e5f5dd9a840c46810ebe5ff1885581c42a3017",
1076
+ "shasum": ""
1077
+ },
1078
+ "require": {
1079
+ "ext-simplexml": "*",
1080
+ "ext-tokenizer": "*",
1081
+ "ext-xmlwriter": "*",
1082
+ "php": ">=5.4.0"
1083
+ },
1084
+ "require-dev": {
1085
+ "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
1086
+ },
1087
+ "bin": [
1088
+ "bin/phpcbf",
1089
+ "bin/phpcs"
1090
+ ],
1091
+ "type": "library",
1092
+ "extra": {
1093
+ "branch-alias": {
1094
+ "dev-master": "3.x-dev"
1095
+ }
1096
+ },
1097
+ "notification-url": "https://packagist.org/downloads/",
1098
+ "license": [
1099
+ "BSD-3-Clause"
1100
+ ],
1101
+ "authors": [
1102
+ {
1103
+ "name": "Greg Sherwood",
1104
+ "role": "Former lead"
1105
+ },
1106
+ {
1107
+ "name": "Juliette Reinders Folmer",
1108
+ "role": "Current lead"
1109
+ },
1110
+ {
1111
+ "name": "Contributors",
1112
+ "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
1113
+ }
1114
+ ],
1115
+ "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
1116
+ "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
1117
+ "keywords": [
1118
+ "phpcs",
1119
+ "standards",
1120
+ "static analysis"
1121
+ ],
1122
+ "support": {
1123
+ "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
1124
+ "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
1125
+ "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
1126
+ "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
1127
+ },
1128
+ "funding": [
1129
+ {
1130
+ "url": "https://github.com/PHPCSStandards",
1131
+ "type": "github"
1132
+ },
1133
+ {
1134
+ "url": "https://github.com/jrfnl",
1135
+ "type": "github"
1136
+ },
1137
+ {
1138
+ "url": "https://opencollective.com/php_codesniffer",
1139
+ "type": "open_collective"
1140
+ }
1141
+ ],
1142
+ "time": "2024-07-21T23:26:44+00:00"
1143
+ },
1144
+ {
1145
+ "name": "symfony/console",
1146
+ "version": "v5.4.42",
1147
+ "source": {
1148
+ "type": "git",
1149
+ "url": "https://github.com/symfony/console.git",
1150
+ "reference": "cef62396a0477e94fc52e87a17c6e5c32e226b7f"
1151
+ },
1152
+ "dist": {
1153
+ "type": "zip",
1154
+ "url": "https://api.github.com/repos/symfony/console/zipball/cef62396a0477e94fc52e87a17c6e5c32e226b7f",
1155
+ "reference": "cef62396a0477e94fc52e87a17c6e5c32e226b7f",
1156
+ "shasum": ""
1157
+ },
1158
+ "require": {
1159
+ "php": ">=7.2.5",
1160
+ "symfony/deprecation-contracts": "^2.1|^3",
1161
+ "symfony/polyfill-mbstring": "~1.0",
1162
+ "symfony/polyfill-php73": "^1.9",
1163
+ "symfony/polyfill-php80": "^1.16",
1164
+ "symfony/service-contracts": "^1.1|^2|^3",
1165
+ "symfony/string": "^5.1|^6.0"
1166
+ },
1167
+ "conflict": {
1168
+ "psr/log": ">=3",
1169
+ "symfony/dependency-injection": "<4.4",
1170
+ "symfony/dotenv": "<5.1",
1171
+ "symfony/event-dispatcher": "<4.4",
1172
+ "symfony/lock": "<4.4",
1173
+ "symfony/process": "<4.4"
1174
+ },
1175
+ "provide": {
1176
+ "psr/log-implementation": "1.0|2.0"
1177
+ },
1178
+ "require-dev": {
1179
+ "psr/log": "^1|^2",
1180
+ "symfony/config": "^4.4|^5.0|^6.0",
1181
+ "symfony/dependency-injection": "^4.4|^5.0|^6.0",
1182
+ "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
1183
+ "symfony/lock": "^4.4|^5.0|^6.0",
1184
+ "symfony/process": "^4.4|^5.0|^6.0",
1185
+ "symfony/var-dumper": "^4.4|^5.0|^6.0"
1186
+ },
1187
+ "suggest": {
1188
+ "psr/log": "For using the console logger",
1189
+ "symfony/event-dispatcher": "",
1190
+ "symfony/lock": "",
1191
+ "symfony/process": ""
1192
+ },
1193
+ "type": "library",
1194
+ "autoload": {
1195
+ "psr-4": {
1196
+ "Symfony\\Component\\Console\\": ""
1197
+ },
1198
+ "exclude-from-classmap": [
1199
+ "/Tests/"
1200
+ ]
1201
+ },
1202
+ "notification-url": "https://packagist.org/downloads/",
1203
+ "license": [
1204
+ "MIT"
1205
+ ],
1206
+ "authors": [
1207
+ {
1208
+ "name": "Fabien Potencier",
1209
+ "email": "fabien@symfony.com"
1210
+ },
1211
+ {
1212
+ "name": "Symfony Community",
1213
+ "homepage": "https://symfony.com/contributors"
1214
+ }
1215
+ ],
1216
+ "description": "Eases the creation of beautiful and testable command line interfaces",
1217
+ "homepage": "https://symfony.com",
1218
+ "keywords": [
1219
+ "cli",
1220
+ "command-line",
1221
+ "console",
1222
+ "terminal"
1223
+ ],
1224
+ "support": {
1225
+ "source": "https://github.com/symfony/console/tree/v5.4.42"
1226
+ },
1227
+ "funding": [
1228
+ {
1229
+ "url": "https://symfony.com/sponsor",
1230
+ "type": "custom"
1231
+ },
1232
+ {
1233
+ "url": "https://github.com/fabpot",
1234
+ "type": "github"
1235
+ },
1236
+ {
1237
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1238
+ "type": "tidelift"
1239
+ }
1240
+ ],
1241
+ "time": "2024-07-26T12:21:55+00:00"
1242
+ },
1243
+ {
1244
+ "name": "symfony/filesystem",
1245
+ "version": "v5.4.41",
1246
+ "source": {
1247
+ "type": "git",
1248
+ "url": "https://github.com/symfony/filesystem.git",
1249
+ "reference": "6d29dd9340b372fa603f04e6df4dd76bb808591e"
1250
+ },
1251
+ "dist": {
1252
+ "type": "zip",
1253
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/6d29dd9340b372fa603f04e6df4dd76bb808591e",
1254
+ "reference": "6d29dd9340b372fa603f04e6df4dd76bb808591e",
1255
+ "shasum": ""
1256
+ },
1257
+ "require": {
1258
+ "php": ">=7.2.5",
1259
+ "symfony/polyfill-ctype": "~1.8",
1260
+ "symfony/polyfill-mbstring": "~1.8",
1261
+ "symfony/polyfill-php80": "^1.16"
1262
+ },
1263
+ "require-dev": {
1264
+ "symfony/process": "^5.4|^6.4"
1265
+ },
1266
+ "type": "library",
1267
+ "autoload": {
1268
+ "psr-4": {
1269
+ "Symfony\\Component\\Filesystem\\": ""
1270
+ },
1271
+ "exclude-from-classmap": [
1272
+ "/Tests/"
1273
+ ]
1274
+ },
1275
+ "notification-url": "https://packagist.org/downloads/",
1276
+ "license": [
1277
+ "MIT"
1278
+ ],
1279
+ "authors": [
1280
+ {
1281
+ "name": "Fabien Potencier",
1282
+ "email": "fabien@symfony.com"
1283
+ },
1284
+ {
1285
+ "name": "Symfony Community",
1286
+ "homepage": "https://symfony.com/contributors"
1287
+ }
1288
+ ],
1289
+ "description": "Provides basic utilities for the filesystem",
1290
+ "homepage": "https://symfony.com",
1291
+ "support": {
1292
+ "source": "https://github.com/symfony/filesystem/tree/v5.4.41"
1293
+ },
1294
+ "funding": [
1295
+ {
1296
+ "url": "https://symfony.com/sponsor",
1297
+ "type": "custom"
1298
+ },
1299
+ {
1300
+ "url": "https://github.com/fabpot",
1301
+ "type": "github"
1302
+ },
1303
+ {
1304
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1305
+ "type": "tidelift"
1306
+ }
1307
+ ],
1308
+ "time": "2024-06-28T09:36:24+00:00"
1309
+ },
1310
+ {
1311
+ "name": "symfony/finder",
1312
+ "version": "v5.4.42",
1313
+ "source": {
1314
+ "type": "git",
1315
+ "url": "https://github.com/symfony/finder.git",
1316
+ "reference": "0724c51fa067b198e36506d2864e09a52180998a"
1317
+ },
1318
+ "dist": {
1319
+ "type": "zip",
1320
+ "url": "https://api.github.com/repos/symfony/finder/zipball/0724c51fa067b198e36506d2864e09a52180998a",
1321
+ "reference": "0724c51fa067b198e36506d2864e09a52180998a",
1322
+ "shasum": ""
1323
+ },
1324
+ "require": {
1325
+ "php": ">=7.2.5",
1326
+ "symfony/deprecation-contracts": "^2.1|^3",
1327
+ "symfony/polyfill-php80": "^1.16"
1328
+ },
1329
+ "type": "library",
1330
+ "autoload": {
1331
+ "psr-4": {
1332
+ "Symfony\\Component\\Finder\\": ""
1333
+ },
1334
+ "exclude-from-classmap": [
1335
+ "/Tests/"
1336
+ ]
1337
+ },
1338
+ "notification-url": "https://packagist.org/downloads/",
1339
+ "license": [
1340
+ "MIT"
1341
+ ],
1342
+ "authors": [
1343
+ {
1344
+ "name": "Fabien Potencier",
1345
+ "email": "fabien@symfony.com"
1346
+ },
1347
+ {
1348
+ "name": "Symfony Community",
1349
+ "homepage": "https://symfony.com/contributors"
1350
+ }
1351
+ ],
1352
+ "description": "Finds files and directories via an intuitive fluent interface",
1353
+ "homepage": "https://symfony.com",
1354
+ "support": {
1355
+ "source": "https://github.com/symfony/finder/tree/v5.4.42"
1356
+ },
1357
+ "funding": [
1358
+ {
1359
+ "url": "https://symfony.com/sponsor",
1360
+ "type": "custom"
1361
+ },
1362
+ {
1363
+ "url": "https://github.com/fabpot",
1364
+ "type": "github"
1365
+ },
1366
+ {
1367
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1368
+ "type": "tidelift"
1369
+ }
1370
+ ],
1371
+ "time": "2024-07-22T08:53:29+00:00"
1372
+ },
1373
+ {
1374
+ "name": "symfony/polyfill-intl-grapheme",
1375
+ "version": "v1.30.0",
1376
+ "source": {
1377
+ "type": "git",
1378
+ "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
1379
+ "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a"
1380
+ },
1381
+ "dist": {
1382
+ "type": "zip",
1383
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a",
1384
+ "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a",
1385
+ "shasum": ""
1386
+ },
1387
+ "require": {
1388
+ "php": ">=7.1"
1389
+ },
1390
+ "suggest": {
1391
+ "ext-intl": "For best performance"
1392
+ },
1393
+ "type": "library",
1394
+ "extra": {
1395
+ "thanks": {
1396
+ "name": "symfony/polyfill",
1397
+ "url": "https://github.com/symfony/polyfill"
1398
+ }
1399
+ },
1400
+ "autoload": {
1401
+ "files": [
1402
+ "bootstrap.php"
1403
+ ],
1404
+ "psr-4": {
1405
+ "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
1406
+ }
1407
+ },
1408
+ "notification-url": "https://packagist.org/downloads/",
1409
+ "license": [
1410
+ "MIT"
1411
+ ],
1412
+ "authors": [
1413
+ {
1414
+ "name": "Nicolas Grekas",
1415
+ "email": "p@tchwork.com"
1416
+ },
1417
+ {
1418
+ "name": "Symfony Community",
1419
+ "homepage": "https://symfony.com/contributors"
1420
+ }
1421
+ ],
1422
+ "description": "Symfony polyfill for intl's grapheme_* functions",
1423
+ "homepage": "https://symfony.com",
1424
+ "keywords": [
1425
+ "compatibility",
1426
+ "grapheme",
1427
+ "intl",
1428
+ "polyfill",
1429
+ "portable",
1430
+ "shim"
1431
+ ],
1432
+ "support": {
1433
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0"
1434
+ },
1435
+ "funding": [
1436
+ {
1437
+ "url": "https://symfony.com/sponsor",
1438
+ "type": "custom"
1439
+ },
1440
+ {
1441
+ "url": "https://github.com/fabpot",
1442
+ "type": "github"
1443
+ },
1444
+ {
1445
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1446
+ "type": "tidelift"
1447
+ }
1448
+ ],
1449
+ "time": "2024-05-31T15:07:36+00:00"
1450
+ },
1451
+ {
1452
+ "name": "symfony/polyfill-intl-normalizer",
1453
+ "version": "v1.30.0",
1454
+ "source": {
1455
+ "type": "git",
1456
+ "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
1457
+ "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb"
1458
+ },
1459
+ "dist": {
1460
+ "type": "zip",
1461
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb",
1462
+ "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb",
1463
+ "shasum": ""
1464
+ },
1465
+ "require": {
1466
+ "php": ">=7.1"
1467
+ },
1468
+ "suggest": {
1469
+ "ext-intl": "For best performance"
1470
+ },
1471
+ "type": "library",
1472
+ "extra": {
1473
+ "thanks": {
1474
+ "name": "symfony/polyfill",
1475
+ "url": "https://github.com/symfony/polyfill"
1476
+ }
1477
+ },
1478
+ "autoload": {
1479
+ "files": [
1480
+ "bootstrap.php"
1481
+ ],
1482
+ "psr-4": {
1483
+ "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
1484
+ },
1485
+ "classmap": [
1486
+ "Resources/stubs"
1487
+ ]
1488
+ },
1489
+ "notification-url": "https://packagist.org/downloads/",
1490
+ "license": [
1491
+ "MIT"
1492
+ ],
1493
+ "authors": [
1494
+ {
1495
+ "name": "Nicolas Grekas",
1496
+ "email": "p@tchwork.com"
1497
+ },
1498
+ {
1499
+ "name": "Symfony Community",
1500
+ "homepage": "https://symfony.com/contributors"
1501
+ }
1502
+ ],
1503
+ "description": "Symfony polyfill for intl's Normalizer class and related functions",
1504
+ "homepage": "https://symfony.com",
1505
+ "keywords": [
1506
+ "compatibility",
1507
+ "intl",
1508
+ "normalizer",
1509
+ "polyfill",
1510
+ "portable",
1511
+ "shim"
1512
+ ],
1513
+ "support": {
1514
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0"
1515
+ },
1516
+ "funding": [
1517
+ {
1518
+ "url": "https://symfony.com/sponsor",
1519
+ "type": "custom"
1520
+ },
1521
+ {
1522
+ "url": "https://github.com/fabpot",
1523
+ "type": "github"
1524
+ },
1525
+ {
1526
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1527
+ "type": "tidelift"
1528
+ }
1529
+ ],
1530
+ "time": "2024-05-31T15:07:36+00:00"
1531
+ },
1532
+ {
1533
+ "name": "symfony/polyfill-php73",
1534
+ "version": "v1.30.0",
1535
+ "source": {
1536
+ "type": "git",
1537
+ "url": "https://github.com/symfony/polyfill-php73.git",
1538
+ "reference": "ec444d3f3f6505bb28d11afa41e75faadebc10a1"
1539
+ },
1540
+ "dist": {
1541
+ "type": "zip",
1542
+ "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/ec444d3f3f6505bb28d11afa41e75faadebc10a1",
1543
+ "reference": "ec444d3f3f6505bb28d11afa41e75faadebc10a1",
1544
+ "shasum": ""
1545
+ },
1546
+ "require": {
1547
+ "php": ">=7.1"
1548
+ },
1549
+ "type": "library",
1550
+ "extra": {
1551
+ "thanks": {
1552
+ "name": "symfony/polyfill",
1553
+ "url": "https://github.com/symfony/polyfill"
1554
+ }
1555
+ },
1556
+ "autoload": {
1557
+ "files": [
1558
+ "bootstrap.php"
1559
+ ],
1560
+ "psr-4": {
1561
+ "Symfony\\Polyfill\\Php73\\": ""
1562
+ },
1563
+ "classmap": [
1564
+ "Resources/stubs"
1565
+ ]
1566
+ },
1567
+ "notification-url": "https://packagist.org/downloads/",
1568
+ "license": [
1569
+ "MIT"
1570
+ ],
1571
+ "authors": [
1572
+ {
1573
+ "name": "Nicolas Grekas",
1574
+ "email": "p@tchwork.com"
1575
+ },
1576
+ {
1577
+ "name": "Symfony Community",
1578
+ "homepage": "https://symfony.com/contributors"
1579
+ }
1580
+ ],
1581
+ "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
1582
+ "homepage": "https://symfony.com",
1583
+ "keywords": [
1584
+ "compatibility",
1585
+ "polyfill",
1586
+ "portable",
1587
+ "shim"
1588
+ ],
1589
+ "support": {
1590
+ "source": "https://github.com/symfony/polyfill-php73/tree/v1.30.0"
1591
+ },
1592
+ "funding": [
1593
+ {
1594
+ "url": "https://symfony.com/sponsor",
1595
+ "type": "custom"
1596
+ },
1597
+ {
1598
+ "url": "https://github.com/fabpot",
1599
+ "type": "github"
1600
+ },
1601
+ {
1602
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1603
+ "type": "tidelift"
1604
+ }
1605
+ ],
1606
+ "time": "2024-05-31T15:07:36+00:00"
1607
+ },
1608
+ {
1609
+ "name": "symfony/service-contracts",
1610
+ "version": "v2.5.3",
1611
+ "source": {
1612
+ "type": "git",
1613
+ "url": "https://github.com/symfony/service-contracts.git",
1614
+ "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3"
1615
+ },
1616
+ "dist": {
1617
+ "type": "zip",
1618
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a2329596ddc8fd568900e3fc76cba42489ecc7f3",
1619
+ "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3",
1620
+ "shasum": ""
1621
+ },
1622
+ "require": {
1623
+ "php": ">=7.2.5",
1624
+ "psr/container": "^1.1",
1625
+ "symfony/deprecation-contracts": "^2.1|^3"
1626
+ },
1627
+ "conflict": {
1628
+ "ext-psr": "<1.1|>=2"
1629
+ },
1630
+ "suggest": {
1631
+ "symfony/service-implementation": ""
1632
+ },
1633
+ "type": "library",
1634
+ "extra": {
1635
+ "branch-alias": {
1636
+ "dev-main": "2.5-dev"
1637
+ },
1638
+ "thanks": {
1639
+ "name": "symfony/contracts",
1640
+ "url": "https://github.com/symfony/contracts"
1641
+ }
1642
+ },
1643
+ "autoload": {
1644
+ "psr-4": {
1645
+ "Symfony\\Contracts\\Service\\": ""
1646
+ }
1647
+ },
1648
+ "notification-url": "https://packagist.org/downloads/",
1649
+ "license": [
1650
+ "MIT"
1651
+ ],
1652
+ "authors": [
1653
+ {
1654
+ "name": "Nicolas Grekas",
1655
+ "email": "p@tchwork.com"
1656
+ },
1657
+ {
1658
+ "name": "Symfony Community",
1659
+ "homepage": "https://symfony.com/contributors"
1660
+ }
1661
+ ],
1662
+ "description": "Generic abstractions related to writing services",
1663
+ "homepage": "https://symfony.com",
1664
+ "keywords": [
1665
+ "abstractions",
1666
+ "contracts",
1667
+ "decoupling",
1668
+ "interfaces",
1669
+ "interoperability",
1670
+ "standards"
1671
+ ],
1672
+ "support": {
1673
+ "source": "https://github.com/symfony/service-contracts/tree/v2.5.3"
1674
+ },
1675
+ "funding": [
1676
+ {
1677
+ "url": "https://symfony.com/sponsor",
1678
+ "type": "custom"
1679
+ },
1680
+ {
1681
+ "url": "https://github.com/fabpot",
1682
+ "type": "github"
1683
+ },
1684
+ {
1685
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1686
+ "type": "tidelift"
1687
+ }
1688
+ ],
1689
+ "time": "2023-04-21T15:04:16+00:00"
1690
+ },
1691
+ {
1692
+ "name": "symfony/string",
1693
+ "version": "v5.4.42",
1694
+ "source": {
1695
+ "type": "git",
1696
+ "url": "https://github.com/symfony/string.git",
1697
+ "reference": "909cec913edea162a3b2836788228ad45fcab337"
1698
+ },
1699
+ "dist": {
1700
+ "type": "zip",
1701
+ "url": "https://api.github.com/repos/symfony/string/zipball/909cec913edea162a3b2836788228ad45fcab337",
1702
+ "reference": "909cec913edea162a3b2836788228ad45fcab337",
1703
+ "shasum": ""
1704
+ },
1705
+ "require": {
1706
+ "php": ">=7.2.5",
1707
+ "symfony/polyfill-ctype": "~1.8",
1708
+ "symfony/polyfill-intl-grapheme": "~1.0",
1709
+ "symfony/polyfill-intl-normalizer": "~1.0",
1710
+ "symfony/polyfill-mbstring": "~1.0",
1711
+ "symfony/polyfill-php80": "~1.15"
1712
+ },
1713
+ "conflict": {
1714
+ "symfony/translation-contracts": ">=3.0"
1715
+ },
1716
+ "require-dev": {
1717
+ "symfony/error-handler": "^4.4|^5.0|^6.0",
1718
+ "symfony/http-client": "^4.4|^5.0|^6.0",
1719
+ "symfony/translation-contracts": "^1.1|^2",
1720
+ "symfony/var-exporter": "^4.4|^5.0|^6.0"
1721
+ },
1722
+ "type": "library",
1723
+ "autoload": {
1724
+ "files": [
1725
+ "Resources/functions.php"
1726
+ ],
1727
+ "psr-4": {
1728
+ "Symfony\\Component\\String\\": ""
1729
+ },
1730
+ "exclude-from-classmap": [
1731
+ "/Tests/"
1732
+ ]
1733
+ },
1734
+ "notification-url": "https://packagist.org/downloads/",
1735
+ "license": [
1736
+ "MIT"
1737
+ ],
1738
+ "authors": [
1739
+ {
1740
+ "name": "Nicolas Grekas",
1741
+ "email": "p@tchwork.com"
1742
+ },
1743
+ {
1744
+ "name": "Symfony Community",
1745
+ "homepage": "https://symfony.com/contributors"
1746
+ }
1747
+ ],
1748
+ "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
1749
+ "homepage": "https://symfony.com",
1750
+ "keywords": [
1751
+ "grapheme",
1752
+ "i18n",
1753
+ "string",
1754
+ "unicode",
1755
+ "utf-8",
1756
+ "utf8"
1757
+ ],
1758
+ "support": {
1759
+ "source": "https://github.com/symfony/string/tree/v5.4.42"
1760
+ },
1761
+ "funding": [
1762
+ {
1763
+ "url": "https://symfony.com/sponsor",
1764
+ "type": "custom"
1765
+ },
1766
+ {
1767
+ "url": "https://github.com/fabpot",
1768
+ "type": "github"
1769
+ },
1770
+ {
1771
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1772
+ "type": "tidelift"
1773
+ }
1774
+ ],
1775
+ "time": "2024-07-20T18:38:32+00:00"
1776
+ },
1777
+ {
1778
+ "name": "symfony/translation-contracts",
1779
+ "version": "v2.5.3",
1780
+ "source": {
1781
+ "type": "git",
1782
+ "url": "https://github.com/symfony/translation-contracts.git",
1783
+ "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664"
1784
+ },
1785
+ "dist": {
1786
+ "type": "zip",
1787
+ "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b0073a77ac0b7ea55131020e87b1e3af540f4664",
1788
+ "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664",
1789
+ "shasum": ""
1790
+ },
1791
+ "require": {
1792
+ "php": ">=7.2.5"
1793
+ },
1794
+ "suggest": {
1795
+ "symfony/translation-implementation": ""
1796
+ },
1797
+ "type": "library",
1798
+ "extra": {
1799
+ "branch-alias": {
1800
+ "dev-main": "2.5-dev"
1801
+ },
1802
+ "thanks": {
1803
+ "name": "symfony/contracts",
1804
+ "url": "https://github.com/symfony/contracts"
1805
+ }
1806
+ },
1807
+ "autoload": {
1808
+ "psr-4": {
1809
+ "Symfony\\Contracts\\Translation\\": ""
1810
+ }
1811
+ },
1812
+ "notification-url": "https://packagist.org/downloads/",
1813
+ "license": [
1814
+ "MIT"
1815
+ ],
1816
+ "authors": [
1817
+ {
1818
+ "name": "Nicolas Grekas",
1819
+ "email": "p@tchwork.com"
1820
+ },
1821
+ {
1822
+ "name": "Symfony Community",
1823
+ "homepage": "https://symfony.com/contributors"
1824
+ }
1825
+ ],
1826
+ "description": "Generic abstractions related to translation",
1827
+ "homepage": "https://symfony.com",
1828
+ "keywords": [
1829
+ "abstractions",
1830
+ "contracts",
1831
+ "decoupling",
1832
+ "interfaces",
1833
+ "interoperability",
1834
+ "standards"
1835
+ ],
1836
+ "support": {
1837
+ "source": "https://github.com/symfony/translation-contracts/tree/v2.5.3"
1838
+ },
1839
+ "funding": [
1840
+ {
1841
+ "url": "https://symfony.com/sponsor",
1842
+ "type": "custom"
1843
+ },
1844
+ {
1845
+ "url": "https://github.com/fabpot",
1846
+ "type": "github"
1847
+ },
1848
+ {
1849
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1850
+ "type": "tidelift"
1851
+ }
1852
+ ],
1853
+ "time": "2024-01-23T13:51:25+00:00"
1854
+ },
1855
+ {
1856
+ "name": "symfony/twig-bridge",
1857
+ "version": "v5.4.41",
1858
+ "source": {
1859
+ "type": "git",
1860
+ "url": "https://github.com/symfony/twig-bridge.git",
1861
+ "reference": "d7b10dad12c49863c20c7f8e4cc74b9416eefbb9"
1862
+ },
1863
+ "dist": {
1864
+ "type": "zip",
1865
+ "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/d7b10dad12c49863c20c7f8e4cc74b9416eefbb9",
1866
+ "reference": "d7b10dad12c49863c20c7f8e4cc74b9416eefbb9",
1867
+ "shasum": ""
1868
+ },
1869
+ "require": {
1870
+ "php": ">=7.2.5",
1871
+ "symfony/polyfill-php80": "^1.16",
1872
+ "symfony/translation-contracts": "^1.1|^2|^3",
1873
+ "twig/twig": "^2.13|^3.0.4"
1874
+ },
1875
+ "conflict": {
1876
+ "phpdocumentor/reflection-docblock": "<3.2.2",
1877
+ "phpdocumentor/type-resolver": "<1.4.0",
1878
+ "symfony/console": "<5.3",
1879
+ "symfony/form": "<5.4.21|>=6,<6.2.7",
1880
+ "symfony/http-foundation": "<5.3",
1881
+ "symfony/http-kernel": "<4.4",
1882
+ "symfony/translation": "<5.2",
1883
+ "symfony/workflow": "<5.2"
1884
+ },
1885
+ "require-dev": {
1886
+ "doctrine/annotations": "^1.12|^2",
1887
+ "egulias/email-validator": "^2.1.10|^3|^4",
1888
+ "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
1889
+ "symfony/asset": "^4.4|^5.0|^6.0",
1890
+ "symfony/console": "^5.3|^6.0",
1891
+ "symfony/dependency-injection": "^4.4|^5.0|^6.0",
1892
+ "symfony/expression-language": "^4.4|^5.0|^6.0",
1893
+ "symfony/finder": "^4.4|^5.0|^6.0",
1894
+ "symfony/form": "^5.4.21|^6.2.7",
1895
+ "symfony/http-foundation": "^5.3|^6.0",
1896
+ "symfony/http-kernel": "^4.4|^5.0|^6.0",
1897
+ "symfony/intl": "^4.4|^5.0|^6.0",
1898
+ "symfony/mime": "^5.2|^6.0",
1899
+ "symfony/polyfill-intl-icu": "~1.0",
1900
+ "symfony/property-info": "^4.4|^5.1|^6.0",
1901
+ "symfony/routing": "^4.4|^5.0|^6.0",
1902
+ "symfony/security-acl": "^2.8|^3.0",
1903
+ "symfony/security-core": "^4.4|^5.0|^6.0",
1904
+ "symfony/security-csrf": "^4.4|^5.0|^6.0",
1905
+ "symfony/security-http": "^4.4|^5.0|^6.0",
1906
+ "symfony/serializer": "^5.4.35|~6.3.12|^6.4.3",
1907
+ "symfony/stopwatch": "^4.4|^5.0|^6.0",
1908
+ "symfony/translation": "^5.2|^6.0",
1909
+ "symfony/web-link": "^4.4|^5.0|^6.0",
1910
+ "symfony/workflow": "^5.2|^6.0",
1911
+ "symfony/yaml": "^4.4|^5.0|^6.0",
1912
+ "twig/cssinliner-extra": "^2.12|^3",
1913
+ "twig/inky-extra": "^2.12|^3",
1914
+ "twig/markdown-extra": "^2.12|^3"
1915
+ },
1916
+ "suggest": {
1917
+ "symfony/asset": "For using the AssetExtension",
1918
+ "symfony/expression-language": "For using the ExpressionExtension",
1919
+ "symfony/finder": "",
1920
+ "symfony/form": "For using the FormExtension",
1921
+ "symfony/http-kernel": "For using the HttpKernelExtension",
1922
+ "symfony/routing": "For using the RoutingExtension",
1923
+ "symfony/security-core": "For using the SecurityExtension",
1924
+ "symfony/security-csrf": "For using the CsrfExtension",
1925
+ "symfony/security-http": "For using the LogoutUrlExtension",
1926
+ "symfony/stopwatch": "For using the StopwatchExtension",
1927
+ "symfony/translation": "For using the TranslationExtension",
1928
+ "symfony/var-dumper": "For using the DumpExtension",
1929
+ "symfony/web-link": "For using the WebLinkExtension",
1930
+ "symfony/yaml": "For using the YamlExtension"
1931
+ },
1932
+ "type": "symfony-bridge",
1933
+ "autoload": {
1934
+ "psr-4": {
1935
+ "Symfony\\Bridge\\Twig\\": ""
1936
+ },
1937
+ "exclude-from-classmap": [
1938
+ "/Tests/"
1939
+ ]
1940
+ },
1941
+ "notification-url": "https://packagist.org/downloads/",
1942
+ "license": [
1943
+ "MIT"
1944
+ ],
1945
+ "authors": [
1946
+ {
1947
+ "name": "Fabien Potencier",
1948
+ "email": "fabien@symfony.com"
1949
+ },
1950
+ {
1951
+ "name": "Symfony Community",
1952
+ "homepage": "https://symfony.com/contributors"
1953
+ }
1954
+ ],
1955
+ "description": "Provides integration for Twig with various Symfony components",
1956
+ "homepage": "https://symfony.com",
1957
+ "support": {
1958
+ "source": "https://github.com/symfony/twig-bridge/tree/v5.4.41"
1959
+ },
1960
+ "funding": [
1961
+ {
1962
+ "url": "https://symfony.com/sponsor",
1963
+ "type": "custom"
1964
+ },
1965
+ {
1966
+ "url": "https://github.com/fabpot",
1967
+ "type": "github"
1968
+ },
1969
+ {
1970
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1971
+ "type": "tidelift"
1972
+ }
1973
+ ],
1974
+ "time": "2024-06-09T18:59:35+00:00"
1975
+ },
1976
+ {
1977
+ "name": "vincentlanglet/twig-cs-fixer",
1978
+ "version": "0.6.1",
1979
+ "source": {
1980
+ "type": "git",
1981
+ "url": "https://github.com/VincentLanglet/Twig-CS-Fixer.git",
1982
+ "reference": "8b04afee8909a51a48b5f8b78b5f2b8ad68735fe"
1983
+ },
1984
+ "dist": {
1985
+ "type": "zip",
1986
+ "url": "https://api.github.com/repos/VincentLanglet/Twig-CS-Fixer/zipball/8b04afee8909a51a48b5f8b78b5f2b8ad68735fe",
1987
+ "reference": "8b04afee8909a51a48b5f8b78b5f2b8ad68735fe",
1988
+ "shasum": ""
1989
+ },
1990
+ "require": {
1991
+ "ext-json": "*",
1992
+ "ext-mbstring": "*",
1993
+ "php": ">=7.4",
1994
+ "symfony/console": "^5.4.9 || ^6.0",
1995
+ "symfony/finder": "^5.4 || ^6.0",
1996
+ "symfony/twig-bridge": "^5.4 || ^6.0",
1997
+ "twig/twig": "^2.13.1 || ^3.0.5",
1998
+ "webmozart/assert": "^1.7"
1999
+ },
2000
+ "require-dev": {
2001
+ "friendsofphp/php-cs-fixer": "^3.9.5",
2002
+ "infection/infection": "^0.26.6",
2003
+ "phpstan/phpstan": "^1.8.2",
2004
+ "phpstan/phpstan-phpunit": "^1.1.1",
2005
+ "phpstan/phpstan-strict-rules": "^1.3.0",
2006
+ "phpstan/phpstan-symfony": "^1.2.9",
2007
+ "phpstan/phpstan-webmozart-assert": "^1.2",
2008
+ "phpunit/phpunit": "^9.5.21",
2009
+ "psalm/plugin-phpunit": "^0.16.1",
2010
+ "psalm/plugin-symfony": "^3.1.8",
2011
+ "rector/rector": "^0.13.10",
2012
+ "twig/cache-extra": "^3.2",
2013
+ "vimeo/psalm": "^4.25.0"
2014
+ },
2015
+ "bin": [
2016
+ "bin/twig-cs-fixer"
2017
+ ],
2018
+ "type": "coding-standard",
2019
+ "autoload": {
2020
+ "psr-4": {
2021
+ "TwigCsFixer\\": "src/"
2022
+ }
2023
+ },
2024
+ "notification-url": "https://packagist.org/downloads/",
2025
+ "license": [
2026
+ "MIT"
2027
+ ],
2028
+ "authors": [
2029
+ {
2030
+ "name": "Vincent Langlet"
2031
+ }
2032
+ ],
2033
+ "description": "A tool to automatically fix Twig code style",
2034
+ "homepage": "https://github.com/VincentLanglet/Twig-CS-Fixer",
2035
+ "support": {
2036
+ "issues": "https://github.com/VincentLanglet/Twig-CS-Fixer/issues",
2037
+ "source": "https://github.com/VincentLanglet/Twig-CS-Fixer/tree/0.6.1"
2038
+ },
2039
+ "funding": [
2040
+ {
2041
+ "url": "https://github.com/VincentLanglet",
2042
+ "type": "github"
2043
+ }
2044
+ ],
2045
+ "time": "2022-11-11T14:43:54+00:00"
2046
+ },
2047
+ {
2048
+ "name": "webmozart/assert",
2049
+ "version": "1.11.0",
2050
+ "source": {
2051
+ "type": "git",
2052
+ "url": "https://github.com/webmozarts/assert.git",
2053
+ "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
2054
+ },
2055
+ "dist": {
2056
+ "type": "zip",
2057
+ "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
2058
+ "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
2059
+ "shasum": ""
2060
+ },
2061
+ "require": {
2062
+ "ext-ctype": "*",
2063
+ "php": "^7.2 || ^8.0"
2064
+ },
2065
+ "conflict": {
2066
+ "phpstan/phpstan": "<0.12.20",
2067
+ "vimeo/psalm": "<4.6.1 || 4.6.2"
2068
+ },
2069
+ "require-dev": {
2070
+ "phpunit/phpunit": "^8.5.13"
2071
+ },
2072
+ "type": "library",
2073
+ "extra": {
2074
+ "branch-alias": {
2075
+ "dev-master": "1.10-dev"
2076
+ }
2077
+ },
2078
+ "autoload": {
2079
+ "psr-4": {
2080
+ "Webmozart\\Assert\\": "src/"
2081
+ }
2082
+ },
2083
+ "notification-url": "https://packagist.org/downloads/",
2084
+ "license": [
2085
+ "MIT"
2086
+ ],
2087
+ "authors": [
2088
+ {
2089
+ "name": "Bernhard Schussek",
2090
+ "email": "bschussek@gmail.com"
2091
+ }
2092
+ ],
2093
+ "description": "Assertions to validate method input/output with nice error messages.",
2094
+ "keywords": [
2095
+ "assert",
2096
+ "check",
2097
+ "validate"
2098
+ ],
2099
+ "support": {
2100
+ "issues": "https://github.com/webmozarts/assert/issues",
2101
+ "source": "https://github.com/webmozarts/assert/tree/1.11.0"
2102
+ },
2103
+ "time": "2022-06-03T18:03:27+00:00"
2104
+ },
2105
+ {
2106
+ "name": "wp-coding-standards/wpcs",
2107
+ "version": "3.1.0",
2108
+ "source": {
2109
+ "type": "git",
2110
+ "url": "https://github.com/WordPress/WordPress-Coding-Standards.git",
2111
+ "reference": "9333efcbff231f10dfd9c56bb7b65818b4733ca7"
2112
+ },
2113
+ "dist": {
2114
+ "type": "zip",
2115
+ "url": "https://api.github.com/repos/WordPress/WordPress-Coding-Standards/zipball/9333efcbff231f10dfd9c56bb7b65818b4733ca7",
2116
+ "reference": "9333efcbff231f10dfd9c56bb7b65818b4733ca7",
2117
+ "shasum": ""
2118
+ },
2119
+ "require": {
2120
+ "ext-filter": "*",
2121
+ "ext-libxml": "*",
2122
+ "ext-tokenizer": "*",
2123
+ "ext-xmlreader": "*",
2124
+ "php": ">=5.4",
2125
+ "phpcsstandards/phpcsextra": "^1.2.1",
2126
+ "phpcsstandards/phpcsutils": "^1.0.10",
2127
+ "squizlabs/php_codesniffer": "^3.9.0"
2128
+ },
2129
+ "require-dev": {
2130
+ "php-parallel-lint/php-console-highlighter": "^1.0.0",
2131
+ "php-parallel-lint/php-parallel-lint": "^1.3.2",
2132
+ "phpcompatibility/php-compatibility": "^9.0",
2133
+ "phpcsstandards/phpcsdevtools": "^1.2.0",
2134
+ "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
2135
+ },
2136
+ "suggest": {
2137
+ "ext-iconv": "For improved results",
2138
+ "ext-mbstring": "For improved results"
2139
+ },
2140
+ "type": "phpcodesniffer-standard",
2141
+ "notification-url": "https://packagist.org/downloads/",
2142
+ "license": [
2143
+ "MIT"
2144
+ ],
2145
+ "authors": [
2146
+ {
2147
+ "name": "Contributors",
2148
+ "homepage": "https://github.com/WordPress/WordPress-Coding-Standards/graphs/contributors"
2149
+ }
2150
+ ],
2151
+ "description": "PHP_CodeSniffer rules (sniffs) to enforce WordPress coding conventions",
2152
+ "keywords": [
2153
+ "phpcs",
2154
+ "standards",
2155
+ "static analysis",
2156
+ "wordpress"
2157
+ ],
2158
+ "support": {
2159
+ "issues": "https://github.com/WordPress/WordPress-Coding-Standards/issues",
2160
+ "source": "https://github.com/WordPress/WordPress-Coding-Standards",
2161
+ "wiki": "https://github.com/WordPress/WordPress-Coding-Standards/wiki"
2162
+ },
2163
+ "funding": [
2164
+ {
2165
+ "url": "https://opencollective.com/php_codesniffer",
2166
+ "type": "custom"
2167
+ }
2168
+ ],
2169
+ "time": "2024-03-25T16:39:00+00:00"
2170
+ }
2171
+ ],
2172
+ "aliases": [],
2173
+ "minimum-stability": "stable",
2174
+ "stability-flags": [],
2175
+ "prefer-stable": false,
2176
+ "prefer-lowest": false,
2177
+ "platform": [],
2178
+ "platform-dev": [],
2179
+ "plugin-api-version": "2.6.0"
2180
+ }