composer.lock 82 KB

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