@eui/cli 21.0.0-alpha.4 → 21.0.0-alpha.6

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 (289) hide show
  1. package/.version.properties +1 -0
  2. package/bin/eui-cli.js +47 -0
  3. package/lib/build.js +155 -0
  4. package/lib/cli.js +123 -0
  5. package/lib/config.js +58 -0
  6. package/lib/generators.js +75 -0
  7. package/lib/install.js +45 -0
  8. package/lib/maven-build/build.xml +115 -0
  9. package/lib/maven-build/lib/ant-contrib-20061014.jar +0 -0
  10. package/lib/maven-build/pom.xml +64 -0
  11. package/lib/post-build.js +33 -0
  12. package/lib/skeletons/_angular/base/.browserslistrc +16 -0
  13. package/lib/skeletons/_angular/base/.editorconfig +16 -0
  14. package/lib/skeletons/_angular/base/.euirc.json +8 -0
  15. package/lib/skeletons/_angular/base/README.md +26 -0
  16. package/lib/skeletons/_angular/base/angular.json +158 -0
  17. package/lib/skeletons/_angular/base/gitignore_TO_REPLACE +51 -0
  18. package/lib/skeletons/_angular/base/mock/app/models/user.js +6 -0
  19. package/lib/skeletons/_angular/base/mock/app/routes/index.js +5 -0
  20. package/lib/skeletons/_angular/base/mock/app/routes/user_routes.js +44 -0
  21. package/lib/skeletons/_angular/base/mock/db/db.json +10 -0
  22. package/lib/skeletons/_angular/base/mock/server.js +23 -0
  23. package/lib/skeletons/_angular/base/package.json +38 -0
  24. package/lib/skeletons/_angular/base/proxy-mock.conf.json +6 -0
  25. package/lib/skeletons/_angular/base/proxy.conf.json +6 -0
  26. package/lib/skeletons/_angular/base/src/.eslintrc.json +121 -0
  27. package/lib/skeletons/_angular/base/src/app/app-starter.service.spec.ts +68 -0
  28. package/lib/skeletons/_angular/base/src/app/app-starter.service.ts +68 -0
  29. package/lib/skeletons/_angular/base/src/app/app.component.html +35 -0
  30. package/lib/skeletons/_angular/base/src/app/app.component.spec.ts +60 -0
  31. package/lib/skeletons/_angular/base/src/app/app.component.ts +35 -0
  32. package/lib/skeletons/_angular/base/src/app/app.config.ts +84 -0
  33. package/lib/skeletons/_angular/base/src/app/app.routes.ts +9 -0
  34. package/lib/skeletons/_angular/base/src/app/features/home/home.component.html +41 -0
  35. package/lib/skeletons/_angular/base/src/app/features/home/home.component.ts +17 -0
  36. package/lib/skeletons/_angular/base/src/app/features/home/home.routes.ts +6 -0
  37. package/lib/skeletons/_angular/base/src/app/features/module1/components/page1/page1.component.html +7 -0
  38. package/lib/skeletons/_angular/base/src/app/features/module1/components/page1/page1.component.ts +10 -0
  39. package/lib/skeletons/_angular/base/src/app/features/module1/components/page2/page2.component.html +7 -0
  40. package/lib/skeletons/_angular/base/src/app/features/module1/components/page2/page2.component.ts +10 -0
  41. package/lib/skeletons/_angular/base/src/app/features/module1/module1.component.html +7 -0
  42. package/lib/skeletons/_angular/base/src/app/features/module1/module1.component.ts +10 -0
  43. package/lib/skeletons/_angular/base/src/app/features/module1/module1.routes.ts +10 -0
  44. package/lib/skeletons/_angular/base/src/app/features/module2/module2.component.html +7 -0
  45. package/lib/skeletons/_angular/base/src/app/features/module2/module2.component.ts +10 -0
  46. package/lib/skeletons/_angular/base/src/app/features/module2/module2.routes.ts +6 -0
  47. package/lib/skeletons/_angular/base/src/app/shared/testing/router.mock.ts +18 -0
  48. package/lib/skeletons/_angular/base/src/assets/config/env-json-config-dev.json +8 -0
  49. package/lib/skeletons/_angular/base/src/assets/config/env-json-config-prod.json +8 -0
  50. package/lib/skeletons/_angular/base/src/assets/config/env-json-config.json +7 -0
  51. package/lib/skeletons/_angular/base/src/assets/i18n/en.json +7 -0
  52. package/lib/skeletons/_angular/base/src/assets/i18n/fr.json +7 -0
  53. package/lib/skeletons/_angular/base/src/config/global.ts +33 -0
  54. package/lib/skeletons/_angular/base/src/config/index.ts +8 -0
  55. package/lib/skeletons/_angular/base/src/config/modules.ts +7 -0
  56. package/lib/skeletons/_angular/base/src/dummy.spec.ts +6 -0
  57. package/lib/skeletons/_angular/base/src/environments/environment.prod.ts +11 -0
  58. package/lib/skeletons/_angular/base/src/environments/environment.ts +15 -0
  59. package/lib/skeletons/_angular/base/src/favicon.ico +0 -0
  60. package/lib/skeletons/_angular/base/src/index.html +20 -0
  61. package/lib/skeletons/_angular/base/src/karma.conf.js +7 -0
  62. package/lib/skeletons/_angular/base/src/main.ts +20 -0
  63. package/lib/skeletons/_angular/base/src/styles.scss +1 -0
  64. package/lib/skeletons/_angular/base/src/tsconfig.app.json +18 -0
  65. package/lib/skeletons/_angular/base/src/tsconfig.spec.json +14 -0
  66. package/lib/skeletons/_angular/base/tsconfig.json +27 -0
  67. package/lib/skeletons/_angular/base-mobile/angular.json +156 -0
  68. package/lib/skeletons/_angular/base-mobile/ionic.config.json +5 -0
  69. package/lib/skeletons/_angular/base-mobile/ngsw-config.json +33 -0
  70. package/lib/skeletons/_angular/base-mobile/package.json +27 -0
  71. package/lib/skeletons/_angular/base-mobile/src/app/app-routing.module.ts +18 -0
  72. package/lib/skeletons/_angular/base-mobile/src/app/app-starter.service.ts +73 -0
  73. package/lib/skeletons/_angular/base-mobile/src/app/app.component.html +47 -0
  74. package/lib/skeletons/_angular/base-mobile/src/app/app.component.ts +81 -0
  75. package/lib/skeletons/_angular/base-mobile/src/app/app.config.ts +81 -0
  76. package/lib/skeletons/_angular/base-mobile/src/app/app.module.ts +44 -0
  77. package/lib/skeletons/_angular/base-mobile/src/app/core/components/.gitkeep +0 -0
  78. package/lib/skeletons/_angular/base-mobile/src/app/core/core.module.ts +89 -0
  79. package/lib/skeletons/_angular/base-mobile/src/app/core/reducers/index.ts +32 -0
  80. package/lib/skeletons/_angular/base-mobile/src/app/features/about/about-routing.module.ts +45 -0
  81. package/lib/skeletons/_angular/base-mobile/src/app/features/about/about.component.html +70 -0
  82. package/lib/skeletons/_angular/base-mobile/src/app/features/about/about.component.ts +19 -0
  83. package/lib/skeletons/_angular/base-mobile/src/app/features/about/about.module.ts +30 -0
  84. package/lib/skeletons/_angular/base-mobile/src/app/features/about/change-log/changelog.component.html +11 -0
  85. package/lib/skeletons/_angular/base-mobile/src/app/features/about/change-log/changelog.component.ts +102 -0
  86. package/lib/skeletons/_angular/base-mobile/src/app/features/about/help-support/help-support.component.html +20 -0
  87. package/lib/skeletons/_angular/base-mobile/src/app/features/about/help-support/help-support.component.ts +75 -0
  88. package/lib/skeletons/_angular/base-mobile/src/app/features/about/legal-notice/legal-notice.component.html +12 -0
  89. package/lib/skeletons/_angular/base-mobile/src/app/features/about/legal-notice/legal-notice.component.ts +8 -0
  90. package/lib/skeletons/_angular/base-mobile/src/app/features/about/licence-details/licence-details.component.html +48 -0
  91. package/lib/skeletons/_angular/base-mobile/src/app/features/about/licence-details/licence-details.component.ts +7 -0
  92. package/lib/skeletons/_angular/base-mobile/src/app/features/about/opensource-licences/opensource-licences.component.html +11 -0
  93. package/lib/skeletons/_angular/base-mobile/src/app/features/about/opensource-licences/opensource-licences.component.ts +31 -0
  94. package/lib/skeletons/_angular/base-mobile/src/app/features/about/privacy-statement/privacy-statement.component.html +11 -0
  95. package/lib/skeletons/_angular/base-mobile/src/app/features/about/privacy-statement/privacy-statement.component.ts +103 -0
  96. package/lib/skeletons/_angular/base-mobile/src/app/features/home/home-routing.module.ts +15 -0
  97. package/lib/skeletons/_angular/base-mobile/src/app/features/home/home.component.html +11 -0
  98. package/lib/skeletons/_angular/base-mobile/src/app/features/home/home.component.ts +9 -0
  99. package/lib/skeletons/_angular/base-mobile/src/app/features/home/home.module.ts +18 -0
  100. package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page1/page1.component.html +11 -0
  101. package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page1/page1.component.ts +8 -0
  102. package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page2/page2.component.html +11 -0
  103. package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page2/page2.component.ts +8 -0
  104. package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1-routing.module.ts +18 -0
  105. package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1.component.html +15 -0
  106. package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1.component.ts +17 -0
  107. package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1.module.ts +21 -0
  108. package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2-routing.module.ts +16 -0
  109. package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2.component.html +11 -0
  110. package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2.component.ts +7 -0
  111. package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2.module.ts +17 -0
  112. package/lib/skeletons/_angular/base-mobile/src/app/shared/shared.module.ts +16 -0
  113. package/lib/skeletons/_angular/base-mobile/src/app/shared/testing/router.mock.ts +18 -0
  114. package/lib/skeletons/_angular/base-mobile/src/assets/docs/pdf-test.pdf +0 -0
  115. package/lib/skeletons/_angular/base-mobile/src/assets/i18n/en.json +25 -0
  116. package/lib/skeletons/_angular/base-mobile/src/assets/i18n/es.json +24 -0
  117. package/lib/skeletons/_angular/base-mobile/src/assets/i18n/fr.json +25 -0
  118. package/lib/skeletons/_angular/base-mobile/src/assets/i18n/tr.json +25 -0
  119. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-1024.png +0 -0
  120. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-114.png +0 -0
  121. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-120.png +0 -0
  122. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-128.png +0 -0
  123. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-144.png +0 -0
  124. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-152.png +0 -0
  125. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-16.png +0 -0
  126. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-180.png +0 -0
  127. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-192.png +0 -0
  128. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-32.png +0 -0
  129. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-36.png +0 -0
  130. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-384.png +0 -0
  131. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-48.png +0 -0
  132. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-512.png +0 -0
  133. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-57.png +0 -0
  134. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-60.png +0 -0
  135. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-72.png +0 -0
  136. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-76.png +0 -0
  137. package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-96.png +0 -0
  138. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1125-2436.png +0 -0
  139. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1170-2532.png +0 -0
  140. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1179-2556.png +0 -0
  141. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1242-2208.png +0 -0
  142. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1242-2688.png +0 -0
  143. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1284-2778.png +0 -0
  144. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1290-2796.png +0 -0
  145. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1488-2266.png +0 -0
  146. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1536-2048.png +0 -0
  147. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1620-2160.png +0 -0
  148. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1640-2360.png +0 -0
  149. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1668-2224.png +0 -0
  150. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1668-2388.png +0 -0
  151. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-2048-2732.png +0 -0
  152. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-640-1136.png +0 -0
  153. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-750-1334.png +0 -0
  154. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-828-1792.png +0 -0
  155. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1125-2436.png +0 -0
  156. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1170-2532.png +0 -0
  157. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1179-2556.png +0 -0
  158. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1242-2208.png +0 -0
  159. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1242-2688.png +0 -0
  160. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1284-2778.png +0 -0
  161. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1290-2796.png +0 -0
  162. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1488-2266.png +0 -0
  163. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1536-2048.png +0 -0
  164. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1620-2160.png +0 -0
  165. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1640-2360.png +0 -0
  166. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1668-2224.png +0 -0
  167. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1668-2388.png +0 -0
  168. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-2048-2732.png +0 -0
  169. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-640-1136.png +0 -0
  170. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-750-1334.png +0 -0
  171. package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-828-1792.png +0 -0
  172. package/lib/skeletons/_angular/base-mobile/src/assets/images/app-icon.svg +10 -0
  173. package/lib/skeletons/_angular/base-mobile/src/config/global.ts +39 -0
  174. package/lib/skeletons/_angular/base-mobile/src/config/index.ts +8 -0
  175. package/lib/skeletons/_angular/base-mobile/src/config/modules.ts +7 -0
  176. package/lib/skeletons/_angular/base-mobile/src/index.html +76 -0
  177. package/lib/skeletons/_angular/base-mobile/src/main.ts +23 -0
  178. package/lib/skeletons/_angular/base-mobile/src/manifest.webmanifest +66 -0
  179. package/lib/skeletons/_angular/base-mobile/src/tsconfig.app.json +20 -0
  180. package/lib/skeletons/_angular/options/ecl-ec/angular.json +181 -0
  181. package/lib/skeletons/_angular/options/ecl-ec/src/app/app.component.html +237 -0
  182. package/lib/skeletons/_angular/options/ecl-ec/src/app/app.component.ts +65 -0
  183. package/lib/skeletons/_angular/options/ecl-ec/src/app/app.config.ts +84 -0
  184. package/lib/skeletons/_angular/options/ecl-ec/src/app/features/home/home.component.html +71 -0
  185. package/lib/skeletons/_angular/options/ecl-ec/src/app/features/home/home.component.ts +20 -0
  186. package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module1/components/page1/page1.component.html +1 -0
  187. package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module1/components/page1/page1.component.ts +7 -0
  188. package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module1/components/page2/page2.component.html +1 -0
  189. package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module1/components/page2/page2.component.ts +7 -0
  190. package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module1/module1.component.html +1 -0
  191. package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module1/module1.component.ts +7 -0
  192. package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module2/module2.component.html +1 -0
  193. package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module2/module2.component.ts +7 -0
  194. package/lib/skeletons/_angular/options/ecl-ec/src/config/global.ts +23 -0
  195. package/lib/skeletons/_angular/options/ecl-eu/angular.json +181 -0
  196. package/lib/skeletons/_angular/options/ecl-eu/src/app/app.component.html +203 -0
  197. package/lib/skeletons/_angular/options/ecl-eu/src/app/app.component.ts +65 -0
  198. package/lib/skeletons/_angular/options/ecl-eu/src/app/app.config.ts +84 -0
  199. package/lib/skeletons/_angular/options/ecl-eu/src/app/features/home/home.component.html +71 -0
  200. package/lib/skeletons/_angular/options/ecl-eu/src/app/features/home/home.component.ts +20 -0
  201. package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module1/components/page1/page1.component.html +1 -0
  202. package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module1/components/page1/page1.component.ts +7 -0
  203. package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module1/components/page2/page2.component.html +1 -0
  204. package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module1/components/page2/page2.component.ts +7 -0
  205. package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module1/module1.component.html +1 -0
  206. package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module1/module1.component.ts +7 -0
  207. package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module2/module2.component.html +1 -0
  208. package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module2/module2.component.ts +7 -0
  209. package/lib/skeletons/_angular/options/ecl-eu/src/app/shared/shared.module.ts +19 -0
  210. package/lib/skeletons/_angular/options/ecl-eu/src/config/global.ts +23 -0
  211. package/lib/skeletons/web-maven/package.json +17 -0
  212. package/lib/skeletons/web-maven/pom.xml +55 -0
  213. package/lib/skeletons/web-maven/src/main/java/eu/europa/ec/digit/eui/angular2clistarter/servlet/SpringWebApplicationInitializer.java +22 -0
  214. package/lib/skeletons/web-maven/src/main/java/eu/europa/ec/digit/eui/angular2clistarter/spring/SpringRestConfiguration.java +24 -0
  215. package/lib/skeletons/web-maven/src/main/java/eu/europa/ec/digit/eui/angular2clistarter/spring/rest/UserDetailsResource.java +23 -0
  216. package/lib/skeletons/web-maven/src/main/resources/ecas-config-application-name.xml +7 -0
  217. package/lib/skeletons/web-maven/src/main/webapp/WEB-INF/dispatcher-servlet.xml +11 -0
  218. package/lib/skeletons/web-maven/src/main/webapp/WEB-INF/web.xml +38 -0
  219. package/lib/skeletons/web-maven/src/main/webapp/WEB-INF/weblogic.xml +16 -0
  220. package/lib/skeletons/web-maven/src/main/webapp/index.jsp +30 -0
  221. package/lib/skeletons/web-spring-boot/myapp-web/pom.xml +83 -0
  222. package/lib/skeletons/web-spring-boot/myapp-web-rest/pom.xml +83 -0
  223. package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/MyappApplication.java +46 -0
  224. package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/domain/Address.java +65 -0
  225. package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/domain/Building.java +44 -0
  226. package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/repositories/BuildingRepository.java +11 -0
  227. package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/BuildingResource.java +26 -0
  228. package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/SwaggerConfig.java +16 -0
  229. package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/support/HateoasPageableHandlerMethodArgumentResolver.java +45 -0
  230. package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/support/HypermediaSupport.java +25 -0
  231. package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/support/PageJsonSerializer.java +17 -0
  232. package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/security/CachingPreventionFilter.java +29 -0
  233. package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/security/CsrfPreventionFilter.java +35 -0
  234. package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/security/FakeAuthenticationFilter.java +372 -0
  235. package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/security/SecurityConfig.java +47 -0
  236. package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/services/BuildingSearchCriteria.java +26 -0
  237. package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/services/BuildingService.java +10 -0
  238. package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/services/BuildingServiceImpl.java +26 -0
  239. package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/resources/application.properties +0 -0
  240. package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/resources/data.sql +11 -0
  241. package/lib/skeletons/web-spring-boot/pom.xml +30 -0
  242. package/lib/skeletons/web-symfony/myapp-web/angular.json +169 -0
  243. package/lib/skeletons/web-symfony/myapp-web/package.json +23 -0
  244. package/lib/skeletons/web-symfony/myapp-web/src/app/app-routing.module.ts +18 -0
  245. package/lib/skeletons/web-symfony/myapp-web/src/app/app.component.ts +77 -0
  246. package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/components/products.component.html +160 -0
  247. package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/components/products.component.scss +0 -0
  248. package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/components/products.component.ts +104 -0
  249. package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/models/product.model.ts +6 -0
  250. package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/products-routing.module.ts +16 -0
  251. package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/products.module.ts +16 -0
  252. package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/services/products.service.ts +29 -0
  253. package/lib/skeletons/web-symfony/myapp-web/src/environments/environment.ts +17 -0
  254. package/lib/skeletons/web-symfony/myapp-web-rest/.env +28 -0
  255. package/lib/skeletons/web-symfony/myapp-web-rest/bin/console +42 -0
  256. package/lib/skeletons/web-symfony/myapp-web-rest/composer.json +67 -0
  257. package/lib/skeletons/web-symfony/myapp-web-rest/composer.lock +3572 -0
  258. package/lib/skeletons/web-symfony/myapp-web-rest/config/bootstrap.php +21 -0
  259. package/lib/skeletons/web-symfony/myapp-web-rest/config/bundles.php +12 -0
  260. package/lib/skeletons/web-symfony/myapp-web-rest/config/config.yml +0 -0
  261. package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/cache.yaml +19 -0
  262. package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/dev/routing.yaml +3 -0
  263. package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/doctrine.yaml +29 -0
  264. package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/doctrine_migrations.yaml +5 -0
  265. package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/framework.yaml +17 -0
  266. package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/prod/doctrine.yaml +32 -0
  267. package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/routing.yaml +4 -0
  268. package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/sensio_framework_extra.yaml +3 -0
  269. package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/test/framework.yaml +4 -0
  270. package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/test/routing.yaml +3 -0
  271. package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/twig.yaml +4 -0
  272. package/lib/skeletons/web-symfony/myapp-web-rest/config/routes/annotations.yaml +3 -0
  273. package/lib/skeletons/web-symfony/myapp-web-rest/config/routes/dev/twig.yaml +3 -0
  274. package/lib/skeletons/web-symfony/myapp-web-rest/config/routes.yaml +3 -0
  275. package/lib/skeletons/web-symfony/myapp-web-rest/config/services.yaml +27 -0
  276. package/lib/skeletons/web-symfony/myapp-web-rest/public/index.php +27 -0
  277. package/lib/skeletons/web-symfony/myapp-web-rest/src/Controller/ProductController.php +196 -0
  278. package/lib/skeletons/web-symfony/myapp-web-rest/src/Entity/Product.php +99 -0
  279. package/lib/skeletons/web-symfony/myapp-web-rest/src/Kernel.php +53 -0
  280. package/lib/skeletons/web-symfony/myapp-web-rest/src/Migrations/Version20190604101623.php +31 -0
  281. package/lib/skeletons/web-symfony/myapp-web-rest/src/Migrations/Version20190604101638.php +35 -0
  282. package/lib/skeletons/web-symfony/myapp-web-rest/src/Repository/ProductRepository.php +51 -0
  283. package/lib/skeletons/web-symfony/myapp-web-rest/symfony.lock +274 -0
  284. package/lib/skeletons/web-symfony/myapp-web-rest/templates/base.html.twig +12 -0
  285. package/lib/skeletons/web-symfony/myapp-web-rest/templates/lucky/number.html.twig +1 -0
  286. package/lib/skeletons/web-symfony/myapp-web-rest/templates/product/index.html.twig +20 -0
  287. package/lib/utils.js +13 -0
  288. package/package.json +2 -2
  289. package/sonar-project.properties +14 -0
