composer.lock 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349
  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": "1dbd2d05cc0836acfca5988f29005cf2",
  8. "packages": [
  9. {
  10. "name": "ckeditor/ckeditor",
  11. "version": "4.12.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/ckeditor/ckeditor-releases.git",
  15. "reference": "b1a25e93ae0b038f45dcba458f4c2c18bd7318e5"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/ckeditor/ckeditor-releases/zipball/b1a25e93ae0b038f45dcba458f4c2c18bd7318e5",
  20. "reference": "b1a25e93ae0b038f45dcba458f4c2c18bd7318e5",
  21. "shasum": ""
  22. },
  23. "type": "library",
  24. "notification-url": "https://packagist.org/downloads/",
  25. "license": [
  26. "GPL-2.0+",
  27. "LGPL-2.1+",
  28. "MPL-1.1+"
  29. ],
  30. "authors": [
  31. {
  32. "name": "CKSource",
  33. "homepage": "http://cksource.com"
  34. }
  35. ],
  36. "description": "JavaScript WYSIWYG web text editor.",
  37. "homepage": "http://ckeditor.com",
  38. "keywords": [
  39. "CKEditor",
  40. "editor",
  41. "fckeditor",
  42. "html",
  43. "javascript",
  44. "richtext",
  45. "text",
  46. "wysiwyg"
  47. ],
  48. "support": {
  49. "forum": "http://ckeditor.com/forums",
  50. "issues": "http://dev.ckeditor.com",
  51. "source": "http://github.com/ckeditor/ckeditor-dev",
  52. "wiki": "http://docs.ckeditor.com"
  53. },
  54. "time": "2019-06-28T10:41:23+00:00"
  55. },
  56. {
  57. "name": "maximebf/debugbar",
  58. "version": "v1.15.1",
  59. "source": {
  60. "type": "git",
  61. "url": "https://github.com/maximebf/php-debugbar.git",
  62. "reference": "6c4277f6117e4864966c9cb58fb835cee8c74a1e"
  63. },
  64. "dist": {
  65. "type": "zip",
  66. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6c4277f6117e4864966c9cb58fb835cee8c74a1e",
  67. "reference": "6c4277f6117e4864966c9cb58fb835cee8c74a1e",
  68. "shasum": ""
  69. },
  70. "require": {
  71. "php": ">=5.6",
  72. "psr/log": "^1.0",
  73. "symfony/var-dumper": "^2.6|^3|^4"
  74. },
  75. "require-dev": {
  76. "phpunit/phpunit": "^5"
  77. },
  78. "suggest": {
  79. "kriswallsmith/assetic": "The best way to manage assets",
  80. "monolog/monolog": "Log using Monolog",
  81. "predis/predis": "Redis storage"
  82. },
  83. "type": "library",
  84. "extra": {
  85. "branch-alias": {
  86. "dev-master": "1.15-dev"
  87. }
  88. },
  89. "autoload": {
  90. "psr-4": {
  91. "DebugBar\\": "src/DebugBar/"
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "MIT"
  97. ],
  98. "authors": [
  99. {
  100. "name": "Maxime Bouroumeau-Fuseau",
  101. "email": "maxime.bouroumeau@gmail.com",
  102. "homepage": "http://maximebf.com"
  103. },
  104. {
  105. "name": "Barry vd. Heuvel",
  106. "email": "barryvdh@gmail.com"
  107. }
  108. ],
  109. "description": "Debug bar in the browser for php application",
  110. "homepage": "https://github.com/maximebf/php-debugbar",
  111. "keywords": [
  112. "debug",
  113. "debugbar"
  114. ],
  115. "support": {
  116. "issues": "https://github.com/maximebf/php-debugbar/issues",
  117. "source": "https://github.com/maximebf/php-debugbar/tree/v1.15.1"
  118. },
  119. "time": "2019-09-24T14:55:42+00:00"
  120. },
  121. {
  122. "name": "mike42/escpos-php",
  123. "version": "v2.2",
  124. "source": {
  125. "type": "git",
  126. "url": "https://github.com/mike42/escpos-php.git",
  127. "reference": "e5496cf819b048b11877117bd14a9cea4fb17c03"
  128. },
  129. "dist": {
  130. "type": "zip",
  131. "url": "https://api.github.com/repos/mike42/escpos-php/zipball/e5496cf819b048b11877117bd14a9cea4fb17c03",
  132. "reference": "e5496cf819b048b11877117bd14a9cea4fb17c03",
  133. "shasum": ""
  134. },
  135. "require": {
  136. "ext-mbstring": "*",
  137. "php": ">=5.4.0"
  138. },
  139. "require-dev": {
  140. "guzzlehttp/guzzle": "^5.3",
  141. "phpunit/phpunit": "^4.8",
  142. "squizlabs/php_codesniffer": "^3.2"
  143. },
  144. "suggest": {
  145. "ext-gd": "Used for image printing if present.",
  146. "ext-imagick": "Will be used for image printing if present. Required for PDF printing or use of custom fonts.",
  147. "guzzlehttp/guzzle": "Allows the use of the ApiConnector to send print jobs over HTTP."
  148. },
  149. "type": "library",
  150. "autoload": {
  151. "psr-4": {
  152. "Mike42\\": "src/Mike42"
  153. }
  154. },
  155. "notification-url": "https://packagist.org/downloads/",
  156. "license": [
  157. "MIT"
  158. ],
  159. "authors": [
  160. {
  161. "name": "Michael Billington",
  162. "email": "michael.billington@gmail.com"
  163. }
  164. ],
  165. "description": "PHP receipt printer library for use with ESC/POS-compatible thermal and impact printers",
  166. "homepage": "https://github.com/mike42/escpos-php",
  167. "keywords": [
  168. "ESC-POS",
  169. "driver",
  170. "escpos",
  171. "print",
  172. "receipt"
  173. ],
  174. "support": {
  175. "issues": "https://github.com/mike42/escpos-php/issues",
  176. "source": "https://github.com/mike42/escpos-php/tree/v2.2"
  177. },
  178. "time": "2019-10-05T05:59:00+00:00"
  179. },
  180. {
  181. "name": "mobiledetect/mobiledetectlib",
  182. "version": "2.8.34",
  183. "source": {
  184. "type": "git",
  185. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  186. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b"
  187. },
  188. "dist": {
  189. "type": "zip",
  190. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  191. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  192. "shasum": ""
  193. },
  194. "require": {
  195. "php": ">=5.0.0"
  196. },
  197. "require-dev": {
  198. "phpunit/phpunit": "~4.8.35||~5.7"
  199. },
  200. "type": "library",
  201. "autoload": {
  202. "classmap": [
  203. "Mobile_Detect.php"
  204. ],
  205. "psr-0": {
  206. "Detection": "namespaced/"
  207. }
  208. },
  209. "notification-url": "https://packagist.org/downloads/",
  210. "license": [
  211. "MIT"
  212. ],
  213. "authors": [
  214. {
  215. "name": "Serban Ghita",
  216. "email": "serbanghita@gmail.com",
  217. "homepage": "http://mobiledetect.net",
  218. "role": "Developer"
  219. }
  220. ],
  221. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  222. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  223. "keywords": [
  224. "detect mobile devices",
  225. "mobile",
  226. "mobile detect",
  227. "mobile detector",
  228. "php mobile detect"
  229. ],
  230. "support": {
  231. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  232. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.34"
  233. },
  234. "time": "2019-09-18T18:44:20+00:00"
  235. },
  236. {
  237. "name": "nnnick/chartjs",
  238. "version": "v2.9.4",
  239. "source": {
  240. "type": "git",
  241. "url": "https://github.com/chartjs/Chart.js.git",
  242. "reference": "9bd4cf82fda9f50a5fb50b72843e06ab88124278"
  243. },
  244. "dist": {
  245. "type": "zip",
  246. "url": "https://api.github.com/repos/chartjs/Chart.js/zipball/9bd4cf82fda9f50a5fb50b72843e06ab88124278",
  247. "reference": "9bd4cf82fda9f50a5fb50b72843e06ab88124278",
  248. "shasum": ""
  249. },
  250. "require": {
  251. "php": ">=5.3.3"
  252. },
  253. "type": "library",
  254. "extra": {
  255. "branch-alias": {
  256. "release/2.0": "v2.0-dev"
  257. }
  258. },
  259. "notification-url": "https://packagist.org/downloads/",
  260. "license": [
  261. "MIT"
  262. ],
  263. "authors": [
  264. {
  265. "name": "NICK DOWNIE",
  266. "email": "hello@nickdownie.com"
  267. }
  268. ],
  269. "description": "Simple HTML5 charts using the canvas element.",
  270. "homepage": "https://www.chartjs.org/",
  271. "keywords": [
  272. "JS",
  273. "chart"
  274. ],
  275. "support": {
  276. "issues": "https://github.com/chartjs/Chart.js/issues",
  277. "source": "https://github.com/chartjs/Chart.js/tree/v2.9.4"
  278. },
  279. "time": "2020-10-19T12:22:11+00:00"
  280. },
  281. {
  282. "name": "psr/log",
  283. "version": "1.1.3",
  284. "source": {
  285. "type": "git",
  286. "url": "https://github.com/php-fig/log.git",
  287. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  288. },
  289. "dist": {
  290. "type": "zip",
  291. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  292. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  293. "shasum": ""
  294. },
  295. "require": {
  296. "php": ">=5.3.0"
  297. },
  298. "type": "library",
  299. "extra": {
  300. "branch-alias": {
  301. "dev-master": "1.1.x-dev"
  302. }
  303. },
  304. "autoload": {
  305. "psr-4": {
  306. "Psr\\Log\\": "Psr/Log/"
  307. }
  308. },
  309. "notification-url": "https://packagist.org/downloads/",
  310. "license": [
  311. "MIT"
  312. ],
  313. "authors": [
  314. {
  315. "name": "PHP-FIG",
  316. "homepage": "http://www.php-fig.org/"
  317. }
  318. ],
  319. "description": "Common interface for logging libraries",
  320. "homepage": "https://github.com/php-fig/log",
  321. "keywords": [
  322. "log",
  323. "psr",
  324. "psr-3"
  325. ],
  326. "support": {
  327. "source": "https://github.com/php-fig/log/tree/1.1.3"
  328. },
  329. "time": "2020-03-23T09:12:05+00:00"
  330. },
  331. {
  332. "name": "phpoffice/phpexcel",
  333. "version": "1.8.2",
  334. "source": {
  335. "type": "git",
  336. "url": "https://github.com/PHPOffice/PHPExcel.git",
  337. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
  338. },
  339. "dist": {
  340. "type": "zip",
  341. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
  342. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
  343. "shasum": ""
  344. },
  345. "require": {
  346. "ext-mbstring": "*",
  347. "ext-xml": "*",
  348. "ext-xmlwriter": "*",
  349. "php": "^5.2|^7.0"
  350. },
  351. "require-dev": {
  352. "squizlabs/php_codesniffer": "2.*"
  353. },
  354. "type": "library",
  355. "autoload": {
  356. },
  357. "notification-url": "https://packagist.org/downloads/",
  358. "license": [
  359. "LGPL-2.1"
  360. ],
  361. "authors": [
  362. {
  363. "name": "Maarten Balliauw",
  364. "homepage": "http://blog.maartenballiauw.be"
  365. },
  366. {
  367. "name": "Erik Tilt"
  368. },
  369. {
  370. "name": "Franck Lefevre",
  371. "homepage": "http://rootslabs.net"
  372. },
  373. {
  374. "name": "Mark Baker",
  375. "homepage": "http://markbakeruk.net"
  376. }
  377. ],
  378. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  379. "homepage": "https://github.com/PHPOffice/PHPExcel",
  380. "keywords": [
  381. "OpenXML",
  382. "excel",
  383. "xlsx"
  384. ],
  385. "abandoned": "phpoffice/phpspreadsheet",
  386. "time": "2018-11-22T23:07:24+00:00"
  387. },
  388. {
  389. "name": "restler/framework",
  390. "version": "3.0.0-RC6",
  391. "target-dir": "Luracast/Restler",
  392. "source": {
  393. "type": "git",
  394. "url": "https://github.com/Luracast/Restler-Framework.git",
  395. "reference": "d52e61600d153bca60a287c35141c5c01863127b"
  396. },
  397. "dist": {
  398. "type": "zip",
  399. "url": "https://api.github.com/repos/Luracast/Restler-Framework/zipball/d52e61600d153bca60a287c35141c5c01863127b",
  400. "reference": "d52e61600d153bca60a287c35141c5c01863127b",
  401. "shasum": ""
  402. },
  403. "require": {
  404. "php": ">=5.3.0"
  405. },
  406. "replace": {
  407. "luracast/restler": "3.*"
  408. },
  409. "suggest": {
  410. "bshaffer/oauth2-server-php": "If you want to use OAuth2 for authentication",
  411. "illuminate/view": "If you want to use laravel blade templates with Html format",
  412. "mustache/mustache": "If you want to use mustache/handlebar templates with Html format",
  413. "rodneyrehm/plist": "If you need Apple plist binary/xml format",
  414. "symfony/yaml": "If you need YAML format",
  415. "twig/twig": "If you want to use twig templates with Html format",
  416. "zendframework/zendamf": "If you need AMF format"
  417. },
  418. "type": "library",
  419. "extra": {
  420. "branch-alias": {
  421. "master": "v3.0.x-dev"
  422. }
  423. },
  424. "autoload": {
  425. "psr-0": {
  426. "Luracast\\Restler": ""
  427. }
  428. },
  429. "notification-url": "https://packagist.org/downloads/",
  430. "license": [
  431. "LGPL-2.1"
  432. ],
  433. "authors": [
  434. {
  435. "name": "Luracast",
  436. "email": "arul@luracast.com"
  437. }
  438. ],
  439. "description": "Just the Restler Framework without the tests and examples",
  440. "homepage": "http://luracast.com/products/restler/",
  441. "keywords": [
  442. "api",
  443. "framework",
  444. "rest",
  445. "server"
  446. ],
  447. "support": {
  448. "source": "https://github.com/Luracast/Restler-Framework/tree/3.0.0-RC6"
  449. },
  450. "time": "2020-02-13T16:05:12+00:00"
  451. },
  452. {
  453. "name": "stripe/stripe-php",
  454. "version": "v6.43.1",
  455. "source": {
  456. "type": "git",
  457. "url": "https://github.com/stripe/stripe-php.git",
  458. "reference": "42fcdaf99c44bb26937223f8eae1f263491d5ab8"
  459. },
  460. "dist": {
  461. "type": "zip",
  462. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/42fcdaf99c44bb26937223f8eae1f263491d5ab8",
  463. "reference": "42fcdaf99c44bb26937223f8eae1f263491d5ab8",
  464. "shasum": ""
  465. },
  466. "require": {
  467. "ext-curl": "*",
  468. "ext-json": "*",
  469. "ext-mbstring": "*",
  470. "php": ">=5.4.0"
  471. },
  472. "require-dev": {
  473. "php-coveralls/php-coveralls": "1.*",
  474. "phpunit/phpunit": "~4.0",
  475. "squizlabs/php_codesniffer": "~2.0",
  476. "symfony/process": "~2.8"
  477. },
  478. "type": "library",
  479. "extra": {
  480. "branch-alias": {
  481. "dev-master": "2.0-dev"
  482. }
  483. },
  484. "autoload": {
  485. "psr-4": {
  486. "Stripe\\": "lib/"
  487. }
  488. },
  489. "notification-url": "https://packagist.org/downloads/",
  490. "license": [
  491. "MIT"
  492. ],
  493. "authors": [
  494. {
  495. "name": "Stripe and contributors",
  496. "homepage": "https://github.com/stripe/stripe-php/contributors"
  497. }
  498. ],
  499. "description": "Stripe PHP Library",
  500. "homepage": "https://stripe.com/",
  501. "keywords": [
  502. "api",
  503. "payment processing",
  504. "stripe"
  505. ],
  506. "support": {
  507. "issues": "https://github.com/stripe/stripe-php/issues",
  508. "source": "https://github.com/stripe/stripe-php/tree/master"
  509. },
  510. "time": "2019-08-29T16:56:12+00:00"
  511. },
  512. {
  513. "name": "symfony/polyfill-mbstring",
  514. "version": "v1.20.0",
  515. "source": {
  516. "type": "git",
  517. "url": "https://github.com/symfony/polyfill-mbstring.git",
  518. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  519. },
  520. "dist": {
  521. "type": "zip",
  522. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  523. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  524. "shasum": ""
  525. },
  526. "require": {
  527. "php": ">=7.1"
  528. },
  529. "suggest": {
  530. "ext-mbstring": "For best performance"
  531. },
  532. "type": "library",
  533. "extra": {
  534. "branch-alias": {
  535. "dev-main": "1.20-dev"
  536. },
  537. "thanks": {
  538. "name": "symfony/polyfill",
  539. "url": "https://github.com/symfony/polyfill"
  540. }
  541. },
  542. "autoload": {
  543. "psr-4": {
  544. "Symfony\\Polyfill\\Mbstring\\": ""
  545. },
  546. "files": [
  547. "bootstrap.php"
  548. ]
  549. },
  550. "notification-url": "https://packagist.org/downloads/",
  551. "license": [
  552. "MIT"
  553. ],
  554. "authors": [
  555. {
  556. "name": "Nicolas Grekas",
  557. "email": "p@tchwork.com"
  558. },
  559. {
  560. "name": "Symfony Community",
  561. "homepage": "https://symfony.com/contributors"
  562. }
  563. ],
  564. "description": "Symfony polyfill for the Mbstring extension",
  565. "homepage": "https://symfony.com",
  566. "keywords": [
  567. "compatibility",
  568. "mbstring",
  569. "polyfill",
  570. "portable",
  571. "shim"
  572. ],
  573. "support": {
  574. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  575. },
  576. "funding": [
  577. {
  578. "url": "https://symfony.com/sponsor",
  579. "type": "custom"
  580. },
  581. {
  582. "url": "https://github.com/fabpot",
  583. "type": "github"
  584. },
  585. {
  586. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  587. "type": "tidelift"
  588. }
  589. ],
  590. "time": "2020-10-23T14:02:19+00:00"
  591. },
  592. {
  593. "name": "symfony/var-dumper",
  594. "version": "v3.2.0",
  595. "source": {
  596. "type": "git",
  597. "url": "https://github.com/symfony/var-dumper.git",
  598. "reference": "737e07704cca83f9dd0af926d45ce27eedc25657"
  599. },
  600. "dist": {
  601. "type": "zip",
  602. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/737e07704cca83f9dd0af926d45ce27eedc25657",
  603. "reference": "737e07704cca83f9dd0af926d45ce27eedc25657",
  604. "shasum": ""
  605. },
  606. "require": {
  607. "php": ">=5.5.9",
  608. "symfony/polyfill-mbstring": "~1.0"
  609. },
  610. "require-dev": {
  611. "twig/twig": "~1.20|~2.0"
  612. },
  613. "suggest": {
  614. "ext-symfony_debug": ""
  615. },
  616. "type": "library",
  617. "extra": {
  618. "branch-alias": {
  619. "dev-master": "3.2-dev"
  620. }
  621. },
  622. "autoload": {
  623. "files": [
  624. "Resources/functions/dump.php"
  625. ],
  626. "psr-4": {
  627. "Symfony\\Component\\VarDumper\\": ""
  628. },
  629. "exclude-from-classmap": [
  630. "/Tests/"
  631. ]
  632. },
  633. "notification-url": "https://packagist.org/downloads/",
  634. "license": [
  635. "MIT"
  636. ],
  637. "authors": [
  638. {
  639. "name": "Nicolas Grekas",
  640. "email": "p@tchwork.com"
  641. },
  642. {
  643. "name": "Symfony Community",
  644. "homepage": "https://symfony.com/contributors"
  645. }
  646. ],
  647. "description": "Symfony mechanism for exploring and dumping PHP variables",
  648. "homepage": "https://symfony.com",
  649. "keywords": [
  650. "debug",
  651. "dump"
  652. ],
  653. "support": {
  654. "source": "https://github.com/symfony/var-dumper/tree/master"
  655. },
  656. "time": "2015-11-18T13:48:51+00:00"
  657. },
  658. {
  659. "name": "tecnickcom/tcpdf",
  660. "version": "6.3.2",
  661. "source": {
  662. "type": "git",
  663. "url": "https://github.com/tecnickcom/TCPDF.git",
  664. "reference": "9fde7bb9b404b945e7ea88fb7eccd23d9a4e324b"
  665. },
  666. "dist": {
  667. "type": "zip",
  668. "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/9fde7bb9b404b945e7ea88fb7eccd23d9a4e324b",
  669. "reference": "9fde7bb9b404b945e7ea88fb7eccd23d9a4e324b",
  670. "shasum": ""
  671. },
  672. "require": {
  673. "php": ">=5.3.0"
  674. },
  675. "type": "library",
  676. "autoload": {
  677. "classmap": [
  678. "config",
  679. "include",
  680. "tcpdf.php",
  681. "tcpdf_parser.php",
  682. "tcpdf_import.php",
  683. "tcpdf_barcodes_1d.php",
  684. "tcpdf_barcodes_2d.php",
  685. "include/tcpdf_colors.php",
  686. "include/tcpdf_filters.php",
  687. "include/tcpdf_font_data.php",
  688. "include/tcpdf_fonts.php",
  689. "include/tcpdf_images.php",
  690. "include/tcpdf_static.php",
  691. "include/barcodes/datamatrix.php",
  692. "include/barcodes/pdf417.php",
  693. "include/barcodes/qrcode.php"
  694. ]
  695. },
  696. "notification-url": "https://packagist.org/downloads/",
  697. "license": [
  698. "LGPL-3.0"
  699. ],
  700. "authors": [
  701. {
  702. "name": "Nicola Asuni",
  703. "email": "info@tecnick.com",
  704. "role": "lead"
  705. }
  706. ],
  707. "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
  708. "homepage": "http://www.tcpdf.org/",
  709. "keywords": [
  710. "PDFD32000-2008",
  711. "TCPDF",
  712. "barcodes",
  713. "datamatrix",
  714. "pdf",
  715. "pdf417",
  716. "qrcode"
  717. ],
  718. "support": {
  719. "source": "https://github.com/tecnickcom/TCPDF/tree/6.3.2"
  720. },
  721. "time": "2019-09-20T09:35:01+00:00"
  722. }
  723. ],
  724. "packages-dev": [
  725. {
  726. "name": "doctrine/instantiator",
  727. "version": "1.4.0",
  728. "source": {
  729. "type": "git",
  730. "url": "https://github.com/doctrine/instantiator.git",
  731. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  732. },
  733. "dist": {
  734. "type": "zip",
  735. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  736. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  737. "shasum": ""
  738. },
  739. "require": {
  740. "php": "^7.1 || ^8.0"
  741. },
  742. "require-dev": {
  743. "doctrine/coding-standard": "^8.0",
  744. "ext-pdo": "*",
  745. "ext-phar": "*",
  746. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  747. "phpstan/phpstan": "^0.12",
  748. "phpstan/phpstan-phpunit": "^0.12",
  749. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  750. },
  751. "type": "library",
  752. "autoload": {
  753. "psr-4": {
  754. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  755. }
  756. },
  757. "notification-url": "https://packagist.org/downloads/",
  758. "license": [
  759. "MIT"
  760. ],
  761. "authors": [
  762. {
  763. "name": "Marco Pivetta",
  764. "email": "ocramius@gmail.com",
  765. "homepage": "https://ocramius.github.io/"
  766. }
  767. ],
  768. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  769. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  770. "keywords": [
  771. "constructor",
  772. "instantiate"
  773. ],
  774. "support": {
  775. "issues": "https://github.com/doctrine/instantiator/issues",
  776. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  777. },
  778. "funding": [
  779. {
  780. "url": "https://www.doctrine-project.org/sponsorship.html",
  781. "type": "custom"
  782. },
  783. {
  784. "url": "https://www.patreon.com/phpdoctrine",
  785. "type": "patreon"
  786. },
  787. {
  788. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  789. "type": "tidelift"
  790. }
  791. ],
  792. "time": "2020-11-10T18:47:58+00:00"
  793. },
  794. {
  795. "name": "php-parallel-lint/php-console-color",
  796. "version": "v0.3",
  797. "source": {
  798. "type": "git",
  799. "url": "https://github.com/php-parallel-lint/PHP-Console-Color.git",
  800. "reference": "b6af326b2088f1ad3b264696c9fd590ec395b49e"
  801. },
  802. "dist": {
  803. "type": "zip",
  804. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Color/zipball/b6af326b2088f1ad3b264696c9fd590ec395b49e",
  805. "reference": "b6af326b2088f1ad3b264696c9fd590ec395b49e",
  806. "shasum": ""
  807. },
  808. "require": {
  809. "php": ">=5.4.0"
  810. },
  811. "replace": {
  812. "jakub-onderka/php-console-color": "*"
  813. },
  814. "require-dev": {
  815. "php-parallel-lint/php-code-style": "1.0",
  816. "php-parallel-lint/php-parallel-lint": "1.0",
  817. "php-parallel-lint/php-var-dump-check": "0.*",
  818. "phpunit/phpunit": "~4.3",
  819. "squizlabs/php_codesniffer": "1.*"
  820. },
  821. "type": "library",
  822. "autoload": {
  823. "psr-4": {
  824. "JakubOnderka\\PhpConsoleColor\\": "src/"
  825. }
  826. },
  827. "notification-url": "https://packagist.org/downloads/",
  828. "license": [
  829. "BSD-2-Clause"
  830. ],
  831. "authors": [
  832. {
  833. "name": "Jakub Onderka",
  834. "email": "jakub.onderka@gmail.com"
  835. }
  836. ],
  837. "support": {
  838. "issues": "https://github.com/php-parallel-lint/PHP-Console-Color/issues",
  839. "source": "https://github.com/php-parallel-lint/PHP-Console-Color/tree/master"
  840. },
  841. "time": "2020-05-14T05:47:14+00:00"
  842. },
  843. {
  844. "name": "php-parallel-lint/php-console-highlighter",
  845. "version": "v0.5",
  846. "source": {
  847. "type": "git",
  848. "url": "https://github.com/php-parallel-lint/PHP-Console-Highlighter.git",
  849. "reference": "21bf002f077b177f056d8cb455c5ed573adfdbb8"
  850. },
  851. "dist": {
  852. "type": "zip",
  853. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Highlighter/zipball/21bf002f077b177f056d8cb455c5ed573adfdbb8",
  854. "reference": "21bf002f077b177f056d8cb455c5ed573adfdbb8",
  855. "shasum": ""
  856. },
  857. "require": {
  858. "ext-tokenizer": "*",
  859. "php": ">=5.4.0",
  860. "php-parallel-lint/php-console-color": "~0.2"
  861. },
  862. "replace": {
  863. "jakub-onderka/php-console-highlighter": "*"
  864. },
  865. "require-dev": {
  866. "php-parallel-lint/php-code-style": "~1.0",
  867. "php-parallel-lint/php-parallel-lint": "~1.0",
  868. "php-parallel-lint/php-var-dump-check": "~0.1",
  869. "phpunit/phpunit": "~4.0",
  870. "squizlabs/php_codesniffer": "~1.5"
  871. },
  872. "type": "library",
  873. "autoload": {
  874. "psr-4": {
  875. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  876. }
  877. },
  878. "notification-url": "https://packagist.org/downloads/",
  879. "license": [
  880. "MIT"
  881. ],
  882. "authors": [
  883. {
  884. "name": "Jakub Onderka",
  885. "email": "acci@acci.cz",
  886. "homepage": "http://www.acci.cz/"
  887. }
  888. ],
  889. "description": "Highlight PHP code in terminal",
  890. "support": {
  891. "issues": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/issues",
  892. "source": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/tree/master"
  893. },
  894. "time": "2020-05-13T07:37:49+00:00"
  895. },
  896. {
  897. "name": "php-parallel-lint/php-parallel-lint",
  898. "version": "v0.9.2",
  899. "source": {
  900. "type": "git",
  901. "url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
  902. "reference": "2ead2e4043ab125bee9554f356e0a86742c2d4fa"
  903. },
  904. "dist": {
  905. "type": "zip",
  906. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/2ead2e4043ab125bee9554f356e0a86742c2d4fa",
  907. "reference": "2ead2e4043ab125bee9554f356e0a86742c2d4fa",
  908. "shasum": ""
  909. },
  910. "require": {
  911. "php": ">=5.3.3"
  912. },
  913. "require-dev": {
  914. "jakub-onderka/php-console-highlighter": "~0.3",
  915. "nette/tester": "~1.3"
  916. },
  917. "suggest": {
  918. "jakub-onderka/php-console-highlighter": "Highlight syntax in code snippet"
  919. },
  920. "bin": [
  921. "parallel-lint"
  922. ],
  923. "type": "library",
  924. "autoload": {
  925. "classmap": [
  926. "./"
  927. ]
  928. },
  929. "notification-url": "https://packagist.org/downloads/",
  930. "license": [
  931. "BSD-2-Clause"
  932. ],
  933. "authors": [
  934. {
  935. "name": "Jakub Onderka",
  936. "email": "jakub.onderka@gmail.com"
  937. }
  938. ],
  939. "description": "This tool check syntax of PHP files about 20x faster than serial check.",
  940. "homepage": "https://github.com/JakubOnderka/PHP-Parallel-Lint",
  941. "support": {
  942. "source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v0.9.2"
  943. },
  944. "time": "2015-12-15T10:42:16+00:00"
  945. },
  946. {
  947. "name": "phpdocumentor/reflection-common",
  948. "version": "2.2.0",
  949. "source": {
  950. "type": "git",
  951. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  952. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  953. },
  954. "dist": {
  955. "type": "zip",
  956. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  957. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  958. "shasum": ""
  959. },
  960. "require": {
  961. "php": "^7.2 || ^8.0"
  962. },
  963. "type": "library",
  964. "extra": {
  965. "branch-alias": {
  966. "dev-2.x": "2.x-dev"
  967. }
  968. },
  969. "autoload": {
  970. "psr-4": {
  971. "phpDocumentor\\Reflection\\": "src/"
  972. }
  973. },
  974. "notification-url": "https://packagist.org/downloads/",
  975. "license": [
  976. "MIT"
  977. ],
  978. "authors": [
  979. {
  980. "name": "Jaap van Otterdijk",
  981. "email": "opensource@ijaap.nl"
  982. }
  983. ],
  984. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  985. "homepage": "http://www.phpdoc.org",
  986. "keywords": [
  987. "FQSEN",
  988. "phpDocumentor",
  989. "phpdoc",
  990. "reflection",
  991. "static analysis"
  992. ],
  993. "support": {
  994. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  995. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  996. },
  997. "time": "2020-06-27T09:03:43+00:00"
  998. },
  999. {
  1000. "name": "phpdocumentor/reflection-docblock",
  1001. "version": "5.2.2",
  1002. "source": {
  1003. "type": "git",
  1004. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1005. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  1006. },
  1007. "dist": {
  1008. "type": "zip",
  1009. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  1010. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  1011. "shasum": ""
  1012. },
  1013. "require": {
  1014. "ext-filter": "*",
  1015. "php": "^7.2 || ^8.0",
  1016. "phpdocumentor/reflection-common": "^2.2",
  1017. "phpdocumentor/type-resolver": "^1.3",
  1018. "webmozart/assert": "^1.9.1"
  1019. },
  1020. "require-dev": {
  1021. "mockery/mockery": "~1.3.2"
  1022. },
  1023. "type": "library",
  1024. "extra": {
  1025. "branch-alias": {
  1026. "dev-master": "5.x-dev"
  1027. }
  1028. },
  1029. "autoload": {
  1030. "psr-4": {
  1031. "phpDocumentor\\Reflection\\": "src"
  1032. }
  1033. },
  1034. "notification-url": "https://packagist.org/downloads/",
  1035. "license": [
  1036. "MIT"
  1037. ],
  1038. "authors": [
  1039. {
  1040. "name": "Mike van Riel",
  1041. "email": "me@mikevanriel.com"
  1042. },
  1043. {
  1044. "name": "Jaap van Otterdijk",
  1045. "email": "account@ijaap.nl"
  1046. }
  1047. ],
  1048. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1049. "support": {
  1050. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1051. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  1052. },
  1053. "time": "2020-09-03T19:13:55+00:00"
  1054. },
  1055. {
  1056. "name": "phpdocumentor/type-resolver",
  1057. "version": "1.4.0",
  1058. "source": {
  1059. "type": "git",
  1060. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1061. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  1062. },
  1063. "dist": {
  1064. "type": "zip",
  1065. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  1066. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  1067. "shasum": ""
  1068. },
  1069. "require": {
  1070. "php": "^7.2 || ^8.0",
  1071. "phpdocumentor/reflection-common": "^2.0"
  1072. },
  1073. "require-dev": {
  1074. "ext-tokenizer": "*"
  1075. },
  1076. "type": "library",
  1077. "extra": {
  1078. "branch-alias": {
  1079. "dev-1.x": "1.x-dev"
  1080. }
  1081. },
  1082. "autoload": {
  1083. "psr-4": {
  1084. "phpDocumentor\\Reflection\\": "src"
  1085. }
  1086. },
  1087. "notification-url": "https://packagist.org/downloads/",
  1088. "license": [
  1089. "MIT"
  1090. ],
  1091. "authors": [
  1092. {
  1093. "name": "Mike van Riel",
  1094. "email": "me@mikevanriel.com"
  1095. }
  1096. ],
  1097. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1098. "support": {
  1099. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  1100. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  1101. },
  1102. "time": "2020-09-17T18:55:26+00:00"
  1103. },
  1104. {
  1105. "name": "phpspec/prophecy",
  1106. "version": "v1.10.3",
  1107. "source": {
  1108. "type": "git",
  1109. "url": "https://github.com/phpspec/prophecy.git",
  1110. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  1111. },
  1112. "dist": {
  1113. "type": "zip",
  1114. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  1115. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  1116. "shasum": ""
  1117. },
  1118. "require": {
  1119. "doctrine/instantiator": "^1.0.2",
  1120. "php": "^5.3|^7.0",
  1121. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  1122. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  1123. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  1124. },
  1125. "require-dev": {
  1126. "phpspec/phpspec": "^2.5 || ^3.2",
  1127. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  1128. },
  1129. "type": "library",
  1130. "extra": {
  1131. "branch-alias": {
  1132. "dev-master": "1.10.x-dev"
  1133. }
  1134. },
  1135. "autoload": {
  1136. "psr-4": {
  1137. "Prophecy\\": "src/Prophecy"
  1138. }
  1139. },
  1140. "notification-url": "https://packagist.org/downloads/",
  1141. "license": [
  1142. "MIT"
  1143. ],
  1144. "authors": [
  1145. {
  1146. "name": "Konstantin Kudryashov",
  1147. "email": "ever.zet@gmail.com",
  1148. "homepage": "http://everzet.com"
  1149. },
  1150. {
  1151. "name": "Marcello Duarte",
  1152. "email": "marcello.duarte@gmail.com"
  1153. }
  1154. ],
  1155. "description": "Highly opinionated mocking framework for PHP 5.3+",
  1156. "homepage": "https://github.com/phpspec/prophecy",
  1157. "keywords": [
  1158. "Double",
  1159. "Dummy",
  1160. "fake",
  1161. "mock",
  1162. "spy",
  1163. "stub"
  1164. ],
  1165. "support": {
  1166. "issues": "https://github.com/phpspec/prophecy/issues",
  1167. "source": "https://github.com/phpspec/prophecy/tree/v1.10.3"
  1168. },
  1169. "time": "2020-03-05T15:02:03+00:00"
  1170. },
  1171. {
  1172. "name": "phpunit/php-code-coverage",
  1173. "version": "2.2.4",
  1174. "source": {
  1175. "type": "git",
  1176. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1177. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  1178. },
  1179. "dist": {
  1180. "type": "zip",
  1181. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  1182. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  1183. "shasum": ""
  1184. },
  1185. "require": {
  1186. "php": ">=5.3.3",
  1187. "phpunit/php-file-iterator": "~1.3",
  1188. "phpunit/php-text-template": "~1.2",
  1189. "phpunit/php-token-stream": "~1.3",
  1190. "sebastian/environment": "^1.3.2",
  1191. "sebastian/version": "~1.0"
  1192. },
  1193. "require-dev": {
  1194. "ext-xdebug": ">=2.1.4",
  1195. "phpunit/phpunit": "~4"
  1196. },
  1197. "suggest": {
  1198. "ext-dom": "*",
  1199. "ext-xdebug": ">=2.2.1",
  1200. "ext-xmlwriter": "*"
  1201. },
  1202. "type": "library",
  1203. "extra": {
  1204. "branch-alias": {
  1205. "dev-master": "2.2.x-dev"
  1206. }
  1207. },
  1208. "autoload": {
  1209. "classmap": [
  1210. "src/"
  1211. ]
  1212. },
  1213. "notification-url": "https://packagist.org/downloads/",
  1214. "license": [
  1215. "BSD-3-Clause"
  1216. ],
  1217. "authors": [
  1218. {
  1219. "name": "Sebastian Bergmann",
  1220. "email": "sb@sebastian-bergmann.de",
  1221. "role": "lead"
  1222. }
  1223. ],
  1224. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1225. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1226. "keywords": [
  1227. "coverage",
  1228. "testing",
  1229. "xunit"
  1230. ],
  1231. "support": {
  1232. "irc": "irc://irc.freenode.net/phpunit",
  1233. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  1234. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/2.2"
  1235. },
  1236. "time": "2015-10-06T15:47:00+00:00"
  1237. },
  1238. {
  1239. "name": "phpunit/php-file-iterator",
  1240. "version": "1.4.5",
  1241. "source": {
  1242. "type": "git",
  1243. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1244. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  1245. },
  1246. "dist": {
  1247. "type": "zip",
  1248. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1249. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1250. "shasum": ""
  1251. },
  1252. "require": {
  1253. "php": ">=5.3.3"
  1254. },
  1255. "type": "library",
  1256. "extra": {
  1257. "branch-alias": {
  1258. "dev-master": "1.4.x-dev"
  1259. }
  1260. },
  1261. "autoload": {
  1262. "classmap": [
  1263. "src/"
  1264. ]
  1265. },
  1266. "notification-url": "https://packagist.org/downloads/",
  1267. "license": [
  1268. "BSD-3-Clause"
  1269. ],
  1270. "authors": [
  1271. {
  1272. "name": "Sebastian Bergmann",
  1273. "email": "sb@sebastian-bergmann.de",
  1274. "role": "lead"
  1275. }
  1276. ],
  1277. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1278. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1279. "keywords": [
  1280. "filesystem",
  1281. "iterator"
  1282. ],
  1283. "support": {
  1284. "irc": "irc://irc.freenode.net/phpunit",
  1285. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  1286. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/1.4.5"
  1287. },
  1288. "time": "2017-11-27T13:52:08+00:00"
  1289. },
  1290. {
  1291. "name": "phpunit/php-text-template",
  1292. "version": "1.2.1",
  1293. "source": {
  1294. "type": "git",
  1295. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1296. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  1297. },
  1298. "dist": {
  1299. "type": "zip",
  1300. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1301. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1302. "shasum": ""
  1303. },
  1304. "require": {
  1305. "php": ">=5.3.3"
  1306. },
  1307. "type": "library",
  1308. "autoload": {
  1309. "classmap": [
  1310. "src/"
  1311. ]
  1312. },
  1313. "notification-url": "https://packagist.org/downloads/",
  1314. "license": [
  1315. "BSD-3-Clause"
  1316. ],
  1317. "authors": [
  1318. {
  1319. "name": "Sebastian Bergmann",
  1320. "email": "sebastian@phpunit.de",
  1321. "role": "lead"
  1322. }
  1323. ],
  1324. "description": "Simple template engine.",
  1325. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1326. "keywords": [
  1327. "template"
  1328. ],
  1329. "support": {
  1330. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  1331. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  1332. },
  1333. "time": "2015-06-21T13:50:34+00:00"
  1334. },
  1335. {
  1336. "name": "phpunit/php-timer",
  1337. "version": "1.0.9",
  1338. "source": {
  1339. "type": "git",
  1340. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1341. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  1342. },
  1343. "dist": {
  1344. "type": "zip",
  1345. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1346. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1347. "shasum": ""
  1348. },
  1349. "require": {
  1350. "php": "^5.3.3 || ^7.0"
  1351. },
  1352. "require-dev": {
  1353. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1354. },
  1355. "type": "library",
  1356. "extra": {
  1357. "branch-alias": {
  1358. "dev-master": "1.0-dev"
  1359. }
  1360. },
  1361. "autoload": {
  1362. "classmap": [
  1363. "src/"
  1364. ]
  1365. },
  1366. "notification-url": "https://packagist.org/downloads/",
  1367. "license": [
  1368. "BSD-3-Clause"
  1369. ],
  1370. "authors": [
  1371. {
  1372. "name": "Sebastian Bergmann",
  1373. "email": "sb@sebastian-bergmann.de",
  1374. "role": "lead"
  1375. }
  1376. ],
  1377. "description": "Utility class for timing",
  1378. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1379. "keywords": [
  1380. "timer"
  1381. ],
  1382. "support": {
  1383. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  1384. "source": "https://github.com/sebastianbergmann/php-timer/tree/master"
  1385. },
  1386. "time": "2017-02-26T11:10:40+00:00"
  1387. },
  1388. {
  1389. "name": "phpunit/php-token-stream",
  1390. "version": "1.4.12",
  1391. "source": {
  1392. "type": "git",
  1393. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1394. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
  1395. },
  1396. "dist": {
  1397. "type": "zip",
  1398. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
  1399. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
  1400. "shasum": ""
  1401. },
  1402. "require": {
  1403. "ext-tokenizer": "*",
  1404. "php": ">=5.3.3"
  1405. },
  1406. "require-dev": {
  1407. "phpunit/phpunit": "~4.2"
  1408. },
  1409. "type": "library",
  1410. "extra": {
  1411. "branch-alias": {
  1412. "dev-master": "1.4-dev"
  1413. }
  1414. },
  1415. "autoload": {
  1416. "classmap": [
  1417. "src/"
  1418. ]
  1419. },
  1420. "notification-url": "https://packagist.org/downloads/",
  1421. "license": [
  1422. "BSD-3-Clause"
  1423. ],
  1424. "authors": [
  1425. {
  1426. "name": "Sebastian Bergmann",
  1427. "email": "sebastian@phpunit.de"
  1428. }
  1429. ],
  1430. "description": "Wrapper around PHP's tokenizer extension.",
  1431. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1432. "keywords": [
  1433. "tokenizer"
  1434. ],
  1435. "support": {
  1436. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  1437. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/1.4"
  1438. },
  1439. "abandoned": true,
  1440. "time": "2017-12-04T08:55:13+00:00"
  1441. },
  1442. {
  1443. "name": "phpunit/phpunit",
  1444. "version": "4.8.36",
  1445. "source": {
  1446. "type": "git",
  1447. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1448. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517"
  1449. },
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/46023de9a91eec7dfb06cc56cb4e260017298517",
  1453. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517",
  1454. "shasum": ""
  1455. },
  1456. "require": {
  1457. "ext-dom": "*",
  1458. "ext-json": "*",
  1459. "ext-pcre": "*",
  1460. "ext-reflection": "*",
  1461. "ext-spl": "*",
  1462. "php": ">=5.3.3",
  1463. "phpspec/prophecy": "^1.3.1",
  1464. "phpunit/php-code-coverage": "~2.1",
  1465. "phpunit/php-file-iterator": "~1.4",
  1466. "phpunit/php-text-template": "~1.2",
  1467. "phpunit/php-timer": "^1.0.6",
  1468. "phpunit/phpunit-mock-objects": "~2.3",
  1469. "sebastian/comparator": "~1.2.2",
  1470. "sebastian/diff": "~1.2",
  1471. "sebastian/environment": "~1.3",
  1472. "sebastian/exporter": "~1.2",
  1473. "sebastian/global-state": "~1.0",
  1474. "sebastian/version": "~1.0",
  1475. "symfony/yaml": "~2.1|~3.0"
  1476. },
  1477. "suggest": {
  1478. "phpunit/php-invoker": "~1.1"
  1479. },
  1480. "bin": [
  1481. "phpunit"
  1482. ],
  1483. "type": "library",
  1484. "extra": {
  1485. "branch-alias": {
  1486. "dev-master": "4.8.x-dev"
  1487. }
  1488. },
  1489. "autoload": {
  1490. "classmap": [
  1491. "src/"
  1492. ]
  1493. },
  1494. "notification-url": "https://packagist.org/downloads/",
  1495. "license": [
  1496. "BSD-3-Clause"
  1497. ],
  1498. "authors": [
  1499. {
  1500. "name": "Sebastian Bergmann",
  1501. "email": "sebastian@phpunit.de",
  1502. "role": "lead"
  1503. }
  1504. ],
  1505. "description": "The PHP Unit Testing framework.",
  1506. "homepage": "https://phpunit.de/",
  1507. "keywords": [
  1508. "phpunit",
  1509. "testing",
  1510. "xunit"
  1511. ],
  1512. "support": {
  1513. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  1514. "source": "https://github.com/sebastianbergmann/phpunit/tree/4.8.36"
  1515. },
  1516. "time": "2017-06-21T08:07:12+00:00"
  1517. },
  1518. {
  1519. "name": "phpunit/phpunit-mock-objects",
  1520. "version": "2.3.8",
  1521. "source": {
  1522. "type": "git",
  1523. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1524. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  1525. },
  1526. "dist": {
  1527. "type": "zip",
  1528. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  1529. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  1530. "shasum": ""
  1531. },
  1532. "require": {
  1533. "doctrine/instantiator": "^1.0.2",
  1534. "php": ">=5.3.3",
  1535. "phpunit/php-text-template": "~1.2",
  1536. "sebastian/exporter": "~1.2"
  1537. },
  1538. "require-dev": {
  1539. "phpunit/phpunit": "~4.4"
  1540. },
  1541. "suggest": {
  1542. "ext-soap": "*"
  1543. },
  1544. "type": "library",
  1545. "extra": {
  1546. "branch-alias": {
  1547. "dev-master": "2.3.x-dev"
  1548. }
  1549. },
  1550. "autoload": {
  1551. "classmap": [
  1552. "src/"
  1553. ]
  1554. },
  1555. "notification-url": "https://packagist.org/downloads/",
  1556. "license": [
  1557. "BSD-3-Clause"
  1558. ],
  1559. "authors": [
  1560. {
  1561. "name": "Sebastian Bergmann",
  1562. "email": "sb@sebastian-bergmann.de",
  1563. "role": "lead"
  1564. }
  1565. ],
  1566. "description": "Mock Object library for PHPUnit",
  1567. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1568. "keywords": [
  1569. "mock",
  1570. "xunit"
  1571. ],
  1572. "support": {
  1573. "irc": "irc://irc.freenode.net/phpunit",
  1574. "issues": "https://github.com/sebastianbergmann/phpunit-mock-objects/issues",
  1575. "source": "https://github.com/sebastianbergmann/phpunit-mock-objects/tree/2.3"
  1576. },
  1577. "abandoned": true,
  1578. "time": "2015-10-02T06:51:40+00:00"
  1579. },
  1580. {
  1581. "name": "phpunit/phpunit-selenium",
  1582. "version": "2.0.3",
  1583. "source": {
  1584. "type": "git",
  1585. "url": "https://github.com/giorgiosironi/phpunit-selenium.git",
  1586. "reference": "013037eeea481657d236431634042648797e1da8"
  1587. },
  1588. "dist": {
  1589. "type": "zip",
  1590. "url": "https://api.github.com/repos/giorgiosironi/phpunit-selenium/zipball/013037eeea481657d236431634042648797e1da8",
  1591. "reference": "013037eeea481657d236431634042648797e1da8",
  1592. "shasum": ""
  1593. },
  1594. "require": {
  1595. "ext-curl": "*",
  1596. "ext-dom": "*",
  1597. "php": ">=5.3.3",
  1598. "phpunit/phpunit": "~4.8",
  1599. "sebastian/comparator": "~1.0"
  1600. },
  1601. "require-dev": {
  1602. "phing/phing": "2.*"
  1603. },
  1604. "type": "library",
  1605. "autoload": {
  1606. "classmap": [
  1607. "PHPUnit/"
  1608. ]
  1609. },
  1610. "notification-url": "https://packagist.org/downloads/",
  1611. "include-path": [
  1612. ""
  1613. ],
  1614. "license": [
  1615. "BSD-3-Clause"
  1616. ],
  1617. "authors": [
  1618. {
  1619. "name": "Giorgio Sironi",
  1620. "email": "info@giorgiosironi.com",
  1621. "role": "developer"
  1622. },
  1623. {
  1624. "name": "Ivan Kurnosov",
  1625. "email": "zerkms@zerkms.com",
  1626. "role": "developer"
  1627. },
  1628. {
  1629. "name": "Sebastian Bergmann",
  1630. "email": "sb@sebastian-bergmann.de",
  1631. "role": "original developer"
  1632. }
  1633. ],
  1634. "description": "Selenium Server integration for PHPUnit",
  1635. "homepage": "http://www.phpunit.de/",
  1636. "keywords": [
  1637. "phpunit",
  1638. "selenium",
  1639. "testing",
  1640. "xunit"
  1641. ],
  1642. "support": {
  1643. "irc": "irc://irc.freenode.net/phpunit",
  1644. "issues": "https://github.com/sebastianbergmann/phpunit-selenium/issues",
  1645. "source": "https://github.com/giorgiosironi/phpunit-selenium/tree/2.x"
  1646. },
  1647. "time": "2017-01-23T22:15:32+00:00"
  1648. },
  1649. {
  1650. "name": "sebastian/comparator",
  1651. "version": "1.2.4",
  1652. "source": {
  1653. "type": "git",
  1654. "url": "https://github.com/sebastianbergmann/comparator.git",
  1655. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  1656. },
  1657. "dist": {
  1658. "type": "zip",
  1659. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1660. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1661. "shasum": ""
  1662. },
  1663. "require": {
  1664. "php": ">=5.3.3",
  1665. "sebastian/diff": "~1.2",
  1666. "sebastian/exporter": "~1.2 || ~2.0"
  1667. },
  1668. "require-dev": {
  1669. "phpunit/phpunit": "~4.4"
  1670. },
  1671. "type": "library",
  1672. "extra": {
  1673. "branch-alias": {
  1674. "dev-master": "1.2.x-dev"
  1675. }
  1676. },
  1677. "autoload": {
  1678. "classmap": [
  1679. "src/"
  1680. ]
  1681. },
  1682. "notification-url": "https://packagist.org/downloads/",
  1683. "license": [
  1684. "BSD-3-Clause"
  1685. ],
  1686. "authors": [
  1687. {
  1688. "name": "Jeff Welch",
  1689. "email": "whatthejeff@gmail.com"
  1690. },
  1691. {
  1692. "name": "Volker Dusch",
  1693. "email": "github@wallbash.com"
  1694. },
  1695. {
  1696. "name": "Bernhard Schussek",
  1697. "email": "bschussek@2bepublished.at"
  1698. },
  1699. {
  1700. "name": "Sebastian Bergmann",
  1701. "email": "sebastian@phpunit.de"
  1702. }
  1703. ],
  1704. "description": "Provides the functionality to compare PHP values for equality",
  1705. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  1706. "keywords": [
  1707. "comparator",
  1708. "compare",
  1709. "equality"
  1710. ],
  1711. "support": {
  1712. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  1713. "source": "https://github.com/sebastianbergmann/comparator/tree/1.2"
  1714. },
  1715. "time": "2017-01-29T09:50:25+00:00"
  1716. },
  1717. {
  1718. "name": "sebastian/diff",
  1719. "version": "1.4.3",
  1720. "source": {
  1721. "type": "git",
  1722. "url": "https://github.com/sebastianbergmann/diff.git",
  1723. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  1724. },
  1725. "dist": {
  1726. "type": "zip",
  1727. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  1728. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  1729. "shasum": ""
  1730. },
  1731. "require": {
  1732. "php": "^5.3.3 || ^7.0"
  1733. },
  1734. "require-dev": {
  1735. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1736. },
  1737. "type": "library",
  1738. "extra": {
  1739. "branch-alias": {
  1740. "dev-master": "1.4-dev"
  1741. }
  1742. },
  1743. "autoload": {
  1744. "classmap": [
  1745. "src/"
  1746. ]
  1747. },
  1748. "notification-url": "https://packagist.org/downloads/",
  1749. "license": [
  1750. "BSD-3-Clause"
  1751. ],
  1752. "authors": [
  1753. {
  1754. "name": "Kore Nordmann",
  1755. "email": "mail@kore-nordmann.de"
  1756. },
  1757. {
  1758. "name": "Sebastian Bergmann",
  1759. "email": "sebastian@phpunit.de"
  1760. }
  1761. ],
  1762. "description": "Diff implementation",
  1763. "homepage": "https://github.com/sebastianbergmann/diff",
  1764. "keywords": [
  1765. "diff"
  1766. ],
  1767. "support": {
  1768. "issues": "https://github.com/sebastianbergmann/diff/issues",
  1769. "source": "https://github.com/sebastianbergmann/diff/tree/1.4"
  1770. },
  1771. "time": "2017-05-22T07:24:03+00:00"
  1772. },
  1773. {
  1774. "name": "sebastian/environment",
  1775. "version": "1.3.8",
  1776. "source": {
  1777. "type": "git",
  1778. "url": "https://github.com/sebastianbergmann/environment.git",
  1779. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  1780. },
  1781. "dist": {
  1782. "type": "zip",
  1783. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  1784. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  1785. "shasum": ""
  1786. },
  1787. "require": {
  1788. "php": "^5.3.3 || ^7.0"
  1789. },
  1790. "require-dev": {
  1791. "phpunit/phpunit": "^4.8 || ^5.0"
  1792. },
  1793. "type": "library",
  1794. "extra": {
  1795. "branch-alias": {
  1796. "dev-master": "1.3.x-dev"
  1797. }
  1798. },
  1799. "autoload": {
  1800. "classmap": [
  1801. "src/"
  1802. ]
  1803. },
  1804. "notification-url": "https://packagist.org/downloads/",
  1805. "license": [
  1806. "BSD-3-Clause"
  1807. ],
  1808. "authors": [
  1809. {
  1810. "name": "Sebastian Bergmann",
  1811. "email": "sebastian@phpunit.de"
  1812. }
  1813. ],
  1814. "description": "Provides functionality to handle HHVM/PHP environments",
  1815. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1816. "keywords": [
  1817. "Xdebug",
  1818. "environment",
  1819. "hhvm"
  1820. ],
  1821. "support": {
  1822. "issues": "https://github.com/sebastianbergmann/environment/issues",
  1823. "source": "https://github.com/sebastianbergmann/environment/tree/1.3"
  1824. },
  1825. "time": "2016-08-18T05:49:44+00:00"
  1826. },
  1827. {
  1828. "name": "sebastian/exporter",
  1829. "version": "1.2.2",
  1830. "source": {
  1831. "type": "git",
  1832. "url": "https://github.com/sebastianbergmann/exporter.git",
  1833. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  1834. },
  1835. "dist": {
  1836. "type": "zip",
  1837. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
  1838. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  1839. "shasum": ""
  1840. },
  1841. "require": {
  1842. "php": ">=5.3.3",
  1843. "sebastian/recursion-context": "~1.0"
  1844. },
  1845. "require-dev": {
  1846. "ext-mbstring": "*",
  1847. "phpunit/phpunit": "~4.4"
  1848. },
  1849. "type": "library",
  1850. "extra": {
  1851. "branch-alias": {
  1852. "dev-master": "1.3.x-dev"
  1853. }
  1854. },
  1855. "autoload": {
  1856. "classmap": [
  1857. "src/"
  1858. ]
  1859. },
  1860. "notification-url": "https://packagist.org/downloads/",
  1861. "license": [
  1862. "BSD-3-Clause"
  1863. ],
  1864. "authors": [
  1865. {
  1866. "name": "Jeff Welch",
  1867. "email": "whatthejeff@gmail.com"
  1868. },
  1869. {
  1870. "name": "Volker Dusch",
  1871. "email": "github@wallbash.com"
  1872. },
  1873. {
  1874. "name": "Bernhard Schussek",
  1875. "email": "bschussek@2bepublished.at"
  1876. },
  1877. {
  1878. "name": "Sebastian Bergmann",
  1879. "email": "sebastian@phpunit.de"
  1880. },
  1881. {
  1882. "name": "Adam Harvey",
  1883. "email": "aharvey@php.net"
  1884. }
  1885. ],
  1886. "description": "Provides the functionality to export PHP variables for visualization",
  1887. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1888. "keywords": [
  1889. "export",
  1890. "exporter"
  1891. ],
  1892. "support": {
  1893. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  1894. "source": "https://github.com/sebastianbergmann/exporter/tree/master"
  1895. },
  1896. "time": "2016-06-17T09:04:28+00:00"
  1897. },
  1898. {
  1899. "name": "sebastian/global-state",
  1900. "version": "1.1.1",
  1901. "source": {
  1902. "type": "git",
  1903. "url": "https://github.com/sebastianbergmann/global-state.git",
  1904. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  1905. },
  1906. "dist": {
  1907. "type": "zip",
  1908. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1909. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1910. "shasum": ""
  1911. },
  1912. "require": {
  1913. "php": ">=5.3.3"
  1914. },
  1915. "require-dev": {
  1916. "phpunit/phpunit": "~4.2"
  1917. },
  1918. "suggest": {
  1919. "ext-uopz": "*"
  1920. },
  1921. "type": "library",
  1922. "extra": {
  1923. "branch-alias": {
  1924. "dev-master": "1.0-dev"
  1925. }
  1926. },
  1927. "autoload": {
  1928. "classmap": [
  1929. "src/"
  1930. ]
  1931. },
  1932. "notification-url": "https://packagist.org/downloads/",
  1933. "license": [
  1934. "BSD-3-Clause"
  1935. ],
  1936. "authors": [
  1937. {
  1938. "name": "Sebastian Bergmann",
  1939. "email": "sebastian@phpunit.de"
  1940. }
  1941. ],
  1942. "description": "Snapshotting of global state",
  1943. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1944. "keywords": [
  1945. "global state"
  1946. ],
  1947. "support": {
  1948. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  1949. "source": "https://github.com/sebastianbergmann/global-state/tree/1.1.1"
  1950. },
  1951. "time": "2015-10-12T03:26:01+00:00"
  1952. },
  1953. {
  1954. "name": "sebastian/recursion-context",
  1955. "version": "1.0.5",
  1956. "source": {
  1957. "type": "git",
  1958. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1959. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7"
  1960. },
  1961. "dist": {
  1962. "type": "zip",
  1963. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  1964. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  1965. "shasum": ""
  1966. },
  1967. "require": {
  1968. "php": ">=5.3.3"
  1969. },
  1970. "require-dev": {
  1971. "phpunit/phpunit": "~4.4"
  1972. },
  1973. "type": "library",
  1974. "extra": {
  1975. "branch-alias": {
  1976. "dev-master": "1.0.x-dev"
  1977. }
  1978. },
  1979. "autoload": {
  1980. "classmap": [
  1981. "src/"
  1982. ]
  1983. },
  1984. "notification-url": "https://packagist.org/downloads/",
  1985. "license": [
  1986. "BSD-3-Clause"
  1987. ],
  1988. "authors": [
  1989. {
  1990. "name": "Jeff Welch",
  1991. "email": "whatthejeff@gmail.com"
  1992. },
  1993. {
  1994. "name": "Sebastian Bergmann",
  1995. "email": "sebastian@phpunit.de"
  1996. },
  1997. {
  1998. "name": "Adam Harvey",
  1999. "email": "aharvey@php.net"
  2000. }
  2001. ],
  2002. "description": "Provides functionality to recursively process PHP variables",
  2003. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  2004. "support": {
  2005. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  2006. "source": "https://github.com/sebastianbergmann/recursion-context/tree/master"
  2007. },
  2008. "time": "2016-10-03T07:41:43+00:00"
  2009. },
  2010. {
  2011. "name": "sebastian/version",
  2012. "version": "1.0.6",
  2013. "source": {
  2014. "type": "git",
  2015. "url": "https://github.com/sebastianbergmann/version.git",
  2016. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  2017. },
  2018. "dist": {
  2019. "type": "zip",
  2020. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  2021. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  2022. "shasum": ""
  2023. },
  2024. "type": "library",
  2025. "autoload": {
  2026. "classmap": [
  2027. "src/"
  2028. ]
  2029. },
  2030. "notification-url": "https://packagist.org/downloads/",
  2031. "license": [
  2032. "BSD-3-Clause"
  2033. ],
  2034. "authors": [
  2035. {
  2036. "name": "Sebastian Bergmann",
  2037. "email": "sebastian@phpunit.de",
  2038. "role": "lead"
  2039. }
  2040. ],
  2041. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2042. "homepage": "https://github.com/sebastianbergmann/version",
  2043. "support": {
  2044. "issues": "https://github.com/sebastianbergmann/version/issues",
  2045. "source": "https://github.com/sebastianbergmann/version/tree/1.0.6"
  2046. },
  2047. "time": "2015-06-21T13:59:46+00:00"
  2048. },
  2049. {
  2050. "name": "squizlabs/php_codesniffer",
  2051. "version": "2.9.2",
  2052. "source": {
  2053. "type": "git",
  2054. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  2055. "reference": "2acf168de78487db620ab4bc524135a13cfe6745"
  2056. },
  2057. "dist": {
  2058. "type": "zip",
  2059. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/2acf168de78487db620ab4bc524135a13cfe6745",
  2060. "reference": "2acf168de78487db620ab4bc524135a13cfe6745",
  2061. "shasum": ""
  2062. },
  2063. "require": {
  2064. "ext-simplexml": "*",
  2065. "ext-tokenizer": "*",
  2066. "ext-xmlwriter": "*",
  2067. "php": ">=5.1.2"
  2068. },
  2069. "require-dev": {
  2070. "phpunit/phpunit": "~4.0"
  2071. },
  2072. "bin": [
  2073. "scripts/phpcs",
  2074. "scripts/phpcbf"
  2075. ],
  2076. "type": "library",
  2077. "extra": {
  2078. "branch-alias": {
  2079. "dev-master": "2.x-dev"
  2080. }
  2081. },
  2082. "autoload": {
  2083. "classmap": [
  2084. "CodeSniffer.php",
  2085. "CodeSniffer/CLI.php",
  2086. "CodeSniffer/Exception.php",
  2087. "CodeSniffer/File.php",
  2088. "CodeSniffer/Fixer.php",
  2089. "CodeSniffer/Report.php",
  2090. "CodeSniffer/Reporting.php",
  2091. "CodeSniffer/Sniff.php",
  2092. "CodeSniffer/Tokens.php",
  2093. "CodeSniffer/Reports/",
  2094. "CodeSniffer/Tokenizers/",
  2095. "CodeSniffer/DocGenerators/",
  2096. "CodeSniffer/Standards/AbstractPatternSniff.php",
  2097. "CodeSniffer/Standards/AbstractScopeSniff.php",
  2098. "CodeSniffer/Standards/AbstractVariableSniff.php",
  2099. "CodeSniffer/Standards/IncorrectPatternException.php",
  2100. "CodeSniffer/Standards/Generic/Sniffs/",
  2101. "CodeSniffer/Standards/MySource/Sniffs/",
  2102. "CodeSniffer/Standards/PEAR/Sniffs/",
  2103. "CodeSniffer/Standards/PSR1/Sniffs/",
  2104. "CodeSniffer/Standards/PSR2/Sniffs/",
  2105. "CodeSniffer/Standards/Squiz/Sniffs/",
  2106. "CodeSniffer/Standards/Zend/Sniffs/"
  2107. ]
  2108. },
  2109. "notification-url": "https://packagist.org/downloads/",
  2110. "license": [
  2111. "BSD-3-Clause"
  2112. ],
  2113. "authors": [
  2114. {
  2115. "name": "Greg Sherwood",
  2116. "role": "lead"
  2117. }
  2118. ],
  2119. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  2120. "homepage": "http://www.squizlabs.com/php-codesniffer",
  2121. "keywords": [
  2122. "phpcs",
  2123. "standards"
  2124. ],
  2125. "support": {
  2126. "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
  2127. "source": "https://github.com/squizlabs/PHP_CodeSniffer",
  2128. "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
  2129. },
  2130. "time": "2018-11-07T22:31:41+00:00"
  2131. },
  2132. {
  2133. "name": "symfony/polyfill-ctype",
  2134. "version": "v1.20.0",
  2135. "source": {
  2136. "type": "git",
  2137. "url": "https://github.com/symfony/polyfill-ctype.git",
  2138. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  2139. },
  2140. "dist": {
  2141. "type": "zip",
  2142. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  2143. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  2144. "shasum": ""
  2145. },
  2146. "require": {
  2147. "php": ">=7.1"
  2148. },
  2149. "suggest": {
  2150. "ext-ctype": "For best performance"
  2151. },
  2152. "type": "library",
  2153. "extra": {
  2154. "branch-alias": {
  2155. "dev-main": "1.20-dev"
  2156. },
  2157. "thanks": {
  2158. "name": "symfony/polyfill",
  2159. "url": "https://github.com/symfony/polyfill"
  2160. }
  2161. },
  2162. "autoload": {
  2163. "psr-4": {
  2164. "Symfony\\Polyfill\\Ctype\\": ""
  2165. },
  2166. "files": [
  2167. "bootstrap.php"
  2168. ]
  2169. },
  2170. "notification-url": "https://packagist.org/downloads/",
  2171. "license": [
  2172. "MIT"
  2173. ],
  2174. "authors": [
  2175. {
  2176. "name": "Gert de Pagter",
  2177. "email": "BackEndTea@gmail.com"
  2178. },
  2179. {
  2180. "name": "Symfony Community",
  2181. "homepage": "https://symfony.com/contributors"
  2182. }
  2183. ],
  2184. "description": "Symfony polyfill for ctype functions",
  2185. "homepage": "https://symfony.com",
  2186. "keywords": [
  2187. "compatibility",
  2188. "ctype",
  2189. "polyfill",
  2190. "portable"
  2191. ],
  2192. "support": {
  2193. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  2194. },
  2195. "funding": [
  2196. {
  2197. "url": "https://symfony.com/sponsor",
  2198. "type": "custom"
  2199. },
  2200. {
  2201. "url": "https://github.com/fabpot",
  2202. "type": "github"
  2203. },
  2204. {
  2205. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2206. "type": "tidelift"
  2207. }
  2208. ],
  2209. "time": "2020-10-23T14:02:19+00:00"
  2210. },
  2211. {
  2212. "name": "symfony/yaml",
  2213. "version": "v3.4.47",
  2214. "source": {
  2215. "type": "git",
  2216. "url": "https://github.com/symfony/yaml.git",
  2217. "reference": "88289caa3c166321883f67fe5130188ebbb47094"
  2218. },
  2219. "dist": {
  2220. "type": "zip",
  2221. "url": "https://api.github.com/repos/symfony/yaml/zipball/88289caa3c166321883f67fe5130188ebbb47094",
  2222. "reference": "88289caa3c166321883f67fe5130188ebbb47094",
  2223. "shasum": ""
  2224. },
  2225. "require": {
  2226. "php": "^5.5.9|>=7.0.8",
  2227. "symfony/polyfill-ctype": "~1.8"
  2228. },
  2229. "conflict": {
  2230. "symfony/console": "<3.4"
  2231. },
  2232. "require-dev": {
  2233. "symfony/console": "~3.4|~4.0"
  2234. },
  2235. "suggest": {
  2236. "symfony/console": "For validating YAML files using the lint command"
  2237. },
  2238. "type": "library",
  2239. "autoload": {
  2240. "psr-4": {
  2241. "Symfony\\Component\\Yaml\\": ""
  2242. },
  2243. "exclude-from-classmap": [
  2244. "/Tests/"
  2245. ]
  2246. },
  2247. "notification-url": "https://packagist.org/downloads/",
  2248. "license": [
  2249. "MIT"
  2250. ],
  2251. "authors": [
  2252. {
  2253. "name": "Fabien Potencier",
  2254. "email": "fabien@symfony.com"
  2255. },
  2256. {
  2257. "name": "Symfony Community",
  2258. "homepage": "https://symfony.com/contributors"
  2259. }
  2260. ],
  2261. "description": "Symfony Yaml Component",
  2262. "homepage": "https://symfony.com",
  2263. "support": {
  2264. "source": "https://github.com/symfony/yaml/tree/v3.4.47"
  2265. },
  2266. "funding": [
  2267. {
  2268. "url": "https://symfony.com/sponsor",
  2269. "type": "custom"
  2270. },
  2271. {
  2272. "url": "https://github.com/fabpot",
  2273. "type": "github"
  2274. },
  2275. {
  2276. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2277. "type": "tidelift"
  2278. }
  2279. ],
  2280. "time": "2020-10-24T10:57:07+00:00"
  2281. },
  2282. {
  2283. "name": "webmozart/assert",
  2284. "version": "1.9.1",
  2285. "source": {
  2286. "type": "git",
  2287. "url": "https://github.com/webmozart/assert.git",
  2288. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  2289. },
  2290. "dist": {
  2291. "type": "zip",
  2292. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  2293. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  2294. "shasum": ""
  2295. },
  2296. "require": {
  2297. "php": "^5.3.3 || ^7.0 || ^8.0",
  2298. "symfony/polyfill-ctype": "^1.8"
  2299. },
  2300. "conflict": {
  2301. "phpstan/phpstan": "<0.12.20",
  2302. "vimeo/psalm": "<3.9.1"
  2303. },
  2304. "require-dev": {
  2305. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  2306. },
  2307. "type": "library",
  2308. "autoload": {
  2309. "psr-4": {
  2310. "Webmozart\\Assert\\": "src/"
  2311. }
  2312. },
  2313. "notification-url": "https://packagist.org/downloads/",
  2314. "license": [
  2315. "MIT"
  2316. ],
  2317. "authors": [
  2318. {
  2319. "name": "Bernhard Schussek",
  2320. "email": "bschussek@gmail.com"
  2321. }
  2322. ],
  2323. "description": "Assertions to validate method input/output with nice error messages.",
  2324. "keywords": [
  2325. "assert",
  2326. "check",
  2327. "validate"
  2328. ],
  2329. "support": {
  2330. "issues": "https://github.com/webmozart/assert/issues",
  2331. "source": "https://github.com/webmozart/assert/tree/master"
  2332. },
  2333. "time": "2020-07-08T17:02:28+00:00"
  2334. }
  2335. ],
  2336. "aliases": [],
  2337. "minimum-stability": "stable",
  2338. "stability-flags": {
  2339. "restler/framework": 5
  2340. },
  2341. "prefer-stable": false,
  2342. "prefer-lowest": false,
  2343. "platform": {
  2344. "php": ">=5.6.0",
  2345. "ext-curl": "*"
  2346. },
  2347. "platform-dev": [],
  2348. "plugin-api-version": "2.0.0"
  2349. }