@@ -0,0 +1,3572 @@
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": "cd3d2104d0eca032f2a999c98b8dab1e",
8
+ "packages": [
9
+ {
10
+ "name": "doctrine/annotations",
11
+ "version": "v1.6.1",
12
+ "source": {
13
+ "type": "git",
14
+ "url": "https://github.com/doctrine/annotations.git",
15
+ "reference": "53120e0eb10355388d6ccbe462f1fea34ddadb24"
16
+ },
17
+ "dist": {
18
+ "type": "zip",
19
+ "url": "https://api.github.com/repos/doctrine/annotations/zipball/53120e0eb10355388d6ccbe462f1fea34ddadb24",
20
+ "reference": "53120e0eb10355388d6ccbe462f1fea34ddadb24",
21
+ "shasum": ""
22
+ },
23
+ "require": {
24
+ "doctrine/lexer": "1.*",
25
+ "php": "^7.1"
26
+ },
27
+ "require-dev": {
28
+ "doctrine/cache": "1.*",
29
+ "phpunit/phpunit": "^6.4"
30
+ },
31
+ "type": "library",
32
+ "extra": {
33
+ "branch-alias": {
34
+ "dev-master": "1.6.x-dev"
35
+ }
36
+ },
37
+ "autoload": {
38
+ "psr-4": {
39
+ "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
40
+ }
41
+ },
42
+ "notification-url": "https://packagist.org/downloads/",
43
+ "license": [
44
+ "MIT"
45
+ ],
46
+ "authors": [
47
+ {
48
+ "name": "Roman Borschel",
49
+ "email": "roman@code-factory.org"
50
+ },
51
+ {
52
+ "name": "Benjamin Eberlei",
53
+ "email": "kontakt@beberlei.de"
54
+ },
55
+ {
56
+ "name": "Guilherme Blanco",
57
+ "email": "guilhermeblanco@gmail.com"
58
+ },
59
+ {
60
+ "name": "Jonathan Wage",
61
+ "email": "jonwage@gmail.com"
62
+ },
63
+ {
64
+ "name": "Johannes Schmitt",
65
+ "email": "schmittjoh@gmail.com"
66
+ }
67
+ ],
68
+ "description": "Docblock Annotations Parser",
69
+ "homepage": "http://www.doctrine-project.org",
70
+ "keywords": [
71
+ "annotations",
72
+ "docblock",
73
+ "parser"
74
+ ],
75
+ "time": "2019-03-25T19:12:02+00:00"
76
+ },
77
+ {
78
+ "name": "doctrine/cache",
79
+ "version": "v1.8.0",
80
+ "source": {
81
+ "type": "git",
82
+ "url": "https://github.com/doctrine/cache.git",
83
+ "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
84
+ },
85
+ "dist": {
86
+ "type": "zip",
87
+ "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
88
+ "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
89
+ "shasum": ""
90
+ },
91
+ "require": {
92
+ "php": "~7.1"
93
+ },
94
+ "conflict": {
95
+ "doctrine/common": ">2.2,<2.4"
96
+ },
97
+ "require-dev": {
98
+ "alcaeus/mongo-php-adapter": "^1.1",
99
+ "doctrine/coding-standard": "^4.0",
100
+ "mongodb/mongodb": "^1.1",
101
+ "phpunit/phpunit": "^7.0",
102
+ "predis/predis": "~1.0"
103
+ },
104
+ "suggest": {
105
+ "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
106
+ },
107
+ "type": "library",
108
+ "extra": {
109
+ "branch-alias": {
110
+ "dev-master": "1.8.x-dev"
111
+ }
112
+ },
113
+ "autoload": {
114
+ "psr-4": {
115
+ "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
116
+ }
117
+ },
118
+ "notification-url": "https://packagist.org/downloads/",
119
+ "license": [
120
+ "MIT"
121
+ ],
122
+ "authors": [
123
+ {
124
+ "name": "Roman Borschel",
125
+ "email": "roman@code-factory.org"
126
+ },
127
+ {
128
+ "name": "Benjamin Eberlei",
129
+ "email": "kontakt@beberlei.de"
130
+ },
131
+ {
132
+ "name": "Guilherme Blanco",
133
+ "email": "guilhermeblanco@gmail.com"
134
+ },
135
+ {
136
+ "name": "Jonathan Wage",
137
+ "email": "jonwage@gmail.com"
138
+ },
139
+ {
140
+ "name": "Johannes Schmitt",
141
+ "email": "schmittjoh@gmail.com"
142
+ }
143
+ ],
144
+ "description": "Caching library offering an object-oriented API for many cache backends",
145
+ "homepage": "https://www.doctrine-project.org",
146
+ "keywords": [
147
+ "cache",
148
+ "caching"
149
+ ],
150
+ "time": "2018-08-21T18:01:43+00:00"
151
+ },
152
+ {
153
+ "name": "doctrine/collections",
154
+ "version": "v1.6.1",
155
+ "source": {
156
+ "type": "git",
157
+ "url": "https://github.com/doctrine/collections.git",
158
+ "reference": "d2ae4ef05e25197343b6a39bae1d3c427a2f6956"
159
+ },
160
+ "dist": {
161
+ "type": "zip",
162
+ "url": "https://api.github.com/repos/doctrine/collections/zipball/d2ae4ef05e25197343b6a39bae1d3c427a2f6956",
163
+ "reference": "d2ae4ef05e25197343b6a39bae1d3c427a2f6956",
164
+ "shasum": ""
165
+ },
166
+ "require": {
167
+ "php": "^7.1.3"
168
+ },
169
+ "require-dev": {
170
+ "doctrine/coding-standard": "^6.0",
171
+ "phpstan/phpstan-shim": "^0.9.2",
172
+ "phpunit/phpunit": "^7.0",
173
+ "vimeo/psalm": "^3.2.2"
174
+ },
175
+ "type": "library",
176
+ "extra": {
177
+ "branch-alias": {
178
+ "dev-master": "1.6.x-dev"
179
+ }
180
+ },
181
+ "autoload": {
182
+ "psr-4": {
183
+ "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
184
+ }
185
+ },
186
+ "notification-url": "https://packagist.org/downloads/",
187
+ "license": [
188
+ "MIT"
189
+ ],
190
+ "authors": [
191
+ {
192
+ "name": "Roman Borschel",
193
+ "email": "roman@code-factory.org"
194
+ },
195
+ {
196
+ "name": "Benjamin Eberlei",
197
+ "email": "kontakt@beberlei.de"
198
+ },
199
+ {
200
+ "name": "Guilherme Blanco",
201
+ "email": "guilhermeblanco@gmail.com"
202
+ },
203
+ {
204
+ "name": "Jonathan Wage",
205
+ "email": "jonwage@gmail.com"
206
+ },
207
+ {
208
+ "name": "Johannes Schmitt",
209
+ "email": "schmittjoh@gmail.com"
210
+ }
211
+ ],
212
+ "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
213
+ "homepage": "https://www.doctrine-project.org/projects/collections.html",
214
+ "keywords": [
215
+ "array",
216
+ "collections",
217
+ "iterators",
218
+ "php"
219
+ ],
220
+ "time": "2019-03-25T19:03:48+00:00"
221
+ },
222
+ {
223
+ "name": "doctrine/common",
224
+ "version": "v2.10.0",
225
+ "source": {
226
+ "type": "git",
227
+ "url": "https://github.com/doctrine/common.git",
228
+ "reference": "30e33f60f64deec87df728c02b107f82cdafad9d"
229
+ },
230
+ "dist": {
231
+ "type": "zip",
232
+ "url": "https://api.github.com/repos/doctrine/common/zipball/30e33f60f64deec87df728c02b107f82cdafad9d",
233
+ "reference": "30e33f60f64deec87df728c02b107f82cdafad9d",
234
+ "shasum": ""
235
+ },
236
+ "require": {
237
+ "doctrine/annotations": "^1.0",
238
+ "doctrine/cache": "^1.0",
239
+ "doctrine/collections": "^1.0",
240
+ "doctrine/event-manager": "^1.0",
241
+ "doctrine/inflector": "^1.0",
242
+ "doctrine/lexer": "^1.0",
243
+ "doctrine/persistence": "^1.1",
244
+ "doctrine/reflection": "^1.0",
245
+ "php": "^7.1"
246
+ },
247
+ "require-dev": {
248
+ "doctrine/coding-standard": "^1.0",
249
+ "phpunit/phpunit": "^6.3",
250
+ "squizlabs/php_codesniffer": "^3.0",
251
+ "symfony/phpunit-bridge": "^4.0.5"
252
+ },
253
+ "type": "library",
254
+ "extra": {
255
+ "branch-alias": {
256
+ "dev-master": "2.10.x-dev"
257
+ }
258
+ },
259
+ "autoload": {
260
+ "psr-4": {
261
+ "Doctrine\\Common\\": "lib/Doctrine/Common"
262
+ }
263
+ },
264
+ "notification-url": "https://packagist.org/downloads/",
265
+ "license": [
266
+ "MIT"
267
+ ],
268
+ "authors": [
269
+ {
270
+ "name": "Roman Borschel",
271
+ "email": "roman@code-factory.org"
272
+ },
273
+ {
274
+ "name": "Benjamin Eberlei",
275
+ "email": "kontakt@beberlei.de"
276
+ },
277
+ {
278
+ "name": "Guilherme Blanco",
279
+ "email": "guilhermeblanco@gmail.com"
280
+ },
281
+ {
282
+ "name": "Jonathan Wage",
283
+ "email": "jonwage@gmail.com"
284
+ },
285
+ {
286
+ "name": "Johannes Schmitt",
287
+ "email": "schmittjoh@gmail.com"
288
+ },
289
+ {
290
+ "name": "Marco Pivetta",
291
+ "email": "ocramius@gmail.com"
292
+ }
293
+ ],
294
+ "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
295
+ "homepage": "https://www.doctrine-project.org/projects/common.html",
296
+ "keywords": [
297
+ "common",
298
+ "doctrine",
299
+ "php"
300
+ ],
301
+ "time": "2018-11-21T01:24:55+00:00"
302
+ },
303
+ {
304
+ "name": "doctrine/dbal",
305
+ "version": "v2.9.2",
306
+ "source": {
307
+ "type": "git",
308
+ "url": "https://github.com/doctrine/dbal.git",
309
+ "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9"
310
+ },
311
+ "dist": {
312
+ "type": "zip",
313
+ "url": "https://api.github.com/repos/doctrine/dbal/zipball/22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
314
+ "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
315
+ "shasum": ""
316
+ },
317
+ "require": {
318
+ "doctrine/cache": "^1.0",
319
+ "doctrine/event-manager": "^1.0",
320
+ "ext-pdo": "*",
321
+ "php": "^7.1"
322
+ },
323
+ "require-dev": {
324
+ "doctrine/coding-standard": "^5.0",
325
+ "jetbrains/phpstorm-stubs": "^2018.1.2",
326
+ "phpstan/phpstan": "^0.10.1",
327
+ "phpunit/phpunit": "^7.4",
328
+ "symfony/console": "^2.0.5|^3.0|^4.0",
329
+ "symfony/phpunit-bridge": "^3.4.5|^4.0.5"
330
+ },
331
+ "suggest": {
332
+ "symfony/console": "For helpful console commands such as SQL execution and import of files."
333
+ },
334
+ "bin": [
335
+ "bin/doctrine-dbal"
336
+ ],
337
+ "type": "library",
338
+ "extra": {
339
+ "branch-alias": {
340
+ "dev-master": "2.9.x-dev",
341
+ "dev-develop": "3.0.x-dev"
342
+ }
343
+ },
344
+ "autoload": {
345
+ "psr-4": {
346
+ "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
347
+ }
348
+ },
349
+ "notification-url": "https://packagist.org/downloads/",
350
+ "license": [
351
+ "MIT"
352
+ ],
353
+ "authors": [
354
+ {
355
+ "name": "Roman Borschel",
356
+ "email": "roman@code-factory.org"
357
+ },
358
+ {
359
+ "name": "Benjamin Eberlei",
360
+ "email": "kontakt@beberlei.de"
361
+ },
362
+ {
363
+ "name": "Guilherme Blanco",
364
+ "email": "guilhermeblanco@gmail.com"
365
+ },
366
+ {
367
+ "name": "Jonathan Wage",
368
+ "email": "jonwage@gmail.com"
369
+ }
370
+ ],
371
+ "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
372
+ "homepage": "https://www.doctrine-project.org/projects/dbal.html",
373
+ "keywords": [
374
+ "abstraction",
375
+ "database",
376
+ "dbal",
377
+ "mysql",
378
+ "persistence",
379
+ "pgsql",
380
+ "php",
381
+ "queryobject"
382
+ ],
383
+ "time": "2018-12-31T03:27:51+00:00"
384
+ },
385
+ {
386
+ "name": "doctrine/doctrine-bundle",
387
+ "version": "1.10.2",
388
+ "source": {
389
+ "type": "git",
390
+ "url": "https://github.com/doctrine/DoctrineBundle.git",
391
+ "reference": "1f99e6645030542079c57d4680601a4a8778a1bd"
392
+ },
393
+ "dist": {
394
+ "type": "zip",
395
+ "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/1f99e6645030542079c57d4680601a4a8778a1bd",
396
+ "reference": "1f99e6645030542079c57d4680601a4a8778a1bd",
397
+ "shasum": ""
398
+ },
399
+ "require": {
400
+ "doctrine/dbal": "^2.5.12",
401
+ "doctrine/doctrine-cache-bundle": "~1.2",
402
+ "jdorn/sql-formatter": "^1.2.16",
403
+ "php": "^5.5.9|^7.0",
404
+ "symfony/console": "~2.7|~3.0|~4.0",
405
+ "symfony/dependency-injection": "~2.7|~3.0|~4.0",
406
+ "symfony/doctrine-bridge": "~2.7|~3.0|~4.0",
407
+ "symfony/framework-bundle": "^2.7.22|~3.0|~4.0"
408
+ },
409
+ "conflict": {
410
+ "symfony/http-foundation": "<2.6"
411
+ },
412
+ "require-dev": {
413
+ "doctrine/orm": "~2.4",
414
+ "php-coveralls/php-coveralls": "^2.1",
415
+ "phpunit/phpunit": "^4.8.36|^5.7|^6.4",
416
+ "symfony/phpunit-bridge": "~2.7|~3.0|~4.0",
417
+ "symfony/property-info": "~2.8|~3.0|~4.0",
418
+ "symfony/validator": "~2.7|~3.0|~4.0",
419
+ "symfony/web-profiler-bundle": "~2.7|~3.0|~4.0",
420
+ "symfony/yaml": "~2.7|~3.0|~4.0",
421
+ "twig/twig": "~1.26|~2.0"
422
+ },
423
+ "suggest": {
424
+ "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
425
+ "symfony/web-profiler-bundle": "To use the data collector."
426
+ },
427
+ "type": "symfony-bundle",
428
+ "extra": {
429
+ "branch-alias": {
430
+ "dev-master": "1.9.x-dev"
431
+ }
432
+ },
433
+ "autoload": {
434
+ "psr-4": {
435
+ "Doctrine\\Bundle\\DoctrineBundle\\": ""
436
+ }
437
+ },
438
+ "notification-url": "https://packagist.org/downloads/",
439
+ "license": [
440
+ "MIT"
441
+ ],
442
+ "authors": [
443
+ {
444
+ "name": "Symfony Community",
445
+ "homepage": "http://symfony.com/contributors"
446
+ },
447
+ {
448
+ "name": "Benjamin Eberlei",
449
+ "email": "kontakt@beberlei.de"
450
+ },
451
+ {
452
+ "name": "Doctrine Project",
453
+ "homepage": "http://www.doctrine-project.org/"
454
+ },
455
+ {
456
+ "name": "Fabien Potencier",
457
+ "email": "fabien@symfony.com"
458
+ }
459
+ ],
460
+ "description": "Symfony DoctrineBundle",
461
+ "homepage": "http://www.doctrine-project.org",
462
+ "keywords": [
463
+ "database",
464
+ "dbal",
465
+ "orm",
466
+ "persistence"
467
+ ],
468
+ "time": "2019-02-06T13:18:04+00:00"
469
+ },
470
+ {
471
+ "name": "doctrine/doctrine-cache-bundle",
472
+ "version": "1.3.5",
473
+ "source": {
474
+ "type": "git",
475
+ "url": "https://github.com/doctrine/DoctrineCacheBundle.git",
476
+ "reference": "5514c90d9fb595e1095e6d66ebb98ce9ef049927"
477
+ },
478
+ "dist": {
479
+ "type": "zip",
480
+ "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/5514c90d9fb595e1095e6d66ebb98ce9ef049927",
481
+ "reference": "5514c90d9fb595e1095e6d66ebb98ce9ef049927",
482
+ "shasum": ""
483
+ },
484
+ "require": {
485
+ "doctrine/cache": "^1.4.2",
486
+ "doctrine/inflector": "~1.0",
487
+ "php": ">=5.3.2",
488
+ "symfony/doctrine-bridge": "~2.7|~3.3|~4.0"
489
+ },
490
+ "require-dev": {
491
+ "instaclick/coding-standard": "~1.1",
492
+ "instaclick/object-calisthenics-sniffs": "dev-master",
493
+ "instaclick/symfony2-coding-standard": "dev-remaster",
494
+ "phpunit/phpunit": "~4.8.36|~5.6|~6.5|~7.0",
495
+ "predis/predis": "~0.8",
496
+ "satooshi/php-coveralls": "^1.0",
497
+ "squizlabs/php_codesniffer": "~1.5",
498
+ "symfony/console": "~2.7|~3.3|~4.0",
499
+ "symfony/finder": "~2.7|~3.3|~4.0",
500
+ "symfony/framework-bundle": "~2.7|~3.3|~4.0",
501
+ "symfony/phpunit-bridge": "~2.7|~3.3|~4.0",
502
+ "symfony/security-acl": "~2.7|~3.3",
503
+ "symfony/validator": "~2.7|~3.3|~4.0",
504
+ "symfony/yaml": "~2.7|~3.3|~4.0"
505
+ },
506
+ "suggest": {
507
+ "symfony/security-acl": "For using this bundle to cache ACLs"
508
+ },
509
+ "type": "symfony-bundle",
510
+ "extra": {
511
+ "branch-alias": {
512
+ "dev-master": "1.3.x-dev"
513
+ }
514
+ },
515
+ "autoload": {
516
+ "psr-4": {
517
+ "Doctrine\\Bundle\\DoctrineCacheBundle\\": ""
518
+ },
519
+ "exclude-from-classmap": [
520
+ "/Tests/"
521
+ ]
522
+ },
523
+ "notification-url": "https://packagist.org/downloads/",
524
+ "license": [
525
+ "MIT"
526
+ ],
527
+ "authors": [
528
+ {
529
+ "name": "Symfony Community",
530
+ "homepage": "http://symfony.com/contributors"
531
+ },
532
+ {
533
+ "name": "Benjamin Eberlei",
534
+ "email": "kontakt@beberlei.de"
535
+ },
536
+ {
537
+ "name": "Fabio B. Silva",
538
+ "email": "fabio.bat.silva@gmail.com"
539
+ },
540
+ {
541
+ "name": "Guilherme Blanco",
542
+ "email": "guilhermeblanco@hotmail.com"
543
+ },
544
+ {
545
+ "name": "Doctrine Project",
546
+ "homepage": "http://www.doctrine-project.org/"
547
+ },
548
+ {
549
+ "name": "Fabien Potencier",
550
+ "email": "fabien@symfony.com"
551
+ }
552
+ ],
553
+ "description": "Symfony Bundle for Doctrine Cache",
554
+ "homepage": "https://www.doctrine-project.org",
555
+ "keywords": [
556
+ "cache",
557
+ "caching"
558
+ ],
559
+ "time": "2018-11-09T06:25:35+00:00"
560
+ },
561
+ {
562
+ "name": "doctrine/doctrine-migrations-bundle",
563
+ "version": "v2.0.0",
564
+ "source": {
565
+ "type": "git",
566
+ "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
567
+ "reference": "4c9579e0e43df1fb3f0ca29b9c20871c824fac71"
568
+ },
569
+ "dist": {
570
+ "type": "zip",
571
+ "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/4c9579e0e43df1fb3f0ca29b9c20871c824fac71",
572
+ "reference": "4c9579e0e43df1fb3f0ca29b9c20871c824fac71",
573
+ "shasum": ""
574
+ },
575
+ "require": {
576
+ "doctrine/doctrine-bundle": "~1.0",
577
+ "doctrine/migrations": "^2.0",
578
+ "php": "^7.1",
579
+ "symfony/framework-bundle": "~3.4|~4.0"
580
+ },
581
+ "require-dev": {
582
+ "doctrine/coding-standard": "^5.0",
583
+ "mikey179/vfsstream": "^1.6",
584
+ "phpstan/phpstan": "^0.9.2",
585
+ "phpstan/phpstan-strict-rules": "^0.9",
586
+ "phpunit/phpunit": "^5.7|^6.4|^7.0"
587
+ },
588
+ "type": "symfony-bundle",
589
+ "extra": {
590
+ "branch-alias": {
591
+ "dev-master": "2.0.x-dev"
592
+ }
593
+ },
594
+ "autoload": {
595
+ "psr-4": {
596
+ "Doctrine\\Bundle\\MigrationsBundle\\": ""
597
+ }
598
+ },
599
+ "notification-url": "https://packagist.org/downloads/",
600
+ "license": [
601
+ "MIT"
602
+ ],
603
+ "authors": [
604
+ {
605
+ "name": "Symfony Community",
606
+ "homepage": "http://symfony.com/contributors"
607
+ },
608
+ {
609
+ "name": "Doctrine Project",
610
+ "homepage": "http://www.doctrine-project.org"
611
+ },
612
+ {
613
+ "name": "Fabien Potencier",
614
+ "email": "fabien@symfony.com"
615
+ }
616
+ ],
617
+ "description": "Symfony DoctrineMigrationsBundle",
618
+ "homepage": "https://www.doctrine-project.org",
619
+ "keywords": [
620
+ "dbal",
621
+ "migrations",
622
+ "schema"
623
+ ],
624
+ "time": "2019-01-09T18:49:50+00:00"
625
+ },
626
+ {
627
+ "name": "doctrine/event-manager",
628
+ "version": "v1.0.0",
629
+ "source": {
630
+ "type": "git",
631
+ "url": "https://github.com/doctrine/event-manager.git",
632
+ "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
633
+ },
634
+ "dist": {
635
+ "type": "zip",
636
+ "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
637
+ "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
638
+ "shasum": ""
639
+ },
640
+ "require": {
641
+ "php": "^7.1"
642
+ },
643
+ "conflict": {
644
+ "doctrine/common": "<2.9@dev"
645
+ },
646
+ "require-dev": {
647
+ "doctrine/coding-standard": "^4.0",
648
+ "phpunit/phpunit": "^7.0"
649
+ },
650
+ "type": "library",
651
+ "extra": {
652
+ "branch-alias": {
653
+ "dev-master": "1.0.x-dev"
654
+ }
655
+ },
656
+ "autoload": {
657
+ "psr-4": {
658
+ "Doctrine\\Common\\": "lib/Doctrine/Common"
659
+ }
660
+ },
661
+ "notification-url": "https://packagist.org/downloads/",
662
+ "license": [
663
+ "MIT"
664
+ ],
665
+ "authors": [
666
+ {
667
+ "name": "Roman Borschel",
668
+ "email": "roman@code-factory.org"
669
+ },
670
+ {
671
+ "name": "Benjamin Eberlei",
672
+ "email": "kontakt@beberlei.de"
673
+ },
674
+ {
675
+ "name": "Guilherme Blanco",
676
+ "email": "guilhermeblanco@gmail.com"
677
+ },
678
+ {
679
+ "name": "Jonathan Wage",
680
+ "email": "jonwage@gmail.com"
681
+ },
682
+ {
683
+ "name": "Johannes Schmitt",
684
+ "email": "schmittjoh@gmail.com"
685
+ },
686
+ {
687
+ "name": "Marco Pivetta",
688
+ "email": "ocramius@gmail.com"
689
+ }
690
+ ],
691
+ "description": "Doctrine Event Manager component",
692
+ "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
693
+ "keywords": [
694
+ "event",
695
+ "eventdispatcher",
696
+ "eventmanager"
697
+ ],
698
+ "time": "2018-06-11T11:59:03+00:00"
699
+ },
700
+ {
701
+ "name": "doctrine/inflector",
702
+ "version": "v1.3.0",
703
+ "source": {
704
+ "type": "git",
705
+ "url": "https://github.com/doctrine/inflector.git",
706
+ "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
707
+ },
708
+ "dist": {
709
+ "type": "zip",
710
+ "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
711
+ "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
712
+ "shasum": ""
713
+ },
714
+ "require": {
715
+ "php": "^7.1"
716
+ },
717
+ "require-dev": {
718
+ "phpunit/phpunit": "^6.2"
719
+ },
720
+ "type": "library",
721
+ "extra": {
722
+ "branch-alias": {
723
+ "dev-master": "1.3.x-dev"
724
+ }
725
+ },
726
+ "autoload": {
727
+ "psr-4": {
728
+ "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
729
+ }
730
+ },
731
+ "notification-url": "https://packagist.org/downloads/",
732
+ "license": [
733
+ "MIT"
734
+ ],
735
+ "authors": [
736
+ {
737
+ "name": "Roman Borschel",
738
+ "email": "roman@code-factory.org"
739
+ },
740
+ {
741
+ "name": "Benjamin Eberlei",
742
+ "email": "kontakt@beberlei.de"
743
+ },
744
+ {
745
+ "name": "Guilherme Blanco",
746
+ "email": "guilhermeblanco@gmail.com"
747
+ },
748
+ {
749
+ "name": "Jonathan Wage",
750
+ "email": "jonwage@gmail.com"
751
+ },
752
+ {
753
+ "name": "Johannes Schmitt",
754
+ "email": "schmittjoh@gmail.com"
755
+ }
756
+ ],
757
+ "description": "Common String Manipulations with regard to casing and singular/plural rules.",
758
+ "homepage": "http://www.doctrine-project.org",
759
+ "keywords": [
760
+ "inflection",
761
+ "pluralize",
762
+ "singularize",
763
+ "string"
764
+ ],
765
+ "time": "2018-01-09T20:05:19+00:00"
766
+ },
767
+ {
768
+ "name": "doctrine/instantiator",
769
+ "version": "1.2.0",
770
+ "source": {
771
+ "type": "git",
772
+ "url": "https://github.com/doctrine/instantiator.git",
773
+ "reference": "a2c590166b2133a4633738648b6b064edae0814a"
774
+ },
775
+ "dist": {
776
+ "type": "zip",
777
+ "url": "https://api.github.com/repos/doctrine/instantiator/zipball/a2c590166b2133a4633738648b6b064edae0814a",
778
+ "reference": "a2c590166b2133a4633738648b6b064edae0814a",
779
+ "shasum": ""
780
+ },
781
+ "require": {
782
+ "php": "^7.1"
783
+ },
784
+ "require-dev": {
785
+ "doctrine/coding-standard": "^6.0",
786
+ "ext-pdo": "*",
787
+ "ext-phar": "*",
788
+ "phpbench/phpbench": "^0.13",
789
+ "phpstan/phpstan-phpunit": "^0.11",
790
+ "phpstan/phpstan-shim": "^0.11",
791
+ "phpunit/phpunit": "^7.0"
792
+ },
793
+ "type": "library",
794
+ "extra": {
795
+ "branch-alias": {
796
+ "dev-master": "1.2.x-dev"
797
+ }
798
+ },
799
+ "autoload": {
800
+ "psr-4": {
801
+ "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
802
+ }
803
+ },
804
+ "notification-url": "https://packagist.org/downloads/",
805
+ "license": [
806
+ "MIT"
807
+ ],
808
+ "authors": [
809
+ {
810
+ "name": "Marco Pivetta",
811
+ "email": "ocramius@gmail.com",
812
+ "homepage": "http://ocramius.github.com/"
813
+ }
814
+ ],
815
+ "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
816
+ "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
817
+ "keywords": [
818
+ "constructor",
819
+ "instantiate"
820
+ ],
821
+ "time": "2019-03-17T17:37:11+00:00"
822
+ },
823
+ {
824
+ "name": "doctrine/lexer",
825
+ "version": "v1.0.1",
826
+ "source": {
827
+ "type": "git",
828
+ "url": "https://github.com/doctrine/lexer.git",
829
+ "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
830
+ },
831
+ "dist": {
832
+ "type": "zip",
833
+ "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
834
+ "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
835
+ "shasum": ""
836
+ },
837
+ "require": {
838
+ "php": ">=5.3.2"
839
+ },
840
+ "type": "library",
841
+ "extra": {
842
+ "branch-alias": {
843
+ "dev-master": "1.0.x-dev"
844
+ }
845
+ },
846
+ "autoload": {
847
+ "psr-0": {
848
+ "Doctrine\\Common\\Lexer\\": "lib/"
849
+ }
850
+ },
851
+ "notification-url": "https://packagist.org/downloads/",
852
+ "license": [
853
+ "MIT"
854
+ ],
855
+ "authors": [
856
+ {
857
+ "name": "Roman Borschel",
858
+ "email": "roman@code-factory.org"
859
+ },
860
+ {
861
+ "name": "Guilherme Blanco",
862
+ "email": "guilhermeblanco@gmail.com"
863
+ },
864
+ {
865
+ "name": "Johannes Schmitt",
866
+ "email": "schmittjoh@gmail.com"
867
+ }
868
+ ],
869
+ "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
870
+ "homepage": "http://www.doctrine-project.org",
871
+ "keywords": [
872
+ "lexer",
873
+ "parser"
874
+ ],
875
+ "time": "2014-09-09T13:34:57+00:00"
876
+ },
877
+ {
878
+ "name": "doctrine/migrations",
879
+ "version": "v2.0.2",
880
+ "source": {
881
+ "type": "git",
882
+ "url": "https://github.com/doctrine/migrations.git",
883
+ "reference": "43280c14b696a7896a9c70a5e0e4a312ff003187"
884
+ },
885
+ "dist": {
886
+ "type": "zip",
887
+ "url": "https://api.github.com/repos/doctrine/migrations/zipball/43280c14b696a7896a9c70a5e0e4a312ff003187",
888
+ "reference": "43280c14b696a7896a9c70a5e0e4a312ff003187",
889
+ "shasum": ""
890
+ },
891
+ "require": {
892
+ "doctrine/dbal": "^2.6",
893
+ "ocramius/package-versions": "^1.3",
894
+ "ocramius/proxy-manager": "^2.0.2",
895
+ "php": "^7.1",
896
+ "symfony/console": "^3.4||^4.0",
897
+ "symfony/stopwatch": "^3.4||^4.0"
898
+ },
899
+ "require-dev": {
900
+ "doctrine/coding-standard": "^5.0",
901
+ "doctrine/orm": "^2.6",
902
+ "ext-pdo_sqlite": "*",
903
+ "jdorn/sql-formatter": "^1.1",
904
+ "mikey179/vfsstream": "^1.6",
905
+ "phpstan/phpstan": "^0.10",
906
+ "phpstan/phpstan-deprecation-rules": "^0.10",
907
+ "phpstan/phpstan-phpunit": "^0.10",
908
+ "phpstan/phpstan-strict-rules": "^0.10",
909
+ "phpunit/phpunit": "^7.0",
910
+ "symfony/process": "^3.4||^4.0",
911
+ "symfony/yaml": "^3.4||^4.0"
912
+ },
913
+ "suggest": {
914
+ "jdorn/sql-formatter": "Allows to generate formatted SQL with the diff command.",
915
+ "symfony/yaml": "Allows the use of yaml for migration configuration files."
916
+ },
917
+ "bin": [
918
+ "bin/doctrine-migrations"
919
+ ],
920
+ "type": "library",
921
+ "extra": {
922
+ "branch-alias": {
923
+ "dev-master": "2.0.x-dev"
924
+ }
925
+ },
926
+ "autoload": {
927
+ "psr-4": {
928
+ "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
929
+ }
930
+ },
931
+ "notification-url": "https://packagist.org/downloads/",
932
+ "license": [
933
+ "MIT"
934
+ ],
935
+ "authors": [
936
+ {
937
+ "name": "Benjamin Eberlei",
938
+ "email": "kontakt@beberlei.de"
939
+ },
940
+ {
941
+ "name": "Jonathan Wage",
942
+ "email": "jonwage@gmail.com"
943
+ },
944
+ {
945
+ "name": "Michael Simonson",
946
+ "email": "contact@mikesimonson.com"
947
+ }
948
+ ],
949
+ "description": "PHP Doctrine Migrations project offer additional functionality on top of the database abstraction layer (DBAL) for versioning your database schema and easily deploying changes to it. It is a very easy to use and a powerful tool.",
950
+ "homepage": "https://www.doctrine-project.org/projects/migrations.html",
951
+ "keywords": [
952
+ "database",
953
+ "dbal",
954
+ "migrations",
955
+ "php"
956
+ ],
957
+ "time": "2019-04-25T22:14:55+00:00"
958
+ },
959
+ {
960
+ "name": "doctrine/orm",
961
+ "version": "v2.6.3",
962
+ "source": {
963
+ "type": "git",
964
+ "url": "https://github.com/doctrine/orm.git",
965
+ "reference": "434820973cadf2da2d66e7184be370084cc32ca8"
966
+ },
967
+ "dist": {
968
+ "type": "zip",
969
+ "url": "https://api.github.com/repos/doctrine/orm/zipball/434820973cadf2da2d66e7184be370084cc32ca8",
970
+ "reference": "434820973cadf2da2d66e7184be370084cc32ca8",
971
+ "shasum": ""
972
+ },
973
+ "require": {
974
+ "doctrine/annotations": "~1.5",
975
+ "doctrine/cache": "~1.6",
976
+ "doctrine/collections": "^1.4",
977
+ "doctrine/common": "^2.7.1",
978
+ "doctrine/dbal": "^2.6",
979
+ "doctrine/instantiator": "~1.1",
980
+ "ext-pdo": "*",
981
+ "php": "^7.1",
982
+ "symfony/console": "~3.0|~4.0"
983
+ },
984
+ "require-dev": {
985
+ "doctrine/coding-standard": "^1.0",
986
+ "phpunit/phpunit": "^6.5",
987
+ "squizlabs/php_codesniffer": "^3.2",
988
+ "symfony/yaml": "~3.4|~4.0"
989
+ },
990
+ "suggest": {
991
+ "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
992
+ },
993
+ "bin": [
994
+ "bin/doctrine"
995
+ ],
996
+ "type": "library",
997
+ "extra": {
998
+ "branch-alias": {
999
+ "dev-master": "2.6.x-dev"
1000
+ }
1001
+ },
1002
+ "autoload": {
1003
+ "psr-4": {
1004
+ "Doctrine\\ORM\\": "lib/Doctrine/ORM"
1005
+ }
1006
+ },
1007
+ "notification-url": "https://packagist.org/downloads/",
1008
+ "license": [
1009
+ "MIT"
1010
+ ],
1011
+ "authors": [
1012
+ {
1013
+ "name": "Roman Borschel",
1014
+ "email": "roman@code-factory.org"
1015
+ },
1016
+ {
1017
+ "name": "Benjamin Eberlei",
1018
+ "email": "kontakt@beberlei.de"
1019
+ },
1020
+ {
1021
+ "name": "Guilherme Blanco",
1022
+ "email": "guilhermeblanco@gmail.com"
1023
+ },
1024
+ {
1025
+ "name": "Jonathan Wage",
1026
+ "email": "jonwage@gmail.com"
1027
+ },
1028
+ {
1029
+ "name": "Marco Pivetta",
1030
+ "email": "ocramius@gmail.com"
1031
+ }
1032
+ ],
1033
+ "description": "Object-Relational-Mapper for PHP",
1034
+ "homepage": "http://www.doctrine-project.org",
1035
+ "keywords": [
1036
+ "database",
1037
+ "orm"
1038
+ ],
1039
+ "time": "2018-11-20T23:46:46+00:00"
1040
+ },
1041
+ {
1042
+ "name": "doctrine/persistence",
1043
+ "version": "1.1.1",
1044
+ "source": {
1045
+ "type": "git",
1046
+ "url": "https://github.com/doctrine/persistence.git",
1047
+ "reference": "3da7c9d125591ca83944f477e65ed3d7b4617c48"
1048
+ },
1049
+ "dist": {
1050
+ "type": "zip",
1051
+ "url": "https://api.github.com/repos/doctrine/persistence/zipball/3da7c9d125591ca83944f477e65ed3d7b4617c48",
1052
+ "reference": "3da7c9d125591ca83944f477e65ed3d7b4617c48",
1053
+ "shasum": ""
1054
+ },
1055
+ "require": {
1056
+ "doctrine/annotations": "^1.0",
1057
+ "doctrine/cache": "^1.0",
1058
+ "doctrine/collections": "^1.0",
1059
+ "doctrine/event-manager": "^1.0",
1060
+ "doctrine/reflection": "^1.0",
1061
+ "php": "^7.1"
1062
+ },
1063
+ "conflict": {
1064
+ "doctrine/common": "<2.10@dev"
1065
+ },
1066
+ "require-dev": {
1067
+ "doctrine/coding-standard": "^5.0",
1068
+ "phpstan/phpstan": "^0.8",
1069
+ "phpunit/phpunit": "^7.0"
1070
+ },
1071
+ "type": "library",
1072
+ "extra": {
1073
+ "branch-alias": {
1074
+ "dev-master": "1.1.x-dev"
1075
+ }
1076
+ },
1077
+ "autoload": {
1078
+ "psr-4": {
1079
+ "Doctrine\\Common\\": "lib/Doctrine/Common"
1080
+ }
1081
+ },
1082
+ "notification-url": "https://packagist.org/downloads/",
1083
+ "license": [
1084
+ "MIT"
1085
+ ],
1086
+ "authors": [
1087
+ {
1088
+ "name": "Roman Borschel",
1089
+ "email": "roman@code-factory.org"
1090
+ },
1091
+ {
1092
+ "name": "Benjamin Eberlei",
1093
+ "email": "kontakt@beberlei.de"
1094
+ },
1095
+ {
1096
+ "name": "Guilherme Blanco",
1097
+ "email": "guilhermeblanco@gmail.com"
1098
+ },
1099
+ {
1100
+ "name": "Jonathan Wage",
1101
+ "email": "jonwage@gmail.com"
1102
+ },
1103
+ {
1104
+ "name": "Johannes Schmitt",
1105
+ "email": "schmittjoh@gmail.com"
1106
+ },
1107
+ {
1108
+ "name": "Marco Pivetta",
1109
+ "email": "ocramius@gmail.com"
1110
+ }
1111
+ ],
1112
+ "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
1113
+ "homepage": "https://doctrine-project.org/projects/persistence.html",
1114
+ "keywords": [
1115
+ "mapper",
1116
+ "object",
1117
+ "odm",
1118
+ "orm",
1119
+ "persistence"
1120
+ ],
1121
+ "time": "2019-04-23T08:28:24+00:00"
1122
+ },
1123
+ {
1124
+ "name": "doctrine/reflection",
1125
+ "version": "v1.0.0",
1126
+ "source": {
1127
+ "type": "git",
1128
+ "url": "https://github.com/doctrine/reflection.git",
1129
+ "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6"
1130
+ },
1131
+ "dist": {
1132
+ "type": "zip",
1133
+ "url": "https://api.github.com/repos/doctrine/reflection/zipball/02538d3f95e88eb397a5f86274deb2c6175c2ab6",
1134
+ "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6",
1135
+ "shasum": ""
1136
+ },
1137
+ "require": {
1138
+ "doctrine/annotations": "^1.0",
1139
+ "ext-tokenizer": "*",
1140
+ "php": "^7.1"
1141
+ },
1142
+ "require-dev": {
1143
+ "doctrine/coding-standard": "^4.0",
1144
+ "doctrine/common": "^2.8",
1145
+ "phpstan/phpstan": "^0.9.2",
1146
+ "phpstan/phpstan-phpunit": "^0.9.4",
1147
+ "phpunit/phpunit": "^7.0",
1148
+ "squizlabs/php_codesniffer": "^3.0"
1149
+ },
1150
+ "type": "library",
1151
+ "extra": {
1152
+ "branch-alias": {
1153
+ "dev-master": "1.0.x-dev"
1154
+ }
1155
+ },
1156
+ "autoload": {
1157
+ "psr-4": {
1158
+ "Doctrine\\Common\\": "lib/Doctrine/Common"
1159
+ }
1160
+ },
1161
+ "notification-url": "https://packagist.org/downloads/",
1162
+ "license": [
1163
+ "MIT"
1164
+ ],
1165
+ "authors": [
1166
+ {
1167
+ "name": "Roman Borschel",
1168
+ "email": "roman@code-factory.org"
1169
+ },
1170
+ {
1171
+ "name": "Benjamin Eberlei",
1172
+ "email": "kontakt@beberlei.de"
1173
+ },
1174
+ {
1175
+ "name": "Guilherme Blanco",
1176
+ "email": "guilhermeblanco@gmail.com"
1177
+ },
1178
+ {
1179
+ "name": "Jonathan Wage",
1180
+ "email": "jonwage@gmail.com"
1181
+ },
1182
+ {
1183
+ "name": "Johannes Schmitt",
1184
+ "email": "schmittjoh@gmail.com"
1185
+ },
1186
+ {
1187
+ "name": "Marco Pivetta",
1188
+ "email": "ocramius@gmail.com"
1189
+ }
1190
+ ],
1191
+ "description": "Doctrine Reflection component",
1192
+ "homepage": "https://www.doctrine-project.org/projects/reflection.html",
1193
+ "keywords": [
1194
+ "reflection"
1195
+ ],
1196
+ "time": "2018-06-14T14:45:07+00:00"
1197
+ },
1198
+ {
1199
+ "name": "jdorn/sql-formatter",
1200
+ "version": "v1.2.17",
1201
+ "source": {
1202
+ "type": "git",
1203
+ "url": "https://github.com/jdorn/sql-formatter.git",
1204
+ "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
1205
+ },
1206
+ "dist": {
1207
+ "type": "zip",
1208
+ "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
1209
+ "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
1210
+ "shasum": ""
1211
+ },
1212
+ "require": {
1213
+ "php": ">=5.2.4"
1214
+ },
1215
+ "require-dev": {
1216
+ "phpunit/phpunit": "3.7.*"
1217
+ },
1218
+ "type": "library",
1219
+ "extra": {
1220
+ "branch-alias": {
1221
+ "dev-master": "1.3.x-dev"
1222
+ }
1223
+ },
1224
+ "autoload": {
1225
+ "classmap": [
1226
+ "lib"
1227
+ ]
1228
+ },
1229
+ "notification-url": "https://packagist.org/downloads/",
1230
+ "license": [
1231
+ "MIT"
1232
+ ],
1233
+ "authors": [
1234
+ {
1235
+ "name": "Jeremy Dorn",
1236
+ "email": "jeremy@jeremydorn.com",
1237
+ "homepage": "http://jeremydorn.com/"
1238
+ }
1239
+ ],
1240
+ "description": "a PHP SQL highlighting library",
1241
+ "homepage": "https://github.com/jdorn/sql-formatter/",
1242
+ "keywords": [
1243
+ "highlight",
1244
+ "sql"
1245
+ ],
1246
+ "time": "2014-01-12T16:20:24+00:00"
1247
+ },
1248
+ {
1249
+ "name": "ocramius/package-versions",
1250
+ "version": "1.4.0",
1251
+ "source": {
1252
+ "type": "git",
1253
+ "url": "https://github.com/Ocramius/PackageVersions.git",
1254
+ "reference": "a4d4b60d0e60da2487bd21a2c6ac089f85570dbb"
1255
+ },
1256
+ "dist": {
1257
+ "type": "zip",
1258
+ "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/a4d4b60d0e60da2487bd21a2c6ac089f85570dbb",
1259
+ "reference": "a4d4b60d0e60da2487bd21a2c6ac089f85570dbb",
1260
+ "shasum": ""
1261
+ },
1262
+ "require": {
1263
+ "composer-plugin-api": "^1.0.0",
1264
+ "php": "^7.1.0"
1265
+ },
1266
+ "require-dev": {
1267
+ "composer/composer": "^1.6.3",
1268
+ "doctrine/coding-standard": "^5.0.1",
1269
+ "ext-zip": "*",
1270
+ "infection/infection": "^0.7.1",
1271
+ "phpunit/phpunit": "^7.0.0"
1272
+ },
1273
+ "type": "composer-plugin",
1274
+ "extra": {
1275
+ "class": "PackageVersions\\Installer",
1276
+ "branch-alias": {
1277
+ "dev-master": "2.0.x-dev"
1278
+ }
1279
+ },
1280
+ "autoload": {
1281
+ "psr-4": {
1282
+ "PackageVersions\\": "src/PackageVersions"
1283
+ }
1284
+ },
1285
+ "notification-url": "https://packagist.org/downloads/",
1286
+ "license": [
1287
+ "MIT"
1288
+ ],
1289
+ "authors": [
1290
+ {
1291
+ "name": "Marco Pivetta",
1292
+ "email": "ocramius@gmail.com"
1293
+ }
1294
+ ],
1295
+ "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
1296
+ "time": "2019-02-21T12:16:21+00:00"
1297
+ },
1298
+ {
1299
+ "name": "ocramius/proxy-manager",
1300
+ "version": "2.2.2",
1301
+ "source": {
1302
+ "type": "git",
1303
+ "url": "https://github.com/Ocramius/ProxyManager.git",
1304
+ "reference": "14b137b06b0f911944132df9d51e445a35920ab1"
1305
+ },
1306
+ "dist": {
1307
+ "type": "zip",
1308
+ "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/14b137b06b0f911944132df9d51e445a35920ab1",
1309
+ "reference": "14b137b06b0f911944132df9d51e445a35920ab1",
1310
+ "shasum": ""
1311
+ },
1312
+ "require": {
1313
+ "ocramius/package-versions": "^1.1.3",
1314
+ "php": "^7.2.0",
1315
+ "zendframework/zend-code": "^3.3.0"
1316
+ },
1317
+ "require-dev": {
1318
+ "couscous/couscous": "^1.6.1",
1319
+ "ext-phar": "*",
1320
+ "humbug/humbug": "1.0.0-RC.0@RC",
1321
+ "nikic/php-parser": "^3.1.1",
1322
+ "padraic/phpunit-accelerator": "dev-master@DEV",
1323
+ "phpbench/phpbench": "^0.12.2",
1324
+ "phpstan/phpstan": "dev-master#856eb10a81c1d27c701a83f167dc870fd8f4236a as 0.9.999",
1325
+ "phpstan/phpstan-phpunit": "dev-master#5629c0a1f4a9c417cb1077cf6693ad9753895761",
1326
+ "phpunit/phpunit": "^6.4.3",
1327
+ "squizlabs/php_codesniffer": "^2.9.1"
1328
+ },
1329
+ "suggest": {
1330
+ "ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects",
1331
+ "zendframework/zend-json": "To have the JsonRpc adapter (Remote Object feature)",
1332
+ "zendframework/zend-soap": "To have the Soap adapter (Remote Object feature)",
1333
+ "zendframework/zend-xmlrpc": "To have the XmlRpc adapter (Remote Object feature)"
1334
+ },
1335
+ "type": "library",
1336
+ "extra": {
1337
+ "branch-alias": {
1338
+ "dev-master": "3.0.x-dev"
1339
+ }
1340
+ },
1341
+ "autoload": {
1342
+ "psr-0": {
1343
+ "ProxyManager\\": "src"
1344
+ }
1345
+ },
1346
+ "notification-url": "https://packagist.org/downloads/",
1347
+ "license": [
1348
+ "MIT"
1349
+ ],
1350
+ "authors": [
1351
+ {
1352
+ "name": "Marco Pivetta",
1353
+ "email": "ocramius@gmail.com",
1354
+ "homepage": "http://ocramius.github.io/"
1355
+ }
1356
+ ],
1357
+ "description": "A library providing utilities to generate, instantiate and generally operate with Object Proxies",
1358
+ "homepage": "https://github.com/Ocramius/ProxyManager",
1359
+ "keywords": [
1360
+ "aop",
1361
+ "lazy loading",
1362
+ "proxy",
1363
+ "proxy pattern",
1364
+ "service proxies"
1365
+ ],
1366
+ "time": "2018-09-27T13:45:01+00:00"
1367
+ },
1368
+ {
1369
+ "name": "psr/cache",
1370
+ "version": "1.0.1",
1371
+ "source": {
1372
+ "type": "git",
1373
+ "url": "https://github.com/php-fig/cache.git",
1374
+ "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
1375
+ },
1376
+ "dist": {
1377
+ "type": "zip",
1378
+ "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
1379
+ "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
1380
+ "shasum": ""
1381
+ },
1382
+ "require": {
1383
+ "php": ">=5.3.0"
1384
+ },
1385
+ "type": "library",
1386
+ "extra": {
1387
+ "branch-alias": {
1388
+ "dev-master": "1.0.x-dev"
1389
+ }
1390
+ },
1391
+ "autoload": {
1392
+ "psr-4": {
1393
+ "Psr\\Cache\\": "src/"
1394
+ }
1395
+ },
1396
+ "notification-url": "https://packagist.org/downloads/",
1397
+ "license": [
1398
+ "MIT"
1399
+ ],
1400
+ "authors": [
1401
+ {
1402
+ "name": "PHP-FIG",
1403
+ "homepage": "http://www.php-fig.org/"
1404
+ }
1405
+ ],
1406
+ "description": "Common interface for caching libraries",
1407
+ "keywords": [
1408
+ "cache",
1409
+ "psr",
1410
+ "psr-6"
1411
+ ],
1412
+ "time": "2016-08-06T20:24:11+00:00"
1413
+ },
1414
+ {
1415
+ "name": "psr/container",
1416
+ "version": "1.0.0",
1417
+ "source": {
1418
+ "type": "git",
1419
+ "url": "https://github.com/php-fig/container.git",
1420
+ "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
1421
+ },
1422
+ "dist": {
1423
+ "type": "zip",
1424
+ "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
1425
+ "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
1426
+ "shasum": ""
1427
+ },
1428
+ "require": {
1429
+ "php": ">=5.3.0"
1430
+ },
1431
+ "type": "library",
1432
+ "extra": {
1433
+ "branch-alias": {
1434
+ "dev-master": "1.0.x-dev"
1435
+ }
1436
+ },
1437
+ "autoload": {
1438
+ "psr-4": {
1439
+ "Psr\\Container\\": "src/"
1440
+ }
1441
+ },
1442
+ "notification-url": "https://packagist.org/downloads/",
1443
+ "license": [
1444
+ "MIT"
1445
+ ],
1446
+ "authors": [
1447
+ {
1448
+ "name": "PHP-FIG",
1449
+ "homepage": "http://www.php-fig.org/"
1450
+ }
1451
+ ],
1452
+ "description": "Common Container Interface (PHP FIG PSR-11)",
1453
+ "homepage": "https://github.com/php-fig/container",
1454
+ "keywords": [
1455
+ "PSR-11",
1456
+ "container",
1457
+ "container-interface",
1458
+ "container-interop",
1459
+ "psr"
1460
+ ],
1461
+ "time": "2017-02-14T16:28:37+00:00"
1462
+ },
1463
+ {
1464
+ "name": "psr/log",
1465
+ "version": "1.1.0",
1466
+ "source": {
1467
+ "type": "git",
1468
+ "url": "https://github.com/php-fig/log.git",
1469
+ "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
1470
+ },
1471
+ "dist": {
1472
+ "type": "zip",
1473
+ "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
1474
+ "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
1475
+ "shasum": ""
1476
+ },
1477
+ "require": {
1478
+ "php": ">=5.3.0"
1479
+ },
1480
+ "type": "library",
1481
+ "extra": {
1482
+ "branch-alias": {
1483
+ "dev-master": "1.0.x-dev"
1484
+ }
1485
+ },
1486
+ "autoload": {
1487
+ "psr-4": {
1488
+ "Psr\\Log\\": "Psr/Log/"
1489
+ }
1490
+ },
1491
+ "notification-url": "https://packagist.org/downloads/",
1492
+ "license": [
1493
+ "MIT"
1494
+ ],
1495
+ "authors": [
1496
+ {
1497
+ "name": "PHP-FIG",
1498
+ "homepage": "http://www.php-fig.org/"
1499
+ }
1500
+ ],
1501
+ "description": "Common interface for logging libraries",
1502
+ "homepage": "https://github.com/php-fig/log",
1503
+ "keywords": [
1504
+ "log",
1505
+ "psr",
1506
+ "psr-3"
1507
+ ],
1508
+ "time": "2018-11-20T15:27:04+00:00"
1509
+ },
1510
+ {
1511
+ "name": "psr/simple-cache",
1512
+ "version": "1.0.1",
1513
+ "source": {
1514
+ "type": "git",
1515
+ "url": "https://github.com/php-fig/simple-cache.git",
1516
+ "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
1517
+ },
1518
+ "dist": {
1519
+ "type": "zip",
1520
+ "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
1521
+ "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
1522
+ "shasum": ""
1523
+ },
1524
+ "require": {
1525
+ "php": ">=5.3.0"
1526
+ },
1527
+ "type": "library",
1528
+ "extra": {
1529
+ "branch-alias": {
1530
+ "dev-master": "1.0.x-dev"
1531
+ }
1532
+ },
1533
+ "autoload": {
1534
+ "psr-4": {
1535
+ "Psr\\SimpleCache\\": "src/"
1536
+ }
1537
+ },
1538
+ "notification-url": "https://packagist.org/downloads/",
1539
+ "license": [
1540
+ "MIT"
1541
+ ],
1542
+ "authors": [
1543
+ {
1544
+ "name": "PHP-FIG",
1545
+ "homepage": "http://www.php-fig.org/"
1546
+ }
1547
+ ],
1548
+ "description": "Common interfaces for simple caching",
1549
+ "keywords": [
1550
+ "cache",
1551
+ "caching",
1552
+ "psr",
1553
+ "psr-16",
1554
+ "simple-cache"
1555
+ ],
1556
+ "time": "2017-10-23T01:57:42+00:00"
1557
+ },
1558
+ {
1559
+ "name": "sensio/framework-extra-bundle",
1560
+ "version": "v5.3.1",
1561
+ "source": {
1562
+ "type": "git",
1563
+ "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
1564
+ "reference": "5f75c4658b03301cba17baa15a840b57b72b4262"
1565
+ },
1566
+ "dist": {
1567
+ "type": "zip",
1568
+ "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/5f75c4658b03301cba17baa15a840b57b72b4262",
1569
+ "reference": "5f75c4658b03301cba17baa15a840b57b72b4262",
1570
+ "shasum": ""
1571
+ },
1572
+ "require": {
1573
+ "doctrine/annotations": "^1.0",
1574
+ "doctrine/persistence": "^1.0",
1575
+ "php": ">=7.1.3",
1576
+ "symfony/config": "^3.4|^4.2",
1577
+ "symfony/dependency-injection": "^3.4|^4.2",
1578
+ "symfony/framework-bundle": "^3.4|^4.2",
1579
+ "symfony/http-kernel": "^3.4|^4.2"
1580
+ },
1581
+ "require-dev": {
1582
+ "doctrine/doctrine-bundle": "^1.6",
1583
+ "doctrine/orm": "^2.5",
1584
+ "nyholm/psr7": "^1.1",
1585
+ "symfony/browser-kit": "^3.4|^4.2",
1586
+ "symfony/dom-crawler": "^3.4|^4.2",
1587
+ "symfony/expression-language": "^3.4|^4.2",
1588
+ "symfony/finder": "^3.4|^4.2",
1589
+ "symfony/monolog-bridge": "^3.0|^4.0",
1590
+ "symfony/monolog-bundle": "^3.2",
1591
+ "symfony/phpunit-bridge": "^3.4.19|^4.1.8",
1592
+ "symfony/psr-http-message-bridge": "^1.1",
1593
+ "symfony/security-bundle": "^3.4|^4.2",
1594
+ "symfony/twig-bundle": "^3.4|^4.2",
1595
+ "symfony/yaml": "^3.4|^4.2",
1596
+ "twig/twig": "~1.12|~2.0"
1597
+ },
1598
+ "suggest": {
1599
+ "symfony/expression-language": "",
1600
+ "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
1601
+ "symfony/security-bundle": ""
1602
+ },
1603
+ "type": "symfony-bundle",
1604
+ "extra": {
1605
+ "branch-alias": {
1606
+ "dev-master": "5.3.x-dev"
1607
+ }
1608
+ },
1609
+ "autoload": {
1610
+ "psr-4": {
1611
+ "Sensio\\Bundle\\FrameworkExtraBundle\\": ""
1612
+ }
1613
+ },
1614
+ "notification-url": "https://packagist.org/downloads/",
1615
+ "license": [
1616
+ "MIT"
1617
+ ],
1618
+ "authors": [
1619
+ {
1620
+ "name": "Fabien Potencier",
1621
+ "email": "fabien@symfony.com"
1622
+ }
1623
+ ],
1624
+ "description": "This bundle provides a way to configure your controllers with annotations",
1625
+ "keywords": [
1626
+ "annotations",
1627
+ "controllers"
1628
+ ],
1629
+ "time": "2019-04-10T06:00:20+00:00"
1630
+ },
1631
+ {
1632
+ "name": "symfony/cache",
1633
+ "version": "v4.2.7",
1634
+ "source": {
1635
+ "type": "git",
1636
+ "url": "https://github.com/symfony/cache.git",
1637
+ "reference": "9e64db924324700e19ef4f21c2c279a35ff9bdff"
1638
+ },
1639
+ "dist": {
1640
+ "type": "zip",
1641
+ "url": "https://api.github.com/repos/symfony/cache/zipball/9e64db924324700e19ef4f21c2c279a35ff9bdff",
1642
+ "reference": "9e64db924324700e19ef4f21c2c279a35ff9bdff",
1643
+ "shasum": ""
1644
+ },
1645
+ "require": {
1646
+ "php": "^7.1.3",
1647
+ "psr/cache": "~1.0",
1648
+ "psr/log": "~1.0",
1649
+ "psr/simple-cache": "^1.0",
1650
+ "symfony/contracts": "^1.0",
1651
+ "symfony/var-exporter": "^4.2"
1652
+ },
1653
+ "conflict": {
1654
+ "doctrine/dbal": "<2.5",
1655
+ "symfony/dependency-injection": "<3.4",
1656
+ "symfony/var-dumper": "<3.4"
1657
+ },
1658
+ "provide": {
1659
+ "psr/cache-implementation": "1.0",
1660
+ "psr/simple-cache-implementation": "1.0",
1661
+ "symfony/cache-contracts-implementation": "1.0"
1662
+ },
1663
+ "require-dev": {
1664
+ "cache/integration-tests": "dev-master",
1665
+ "doctrine/cache": "~1.6",
1666
+ "doctrine/dbal": "~2.5",
1667
+ "predis/predis": "~1.1",
1668
+ "symfony/config": "~4.2",
1669
+ "symfony/dependency-injection": "~3.4|~4.1",
1670
+ "symfony/var-dumper": "^4.1.1"
1671
+ },
1672
+ "type": "library",
1673
+ "extra": {
1674
+ "branch-alias": {
1675
+ "dev-master": "4.2-dev"
1676
+ }
1677
+ },
1678
+ "autoload": {
1679
+ "psr-4": {
1680
+ "Symfony\\Component\\Cache\\": ""
1681
+ },
1682
+ "exclude-from-classmap": [
1683
+ "/Tests/"
1684
+ ]
1685
+ },
1686
+ "notification-url": "https://packagist.org/downloads/",
1687
+ "license": [
1688
+ "MIT"
1689
+ ],
1690
+ "authors": [
1691
+ {
1692
+ "name": "Nicolas Grekas",
1693
+ "email": "p@tchwork.com"
1694
+ },
1695
+ {
1696
+ "name": "Symfony Community",
1697
+ "homepage": "https://symfony.com/contributors"
1698
+ }
1699
+ ],
1700
+ "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
1701
+ "homepage": "https://symfony.com",
1702
+ "keywords": [
1703
+ "caching",
1704
+ "psr6"
1705
+ ],
1706
+ "time": "2019-04-16T09:36:45+00:00"
1707
+ },
1708
+ {
1709
+ "name": "symfony/config",
1710
+ "version": "v4.2.7",
1711
+ "source": {
1712
+ "type": "git",
1713
+ "url": "https://github.com/symfony/config.git",
1714
+ "reference": "0e745ead307d5dcd4e163e94a47ec04b1428943f"
1715
+ },
1716
+ "dist": {
1717
+ "type": "zip",
1718
+ "url": "https://api.github.com/repos/symfony/config/zipball/0e745ead307d5dcd4e163e94a47ec04b1428943f",
1719
+ "reference": "0e745ead307d5dcd4e163e94a47ec04b1428943f",
1720
+ "shasum": ""
1721
+ },
1722
+ "require": {
1723
+ "php": "^7.1.3",
1724
+ "symfony/filesystem": "~3.4|~4.0",
1725
+ "symfony/polyfill-ctype": "~1.8"
1726
+ },
1727
+ "conflict": {
1728
+ "symfony/finder": "<3.4"
1729
+ },
1730
+ "require-dev": {
1731
+ "symfony/dependency-injection": "~3.4|~4.0",
1732
+ "symfony/event-dispatcher": "~3.4|~4.0",
1733
+ "symfony/finder": "~3.4|~4.0",
1734
+ "symfony/yaml": "~3.4|~4.0"
1735
+ },
1736
+ "suggest": {
1737
+ "symfony/yaml": "To use the yaml reference dumper"
1738
+ },
1739
+ "type": "library",
1740
+ "extra": {
1741
+ "branch-alias": {
1742
+ "dev-master": "4.2-dev"
1743
+ }
1744
+ },
1745
+ "autoload": {
1746
+ "psr-4": {
1747
+ "Symfony\\Component\\Config\\": ""
1748
+ },
1749
+ "exclude-from-classmap": [
1750
+ "/Tests/"
1751
+ ]
1752
+ },
1753
+ "notification-url": "https://packagist.org/downloads/",
1754
+ "license": [
1755
+ "MIT"
1756
+ ],
1757
+ "authors": [
1758
+ {
1759
+ "name": "Fabien Potencier",
1760
+ "email": "fabien@symfony.com"
1761
+ },
1762
+ {
1763
+ "name": "Symfony Community",
1764
+ "homepage": "https://symfony.com/contributors"
1765
+ }
1766
+ ],
1767
+ "description": "Symfony Config Component",
1768
+ "homepage": "https://symfony.com",
1769
+ "time": "2019-04-01T14:03:25+00:00"
1770
+ },
1771
+ {
1772
+ "name": "symfony/console",
1773
+ "version": "v4.2.7",
1774
+ "source": {
1775
+ "type": "git",
1776
+ "url": "https://github.com/symfony/console.git",
1777
+ "reference": "e2840bb38bddad7a0feaf85931e38fdcffdb2f81"
1778
+ },
1779
+ "dist": {
1780
+ "type": "zip",
1781
+ "url": "https://api.github.com/repos/symfony/console/zipball/e2840bb38bddad7a0feaf85931e38fdcffdb2f81",
1782
+ "reference": "e2840bb38bddad7a0feaf85931e38fdcffdb2f81",
1783
+ "shasum": ""
1784
+ },
1785
+ "require": {
1786
+ "php": "^7.1.3",
1787
+ "symfony/contracts": "^1.0",
1788
+ "symfony/polyfill-mbstring": "~1.0"
1789
+ },
1790
+ "conflict": {
1791
+ "symfony/dependency-injection": "<3.4",
1792
+ "symfony/process": "<3.3"
1793
+ },
1794
+ "provide": {
1795
+ "psr/log-implementation": "1.0"
1796
+ },
1797
+ "require-dev": {
1798
+ "psr/log": "~1.0",
1799
+ "symfony/config": "~3.4|~4.0",
1800
+ "symfony/dependency-injection": "~3.4|~4.0",
1801
+ "symfony/event-dispatcher": "~3.4|~4.0",
1802
+ "symfony/lock": "~3.4|~4.0",
1803
+ "symfony/process": "~3.4|~4.0"
1804
+ },
1805
+ "suggest": {
1806
+ "psr/log": "For using the console logger",
1807
+ "symfony/event-dispatcher": "",
1808
+ "symfony/lock": "",
1809
+ "symfony/process": ""
1810
+ },
1811
+ "type": "library",
1812
+ "extra": {
1813
+ "branch-alias": {
1814
+ "dev-master": "4.2-dev"
1815
+ }
1816
+ },
1817
+ "autoload": {
1818
+ "psr-4": {
1819
+ "Symfony\\Component\\Console\\": ""
1820
+ },
1821
+ "exclude-from-classmap": [
1822
+ "/Tests/"
1823
+ ]
1824
+ },
1825
+ "notification-url": "https://packagist.org/downloads/",
1826
+ "license": [
1827
+ "MIT"
1828
+ ],
1829
+ "authors": [
1830
+ {
1831
+ "name": "Fabien Potencier",
1832
+ "email": "fabien@symfony.com"
1833
+ },
1834
+ {
1835
+ "name": "Symfony Community",
1836
+ "homepage": "https://symfony.com/contributors"
1837
+ }
1838
+ ],
1839
+ "description": "Symfony Console Component",
1840
+ "homepage": "https://symfony.com",
1841
+ "time": "2019-04-08T14:23:48+00:00"
1842
+ },
1843
+ {
1844
+ "name": "symfony/contracts",
1845
+ "version": "v1.0.2",
1846
+ "source": {
1847
+ "type": "git",
1848
+ "url": "https://github.com/symfony/contracts.git",
1849
+ "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf"
1850
+ },
1851
+ "dist": {
1852
+ "type": "zip",
1853
+ "url": "https://api.github.com/repos/symfony/contracts/zipball/1aa7ab2429c3d594dd70689604b5cf7421254cdf",
1854
+ "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf",
1855
+ "shasum": ""
1856
+ },
1857
+ "require": {
1858
+ "php": "^7.1.3"
1859
+ },
1860
+ "require-dev": {
1861
+ "psr/cache": "^1.0",
1862
+ "psr/container": "^1.0"
1863
+ },
1864
+ "suggest": {
1865
+ "psr/cache": "When using the Cache contracts",
1866
+ "psr/container": "When using the Service contracts",
1867
+ "symfony/cache-contracts-implementation": "",
1868
+ "symfony/service-contracts-implementation": "",
1869
+ "symfony/translation-contracts-implementation": ""
1870
+ },
1871
+ "type": "library",
1872
+ "extra": {
1873
+ "branch-alias": {
1874
+ "dev-master": "1.0-dev"
1875
+ }
1876
+ },
1877
+ "autoload": {
1878
+ "psr-4": {
1879
+ "Symfony\\Contracts\\": ""
1880
+ },
1881
+ "exclude-from-classmap": [
1882
+ "**/Tests/"
1883
+ ]
1884
+ },
1885
+ "notification-url": "https://packagist.org/downloads/",
1886
+ "license": [
1887
+ "MIT"
1888
+ ],
1889
+ "authors": [
1890
+ {
1891
+ "name": "Nicolas Grekas",
1892
+ "email": "p@tchwork.com"
1893
+ },
1894
+ {
1895
+ "name": "Symfony Community",
1896
+ "homepage": "https://symfony.com/contributors"
1897
+ }
1898
+ ],
1899
+ "description": "A set of abstractions extracted out of the Symfony components",
1900
+ "homepage": "https://symfony.com",
1901
+ "keywords": [
1902
+ "abstractions",
1903
+ "contracts",
1904
+ "decoupling",
1905
+ "interfaces",
1906
+ "interoperability",
1907
+ "standards"
1908
+ ],
1909
+ "time": "2018-12-05T08:06:11+00:00"
1910
+ },
1911
+ {
1912
+ "name": "symfony/debug",
1913
+ "version": "v4.2.7",
1914
+ "source": {
1915
+ "type": "git",
1916
+ "url": "https://github.com/symfony/debug.git",
1917
+ "reference": "2d279b6bb1d582dd5740d4d3251ae8c18812ed37"
1918
+ },
1919
+ "dist": {
1920
+ "type": "zip",
1921
+ "url": "https://api.github.com/repos/symfony/debug/zipball/2d279b6bb1d582dd5740d4d3251ae8c18812ed37",
1922
+ "reference": "2d279b6bb1d582dd5740d4d3251ae8c18812ed37",
1923
+ "shasum": ""
1924
+ },
1925
+ "require": {
1926
+ "php": "^7.1.3",
1927
+ "psr/log": "~1.0"
1928
+ },
1929
+ "conflict": {
1930
+ "symfony/http-kernel": "<3.4"
1931
+ },
1932
+ "require-dev": {
1933
+ "symfony/http-kernel": "~3.4|~4.0"
1934
+ },
1935
+ "type": "library",
1936
+ "extra": {
1937
+ "branch-alias": {
1938
+ "dev-master": "4.2-dev"
1939
+ }
1940
+ },
1941
+ "autoload": {
1942
+ "psr-4": {
1943
+ "Symfony\\Component\\Debug\\": ""
1944
+ },
1945
+ "exclude-from-classmap": [
1946
+ "/Tests/"
1947
+ ]
1948
+ },
1949
+ "notification-url": "https://packagist.org/downloads/",
1950
+ "license": [
1951
+ "MIT"
1952
+ ],
1953
+ "authors": [
1954
+ {
1955
+ "name": "Fabien Potencier",
1956
+ "email": "fabien@symfony.com"
1957
+ },
1958
+ {
1959
+ "name": "Symfony Community",
1960
+ "homepage": "https://symfony.com/contributors"
1961
+ }
1962
+ ],
1963
+ "description": "Symfony Debug Component",
1964
+ "homepage": "https://symfony.com",
1965
+ "time": "2019-04-11T11:27:41+00:00"
1966
+ },
1967
+ {
1968
+ "name": "symfony/dependency-injection",
1969
+ "version": "v4.2.7",
1970
+ "source": {
1971
+ "type": "git",
1972
+ "url": "https://github.com/symfony/dependency-injection.git",
1973
+ "reference": "2748643dd378626c4d348a31ad12394e2d6f7ea8"
1974
+ },
1975
+ "dist": {
1976
+ "type": "zip",
1977
+ "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/2748643dd378626c4d348a31ad12394e2d6f7ea8",
1978
+ "reference": "2748643dd378626c4d348a31ad12394e2d6f7ea8",
1979
+ "shasum": ""
1980
+ },
1981
+ "require": {
1982
+ "php": "^7.1.3",
1983
+ "psr/container": "^1.0",
1984
+ "symfony/contracts": "^1.0"
1985
+ },
1986
+ "conflict": {
1987
+ "symfony/config": "<4.2",
1988
+ "symfony/finder": "<3.4",
1989
+ "symfony/proxy-manager-bridge": "<3.4",
1990
+ "symfony/yaml": "<3.4"
1991
+ },
1992
+ "provide": {
1993
+ "psr/container-implementation": "1.0",
1994
+ "symfony/service-contracts-implementation": "1.0"
1995
+ },
1996
+ "require-dev": {
1997
+ "symfony/config": "~4.2",
1998
+ "symfony/expression-language": "~3.4|~4.0",
1999
+ "symfony/yaml": "~3.4|~4.0"
2000
+ },
2001
+ "suggest": {
2002
+ "symfony/config": "",
2003
+ "symfony/expression-language": "For using expressions in service container configuration",
2004
+ "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
2005
+ "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
2006
+ "symfony/yaml": ""
2007
+ },
2008
+ "type": "library",
2009
+ "extra": {
2010
+ "branch-alias": {
2011
+ "dev-master": "4.2-dev"
2012
+ }
2013
+ },
2014
+ "autoload": {
2015
+ "psr-4": {
2016
+ "Symfony\\Component\\DependencyInjection\\": ""
2017
+ },
2018
+ "exclude-from-classmap": [
2019
+ "/Tests/"
2020
+ ]
2021
+ },
2022
+ "notification-url": "https://packagist.org/downloads/",
2023
+ "license": [
2024
+ "MIT"
2025
+ ],
2026
+ "authors": [
2027
+ {
2028
+ "name": "Fabien Potencier",
2029
+ "email": "fabien@symfony.com"
2030
+ },
2031
+ {
2032
+ "name": "Symfony Community",
2033
+ "homepage": "https://symfony.com/contributors"
2034
+ }
2035
+ ],
2036
+ "description": "Symfony DependencyInjection Component",
2037
+ "homepage": "https://symfony.com",
2038
+ "time": "2019-04-16T11:19:53+00:00"
2039
+ },
2040
+ {
2041
+ "name": "symfony/doctrine-bridge",
2042
+ "version": "v4.2.7",
2043
+ "source": {
2044
+ "type": "git",
2045
+ "url": "https://github.com/symfony/doctrine-bridge.git",
2046
+ "reference": "7fd19cf9267c45a1920bf6821bb35050c1fa8e5c"
2047
+ },
2048
+ "dist": {
2049
+ "type": "zip",
2050
+ "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/7fd19cf9267c45a1920bf6821bb35050c1fa8e5c",
2051
+ "reference": "7fd19cf9267c45a1920bf6821bb35050c1fa8e5c",
2052
+ "shasum": ""
2053
+ },
2054
+ "require": {
2055
+ "doctrine/collections": "~1.0",
2056
+ "doctrine/event-manager": "~1.0",
2057
+ "doctrine/persistence": "~1.0",
2058
+ "php": "^7.1.3",
2059
+ "symfony/contracts": "^1.0",
2060
+ "symfony/polyfill-ctype": "~1.8",
2061
+ "symfony/polyfill-mbstring": "~1.0"
2062
+ },
2063
+ "conflict": {
2064
+ "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
2065
+ "symfony/dependency-injection": "<3.4",
2066
+ "symfony/messenger": "<4.2"
2067
+ },
2068
+ "require-dev": {
2069
+ "doctrine/annotations": "~1.0",
2070
+ "doctrine/cache": "~1.6",
2071
+ "doctrine/data-fixtures": "1.0.*",
2072
+ "doctrine/dbal": "~2.4",
2073
+ "doctrine/orm": "^2.4.5",
2074
+ "doctrine/reflection": "~1.0",
2075
+ "symfony/dependency-injection": "~3.4|~4.0",
2076
+ "symfony/expression-language": "~3.4|~4.0",
2077
+ "symfony/form": "~3.4|~4.0",
2078
+ "symfony/http-kernel": "~3.4|~4.0",
2079
+ "symfony/messenger": "~4.2",
2080
+ "symfony/property-access": "~3.4|~4.0",
2081
+ "symfony/property-info": "~3.4|~4.0",
2082
+ "symfony/proxy-manager-bridge": "~3.4|~4.0",
2083
+ "symfony/security": "~3.4|~4.0",
2084
+ "symfony/stopwatch": "~3.4|~4.0",
2085
+ "symfony/translation": "~3.4|~4.0",
2086
+ "symfony/validator": "~3.4|~4.0"
2087
+ },
2088
+ "suggest": {
2089
+ "doctrine/data-fixtures": "",
2090
+ "doctrine/dbal": "",
2091
+ "doctrine/orm": "",
2092
+ "symfony/form": "",
2093
+ "symfony/property-info": "",
2094
+ "symfony/validator": ""
2095
+ },
2096
+ "type": "symfony-bridge",
2097
+ "extra": {
2098
+ "branch-alias": {
2099
+ "dev-master": "4.2-dev"
2100
+ }
2101
+ },
2102
+ "autoload": {
2103
+ "psr-4": {
2104
+ "Symfony\\Bridge\\Doctrine\\": ""
2105
+ },
2106
+ "exclude-from-classmap": [
2107
+ "/Tests/"
2108
+ ]
2109
+ },
2110
+ "notification-url": "https://packagist.org/downloads/",
2111
+ "license": [
2112
+ "MIT"
2113
+ ],
2114
+ "authors": [
2115
+ {
2116
+ "name": "Fabien Potencier",
2117
+ "email": "fabien@symfony.com"
2118
+ },
2119
+ {
2120
+ "name": "Symfony Community",
2121
+ "homepage": "https://symfony.com/contributors"
2122
+ }
2123
+ ],
2124
+ "description": "Symfony Doctrine Bridge",
2125
+ "homepage": "https://symfony.com",
2126
+ "time": "2019-04-15T09:42:18+00:00"
2127
+ },
2128
+ {
2129
+ "name": "symfony/dotenv",
2130
+ "version": "v4.2.7",
2131
+ "source": {
2132
+ "type": "git",
2133
+ "url": "https://github.com/symfony/dotenv.git",
2134
+ "reference": "b541d63b83532be55a020db8ed2e50598385a583"
2135
+ },
2136
+ "dist": {
2137
+ "type": "zip",
2138
+ "url": "https://api.github.com/repos/symfony/dotenv/zipball/b541d63b83532be55a020db8ed2e50598385a583",
2139
+ "reference": "b541d63b83532be55a020db8ed2e50598385a583",
2140
+ "shasum": ""
2141
+ },
2142
+ "require": {
2143
+ "php": "^7.1.3"
2144
+ },
2145
+ "require-dev": {
2146
+ "symfony/process": "~3.4|~4.0"
2147
+ },
2148
+ "type": "library",
2149
+ "extra": {
2150
+ "branch-alias": {
2151
+ "dev-master": "4.2-dev"
2152
+ }
2153
+ },
2154
+ "autoload": {
2155
+ "psr-4": {
2156
+ "Symfony\\Component\\Dotenv\\": ""
2157
+ },
2158
+ "exclude-from-classmap": [
2159
+ "/Tests/"
2160
+ ]
2161
+ },
2162
+ "notification-url": "https://packagist.org/downloads/",
2163
+ "license": [
2164
+ "MIT"
2165
+ ],
2166
+ "authors": [
2167
+ {
2168
+ "name": "Fabien Potencier",
2169
+ "email": "fabien@symfony.com"
2170
+ },
2171
+ {
2172
+ "name": "Symfony Community",
2173
+ "homepage": "https://symfony.com/contributors"
2174
+ }
2175
+ ],
2176
+ "description": "Registers environment variables from a .env file",
2177
+ "homepage": "https://symfony.com",
2178
+ "keywords": [
2179
+ "dotenv",
2180
+ "env",
2181
+ "environment"
2182
+ ],
2183
+ "time": "2019-04-01T07:32:59+00:00"
2184
+ },
2185
+ {
2186
+ "name": "symfony/event-dispatcher",
2187
+ "version": "v4.2.7",
2188
+ "source": {
2189
+ "type": "git",
2190
+ "url": "https://github.com/symfony/event-dispatcher.git",
2191
+ "reference": "fbce53cd74ac509cbe74b6f227622650ab759b02"
2192
+ },
2193
+ "dist": {
2194
+ "type": "zip",
2195
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/fbce53cd74ac509cbe74b6f227622650ab759b02",
2196
+ "reference": "fbce53cd74ac509cbe74b6f227622650ab759b02",
2197
+ "shasum": ""
2198
+ },
2199
+ "require": {
2200
+ "php": "^7.1.3",
2201
+ "symfony/contracts": "^1.0"
2202
+ },
2203
+ "conflict": {
2204
+ "symfony/dependency-injection": "<3.4"
2205
+ },
2206
+ "require-dev": {
2207
+ "psr/log": "~1.0",
2208
+ "symfony/config": "~3.4|~4.0",
2209
+ "symfony/dependency-injection": "~3.4|~4.0",
2210
+ "symfony/expression-language": "~3.4|~4.0",
2211
+ "symfony/stopwatch": "~3.4|~4.0"
2212
+ },
2213
+ "suggest": {
2214
+ "symfony/dependency-injection": "",
2215
+ "symfony/http-kernel": ""
2216
+ },
2217
+ "type": "library",
2218
+ "extra": {
2219
+ "branch-alias": {
2220
+ "dev-master": "4.2-dev"
2221
+ }
2222
+ },
2223
+ "autoload": {
2224
+ "psr-4": {
2225
+ "Symfony\\Component\\EventDispatcher\\": ""
2226
+ },
2227
+ "exclude-from-classmap": [
2228
+ "/Tests/"
2229
+ ]
2230
+ },
2231
+ "notification-url": "https://packagist.org/downloads/",
2232
+ "license": [
2233
+ "MIT"
2234
+ ],
2235
+ "authors": [
2236
+ {
2237
+ "name": "Fabien Potencier",
2238
+ "email": "fabien@symfony.com"
2239
+ },
2240
+ {
2241
+ "name": "Symfony Community",
2242
+ "homepage": "https://symfony.com/contributors"
2243
+ }
2244
+ ],
2245
+ "description": "Symfony EventDispatcher Component",
2246
+ "homepage": "https://symfony.com",
2247
+ "time": "2019-04-06T13:51:08+00:00"
2248
+ },
2249
+ {
2250
+ "name": "symfony/filesystem",
2251
+ "version": "v4.2.7",
2252
+ "source": {
2253
+ "type": "git",
2254
+ "url": "https://github.com/symfony/filesystem.git",
2255
+ "reference": "e16b9e471703b2c60b95f14d31c1239f68f11601"
2256
+ },
2257
+ "dist": {
2258
+ "type": "zip",
2259
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/e16b9e471703b2c60b95f14d31c1239f68f11601",
2260
+ "reference": "e16b9e471703b2c60b95f14d31c1239f68f11601",
2261
+ "shasum": ""
2262
+ },
2263
+ "require": {
2264
+ "php": "^7.1.3",
2265
+ "symfony/polyfill-ctype": "~1.8"
2266
+ },
2267
+ "type": "library",
2268
+ "extra": {
2269
+ "branch-alias": {
2270
+ "dev-master": "4.2-dev"
2271
+ }
2272
+ },
2273
+ "autoload": {
2274
+ "psr-4": {
2275
+ "Symfony\\Component\\Filesystem\\": ""
2276
+ },
2277
+ "exclude-from-classmap": [
2278
+ "/Tests/"
2279
+ ]
2280
+ },
2281
+ "notification-url": "https://packagist.org/downloads/",
2282
+ "license": [
2283
+ "MIT"
2284
+ ],
2285
+ "authors": [
2286
+ {
2287
+ "name": "Fabien Potencier",
2288
+ "email": "fabien@symfony.com"
2289
+ },
2290
+ {
2291
+ "name": "Symfony Community",
2292
+ "homepage": "https://symfony.com/contributors"
2293
+ }
2294
+ ],
2295
+ "description": "Symfony Filesystem Component",
2296
+ "homepage": "https://symfony.com",
2297
+ "time": "2019-02-07T11:40:08+00:00"
2298
+ },
2299
+ {
2300
+ "name": "symfony/finder",
2301
+ "version": "v4.2.7",
2302
+ "source": {
2303
+ "type": "git",
2304
+ "url": "https://github.com/symfony/finder.git",
2305
+ "reference": "e45135658bd6c14b61850bf131c4f09a55133f69"
2306
+ },
2307
+ "dist": {
2308
+ "type": "zip",
2309
+ "url": "https://api.github.com/repos/symfony/finder/zipball/e45135658bd6c14b61850bf131c4f09a55133f69",
2310
+ "reference": "e45135658bd6c14b61850bf131c4f09a55133f69",
2311
+ "shasum": ""
2312
+ },
2313
+ "require": {
2314
+ "php": "^7.1.3"
2315
+ },
2316
+ "type": "library",
2317
+ "extra": {
2318
+ "branch-alias": {
2319
+ "dev-master": "4.2-dev"
2320
+ }
2321
+ },
2322
+ "autoload": {
2323
+ "psr-4": {
2324
+ "Symfony\\Component\\Finder\\": ""
2325
+ },
2326
+ "exclude-from-classmap": [
2327
+ "/Tests/"
2328
+ ]
2329
+ },
2330
+ "notification-url": "https://packagist.org/downloads/",
2331
+ "license": [
2332
+ "MIT"
2333
+ ],
2334
+ "authors": [
2335
+ {
2336
+ "name": "Fabien Potencier",
2337
+ "email": "fabien@symfony.com"
2338
+ },
2339
+ {
2340
+ "name": "Symfony Community",
2341
+ "homepage": "https://symfony.com/contributors"
2342
+ }
2343
+ ],
2344
+ "description": "Symfony Finder Component",
2345
+ "homepage": "https://symfony.com",
2346
+ "time": "2019-04-06T13:51:08+00:00"
2347
+ },
2348
+ {
2349
+ "name": "symfony/flex",
2350
+ "version": "v1.2.3",
2351
+ "source": {
2352
+ "type": "git",
2353
+ "url": "https://github.com/symfony/flex.git",
2354
+ "reference": "d65041a4c9b1dbcd606f8be3a5bae2bee4534f6a"
2355
+ },
2356
+ "dist": {
2357
+ "type": "zip",
2358
+ "url": "https://api.github.com/repos/symfony/flex/zipball/d65041a4c9b1dbcd606f8be3a5bae2bee4534f6a",
2359
+ "reference": "d65041a4c9b1dbcd606f8be3a5bae2bee4534f6a",
2360
+ "shasum": ""
2361
+ },
2362
+ "require": {
2363
+ "composer-plugin-api": "^1.0",
2364
+ "php": "^7.0"
2365
+ },
2366
+ "require-dev": {
2367
+ "composer/composer": "^1.0.2",
2368
+ "symfony/dotenv": "^3.4|^4.0",
2369
+ "symfony/phpunit-bridge": "^3.4.19|^4.1.8",
2370
+ "symfony/process": "^2.7|^3.0|^4.0"
2371
+ },
2372
+ "type": "composer-plugin",
2373
+ "extra": {
2374
+ "branch-alias": {
2375
+ "dev-master": "1.2-dev"
2376
+ },
2377
+ "class": "Symfony\\Flex\\Flex"
2378
+ },
2379
+ "autoload": {
2380
+ "psr-4": {
2381
+ "Symfony\\Flex\\": "src"
2382
+ }
2383
+ },
2384
+ "notification-url": "https://packagist.org/downloads/",
2385
+ "license": [
2386
+ "MIT"
2387
+ ],
2388
+ "authors": [
2389
+ {
2390
+ "name": "Fabien Potencier",
2391
+ "email": "fabien.potencier@gmail.com"
2392
+ }
2393
+ ],
2394
+ "description": "Composer plugin for Symfony",
2395
+ "time": "2019-04-16T10:04:15+00:00"
2396
+ },
2397
+ {
2398
+ "name": "symfony/framework-bundle",
2399
+ "version": "v4.2.7",
2400
+ "source": {
2401
+ "type": "git",
2402
+ "url": "https://github.com/symfony/framework-bundle.git",
2403
+ "reference": "98e203073ad9fd05929b52849a300a81bf0d9ec9"
2404
+ },
2405
+ "dist": {
2406
+ "type": "zip",
2407
+ "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/98e203073ad9fd05929b52849a300a81bf0d9ec9",
2408
+ "reference": "98e203073ad9fd05929b52849a300a81bf0d9ec9",
2409
+ "shasum": ""
2410
+ },
2411
+ "require": {
2412
+ "ext-xml": "*",
2413
+ "php": "^7.1.3",
2414
+ "symfony/cache": "~4.2",
2415
+ "symfony/config": "~4.2",
2416
+ "symfony/contracts": "^1.0.2",
2417
+ "symfony/dependency-injection": "^4.2.5",
2418
+ "symfony/event-dispatcher": "^4.1",
2419
+ "symfony/filesystem": "~3.4|~4.0",
2420
+ "symfony/finder": "~3.4|~4.0",
2421
+ "symfony/http-foundation": "^4.2.5",
2422
+ "symfony/http-kernel": "^4.2",
2423
+ "symfony/polyfill-mbstring": "~1.0",
2424
+ "symfony/routing": "^4.1"
2425
+ },
2426
+ "conflict": {
2427
+ "phpdocumentor/reflection-docblock": "<3.0",
2428
+ "phpdocumentor/type-resolver": "<0.2.1",
2429
+ "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
2430
+ "symfony/asset": "<3.4",
2431
+ "symfony/console": "<3.4",
2432
+ "symfony/dotenv": "<4.2",
2433
+ "symfony/form": "<4.2",
2434
+ "symfony/messenger": "<4.2",
2435
+ "symfony/property-info": "<3.4",
2436
+ "symfony/serializer": "<4.2",
2437
+ "symfony/stopwatch": "<3.4",
2438
+ "symfony/translation": "<4.2",
2439
+ "symfony/twig-bridge": "<4.1.1",
2440
+ "symfony/validator": "<4.1",
2441
+ "symfony/workflow": "<4.1"
2442
+ },
2443
+ "require-dev": {
2444
+ "doctrine/annotations": "~1.0",
2445
+ "doctrine/cache": "~1.0",
2446
+ "fig/link-util": "^1.0",
2447
+ "phpdocumentor/reflection-docblock": "^3.0|^4.0",
2448
+ "symfony/asset": "~3.4|~4.0",
2449
+ "symfony/browser-kit": "~3.4|~4.0",
2450
+ "symfony/console": "~3.4|~4.0",
2451
+ "symfony/css-selector": "~3.4|~4.0",
2452
+ "symfony/dom-crawler": "~3.4|~4.0",
2453
+ "symfony/expression-language": "~3.4|~4.0",
2454
+ "symfony/form": "^4.2.3",
2455
+ "symfony/lock": "~3.4|~4.0",
2456
+ "symfony/messenger": "^4.2",
2457
+ "symfony/polyfill-intl-icu": "~1.0",
2458
+ "symfony/process": "~3.4|~4.0",
2459
+ "symfony/property-info": "~3.4|~4.0",
2460
+ "symfony/security": "~3.4|~4.0",
2461
+ "symfony/security-core": "~3.4|~4.0",
2462
+ "symfony/security-csrf": "~3.4|~4.0",
2463
+ "symfony/serializer": "^4.2",
2464
+ "symfony/stopwatch": "~3.4|~4.0",
2465
+ "symfony/templating": "~3.4|~4.0",
2466
+ "symfony/translation": "~4.2",
2467
+ "symfony/validator": "^4.1",
2468
+ "symfony/var-dumper": "~3.4|~4.0",
2469
+ "symfony/web-link": "~3.4|~4.0",
2470
+ "symfony/workflow": "^4.1",
2471
+ "symfony/yaml": "~3.4|~4.0",
2472
+ "twig/twig": "~1.34|~2.4"
2473
+ },
2474
+ "suggest": {
2475
+ "ext-apcu": "For best performance of the system caches",
2476
+ "symfony/console": "For using the console commands",
2477
+ "symfony/form": "For using forms",
2478
+ "symfony/property-info": "For using the property_info service",
2479
+ "symfony/serializer": "For using the serializer service",
2480
+ "symfony/validator": "For using validation",
2481
+ "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
2482
+ "symfony/yaml": "For using the debug:config and lint:yaml commands"
2483
+ },
2484
+ "type": "symfony-bundle",
2485
+ "extra": {
2486
+ "branch-alias": {
2487
+ "dev-master": "4.2-dev"
2488
+ }
2489
+ },
2490
+ "autoload": {
2491
+ "psr-4": {
2492
+ "Symfony\\Bundle\\FrameworkBundle\\": ""
2493
+ },
2494
+ "exclude-from-classmap": [
2495
+ "/Tests/"
2496
+ ]
2497
+ },
2498
+ "notification-url": "https://packagist.org/downloads/",
2499
+ "license": [
2500
+ "MIT"
2501
+ ],
2502
+ "authors": [
2503
+ {
2504
+ "name": "Fabien Potencier",
2505
+ "email": "fabien@symfony.com"
2506
+ },
2507
+ {
2508
+ "name": "Symfony Community",
2509
+ "homepage": "https://symfony.com/contributors"
2510
+ }
2511
+ ],
2512
+ "description": "Symfony FrameworkBundle",
2513
+ "homepage": "https://symfony.com",
2514
+ "time": "2019-04-17T15:01:37+00:00"
2515
+ },
2516
+ {
2517
+ "name": "symfony/http-foundation",
2518
+ "version": "v4.2.7",
2519
+ "source": {
2520
+ "type": "git",
2521
+ "url": "https://github.com/symfony/http-foundation.git",
2522
+ "reference": "6ebbe61f48069033225c9d3fa7eb5ed116d766d6"
2523
+ },
2524
+ "dist": {
2525
+ "type": "zip",
2526
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6ebbe61f48069033225c9d3fa7eb5ed116d766d6",
2527
+ "reference": "6ebbe61f48069033225c9d3fa7eb5ed116d766d6",
2528
+ "shasum": ""
2529
+ },
2530
+ "require": {
2531
+ "php": "^7.1.3",
2532
+ "symfony/polyfill-mbstring": "~1.1"
2533
+ },
2534
+ "require-dev": {
2535
+ "predis/predis": "~1.0",
2536
+ "symfony/expression-language": "~3.4|~4.0"
2537
+ },
2538
+ "type": "library",
2539
+ "extra": {
2540
+ "branch-alias": {
2541
+ "dev-master": "4.2-dev"
2542
+ }
2543
+ },
2544
+ "autoload": {
2545
+ "psr-4": {
2546
+ "Symfony\\Component\\HttpFoundation\\": ""
2547
+ },
2548
+ "exclude-from-classmap": [
2549
+ "/Tests/"
2550
+ ]
2551
+ },
2552
+ "notification-url": "https://packagist.org/downloads/",
2553
+ "license": [
2554
+ "MIT"
2555
+ ],
2556
+ "authors": [
2557
+ {
2558
+ "name": "Fabien Potencier",
2559
+ "email": "fabien@symfony.com"
2560
+ },
2561
+ {
2562
+ "name": "Symfony Community",
2563
+ "homepage": "https://symfony.com/contributors"
2564
+ }
2565
+ ],
2566
+ "description": "Symfony HttpFoundation Component",
2567
+ "homepage": "https://symfony.com",
2568
+ "time": "2019-04-17T14:56:00+00:00"
2569
+ },
2570
+ {
2571
+ "name": "symfony/http-kernel",
2572
+ "version": "v4.2.7",
2573
+ "source": {
2574
+ "type": "git",
2575
+ "url": "https://github.com/symfony/http-kernel.git",
2576
+ "reference": "3db83303dbc1da9777e5ff63423b8b7fde423a1b"
2577
+ },
2578
+ "dist": {
2579
+ "type": "zip",
2580
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/3db83303dbc1da9777e5ff63423b8b7fde423a1b",
2581
+ "reference": "3db83303dbc1da9777e5ff63423b8b7fde423a1b",
2582
+ "shasum": ""
2583
+ },
2584
+ "require": {
2585
+ "php": "^7.1.3",
2586
+ "psr/log": "~1.0",
2587
+ "symfony/contracts": "^1.0.2",
2588
+ "symfony/debug": "~3.4|~4.0",
2589
+ "symfony/event-dispatcher": "~4.1",
2590
+ "symfony/http-foundation": "^4.1.1",
2591
+ "symfony/polyfill-ctype": "~1.8"
2592
+ },
2593
+ "conflict": {
2594
+ "symfony/config": "<3.4",
2595
+ "symfony/dependency-injection": "<4.2",
2596
+ "symfony/translation": "<4.2",
2597
+ "symfony/var-dumper": "<4.1.1",
2598
+ "twig/twig": "<1.34|<2.4,>=2"
2599
+ },
2600
+ "provide": {
2601
+ "psr/log-implementation": "1.0"
2602
+ },
2603
+ "require-dev": {
2604
+ "psr/cache": "~1.0",
2605
+ "symfony/browser-kit": "~3.4|~4.0",
2606
+ "symfony/config": "~3.4|~4.0",
2607
+ "symfony/console": "~3.4|~4.0",
2608
+ "symfony/css-selector": "~3.4|~4.0",
2609
+ "symfony/dependency-injection": "^4.2",
2610
+ "symfony/dom-crawler": "~3.4|~4.0",
2611
+ "symfony/expression-language": "~3.4|~4.0",
2612
+ "symfony/finder": "~3.4|~4.0",
2613
+ "symfony/process": "~3.4|~4.0",
2614
+ "symfony/routing": "~3.4|~4.0",
2615
+ "symfony/stopwatch": "~3.4|~4.0",
2616
+ "symfony/templating": "~3.4|~4.0",
2617
+ "symfony/translation": "~4.2",
2618
+ "symfony/var-dumper": "^4.1.1"
2619
+ },
2620
+ "suggest": {
2621
+ "symfony/browser-kit": "",
2622
+ "symfony/config": "",
2623
+ "symfony/console": "",
2624
+ "symfony/dependency-injection": "",
2625
+ "symfony/var-dumper": ""
2626
+ },
2627
+ "type": "library",
2628
+ "extra": {
2629
+ "branch-alias": {
2630
+ "dev-master": "4.2-dev"
2631
+ }
2632
+ },
2633
+ "autoload": {
2634
+ "psr-4": {
2635
+ "Symfony\\Component\\HttpKernel\\": ""
2636
+ },
2637
+ "exclude-from-classmap": [
2638
+ "/Tests/"
2639
+ ]
2640
+ },
2641
+ "notification-url": "https://packagist.org/downloads/",
2642
+ "license": [
2643
+ "MIT"
2644
+ ],
2645
+ "authors": [
2646
+ {
2647
+ "name": "Fabien Potencier",
2648
+ "email": "fabien@symfony.com"
2649
+ },
2650
+ {
2651
+ "name": "Symfony Community",
2652
+ "homepage": "https://symfony.com/contributors"
2653
+ }
2654
+ ],
2655
+ "description": "Symfony HttpKernel Component",
2656
+ "homepage": "https://symfony.com",
2657
+ "time": "2019-04-17T16:17:13+00:00"
2658
+ },
2659
+ {
2660
+ "name": "symfony/orm-pack",
2661
+ "version": "v1.0.6",
2662
+ "source": {
2663
+ "type": "git",
2664
+ "url": "https://github.com/symfony/orm-pack.git",
2665
+ "reference": "36c2a928482dc5f05c5c1c1b947242ae03ff1335"
2666
+ },
2667
+ "dist": {
2668
+ "type": "zip",
2669
+ "url": "https://api.github.com/repos/symfony/orm-pack/zipball/36c2a928482dc5f05c5c1c1b947242ae03ff1335",
2670
+ "reference": "36c2a928482dc5f05c5c1c1b947242ae03ff1335",
2671
+ "shasum": ""
2672
+ },
2673
+ "require": {
2674
+ "doctrine/doctrine-bundle": "^1.6.10",
2675
+ "doctrine/doctrine-migrations-bundle": "^1.3|^2.0",
2676
+ "doctrine/orm": "^2.5.11",
2677
+ "php": "^7.0"
2678
+ },
2679
+ "type": "symfony-pack",
2680
+ "notification-url": "https://packagist.org/downloads/",
2681
+ "license": [
2682
+ "MIT"
2683
+ ],
2684
+ "description": "A pack for the Doctrine ORM",
2685
+ "time": "2019-01-16T09:49:15+00:00"
2686
+ },
2687
+ {
2688
+ "name": "symfony/polyfill-mbstring",
2689
+ "version": "v1.11.0",
2690
+ "source": {
2691
+ "type": "git",
2692
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
2693
+ "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
2694
+ },
2695
+ "dist": {
2696
+ "type": "zip",
2697
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
2698
+ "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
2699
+ "shasum": ""
2700
+ },
2701
+ "require": {
2702
+ "php": ">=5.3.3"
2703
+ },
2704
+ "suggest": {
2705
+ "ext-mbstring": "For best performance"
2706
+ },
2707
+ "type": "library",
2708
+ "extra": {
2709
+ "branch-alias": {
2710
+ "dev-master": "1.11-dev"
2711
+ }
2712
+ },
2713
+ "autoload": {
2714
+ "psr-4": {
2715
+ "Symfony\\Polyfill\\Mbstring\\": ""
2716
+ },
2717
+ "files": [
2718
+ "bootstrap.php"
2719
+ ]
2720
+ },
2721
+ "notification-url": "https://packagist.org/downloads/",
2722
+ "license": [
2723
+ "MIT"
2724
+ ],
2725
+ "authors": [
2726
+ {
2727
+ "name": "Nicolas Grekas",
2728
+ "email": "p@tchwork.com"
2729
+ },
2730
+ {
2731
+ "name": "Symfony Community",
2732
+ "homepage": "https://symfony.com/contributors"
2733
+ }
2734
+ ],
2735
+ "description": "Symfony polyfill for the Mbstring extension",
2736
+ "homepage": "https://symfony.com",
2737
+ "keywords": [
2738
+ "compatibility",
2739
+ "mbstring",
2740
+ "polyfill",
2741
+ "portable",
2742
+ "shim"
2743
+ ],
2744
+ "time": "2019-02-06T07:57:58+00:00"
2745
+ },
2746
+ {
2747
+ "name": "symfony/routing",
2748
+ "version": "v4.2.7",
2749
+ "source": {
2750
+ "type": "git",
2751
+ "url": "https://github.com/symfony/routing.git",
2752
+ "reference": "0e5719d216017b1a0342fa48e86467cedca1c954"
2753
+ },
2754
+ "dist": {
2755
+ "type": "zip",
2756
+ "url": "https://api.github.com/repos/symfony/routing/zipball/0e5719d216017b1a0342fa48e86467cedca1c954",
2757
+ "reference": "0e5719d216017b1a0342fa48e86467cedca1c954",
2758
+ "shasum": ""
2759
+ },
2760
+ "require": {
2761
+ "php": "^7.1.3"
2762
+ },
2763
+ "conflict": {
2764
+ "symfony/config": "<4.2",
2765
+ "symfony/dependency-injection": "<3.4",
2766
+ "symfony/yaml": "<3.4"
2767
+ },
2768
+ "require-dev": {
2769
+ "doctrine/annotations": "~1.0",
2770
+ "psr/log": "~1.0",
2771
+ "symfony/config": "~4.2",
2772
+ "symfony/dependency-injection": "~3.4|~4.0",
2773
+ "symfony/expression-language": "~3.4|~4.0",
2774
+ "symfony/http-foundation": "~3.4|~4.0",
2775
+ "symfony/yaml": "~3.4|~4.0"
2776
+ },
2777
+ "suggest": {
2778
+ "doctrine/annotations": "For using the annotation loader",
2779
+ "symfony/config": "For using the all-in-one router or any loader",
2780
+ "symfony/expression-language": "For using expression matching",
2781
+ "symfony/http-foundation": "For using a Symfony Request object",
2782
+ "symfony/yaml": "For using the YAML loader"
2783
+ },
2784
+ "type": "library",
2785
+ "extra": {
2786
+ "branch-alias": {
2787
+ "dev-master": "4.2-dev"
2788
+ }
2789
+ },
2790
+ "autoload": {
2791
+ "psr-4": {
2792
+ "Symfony\\Component\\Routing\\": ""
2793
+ },
2794
+ "exclude-from-classmap": [
2795
+ "/Tests/"
2796
+ ]
2797
+ },
2798
+ "notification-url": "https://packagist.org/downloads/",
2799
+ "license": [
2800
+ "MIT"
2801
+ ],
2802
+ "authors": [
2803
+ {
2804
+ "name": "Fabien Potencier",
2805
+ "email": "fabien@symfony.com"
2806
+ },
2807
+ {
2808
+ "name": "Symfony Community",
2809
+ "homepage": "https://symfony.com/contributors"
2810
+ }
2811
+ ],
2812
+ "description": "Symfony Routing Component",
2813
+ "homepage": "https://symfony.com",
2814
+ "keywords": [
2815
+ "router",
2816
+ "routing",
2817
+ "uri",
2818
+ "url"
2819
+ ],
2820
+ "time": "2019-04-14T18:04:59+00:00"
2821
+ },
2822
+ {
2823
+ "name": "symfony/stopwatch",
2824
+ "version": "v4.2.7",
2825
+ "source": {
2826
+ "type": "git",
2827
+ "url": "https://github.com/symfony/stopwatch.git",
2828
+ "reference": "b1a5f646d56a3290230dbc8edf2a0d62cda23f67"
2829
+ },
2830
+ "dist": {
2831
+ "type": "zip",
2832
+ "url": "https://api.github.com/repos/symfony/stopwatch/zipball/b1a5f646d56a3290230dbc8edf2a0d62cda23f67",
2833
+ "reference": "b1a5f646d56a3290230dbc8edf2a0d62cda23f67",
2834
+ "shasum": ""
2835
+ },
2836
+ "require": {
2837
+ "php": "^7.1.3",
2838
+ "symfony/contracts": "^1.0"
2839
+ },
2840
+ "type": "library",
2841
+ "extra": {
2842
+ "branch-alias": {
2843
+ "dev-master": "4.2-dev"
2844
+ }
2845
+ },
2846
+ "autoload": {
2847
+ "psr-4": {
2848
+ "Symfony\\Component\\Stopwatch\\": ""
2849
+ },
2850
+ "exclude-from-classmap": [
2851
+ "/Tests/"
2852
+ ]
2853
+ },
2854
+ "notification-url": "https://packagist.org/downloads/",
2855
+ "license": [
2856
+ "MIT"
2857
+ ],
2858
+ "authors": [
2859
+ {
2860
+ "name": "Fabien Potencier",
2861
+ "email": "fabien@symfony.com"
2862
+ },
2863
+ {
2864
+ "name": "Symfony Community",
2865
+ "homepage": "https://symfony.com/contributors"
2866
+ }
2867
+ ],
2868
+ "description": "Symfony Stopwatch Component",
2869
+ "homepage": "https://symfony.com",
2870
+ "time": "2019-01-16T20:31:39+00:00"
2871
+ },
2872
+ {
2873
+ "name": "symfony/twig-bridge",
2874
+ "version": "v4.2.7",
2875
+ "source": {
2876
+ "type": "git",
2877
+ "url": "https://github.com/symfony/twig-bridge.git",
2878
+ "reference": "db70a233d660b96a883150d68fa0a5a882f2ba89"
2879
+ },
2880
+ "dist": {
2881
+ "type": "zip",
2882
+ "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/db70a233d660b96a883150d68fa0a5a882f2ba89",
2883
+ "reference": "db70a233d660b96a883150d68fa0a5a882f2ba89",
2884
+ "shasum": ""
2885
+ },
2886
+ "require": {
2887
+ "php": "^7.1.3",
2888
+ "symfony/contracts": "^1.0.2",
2889
+ "twig/twig": "^1.38.1|^2.7.1"
2890
+ },
2891
+ "conflict": {
2892
+ "symfony/console": "<3.4",
2893
+ "symfony/form": "<4.2.4",
2894
+ "symfony/translation": "<4.2"
2895
+ },
2896
+ "require-dev": {
2897
+ "symfony/asset": "~3.4|~4.0",
2898
+ "symfony/console": "~3.4|~4.0",
2899
+ "symfony/dependency-injection": "~3.4|~4.0",
2900
+ "symfony/expression-language": "~3.4|~4.0",
2901
+ "symfony/finder": "~3.4|~4.0",
2902
+ "symfony/form": "^4.2.4",
2903
+ "symfony/http-foundation": "~3.4|~4.0",
2904
+ "symfony/http-kernel": "~3.4|~4.0",
2905
+ "symfony/polyfill-intl-icu": "~1.0",
2906
+ "symfony/routing": "~3.4|~4.0",
2907
+ "symfony/security": "~3.4|~4.0",
2908
+ "symfony/security-acl": "~2.8|~3.0",
2909
+ "symfony/stopwatch": "~3.4|~4.0",
2910
+ "symfony/templating": "~3.4|~4.0",
2911
+ "symfony/translation": "~4.2",
2912
+ "symfony/var-dumper": "~3.4|~4.0",
2913
+ "symfony/web-link": "~3.4|~4.0",
2914
+ "symfony/workflow": "~3.4|~4.0",
2915
+ "symfony/yaml": "~3.4|~4.0"
2916
+ },
2917
+ "suggest": {
2918
+ "symfony/asset": "For using the AssetExtension",
2919
+ "symfony/expression-language": "For using the ExpressionExtension",
2920
+ "symfony/finder": "",
2921
+ "symfony/form": "For using the FormExtension",
2922
+ "symfony/http-kernel": "For using the HttpKernelExtension",
2923
+ "symfony/routing": "For using the RoutingExtension",
2924
+ "symfony/security": "For using the SecurityExtension",
2925
+ "symfony/stopwatch": "For using the StopwatchExtension",
2926
+ "symfony/templating": "For using the TwigEngine",
2927
+ "symfony/translation": "For using the TranslationExtension",
2928
+ "symfony/var-dumper": "For using the DumpExtension",
2929
+ "symfony/web-link": "For using the WebLinkExtension",
2930
+ "symfony/yaml": "For using the YamlExtension"
2931
+ },
2932
+ "type": "symfony-bridge",
2933
+ "extra": {
2934
+ "branch-alias": {
2935
+ "dev-master": "4.2-dev"
2936
+ }
2937
+ },
2938
+ "autoload": {
2939
+ "psr-4": {
2940
+ "Symfony\\Bridge\\Twig\\": ""
2941
+ },
2942
+ "exclude-from-classmap": [
2943
+ "/Tests/"
2944
+ ]
2945
+ },
2946
+ "notification-url": "https://packagist.org/downloads/",
2947
+ "license": [
2948
+ "MIT"
2949
+ ],
2950
+ "authors": [
2951
+ {
2952
+ "name": "Fabien Potencier",
2953
+ "email": "fabien@symfony.com"
2954
+ },
2955
+ {
2956
+ "name": "Symfony Community",
2957
+ "homepage": "https://symfony.com/contributors"
2958
+ }
2959
+ ],
2960
+ "description": "Symfony Twig Bridge",
2961
+ "homepage": "https://symfony.com",
2962
+ "time": "2019-04-12T13:50:35+00:00"
2963
+ },
2964
+ {
2965
+ "name": "symfony/twig-bundle",
2966
+ "version": "v4.2.7",
2967
+ "source": {
2968
+ "type": "git",
2969
+ "url": "https://github.com/symfony/twig-bundle.git",
2970
+ "reference": "321d5bd0608f3cf34062c47edfe6079556f6d6f1"
2971
+ },
2972
+ "dist": {
2973
+ "type": "zip",
2974
+ "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/321d5bd0608f3cf34062c47edfe6079556f6d6f1",
2975
+ "reference": "321d5bd0608f3cf34062c47edfe6079556f6d6f1",
2976
+ "shasum": ""
2977
+ },
2978
+ "require": {
2979
+ "php": "^7.1.3",
2980
+ "symfony/config": "~4.2",
2981
+ "symfony/http-foundation": "~4.1",
2982
+ "symfony/http-kernel": "~4.1",
2983
+ "symfony/polyfill-ctype": "~1.8",
2984
+ "symfony/twig-bridge": "^4.2",
2985
+ "twig/twig": "~1.34|~2.4"
2986
+ },
2987
+ "conflict": {
2988
+ "symfony/dependency-injection": "<4.1",
2989
+ "symfony/framework-bundle": "<4.1",
2990
+ "symfony/translation": "<4.2"
2991
+ },
2992
+ "require-dev": {
2993
+ "doctrine/annotations": "~1.0",
2994
+ "doctrine/cache": "~1.0",
2995
+ "symfony/asset": "~3.4|~4.0",
2996
+ "symfony/dependency-injection": "^4.2.5",
2997
+ "symfony/expression-language": "~3.4|~4.0",
2998
+ "symfony/finder": "~3.4|~4.0",
2999
+ "symfony/form": "~3.4|~4.0",
3000
+ "symfony/framework-bundle": "~4.1",
3001
+ "symfony/routing": "~3.4|~4.0",
3002
+ "symfony/stopwatch": "~3.4|~4.0",
3003
+ "symfony/templating": "~3.4|~4.0",
3004
+ "symfony/translation": "^4.2",
3005
+ "symfony/web-link": "~3.4|~4.0",
3006
+ "symfony/yaml": "~3.4|~4.0"
3007
+ },
3008
+ "type": "symfony-bundle",
3009
+ "extra": {
3010
+ "branch-alias": {
3011
+ "dev-master": "4.2-dev"
3012
+ }
3013
+ },
3014
+ "autoload": {
3015
+ "psr-4": {
3016
+ "Symfony\\Bundle\\TwigBundle\\": ""
3017
+ },
3018
+ "exclude-from-classmap": [
3019
+ "/Tests/"
3020
+ ]
3021
+ },
3022
+ "notification-url": "https://packagist.org/downloads/",
3023
+ "license": [
3024
+ "MIT"
3025
+ ],
3026
+ "authors": [
3027
+ {
3028
+ "name": "Fabien Potencier",
3029
+ "email": "fabien@symfony.com"
3030
+ },
3031
+ {
3032
+ "name": "Symfony Community",
3033
+ "homepage": "https://symfony.com/contributors"
3034
+ }
3035
+ ],
3036
+ "description": "Symfony TwigBundle",
3037
+ "homepage": "https://symfony.com",
3038
+ "time": "2019-04-11T11:27:41+00:00"
3039
+ },
3040
+ {
3041
+ "name": "symfony/var-exporter",
3042
+ "version": "v4.2.7",
3043
+ "source": {
3044
+ "type": "git",
3045
+ "url": "https://github.com/symfony/var-exporter.git",
3046
+ "reference": "57e00f3e0a3deee65b67cf971455b98afeacca46"
3047
+ },
3048
+ "dist": {
3049
+ "type": "zip",
3050
+ "url": "https://api.github.com/repos/symfony/var-exporter/zipball/57e00f3e0a3deee65b67cf971455b98afeacca46",
3051
+ "reference": "57e00f3e0a3deee65b67cf971455b98afeacca46",
3052
+ "shasum": ""
3053
+ },
3054
+ "require": {
3055
+ "php": "^7.1.3"
3056
+ },
3057
+ "require-dev": {
3058
+ "symfony/var-dumper": "^4.1.1"
3059
+ },
3060
+ "type": "library",
3061
+ "extra": {
3062
+ "branch-alias": {
3063
+ "dev-master": "4.2-dev"
3064
+ }
3065
+ },
3066
+ "autoload": {
3067
+ "psr-4": {
3068
+ "Symfony\\Component\\VarExporter\\": ""
3069
+ },
3070
+ "exclude-from-classmap": [
3071
+ "/Tests/"
3072
+ ]
3073
+ },
3074
+ "notification-url": "https://packagist.org/downloads/",
3075
+ "license": [
3076
+ "MIT"
3077
+ ],
3078
+ "authors": [
3079
+ {
3080
+ "name": "Nicolas Grekas",
3081
+ "email": "p@tchwork.com"
3082
+ },
3083
+ {
3084
+ "name": "Symfony Community",
3085
+ "homepage": "https://symfony.com/contributors"
3086
+ }
3087
+ ],
3088
+ "description": "A blend of var_export() + serialize() to turn any serializable data structure to plain PHP code",
3089
+ "homepage": "https://symfony.com",
3090
+ "keywords": [
3091
+ "clone",
3092
+ "construct",
3093
+ "export",
3094
+ "hydrate",
3095
+ "instantiate",
3096
+ "serialize"
3097
+ ],
3098
+ "time": "2019-04-09T20:09:28+00:00"
3099
+ },
3100
+ {
3101
+ "name": "symfony/yaml",
3102
+ "version": "v4.2.7",
3103
+ "source": {
3104
+ "type": "git",
3105
+ "url": "https://github.com/symfony/yaml.git",
3106
+ "reference": "6712daf03ee25b53abb14e7e8e0ede1a770efdb1"
3107
+ },
3108
+ "dist": {
3109
+ "type": "zip",
3110
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/6712daf03ee25b53abb14e7e8e0ede1a770efdb1",
3111
+ "reference": "6712daf03ee25b53abb14e7e8e0ede1a770efdb1",
3112
+ "shasum": ""
3113
+ },
3114
+ "require": {
3115
+ "php": "^7.1.3",
3116
+ "symfony/polyfill-ctype": "~1.8"
3117
+ },
3118
+ "conflict": {
3119
+ "symfony/console": "<3.4"
3120
+ },
3121
+ "require-dev": {
3122
+ "symfony/console": "~3.4|~4.0"
3123
+ },
3124
+ "suggest": {
3125
+ "symfony/console": "For validating YAML files using the lint command"
3126
+ },
3127
+ "type": "library",
3128
+ "extra": {
3129
+ "branch-alias": {
3130
+ "dev-master": "4.2-dev"
3131
+ }
3132
+ },
3133
+ "autoload": {
3134
+ "psr-4": {
3135
+ "Symfony\\Component\\Yaml\\": ""
3136
+ },
3137
+ "exclude-from-classmap": [
3138
+ "/Tests/"
3139
+ ]
3140
+ },
3141
+ "notification-url": "https://packagist.org/downloads/",
3142
+ "license": [
3143
+ "MIT"
3144
+ ],
3145
+ "authors": [
3146
+ {
3147
+ "name": "Fabien Potencier",
3148
+ "email": "fabien@symfony.com"
3149
+ },
3150
+ {
3151
+ "name": "Symfony Community",
3152
+ "homepage": "https://symfony.com/contributors"
3153
+ }
3154
+ ],
3155
+ "description": "Symfony Yaml Component",
3156
+ "homepage": "https://symfony.com",
3157
+ "time": "2019-03-30T15:58:42+00:00"
3158
+ },
3159
+ {
3160
+ "name": "twig/twig",
3161
+ "version": "v2.8.1",
3162
+ "source": {
3163
+ "type": "git",
3164
+ "url": "https://github.com/twigphp/Twig.git",
3165
+ "reference": "91cc2594d3143761ce0399c1caffd0b500ffe5b9"
3166
+ },
3167
+ "dist": {
3168
+ "type": "zip",
3169
+ "url": "https://api.github.com/repos/twigphp/Twig/zipball/91cc2594d3143761ce0399c1caffd0b500ffe5b9",
3170
+ "reference": "91cc2594d3143761ce0399c1caffd0b500ffe5b9",
3171
+ "shasum": ""
3172
+ },
3173
+ "require": {
3174
+ "php": "^7.0",
3175
+ "symfony/polyfill-ctype": "^1.8",
3176
+ "symfony/polyfill-mbstring": "^1.3"
3177
+ },
3178
+ "require-dev": {
3179
+ "psr/container": "^1.0",
3180
+ "symfony/debug": "^2.7",
3181
+ "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
3182
+ },
3183
+ "type": "library",
3184
+ "extra": {
3185
+ "branch-alias": {
3186
+ "dev-master": "2.8-dev"
3187
+ }
3188
+ },
3189
+ "autoload": {
3190
+ "psr-0": {
3191
+ "Twig_": "lib/"
3192
+ },
3193
+ "psr-4": {
3194
+ "Twig\\": "src/"
3195
+ }
3196
+ },
3197
+ "notification-url": "https://packagist.org/downloads/",
3198
+ "license": [
3199
+ "BSD-3-Clause"
3200
+ ],
3201
+ "authors": [
3202
+ {
3203
+ "name": "Fabien Potencier",
3204
+ "email": "fabien@symfony.com",
3205
+ "homepage": "http://fabien.potencier.org",
3206
+ "role": "Lead Developer"
3207
+ },
3208
+ {
3209
+ "name": "Armin Ronacher",
3210
+ "email": "armin.ronacher@active-4.com",
3211
+ "role": "Project Founder"
3212
+ },
3213
+ {
3214
+ "name": "Twig Team",
3215
+ "homepage": "https://twig.symfony.com/contributors",
3216
+ "role": "Contributors"
3217
+ }
3218
+ ],
3219
+ "description": "Twig, the flexible, fast, and secure template language for PHP",
3220
+ "homepage": "https://twig.symfony.com",
3221
+ "keywords": [
3222
+ "templating"
3223
+ ],
3224
+ "time": "2019-04-16T17:14:24+00:00"
3225
+ },
3226
+ {
3227
+ "name": "zendframework/zend-code",
3228
+ "version": "3.3.1",
3229
+ "source": {
3230
+ "type": "git",
3231
+ "url": "https://github.com/zendframework/zend-code.git",
3232
+ "reference": "c21db169075c6ec4b342149f446e7b7b724f95eb"
3233
+ },
3234
+ "dist": {
3235
+ "type": "zip",
3236
+ "url": "https://api.github.com/repos/zendframework/zend-code/zipball/c21db169075c6ec4b342149f446e7b7b724f95eb",
3237
+ "reference": "c21db169075c6ec4b342149f446e7b7b724f95eb",
3238
+ "shasum": ""
3239
+ },
3240
+ "require": {
3241
+ "php": "^7.1",
3242
+ "zendframework/zend-eventmanager": "^2.6 || ^3.0"
3243
+ },
3244
+ "require-dev": {
3245
+ "doctrine/annotations": "~1.0",
3246
+ "ext-phar": "*",
3247
+ "phpunit/phpunit": "^6.2.3",
3248
+ "zendframework/zend-coding-standard": "^1.0.0",
3249
+ "zendframework/zend-stdlib": "^2.7 || ^3.0"
3250
+ },
3251
+ "suggest": {
3252
+ "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
3253
+ "zendframework/zend-stdlib": "Zend\\Stdlib component"
3254
+ },
3255
+ "type": "library",
3256
+ "extra": {
3257
+ "branch-alias": {
3258
+ "dev-master": "3.3.x-dev",
3259
+ "dev-develop": "3.4.x-dev"
3260
+ }
3261
+ },
3262
+ "autoload": {
3263
+ "psr-4": {
3264
+ "Zend\\Code\\": "src/"
3265
+ }
3266
+ },
3267
+ "notification-url": "https://packagist.org/downloads/",
3268
+ "license": [
3269
+ "BSD-3-Clause"
3270
+ ],
3271
+ "description": "provides facilities to generate arbitrary code using an object oriented interface",
3272
+ "homepage": "https://github.com/zendframework/zend-code",
3273
+ "keywords": [
3274
+ "code",
3275
+ "zf2"
3276
+ ],
3277
+ "time": "2018-08-13T20:36:59+00:00"
3278
+ },
3279
+ {
3280
+ "name": "zendframework/zend-eventmanager",
3281
+ "version": "3.2.1",
3282
+ "source": {
3283
+ "type": "git",
3284
+ "url": "https://github.com/zendframework/zend-eventmanager.git",
3285
+ "reference": "a5e2583a211f73604691586b8406ff7296a946dd"
3286
+ },
3287
+ "dist": {
3288
+ "type": "zip",
3289
+ "url": "https://api.github.com/repos/zendframework/zend-eventmanager/zipball/a5e2583a211f73604691586b8406ff7296a946dd",
3290
+ "reference": "a5e2583a211f73604691586b8406ff7296a946dd",
3291
+ "shasum": ""
3292
+ },
3293
+ "require": {
3294
+ "php": "^5.6 || ^7.0"
3295
+ },
3296
+ "require-dev": {
3297
+ "athletic/athletic": "^0.1",
3298
+ "container-interop/container-interop": "^1.1.0",
3299
+ "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
3300
+ "zendframework/zend-coding-standard": "~1.0.0",
3301
+ "zendframework/zend-stdlib": "^2.7.3 || ^3.0"
3302
+ },
3303
+ "suggest": {
3304
+ "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature",
3305
+ "zendframework/zend-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
3306
+ },
3307
+ "type": "library",
3308
+ "extra": {
3309
+ "branch-alias": {
3310
+ "dev-master": "3.2-dev",
3311
+ "dev-develop": "3.3-dev"
3312
+ }
3313
+ },
3314
+ "autoload": {
3315
+ "psr-4": {
3316
+ "Zend\\EventManager\\": "src/"
3317
+ }
3318
+ },
3319
+ "notification-url": "https://packagist.org/downloads/",
3320
+ "license": [
3321
+ "BSD-3-Clause"
3322
+ ],
3323
+ "description": "Trigger and listen to events within a PHP application",
3324
+ "homepage": "https://github.com/zendframework/zend-eventmanager",
3325
+ "keywords": [
3326
+ "event",
3327
+ "eventmanager",
3328
+ "events",
3329
+ "zf2"
3330
+ ],
3331
+ "time": "2018-04-25T15:33:34+00:00"
3332
+ }
3333
+ ],
3334
+ "packages-dev": [
3335
+ {
3336
+ "name": "nikic/php-parser",
3337
+ "version": "v4.2.1",
3338
+ "source": {
3339
+ "type": "git",
3340
+ "url": "https://github.com/nikic/PHP-Parser.git",
3341
+ "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0"
3342
+ },
3343
+ "dist": {
3344
+ "type": "zip",
3345
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/5221f49a608808c1e4d436df32884cbc1b821ac0",
3346
+ "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0",
3347
+ "shasum": ""
3348
+ },
3349
+ "require": {
3350
+ "ext-tokenizer": "*",
3351
+ "php": ">=7.0"
3352
+ },
3353
+ "require-dev": {
3354
+ "phpunit/phpunit": "^6.5 || ^7.0"
3355
+ },
3356
+ "bin": [
3357
+ "bin/php-parse"
3358
+ ],
3359
+ "type": "library",
3360
+ "extra": {
3361
+ "branch-alias": {
3362
+ "dev-master": "4.2-dev"
3363
+ }
3364
+ },
3365
+ "autoload": {
3366
+ "psr-4": {
3367
+ "PhpParser\\": "lib/PhpParser"
3368
+ }
3369
+ },
3370
+ "notification-url": "https://packagist.org/downloads/",
3371
+ "license": [
3372
+ "BSD-3-Clause"
3373
+ ],
3374
+ "authors": [
3375
+ {
3376
+ "name": "Nikita Popov"
3377
+ }
3378
+ ],
3379
+ "description": "A PHP parser written in PHP",
3380
+ "keywords": [
3381
+ "parser",
3382
+ "php"
3383
+ ],
3384
+ "time": "2019-02-16T20:54:15+00:00"
3385
+ },
3386
+ {
3387
+ "name": "symfony/maker-bundle",
3388
+ "version": "v1.11.6",
3389
+ "source": {
3390
+ "type": "git",
3391
+ "url": "https://github.com/symfony/maker-bundle.git",
3392
+ "reference": "d262c2cace4d9bca99137a84f6fc6ba909a17e02"
3393
+ },
3394
+ "dist": {
3395
+ "type": "zip",
3396
+ "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/d262c2cace4d9bca99137a84f6fc6ba909a17e02",
3397
+ "reference": "d262c2cace4d9bca99137a84f6fc6ba909a17e02",
3398
+ "shasum": ""
3399
+ },
3400
+ "require": {
3401
+ "doctrine/inflector": "^1.2",
3402
+ "nikic/php-parser": "^4.0",
3403
+ "php": "^7.0.8",
3404
+ "symfony/config": "^3.4|^4.0",
3405
+ "symfony/console": "^3.4|^4.0",
3406
+ "symfony/dependency-injection": "^3.4|^4.0",
3407
+ "symfony/filesystem": "^3.4|^4.0",
3408
+ "symfony/finder": "^3.4|^4.0",
3409
+ "symfony/framework-bundle": "^3.4|^4.0",
3410
+ "symfony/http-kernel": "^3.4|^4.0"
3411
+ },
3412
+ "require-dev": {
3413
+ "allocine/twigcs": "^3.0",
3414
+ "doctrine/doctrine-bundle": "^1.8",
3415
+ "doctrine/orm": "^2.3",
3416
+ "friendsofphp/php-cs-fixer": "^2.8",
3417
+ "symfony/phpunit-bridge": "^3.4|^4.0",
3418
+ "symfony/process": "^3.4|^4.0",
3419
+ "symfony/yaml": "^3.4|^4.0"
3420
+ },
3421
+ "type": "symfony-bundle",
3422
+ "extra": {
3423
+ "branch-alias": {
3424
+ "dev-master": "1.0-dev"
3425
+ }
3426
+ },
3427
+ "autoload": {
3428
+ "psr-4": {
3429
+ "Symfony\\Bundle\\MakerBundle\\": "src/"
3430
+ }
3431
+ },
3432
+ "notification-url": "https://packagist.org/downloads/",
3433
+ "license": [
3434
+ "MIT"
3435
+ ],
3436
+ "authors": [
3437
+ {
3438
+ "name": "Symfony Community",
3439
+ "homepage": "https://symfony.com/contributors"
3440
+ }
3441
+ ],
3442
+ "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
3443
+ "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
3444
+ "keywords": [
3445
+ "code generator",
3446
+ "generator",
3447
+ "scaffold",
3448
+ "scaffolding"
3449
+ ],
3450
+ "time": "2019-04-19T17:26:45+00:00"
3451
+ },
3452
+ {
3453
+ "name": "symfony/process",
3454
+ "version": "v4.2.7",
3455
+ "source": {
3456
+ "type": "git",
3457
+ "url": "https://github.com/symfony/process.git",
3458
+ "reference": "8cf39fb4ccff793340c258ee7760fd40bfe745fe"
3459
+ },
3460
+ "dist": {
3461
+ "type": "zip",
3462
+ "url": "https://api.github.com/repos/symfony/process/zipball/8cf39fb4ccff793340c258ee7760fd40bfe745fe",
3463
+ "reference": "8cf39fb4ccff793340c258ee7760fd40bfe745fe",
3464
+ "shasum": ""
3465
+ },
3466
+ "require": {
3467
+ "php": "^7.1.3"
3468
+ },
3469
+ "type": "library",
3470
+ "extra": {
3471
+ "branch-alias": {
3472
+ "dev-master": "4.2-dev"
3473
+ }
3474
+ },
3475
+ "autoload": {
3476
+ "psr-4": {
3477
+ "Symfony\\Component\\Process\\": ""
3478
+ },
3479
+ "exclude-from-classmap": [
3480
+ "/Tests/"
3481
+ ]
3482
+ },
3483
+ "notification-url": "https://packagist.org/downloads/",
3484
+ "license": [
3485
+ "MIT"
3486
+ ],
3487
+ "authors": [
3488
+ {
3489
+ "name": "Fabien Potencier",
3490
+ "email": "fabien@symfony.com"
3491
+ },
3492
+ {
3493
+ "name": "Symfony Community",
3494
+ "homepage": "https://symfony.com/contributors"
3495
+ }
3496
+ ],
3497
+ "description": "Symfony Process Component",
3498
+ "homepage": "https://symfony.com",
3499
+ "time": "2019-04-10T16:20:36+00:00"
3500
+ },
3501
+ {
3502
+ "name": "symfony/web-server-bundle",
3503
+ "version": "v4.2.7",
3504
+ "source": {
3505
+ "type": "git",
3506
+ "url": "https://github.com/symfony/web-server-bundle.git",
3507
+ "reference": "91945ba7f59f2a4b4194f018da9d7aaedaf88418"
3508
+ },
3509
+ "dist": {
3510
+ "type": "zip",
3511
+ "url": "https://api.github.com/repos/symfony/web-server-bundle/zipball/91945ba7f59f2a4b4194f018da9d7aaedaf88418",
3512
+ "reference": "91945ba7f59f2a4b4194f018da9d7aaedaf88418",
3513
+ "shasum": ""
3514
+ },
3515
+ "require": {
3516
+ "php": "^7.1.3",
3517
+ "symfony/config": "~3.4|~4.0",
3518
+ "symfony/console": "~3.4|~4.0",
3519
+ "symfony/dependency-injection": "~3.4|~4.0",
3520
+ "symfony/http-kernel": "~3.4|~4.0",
3521
+ "symfony/polyfill-ctype": "~1.8",
3522
+ "symfony/process": "^3.4.2|^4.0.2"
3523
+ },
3524
+ "suggest": {
3525
+ "symfony/expression-language": "For using the filter option of the log server.",
3526
+ "symfony/monolog-bridge": "For using the log server."
3527
+ },
3528
+ "type": "symfony-bundle",
3529
+ "extra": {
3530
+ "branch-alias": {
3531
+ "dev-master": "4.2-dev"
3532
+ }
3533
+ },
3534
+ "autoload": {
3535
+ "psr-4": {
3536
+ "Symfony\\Bundle\\WebServerBundle\\": ""
3537
+ },
3538
+ "exclude-from-classmap": [
3539
+ "/Tests/"
3540
+ ]
3541
+ },
3542
+ "notification-url": "https://packagist.org/downloads/",
3543
+ "license": [
3544
+ "MIT"
3545
+ ],
3546
+ "authors": [
3547
+ {
3548
+ "name": "Fabien Potencier",
3549
+ "email": "fabien@symfony.com"
3550
+ },
3551
+ {
3552
+ "name": "Symfony Community",
3553
+ "homepage": "https://symfony.com/contributors"
3554
+ }
3555
+ ],
3556
+ "description": "Symfony WebServerBundle",
3557
+ "homepage": "https://symfony.com",
3558
+ "time": "2019-03-04T10:37:56+00:00"
3559
+ }
3560
+ ],
3561
+ "aliases": [],
3562
+ "minimum-stability": "stable",
3563
+ "stability-flags": [],
3564
+ "prefer-stable": false,
3565
+ "prefer-lowest": false,
3566
+ "platform": {
3567
+ "php": "^7.1.3",
3568
+ "ext-ctype": "*",
3569
+ "ext-iconv": "*"
3570
+ },
3571
+ "platform-dev": []
3572
+ }