composer.lock 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039
  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": "c19e584edf44f8d13c8013e33401eeb6",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "1.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/5a91b62b9d37cee635bbf8d553f4546057250bee",
  20. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-iconv": "*",
  25. "php": "^5.4|^7.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8"
  29. },
  30. "suggest": {
  31. "ext-gd": "to generate QR code images"
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "psr-0": {
  36. "BaconQrCode": "src/"
  37. }
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "BSD-2-Clause"
  42. ],
  43. "authors": [
  44. {
  45. "name": "Ben Scholzen 'DASPRiD'",
  46. "email": "mail@dasprids.de",
  47. "homepage": "http://www.dasprids.de",
  48. "role": "Developer"
  49. }
  50. ],
  51. "description": "BaconQrCode is a QR code generator for PHP.",
  52. "homepage": "https://github.com/Bacon/BaconQrCode",
  53. "support": {
  54. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  55. "source": "https://github.com/Bacon/BaconQrCode/tree/master"
  56. },
  57. "time": "2017-10-17T09:59:25+00:00"
  58. },
  59. {
  60. "name": "google/recaptcha",
  61. "version": "1.2.4",
  62. "source": {
  63. "type": "git",
  64. "url": "https://github.com/google/recaptcha.git",
  65. "reference": "614f25a9038be4f3f2da7cbfd778dc5b357d2419"
  66. },
  67. "dist": {
  68. "type": "zip",
  69. "url": "https://api.github.com/repos/google/recaptcha/zipball/614f25a9038be4f3f2da7cbfd778dc5b357d2419",
  70. "reference": "614f25a9038be4f3f2da7cbfd778dc5b357d2419",
  71. "shasum": ""
  72. },
  73. "require": {
  74. "php": ">=5.5"
  75. },
  76. "require-dev": {
  77. "friendsofphp/php-cs-fixer": "^2.2.20|^2.15",
  78. "php-coveralls/php-coveralls": "^2.1",
  79. "phpunit/phpunit": "^4.8.36|^5.7.27|^6.59|^7.5.11"
  80. },
  81. "type": "library",
  82. "extra": {
  83. "branch-alias": {
  84. "dev-master": "1.2.x-dev"
  85. }
  86. },
  87. "autoload": {
  88. "psr-4": {
  89. "ReCaptcha\\": "src/ReCaptcha"
  90. }
  91. },
  92. "notification-url": "https://packagist.org/downloads/",
  93. "license": [
  94. "BSD-3-Clause"
  95. ],
  96. "description": "Client library for reCAPTCHA, a free service that protects websites from spam and abuse.",
  97. "homepage": "https://www.google.com/recaptcha/",
  98. "keywords": [
  99. "Abuse",
  100. "captcha",
  101. "recaptcha",
  102. "spam"
  103. ],
  104. "support": {
  105. "forum": "https://groups.google.com/forum/#!forum/recaptcha",
  106. "issues": "https://github.com/google/recaptcha/issues",
  107. "source": "https://github.com/google/recaptcha"
  108. },
  109. "time": "2020-03-31T17:50:54+00:00"
  110. },
  111. {
  112. "name": "paragonie/constant_time_encoding",
  113. "version": "v1.1.0",
  114. "source": {
  115. "type": "git",
  116. "url": "https://github.com/paragonie/constant_time_encoding.git",
  117. "reference": "317718fb438e60151f72b20404f040cb5ae1d494"
  118. },
  119. "dist": {
  120. "type": "zip",
  121. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/317718fb438e60151f72b20404f040cb5ae1d494",
  122. "reference": "317718fb438e60151f72b20404f040cb5ae1d494",
  123. "shasum": ""
  124. },
  125. "require": {
  126. "php": "^5.3|^7|^8"
  127. },
  128. "require-dev": {
  129. "paragonie/random_compat": "^1.4|^2",
  130. "phpunit/phpunit": ">= 4"
  131. },
  132. "type": "library",
  133. "autoload": {
  134. "psr-4": {
  135. "ParagonIE\\ConstantTime\\": "src/"
  136. }
  137. },
  138. "notification-url": "https://packagist.org/downloads/",
  139. "license": [
  140. "MIT"
  141. ],
  142. "authors": [
  143. {
  144. "name": "Paragon Initiative Enterprises",
  145. "email": "security@paragonie.com",
  146. "homepage": "https://paragonie.com",
  147. "role": "Maintainer"
  148. },
  149. {
  150. "name": "Steve 'Sc00bz' Thomas",
  151. "email": "steve@tobtu.com",
  152. "homepage": "https://www.tobtu.com",
  153. "role": "Original Developer"
  154. }
  155. ],
  156. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  157. "keywords": [
  158. "base16",
  159. "base32",
  160. "base32_decode",
  161. "base32_encode",
  162. "base64",
  163. "base64_decode",
  164. "base64_encode",
  165. "bin2hex",
  166. "encoding",
  167. "hex",
  168. "hex2bin",
  169. "rfc4648"
  170. ],
  171. "support": {
  172. "email": "info@paragonie.com",
  173. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  174. "source": "https://github.com/paragonie/constant_time_encoding"
  175. },
  176. "time": "2022-01-17T05:23:46+00:00"
  177. },
  178. {
  179. "name": "paragonie/random_compat",
  180. "version": "v2.0.20",
  181. "source": {
  182. "type": "git",
  183. "url": "https://github.com/paragonie/random_compat.git",
  184. "reference": "0f1f60250fccffeaf5dda91eea1c018aed1adc2a"
  185. },
  186. "dist": {
  187. "type": "zip",
  188. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0f1f60250fccffeaf5dda91eea1c018aed1adc2a",
  189. "reference": "0f1f60250fccffeaf5dda91eea1c018aed1adc2a",
  190. "shasum": ""
  191. },
  192. "require": {
  193. "php": ">=5.2.0"
  194. },
  195. "require-dev": {
  196. "phpunit/phpunit": "4.*|5.*"
  197. },
  198. "suggest": {
  199. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  200. },
  201. "type": "library",
  202. "autoload": {
  203. "files": [
  204. "lib/random.php"
  205. ]
  206. },
  207. "notification-url": "https://packagist.org/downloads/",
  208. "license": [
  209. "MIT"
  210. ],
  211. "authors": [
  212. {
  213. "name": "Paragon Initiative Enterprises",
  214. "email": "security@paragonie.com",
  215. "homepage": "https://paragonie.com"
  216. }
  217. ],
  218. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  219. "keywords": [
  220. "csprng",
  221. "polyfill",
  222. "pseudorandom",
  223. "random"
  224. ],
  225. "support": {
  226. "email": "info@paragonie.com",
  227. "issues": "https://github.com/paragonie/random_compat/issues",
  228. "source": "https://github.com/paragonie/random_compat"
  229. },
  230. "time": "2021-04-17T09:33:01+00:00"
  231. },
  232. {
  233. "name": "phpmyadmin/motranslator",
  234. "version": "4.0",
  235. "source": {
  236. "type": "git",
  237. "url": "https://github.com/phpmyadmin/motranslator.git",
  238. "reference": "fcb370254998fda7eeccfd7c787b4deb71b0d77c"
  239. },
  240. "dist": {
  241. "type": "zip",
  242. "url": "https://api.github.com/repos/phpmyadmin/motranslator/zipball/fcb370254998fda7eeccfd7c787b4deb71b0d77c",
  243. "reference": "fcb370254998fda7eeccfd7c787b4deb71b0d77c",
  244. "shasum": ""
  245. },
  246. "require": {
  247. "php": ">=5.3.0",
  248. "symfony/expression-language": "^4.0 || ^3.2 || ^2.8"
  249. },
  250. "require-dev": {
  251. "apigen/apigen": "^4.1",
  252. "phpunit/php-code-coverage": "*",
  253. "phpunit/phpunit": "~4.8 || ~5.7 || ~6.5"
  254. },
  255. "type": "library",
  256. "autoload": {
  257. "psr-4": {
  258. "PhpMyAdmin\\MoTranslator\\": "src"
  259. }
  260. },
  261. "notification-url": "https://packagist.org/downloads/",
  262. "license": [
  263. "GPL-2.0-or-later"
  264. ],
  265. "authors": [
  266. {
  267. "name": "The phpMyAdmin Team",
  268. "email": "developers@phpmyadmin.net",
  269. "homepage": "https://www.phpmyadmin.net/team/"
  270. }
  271. ],
  272. "description": "Translation API for PHP using Gettext MO files",
  273. "homepage": "https://github.com/phpmyadmin/motranslator",
  274. "keywords": [
  275. "gettext",
  276. "i18n",
  277. "mo",
  278. "translator"
  279. ],
  280. "support": {
  281. "issues": "https://github.com/phpmyadmin/motranslator/issues",
  282. "source": "https://github.com/phpmyadmin/motranslator"
  283. },
  284. "time": "2018-02-12T13:22:52+00:00"
  285. },
  286. {
  287. "name": "phpmyadmin/shapefile",
  288. "version": "2.1",
  289. "source": {
  290. "type": "git",
  291. "url": "https://github.com/phpmyadmin/shapefile.git",
  292. "reference": "e23b767f2a81f61fee3fc09fc062879985f3e224"
  293. },
  294. "dist": {
  295. "type": "zip",
  296. "url": "https://api.github.com/repos/phpmyadmin/shapefile/zipball/e23b767f2a81f61fee3fc09fc062879985f3e224",
  297. "reference": "e23b767f2a81f61fee3fc09fc062879985f3e224",
  298. "shasum": ""
  299. },
  300. "require": {
  301. "php": ">=5.4.0"
  302. },
  303. "require-dev": {
  304. "phpunit/php-code-coverage": "*",
  305. "phpunit/phpunit": "~4.8 || ~5.7"
  306. },
  307. "suggest": {
  308. "ext-dbase": "For dbf files parsing"
  309. },
  310. "type": "library",
  311. "autoload": {
  312. "psr-4": {
  313. "PhpMyAdmin\\ShapeFile\\": "src"
  314. }
  315. },
  316. "notification-url": "https://packagist.org/downloads/",
  317. "license": [
  318. "GPL-2.0+"
  319. ],
  320. "authors": [
  321. {
  322. "name": "The phpMyAdmin Team",
  323. "email": "developers@phpmyadmin.net",
  324. "homepage": "https://www.phpmyadmin.net/team/"
  325. }
  326. ],
  327. "description": "ESRI ShapeFile library for PHP",
  328. "homepage": "https://github.com/phpmyadmin/shapefile",
  329. "keywords": [
  330. "ESRI",
  331. "Shapefile",
  332. "dbf",
  333. "geo",
  334. "geospatial",
  335. "shape",
  336. "shp"
  337. ],
  338. "support": {
  339. "issues": "https://github.com/phpmyadmin/shapefile/issues",
  340. "source": "https://github.com/phpmyadmin/shapefile"
  341. },
  342. "time": "2017-05-15T08:31:47+00:00"
  343. },
  344. {
  345. "name": "phpmyadmin/sql-parser",
  346. "version": "4.7.3",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/phpmyadmin/sql-parser.git",
  350. "reference": "a88f051b5bd5b336779b30111b26b9cd1fc42013"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/phpmyadmin/sql-parser/zipball/a88f051b5bd5b336779b30111b26b9cd1fc42013",
  355. "reference": "a88f051b5bd5b336779b30111b26b9cd1fc42013",
  356. "shasum": ""
  357. },
  358. "require": {
  359. "php": "^5.3.0 || ^7.0",
  360. "symfony/polyfill-mbstring": "^1.3"
  361. },
  362. "conflict": {
  363. "phpmyadmin/motranslator": "<3.0"
  364. },
  365. "require-dev": {
  366. "phpunit/phpunit": "~4.8 || ~5.7 || ~6.5 || ^7.0",
  367. "squizlabs/php_codesniffer": "~2.9 || ~3.4"
  368. },
  369. "suggest": {
  370. "ext-mbstring": "For best performance",
  371. "phpmyadmin/motranslator": "Translate messages to your favorite locale"
  372. },
  373. "bin": [
  374. "bin/highlight-query",
  375. "bin/lint-query",
  376. "bin/tokenize-query"
  377. ],
  378. "type": "library",
  379. "autoload": {
  380. "psr-4": {
  381. "PhpMyAdmin\\SqlParser\\": "src"
  382. }
  383. },
  384. "notification-url": "https://packagist.org/downloads/",
  385. "license": [
  386. "GPL-2.0-or-later"
  387. ],
  388. "authors": [
  389. {
  390. "name": "The phpMyAdmin Team",
  391. "email": "developers@phpmyadmin.net",
  392. "homepage": "https://www.phpmyadmin.net/team/"
  393. }
  394. ],
  395. "description": "A validating SQL lexer and parser with a focus on MySQL dialect.",
  396. "homepage": "https://github.com/phpmyadmin/sql-parser",
  397. "keywords": [
  398. "analysis",
  399. "lexer",
  400. "parser",
  401. "sql"
  402. ],
  403. "support": {
  404. "issues": "https://github.com/phpmyadmin/sql-parser/issues",
  405. "source": "https://github.com/phpmyadmin/sql-parser"
  406. },
  407. "time": "2021-12-09T04:30:40+00:00"
  408. },
  409. {
  410. "name": "phpseclib/phpseclib",
  411. "version": "2.0.36",
  412. "source": {
  413. "type": "git",
  414. "url": "https://github.com/phpseclib/phpseclib.git",
  415. "reference": "a97547126396548c224703a267a30af1592be146"
  416. },
  417. "dist": {
  418. "type": "zip",
  419. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/a97547126396548c224703a267a30af1592be146",
  420. "reference": "a97547126396548c224703a267a30af1592be146",
  421. "shasum": ""
  422. },
  423. "require": {
  424. "php": ">=5.3.3"
  425. },
  426. "require-dev": {
  427. "phing/phing": "~2.7",
  428. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  429. "squizlabs/php_codesniffer": "~2.0"
  430. },
  431. "suggest": {
  432. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  433. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  434. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  435. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  436. },
  437. "type": "library",
  438. "autoload": {
  439. "files": [
  440. "phpseclib/bootstrap.php"
  441. ],
  442. "psr-4": {
  443. "phpseclib\\": "phpseclib/"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "MIT"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Jim Wigginton",
  453. "email": "terrafrost@php.net",
  454. "role": "Lead Developer"
  455. },
  456. {
  457. "name": "Patrick Monnerat",
  458. "email": "pm@datasphere.ch",
  459. "role": "Developer"
  460. },
  461. {
  462. "name": "Andreas Fischer",
  463. "email": "bantu@phpbb.com",
  464. "role": "Developer"
  465. },
  466. {
  467. "name": "Hans-Jürgen Petrich",
  468. "email": "petrich@tronic-media.com",
  469. "role": "Developer"
  470. },
  471. {
  472. "name": "Graham Campbell",
  473. "email": "graham@alt-three.com",
  474. "role": "Developer"
  475. }
  476. ],
  477. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  478. "homepage": "http://phpseclib.sourceforge.net",
  479. "keywords": [
  480. "BigInteger",
  481. "aes",
  482. "asn.1",
  483. "asn1",
  484. "blowfish",
  485. "crypto",
  486. "cryptography",
  487. "encryption",
  488. "rsa",
  489. "security",
  490. "sftp",
  491. "signature",
  492. "signing",
  493. "ssh",
  494. "twofish",
  495. "x.509",
  496. "x509"
  497. ],
  498. "support": {
  499. "issues": "https://github.com/phpseclib/phpseclib/issues",
  500. "source": "https://github.com/phpseclib/phpseclib/tree/2.0.36"
  501. },
  502. "funding": [
  503. {
  504. "url": "https://github.com/terrafrost",
  505. "type": "github"
  506. },
  507. {
  508. "url": "https://www.patreon.com/phpseclib",
  509. "type": "patreon"
  510. },
  511. {
  512. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  513. "type": "tidelift"
  514. }
  515. ],
  516. "time": "2022-01-30T08:48:36+00:00"
  517. },
  518. {
  519. "name": "pragmarx/google2fa",
  520. "version": "v3.0.3",
  521. "source": {
  522. "type": "git",
  523. "url": "https://github.com/antonioribeiro/google2fa.git",
  524. "reference": "6949226739e4424f40031e6f1c96b1fd64047335"
  525. },
  526. "dist": {
  527. "type": "zip",
  528. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/6949226739e4424f40031e6f1c96b1fd64047335",
  529. "reference": "6949226739e4424f40031e6f1c96b1fd64047335",
  530. "shasum": ""
  531. },
  532. "require": {
  533. "paragonie/constant_time_encoding": "~1.0|~2.0",
  534. "paragonie/random_compat": ">=1",
  535. "php": ">=5.4",
  536. "symfony/polyfill-php56": "~1.2"
  537. },
  538. "require-dev": {
  539. "bacon/bacon-qr-code": "~1.0",
  540. "phpunit/phpunit": "~4|~5|~6"
  541. },
  542. "suggest": {
  543. "bacon/bacon-qr-code": "Required to generate inline QR Codes."
  544. },
  545. "type": "library",
  546. "extra": {
  547. "component": "package",
  548. "branch-alias": {
  549. "dev-master": "2.0-dev"
  550. }
  551. },
  552. "autoload": {
  553. "psr-4": {
  554. "PragmaRX\\Google2FA\\": "src/",
  555. "PragmaRX\\Google2FA\\Tests\\": "tests/"
  556. }
  557. },
  558. "notification-url": "https://packagist.org/downloads/",
  559. "license": [
  560. "MIT"
  561. ],
  562. "authors": [
  563. {
  564. "name": "Antonio Carlos Ribeiro",
  565. "email": "acr@antoniocarlosribeiro.com",
  566. "role": "Creator & Designer"
  567. }
  568. ],
  569. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  570. "keywords": [
  571. "2fa",
  572. "Authentication",
  573. "Two Factor Authentication",
  574. "google2fa",
  575. "laravel"
  576. ],
  577. "support": {
  578. "issues": "https://github.com/antonioribeiro/google2fa/issues",
  579. "source": "https://github.com/antonioribeiro/google2fa/tree/master"
  580. },
  581. "time": "2018-08-29T13:28:06+00:00"
  582. },
  583. {
  584. "name": "psr/container",
  585. "version": "1.0.0",
  586. "source": {
  587. "type": "git",
  588. "url": "https://github.com/php-fig/container.git",
  589. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  590. },
  591. "dist": {
  592. "type": "zip",
  593. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  594. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  595. "shasum": ""
  596. },
  597. "require": {
  598. "php": ">=5.3.0"
  599. },
  600. "type": "library",
  601. "extra": {
  602. "branch-alias": {
  603. "dev-master": "1.0.x-dev"
  604. }
  605. },
  606. "autoload": {
  607. "psr-4": {
  608. "Psr\\Container\\": "src/"
  609. }
  610. },
  611. "notification-url": "https://packagist.org/downloads/",
  612. "license": [
  613. "MIT"
  614. ],
  615. "authors": [
  616. {
  617. "name": "PHP-FIG",
  618. "homepage": "http://www.php-fig.org/"
  619. }
  620. ],
  621. "description": "Common Container Interface (PHP FIG PSR-11)",
  622. "homepage": "https://github.com/php-fig/container",
  623. "keywords": [
  624. "PSR-11",
  625. "container",
  626. "container-interface",
  627. "container-interop",
  628. "psr"
  629. ],
  630. "support": {
  631. "issues": "https://github.com/php-fig/container/issues",
  632. "source": "https://github.com/php-fig/container/tree/master"
  633. },
  634. "time": "2017-02-14T16:28:37+00:00"
  635. },
  636. {
  637. "name": "samyoul/u2f-php-server",
  638. "version": "v1.1.4",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/Samyoul/U2F-php-server.git",
  642. "reference": "0625202c79d570e58525ed6c4ae38500ea3f0883"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/Samyoul/U2F-php-server/zipball/0625202c79d570e58525ed6c4ae38500ea3f0883",
  647. "reference": "0625202c79d570e58525ed6c4ae38500ea3f0883",
  648. "shasum": ""
  649. },
  650. "require": {
  651. "ext-openssl": "*"
  652. },
  653. "type": "library",
  654. "autoload": {
  655. "psr-4": {
  656. "Samyoul\\U2F\\U2FServer\\": [
  657. "src/"
  658. ]
  659. }
  660. },
  661. "notification-url": "https://packagist.org/downloads/",
  662. "license": [
  663. "BSD-2-Clause"
  664. ],
  665. "authors": [
  666. {
  667. "name": "Samuel Hawksby-Robinson",
  668. "email": "samuel@samyoul.com"
  669. }
  670. ],
  671. "description": "Server side handling class for FIDO U2F registration and authentication",
  672. "support": {
  673. "issues": "https://github.com/Samyoul/U2F-php-server/issues",
  674. "source": "https://github.com/Samyoul/U2F-php-server/tree/master"
  675. },
  676. "time": "2018-10-26T12:43:39+00:00"
  677. },
  678. {
  679. "name": "symfony/expression-language",
  680. "version": "v2.8.52",
  681. "source": {
  682. "type": "git",
  683. "url": "https://github.com/symfony/expression-language.git",
  684. "reference": "fa9be1b831859b56d244137fabbfd01a46dbdb36"
  685. },
  686. "dist": {
  687. "type": "zip",
  688. "url": "https://api.github.com/repos/symfony/expression-language/zipball/fa9be1b831859b56d244137fabbfd01a46dbdb36",
  689. "reference": "fa9be1b831859b56d244137fabbfd01a46dbdb36",
  690. "shasum": ""
  691. },
  692. "require": {
  693. "php": ">=5.3.9"
  694. },
  695. "type": "library",
  696. "extra": {
  697. "branch-alias": {
  698. "dev-master": "2.8-dev"
  699. }
  700. },
  701. "autoload": {
  702. "psr-4": {
  703. "Symfony\\Component\\ExpressionLanguage\\": ""
  704. },
  705. "exclude-from-classmap": [
  706. "/Tests/"
  707. ]
  708. },
  709. "notification-url": "https://packagist.org/downloads/",
  710. "license": [
  711. "MIT"
  712. ],
  713. "authors": [
  714. {
  715. "name": "Fabien Potencier",
  716. "email": "fabien@symfony.com"
  717. },
  718. {
  719. "name": "Symfony Community",
  720. "homepage": "https://symfony.com/contributors"
  721. }
  722. ],
  723. "description": "Symfony ExpressionLanguage Component",
  724. "homepage": "https://symfony.com",
  725. "support": {
  726. "source": "https://github.com/symfony/expression-language/tree/v2.8.50"
  727. },
  728. "time": "2018-11-11T11:18:13+00:00"
  729. },
  730. {
  731. "name": "symfony/polyfill-ctype",
  732. "version": "v1.19.0",
  733. "source": {
  734. "type": "git",
  735. "url": "https://github.com/symfony/polyfill-ctype.git",
  736. "reference": "aed596913b70fae57be53d86faa2e9ef85a2297b"
  737. },
  738. "dist": {
  739. "type": "zip",
  740. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/aed596913b70fae57be53d86faa2e9ef85a2297b",
  741. "reference": "aed596913b70fae57be53d86faa2e9ef85a2297b",
  742. "shasum": ""
  743. },
  744. "require": {
  745. "php": ">=5.3.3"
  746. },
  747. "suggest": {
  748. "ext-ctype": "For best performance"
  749. },
  750. "type": "library",
  751. "extra": {
  752. "branch-alias": {
  753. "dev-main": "1.19-dev"
  754. },
  755. "thanks": {
  756. "name": "symfony/polyfill",
  757. "url": "https://github.com/symfony/polyfill"
  758. }
  759. },
  760. "autoload": {
  761. "psr-4": {
  762. "Symfony\\Polyfill\\Ctype\\": ""
  763. },
  764. "files": [
  765. "bootstrap.php"
  766. ]
  767. },
  768. "notification-url": "https://packagist.org/downloads/",
  769. "license": [
  770. "MIT"
  771. ],
  772. "authors": [
  773. {
  774. "name": "Gert de Pagter",
  775. "email": "BackEndTea@gmail.com"
  776. },
  777. {
  778. "name": "Symfony Community",
  779. "homepage": "https://symfony.com/contributors"
  780. }
  781. ],
  782. "description": "Symfony polyfill for ctype functions",
  783. "homepage": "https://symfony.com",
  784. "keywords": [
  785. "compatibility",
  786. "ctype",
  787. "polyfill",
  788. "portable"
  789. ],
  790. "support": {
  791. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.19.0"
  792. },
  793. "funding": [
  794. {
  795. "url": "https://symfony.com/sponsor",
  796. "type": "custom"
  797. },
  798. {
  799. "url": "https://github.com/fabpot",
  800. "type": "github"
  801. },
  802. {
  803. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  804. "type": "tidelift"
  805. }
  806. ],
  807. "time": "2020-10-23T09:01:57+00:00"
  808. },
  809. {
  810. "name": "symfony/polyfill-mbstring",
  811. "version": "v1.19.0",
  812. "source": {
  813. "type": "git",
  814. "url": "https://github.com/symfony/polyfill-mbstring.git",
  815. "reference": "b5f7b932ee6fa802fc792eabd77c4c88084517ce"
  816. },
  817. "dist": {
  818. "type": "zip",
  819. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b5f7b932ee6fa802fc792eabd77c4c88084517ce",
  820. "reference": "b5f7b932ee6fa802fc792eabd77c4c88084517ce",
  821. "shasum": ""
  822. },
  823. "require": {
  824. "php": ">=5.3.3"
  825. },
  826. "suggest": {
  827. "ext-mbstring": "For best performance"
  828. },
  829. "type": "library",
  830. "extra": {
  831. "branch-alias": {
  832. "dev-main": "1.19-dev"
  833. },
  834. "thanks": {
  835. "name": "symfony/polyfill",
  836. "url": "https://github.com/symfony/polyfill"
  837. }
  838. },
  839. "autoload": {
  840. "psr-4": {
  841. "Symfony\\Polyfill\\Mbstring\\": ""
  842. },
  843. "files": [
  844. "bootstrap.php"
  845. ]
  846. },
  847. "notification-url": "https://packagist.org/downloads/",
  848. "license": [
  849. "MIT"
  850. ],
  851. "authors": [
  852. {
  853. "name": "Nicolas Grekas",
  854. "email": "p@tchwork.com"
  855. },
  856. {
  857. "name": "Symfony Community",
  858. "homepage": "https://symfony.com/contributors"
  859. }
  860. ],
  861. "description": "Symfony polyfill for the Mbstring extension",
  862. "homepage": "https://symfony.com",
  863. "keywords": [
  864. "compatibility",
  865. "mbstring",
  866. "polyfill",
  867. "portable",
  868. "shim"
  869. ],
  870. "support": {
  871. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.19.0"
  872. },
  873. "funding": [
  874. {
  875. "url": "https://symfony.com/sponsor",
  876. "type": "custom"
  877. },
  878. {
  879. "url": "https://github.com/fabpot",
  880. "type": "github"
  881. },
  882. {
  883. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  884. "type": "tidelift"
  885. }
  886. ],
  887. "time": "2020-10-23T09:01:57+00:00"
  888. },
  889. {
  890. "name": "symfony/polyfill-php56",
  891. "version": "v1.19.0",
  892. "source": {
  893. "type": "git",
  894. "url": "https://github.com/symfony/polyfill-php56.git",
  895. "reference": "ea19621731cbd973a6702cfedef3419768bf3372"
  896. },
  897. "dist": {
  898. "type": "zip",
  899. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/ea19621731cbd973a6702cfedef3419768bf3372",
  900. "reference": "ea19621731cbd973a6702cfedef3419768bf3372",
  901. "shasum": ""
  902. },
  903. "require": {
  904. "php": ">=5.3.3",
  905. "symfony/polyfill-util": "~1.0"
  906. },
  907. "type": "library",
  908. "extra": {
  909. "branch-alias": {
  910. "dev-main": "1.19-dev"
  911. },
  912. "thanks": {
  913. "name": "symfony/polyfill",
  914. "url": "https://github.com/symfony/polyfill"
  915. }
  916. },
  917. "autoload": {
  918. "psr-4": {
  919. "Symfony\\Polyfill\\Php56\\": ""
  920. },
  921. "files": [
  922. "bootstrap.php"
  923. ]
  924. },
  925. "notification-url": "https://packagist.org/downloads/",
  926. "license": [
  927. "MIT"
  928. ],
  929. "authors": [
  930. {
  931. "name": "Nicolas Grekas",
  932. "email": "p@tchwork.com"
  933. },
  934. {
  935. "name": "Symfony Community",
  936. "homepage": "https://symfony.com/contributors"
  937. }
  938. ],
  939. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  940. "homepage": "https://symfony.com",
  941. "keywords": [
  942. "compatibility",
  943. "polyfill",
  944. "portable",
  945. "shim"
  946. ],
  947. "support": {
  948. "source": "https://github.com/symfony/polyfill-php56/tree/v1.19.0"
  949. },
  950. "funding": [
  951. {
  952. "url": "https://symfony.com/sponsor",
  953. "type": "custom"
  954. },
  955. {
  956. "url": "https://github.com/fabpot",
  957. "type": "github"
  958. },
  959. {
  960. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  961. "type": "tidelift"
  962. }
  963. ],
  964. "time": "2020-10-23T09:01:57+00:00"
  965. },
  966. {
  967. "name": "symfony/polyfill-util",
  968. "version": "v1.19.0",
  969. "source": {
  970. "type": "git",
  971. "url": "https://github.com/symfony/polyfill-util.git",
  972. "reference": "8df0c3e6a4b85df9a5c6f3f2f46fba5c5c47058a"
  973. },
  974. "dist": {
  975. "type": "zip",
  976. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/8df0c3e6a4b85df9a5c6f3f2f46fba5c5c47058a",
  977. "reference": "8df0c3e6a4b85df9a5c6f3f2f46fba5c5c47058a",
  978. "shasum": ""
  979. },
  980. "require": {
  981. "php": ">=5.3.3"
  982. },
  983. "type": "library",
  984. "extra": {
  985. "branch-alias": {
  986. "dev-main": "1.19-dev"
  987. },
  988. "thanks": {
  989. "name": "symfony/polyfill",
  990. "url": "https://github.com/symfony/polyfill"
  991. }
  992. },
  993. "autoload": {
  994. "psr-4": {
  995. "Symfony\\Polyfill\\Util\\": ""
  996. }
  997. },
  998. "notification-url": "https://packagist.org/downloads/",
  999. "license": [
  1000. "MIT"
  1001. ],
  1002. "authors": [
  1003. {
  1004. "name": "Nicolas Grekas",
  1005. "email": "p@tchwork.com"
  1006. },
  1007. {
  1008. "name": "Symfony Community",
  1009. "homepage": "https://symfony.com/contributors"
  1010. }
  1011. ],
  1012. "description": "Symfony utilities for portability of PHP codes",
  1013. "homepage": "https://symfony.com",
  1014. "keywords": [
  1015. "compat",
  1016. "compatibility",
  1017. "polyfill",
  1018. "shim"
  1019. ],
  1020. "support": {
  1021. "source": "https://github.com/symfony/polyfill-util/tree/v1.19.0"
  1022. },
  1023. "funding": [
  1024. {
  1025. "url": "https://symfony.com/sponsor",
  1026. "type": "custom"
  1027. },
  1028. {
  1029. "url": "https://github.com/fabpot",
  1030. "type": "github"
  1031. },
  1032. {
  1033. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1034. "type": "tidelift"
  1035. }
  1036. ],
  1037. "time": "2020-10-21T09:57:48+00:00"
  1038. },
  1039. {
  1040. "name": "tecnickcom/tcpdf",
  1041. "version": "6.4.4",
  1042. "source": {
  1043. "type": "git",
  1044. "url": "https://github.com/tecnickcom/TCPDF.git",
  1045. "reference": "42cd0f9786af7e5db4fcedaa66f717b0d0032320"
  1046. },
  1047. "dist": {
  1048. "type": "zip",
  1049. "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/42cd0f9786af7e5db4fcedaa66f717b0d0032320",
  1050. "reference": "42cd0f9786af7e5db4fcedaa66f717b0d0032320",
  1051. "shasum": ""
  1052. },
  1053. "require": {
  1054. "php": ">=5.3.0"
  1055. },
  1056. "type": "library",
  1057. "autoload": {
  1058. "classmap": [
  1059. "config",
  1060. "include",
  1061. "tcpdf.php",
  1062. "tcpdf_parser.php",
  1063. "tcpdf_import.php",
  1064. "tcpdf_barcodes_1d.php",
  1065. "tcpdf_barcodes_2d.php",
  1066. "include/tcpdf_colors.php",
  1067. "include/tcpdf_filters.php",
  1068. "include/tcpdf_font_data.php",
  1069. "include/tcpdf_fonts.php",
  1070. "include/tcpdf_images.php",
  1071. "include/tcpdf_static.php",
  1072. "include/barcodes/datamatrix.php",
  1073. "include/barcodes/pdf417.php",
  1074. "include/barcodes/qrcode.php"
  1075. ]
  1076. },
  1077. "notification-url": "https://packagist.org/downloads/",
  1078. "license": [
  1079. "LGPL-3.0-only"
  1080. ],
  1081. "authors": [
  1082. {
  1083. "name": "Nicola Asuni",
  1084. "email": "info@tecnick.com",
  1085. "role": "lead"
  1086. }
  1087. ],
  1088. "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
  1089. "homepage": "http://www.tcpdf.org/",
  1090. "keywords": [
  1091. "PDFD32000-2008",
  1092. "TCPDF",
  1093. "barcodes",
  1094. "datamatrix",
  1095. "pdf",
  1096. "pdf417",
  1097. "qrcode"
  1098. ],
  1099. "support": {
  1100. "issues": "https://github.com/tecnickcom/TCPDF/issues",
  1101. "source": "https://github.com/tecnickcom/TCPDF/tree/6.4.4"
  1102. },
  1103. "funding": [
  1104. {
  1105. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&currency_code=GBP&business=paypal@tecnick.com&item_name=donation%20for%20tcpdf%20project",
  1106. "type": "custom"
  1107. }
  1108. ],
  1109. "time": "2021-12-31T08:39:24+00:00"
  1110. },
  1111. {
  1112. "name": "twig/extensions",
  1113. "version": "v1.5.4",
  1114. "source": {
  1115. "type": "git",
  1116. "url": "https://github.com/twigphp/Twig-extensions.git",
  1117. "reference": "57873c8b0c1be51caa47df2cdb824490beb16202"
  1118. },
  1119. "dist": {
  1120. "type": "zip",
  1121. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/57873c8b0c1be51caa47df2cdb824490beb16202",
  1122. "reference": "57873c8b0c1be51caa47df2cdb824490beb16202",
  1123. "shasum": ""
  1124. },
  1125. "require": {
  1126. "twig/twig": "^1.27|^2.0"
  1127. },
  1128. "require-dev": {
  1129. "symfony/phpunit-bridge": "^3.4",
  1130. "symfony/translation": "^2.7|^3.4"
  1131. },
  1132. "suggest": {
  1133. "symfony/translation": "Allow the time_diff output to be translated"
  1134. },
  1135. "type": "library",
  1136. "extra": {
  1137. "branch-alias": {
  1138. "dev-master": "1.5-dev"
  1139. }
  1140. },
  1141. "autoload": {
  1142. "psr-0": {
  1143. "Twig_Extensions_": "lib/"
  1144. },
  1145. "psr-4": {
  1146. "Twig\\Extensions\\": "src/"
  1147. }
  1148. },
  1149. "notification-url": "https://packagist.org/downloads/",
  1150. "license": [
  1151. "MIT"
  1152. ],
  1153. "authors": [
  1154. {
  1155. "name": "Fabien Potencier",
  1156. "email": "fabien@symfony.com"
  1157. }
  1158. ],
  1159. "description": "Common additional features for Twig that do not directly belong in core",
  1160. "keywords": [
  1161. "i18n",
  1162. "text"
  1163. ],
  1164. "support": {
  1165. "issues": "https://github.com/twigphp/Twig-extensions/issues",
  1166. "source": "https://github.com/twigphp/Twig-extensions/tree/master"
  1167. },
  1168. "abandoned": true,
  1169. "time": "2018-12-05T18:34:18+00:00"
  1170. },
  1171. {
  1172. "name": "twig/twig",
  1173. "version": "v1.42.5",
  1174. "source": {
  1175. "type": "git",
  1176. "url": "https://github.com/twigphp/Twig.git",
  1177. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  1178. },
  1179. "dist": {
  1180. "type": "zip",
  1181. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  1182. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  1183. "shasum": ""
  1184. },
  1185. "require": {
  1186. "php": ">=5.5.0",
  1187. "symfony/polyfill-ctype": "^1.8"
  1188. },
  1189. "require-dev": {
  1190. "psr/container": "^1.0",
  1191. "symfony/phpunit-bridge": "^4.4|^5.0"
  1192. },
  1193. "type": "library",
  1194. "extra": {
  1195. "branch-alias": {
  1196. "dev-master": "1.42-dev"
  1197. }
  1198. },
  1199. "autoload": {
  1200. "psr-0": {
  1201. "Twig_": "lib/"
  1202. },
  1203. "psr-4": {
  1204. "Twig\\": "src/"
  1205. }
  1206. },
  1207. "notification-url": "https://packagist.org/downloads/",
  1208. "license": [
  1209. "BSD-3-Clause"
  1210. ],
  1211. "authors": [
  1212. {
  1213. "name": "Fabien Potencier",
  1214. "email": "fabien@symfony.com",
  1215. "homepage": "http://fabien.potencier.org",
  1216. "role": "Lead Developer"
  1217. },
  1218. {
  1219. "name": "Twig Team",
  1220. "role": "Contributors"
  1221. },
  1222. {
  1223. "name": "Armin Ronacher",
  1224. "email": "armin.ronacher@active-4.com",
  1225. "role": "Project Founder"
  1226. }
  1227. ],
  1228. "description": "Twig, the flexible, fast, and secure template language for PHP",
  1229. "homepage": "https://twig.symfony.com",
  1230. "keywords": [
  1231. "templating"
  1232. ],
  1233. "support": {
  1234. "issues": "https://github.com/twigphp/Twig/issues",
  1235. "source": "https://github.com/twigphp/Twig/tree/1.x"
  1236. },
  1237. "time": "2020-02-11T05:59:23+00:00"
  1238. }
  1239. ],
  1240. "packages-dev": [
  1241. {
  1242. "name": "codacy/coverage",
  1243. "version": "1.4.3",
  1244. "source": {
  1245. "type": "git",
  1246. "url": "https://github.com/codacy/php-codacy-coverage.git",
  1247. "reference": "1852ca987c91ef466ebcfdbdd4e1788b653eaf1d"
  1248. },
  1249. "dist": {
  1250. "type": "zip",
  1251. "url": "https://api.github.com/repos/codacy/php-codacy-coverage/zipball/1852ca987c91ef466ebcfdbdd4e1788b653eaf1d",
  1252. "reference": "1852ca987c91ef466ebcfdbdd4e1788b653eaf1d",
  1253. "shasum": ""
  1254. },
  1255. "require": {
  1256. "gitonomy/gitlib": ">=1.0",
  1257. "php": ">=5.3.3",
  1258. "symfony/console": "~2.5|~3.0|~4.0|~5.0"
  1259. },
  1260. "require-dev": {
  1261. "clue/phar-composer": "^1.1",
  1262. "phpunit/phpunit": "~6.5"
  1263. },
  1264. "bin": [
  1265. "bin/codacycoverage"
  1266. ],
  1267. "type": "library",
  1268. "autoload": {
  1269. "classmap": [
  1270. "src/"
  1271. ]
  1272. },
  1273. "notification-url": "https://packagist.org/downloads/",
  1274. "license": [
  1275. "MIT"
  1276. ],
  1277. "authors": [
  1278. {
  1279. "name": "Jakob Pupke",
  1280. "email": "jakob.pupke@gmail.com"
  1281. }
  1282. ],
  1283. "description": "Sends PHP test coverage information to Codacy.",
  1284. "homepage": "https://github.com/codacy/php-codacy-coverage",
  1285. "support": {
  1286. "issues": "https://github.com/codacy/php-codacy-coverage/issues",
  1287. "source": "https://github.com/codacy/php-codacy-coverage/tree/master"
  1288. },
  1289. "abandoned": true,
  1290. "time": "2020-01-10T10:52:12+00:00"
  1291. },
  1292. {
  1293. "name": "doctrine/instantiator",
  1294. "version": "1.0.5",
  1295. "source": {
  1296. "type": "git",
  1297. "url": "https://github.com/doctrine/instantiator.git",
  1298. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  1299. },
  1300. "dist": {
  1301. "type": "zip",
  1302. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  1303. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  1304. "shasum": ""
  1305. },
  1306. "require": {
  1307. "php": ">=5.3,<8.0-DEV"
  1308. },
  1309. "require-dev": {
  1310. "athletic/athletic": "~0.1.8",
  1311. "ext-pdo": "*",
  1312. "ext-phar": "*",
  1313. "phpunit/phpunit": "~4.0",
  1314. "squizlabs/php_codesniffer": "~2.0"
  1315. },
  1316. "type": "library",
  1317. "extra": {
  1318. "branch-alias": {
  1319. "dev-master": "1.0.x-dev"
  1320. }
  1321. },
  1322. "autoload": {
  1323. "psr-4": {
  1324. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1325. }
  1326. },
  1327. "notification-url": "https://packagist.org/downloads/",
  1328. "license": [
  1329. "MIT"
  1330. ],
  1331. "authors": [
  1332. {
  1333. "name": "Marco Pivetta",
  1334. "email": "ocramius@gmail.com",
  1335. "homepage": "http://ocramius.github.com/"
  1336. }
  1337. ],
  1338. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1339. "homepage": "https://github.com/doctrine/instantiator",
  1340. "keywords": [
  1341. "constructor",
  1342. "instantiate"
  1343. ],
  1344. "support": {
  1345. "issues": "https://github.com/doctrine/instantiator/issues",
  1346. "source": "https://github.com/doctrine/instantiator/tree/master"
  1347. },
  1348. "time": "2015-06-14T21:17:01+00:00"
  1349. },
  1350. {
  1351. "name": "gitonomy/gitlib",
  1352. "version": "v1.0.4",
  1353. "source": {
  1354. "type": "git",
  1355. "url": "https://github.com/gitonomy/gitlib.git",
  1356. "reference": "932a960221ae3484a3e82553b3be478e56beb68d"
  1357. },
  1358. "dist": {
  1359. "type": "zip",
  1360. "url": "https://api.github.com/repos/gitonomy/gitlib/zipball/932a960221ae3484a3e82553b3be478e56beb68d",
  1361. "reference": "932a960221ae3484a3e82553b3be478e56beb68d",
  1362. "shasum": ""
  1363. },
  1364. "require": {
  1365. "php": "^5.3 || ^7.0",
  1366. "symfony/process": "^2.3|^3.0|^4.0"
  1367. },
  1368. "require-dev": {
  1369. "phpunit/phpunit": "^4.8.35|^5.7",
  1370. "psr/log": "^1.0"
  1371. },
  1372. "suggest": {
  1373. "psr/log": "Add some log"
  1374. },
  1375. "type": "library",
  1376. "extra": {
  1377. "branch-alias": {
  1378. "dev-master": "1.0-dev"
  1379. }
  1380. },
  1381. "autoload": {
  1382. "psr-4": {
  1383. "Gitonomy\\Git\\": "src/Gitonomy/Git/"
  1384. }
  1385. },
  1386. "notification-url": "https://packagist.org/downloads/",
  1387. "license": [
  1388. "MIT"
  1389. ],
  1390. "authors": [
  1391. {
  1392. "name": "Alexandre Salomé",
  1393. "email": "alexandre.salome@gmail.com",
  1394. "homepage": "http://alexandre-salome.fr"
  1395. },
  1396. {
  1397. "name": "Julien DIDIER",
  1398. "email": "genzo.wm@gmail.com",
  1399. "homepage": "http://www.jdidier.net"
  1400. }
  1401. ],
  1402. "description": "Library for accessing git",
  1403. "homepage": "http://gitonomy.com",
  1404. "support": {
  1405. "issues": "https://github.com/gitonomy/gitlib/issues",
  1406. "source": "https://github.com/gitonomy/gitlib/tree/master"
  1407. },
  1408. "time": "2018-04-22T19:55:36+00:00"
  1409. },
  1410. {
  1411. "name": "paragonie/sodium_compat",
  1412. "version": "v1.17.0",
  1413. "source": {
  1414. "type": "git",
  1415. "url": "https://github.com/paragonie/sodium_compat.git",
  1416. "reference": "c59cac21abbcc0df06a3dd18076450ea4797b321"
  1417. },
  1418. "dist": {
  1419. "type": "zip",
  1420. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/c59cac21abbcc0df06a3dd18076450ea4797b321",
  1421. "reference": "c59cac21abbcc0df06a3dd18076450ea4797b321",
  1422. "shasum": ""
  1423. },
  1424. "require": {
  1425. "paragonie/random_compat": ">=1",
  1426. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  1427. },
  1428. "require-dev": {
  1429. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  1430. },
  1431. "suggest": {
  1432. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  1433. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  1434. },
  1435. "type": "library",
  1436. "autoload": {
  1437. "files": [
  1438. "autoload.php"
  1439. ]
  1440. },
  1441. "notification-url": "https://packagist.org/downloads/",
  1442. "license": [
  1443. "ISC"
  1444. ],
  1445. "authors": [
  1446. {
  1447. "name": "Paragon Initiative Enterprises",
  1448. "email": "security@paragonie.com"
  1449. },
  1450. {
  1451. "name": "Frank Denis",
  1452. "email": "jedisct1@pureftpd.org"
  1453. }
  1454. ],
  1455. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  1456. "keywords": [
  1457. "Authentication",
  1458. "BLAKE2b",
  1459. "ChaCha20",
  1460. "ChaCha20-Poly1305",
  1461. "Chapoly",
  1462. "Curve25519",
  1463. "Ed25519",
  1464. "EdDSA",
  1465. "Edwards-curve Digital Signature Algorithm",
  1466. "Elliptic Curve Diffie-Hellman",
  1467. "Poly1305",
  1468. "Pure-PHP cryptography",
  1469. "RFC 7748",
  1470. "RFC 8032",
  1471. "Salpoly",
  1472. "Salsa20",
  1473. "X25519",
  1474. "XChaCha20-Poly1305",
  1475. "XSalsa20-Poly1305",
  1476. "Xchacha20",
  1477. "Xsalsa20",
  1478. "aead",
  1479. "cryptography",
  1480. "ecdh",
  1481. "elliptic curve",
  1482. "elliptic curve cryptography",
  1483. "encryption",
  1484. "libsodium",
  1485. "php",
  1486. "public-key cryptography",
  1487. "secret-key cryptography",
  1488. "side-channel resistant"
  1489. ],
  1490. "support": {
  1491. "issues": "https://github.com/paragonie/sodium_compat/issues",
  1492. "source": "https://github.com/paragonie/sodium_compat/tree/v1.17.0"
  1493. },
  1494. "time": "2021-08-10T02:43:50+00:00"
  1495. },
  1496. {
  1497. "name": "phpdocumentor/reflection-common",
  1498. "version": "1.0.1",
  1499. "source": {
  1500. "type": "git",
  1501. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1502. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  1503. },
  1504. "dist": {
  1505. "type": "zip",
  1506. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  1507. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  1508. "shasum": ""
  1509. },
  1510. "require": {
  1511. "php": ">=5.5"
  1512. },
  1513. "require-dev": {
  1514. "phpunit/phpunit": "^4.6"
  1515. },
  1516. "type": "library",
  1517. "extra": {
  1518. "branch-alias": {
  1519. "dev-master": "1.0.x-dev"
  1520. }
  1521. },
  1522. "autoload": {
  1523. "psr-4": {
  1524. "phpDocumentor\\Reflection\\": [
  1525. "src"
  1526. ]
  1527. }
  1528. },
  1529. "notification-url": "https://packagist.org/downloads/",
  1530. "license": [
  1531. "MIT"
  1532. ],
  1533. "authors": [
  1534. {
  1535. "name": "Jaap van Otterdijk",
  1536. "email": "opensource@ijaap.nl"
  1537. }
  1538. ],
  1539. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1540. "homepage": "http://www.phpdoc.org",
  1541. "keywords": [
  1542. "FQSEN",
  1543. "phpDocumentor",
  1544. "phpdoc",
  1545. "reflection",
  1546. "static analysis"
  1547. ],
  1548. "support": {
  1549. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1550. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/master"
  1551. },
  1552. "time": "2017-09-11T18:02:19+00:00"
  1553. },
  1554. {
  1555. "name": "phpdocumentor/reflection-docblock",
  1556. "version": "3.2.2",
  1557. "source": {
  1558. "type": "git",
  1559. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1560. "reference": "4aada1f93c72c35e22fb1383b47fee43b8f1d157"
  1561. },
  1562. "dist": {
  1563. "type": "zip",
  1564. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/4aada1f93c72c35e22fb1383b47fee43b8f1d157",
  1565. "reference": "4aada1f93c72c35e22fb1383b47fee43b8f1d157",
  1566. "shasum": ""
  1567. },
  1568. "require": {
  1569. "php": ">=5.5",
  1570. "phpdocumentor/reflection-common": "^1.0@dev",
  1571. "phpdocumentor/type-resolver": "^0.3.0",
  1572. "webmozart/assert": "^1.0"
  1573. },
  1574. "require-dev": {
  1575. "mockery/mockery": "^0.9.4",
  1576. "phpunit/phpunit": "^4.4"
  1577. },
  1578. "type": "library",
  1579. "autoload": {
  1580. "psr-4": {
  1581. "phpDocumentor\\Reflection\\": [
  1582. "src/"
  1583. ]
  1584. }
  1585. },
  1586. "notification-url": "https://packagist.org/downloads/",
  1587. "license": [
  1588. "MIT"
  1589. ],
  1590. "authors": [
  1591. {
  1592. "name": "Mike van Riel",
  1593. "email": "me@mikevanriel.com"
  1594. }
  1595. ],
  1596. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1597. "support": {
  1598. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1599. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/release/3.x"
  1600. },
  1601. "time": "2017-08-08T06:39:58+00:00"
  1602. },
  1603. {
  1604. "name": "phpdocumentor/type-resolver",
  1605. "version": "0.3.0",
  1606. "source": {
  1607. "type": "git",
  1608. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1609. "reference": "fb3933512008d8162b3cdf9e18dba9309b7c3773"
  1610. },
  1611. "dist": {
  1612. "type": "zip",
  1613. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/fb3933512008d8162b3cdf9e18dba9309b7c3773",
  1614. "reference": "fb3933512008d8162b3cdf9e18dba9309b7c3773",
  1615. "shasum": ""
  1616. },
  1617. "require": {
  1618. "php": "^5.5 || ^7.0",
  1619. "phpdocumentor/reflection-common": "^1.0"
  1620. },
  1621. "require-dev": {
  1622. "mockery/mockery": "^0.9.4",
  1623. "phpunit/phpunit": "^5.2||^4.8.24"
  1624. },
  1625. "type": "library",
  1626. "extra": {
  1627. "branch-alias": {
  1628. "dev-master": "1.0.x-dev"
  1629. }
  1630. },
  1631. "autoload": {
  1632. "psr-4": {
  1633. "phpDocumentor\\Reflection\\": [
  1634. "src/"
  1635. ]
  1636. }
  1637. },
  1638. "notification-url": "https://packagist.org/downloads/",
  1639. "license": [
  1640. "MIT"
  1641. ],
  1642. "authors": [
  1643. {
  1644. "name": "Mike van Riel",
  1645. "email": "me@mikevanriel.com"
  1646. }
  1647. ],
  1648. "support": {
  1649. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  1650. "source": "https://github.com/phpDocumentor/TypeResolver/tree/master"
  1651. },
  1652. "time": "2017-06-03T08:32:36+00:00"
  1653. },
  1654. {
  1655. "name": "phpmyadmin/coding-standard",
  1656. "version": "0.3",
  1657. "source": {
  1658. "type": "git",
  1659. "url": "https://github.com/phpmyadmin/coding-standard.git",
  1660. "reference": "5ae123e27140a1e16be005432e26a8233524eaf5"
  1661. },
  1662. "dist": {
  1663. "type": "zip",
  1664. "url": "https://api.github.com/repos/phpmyadmin/coding-standard/zipball/5ae123e27140a1e16be005432e26a8233524eaf5",
  1665. "reference": "5ae123e27140a1e16be005432e26a8233524eaf5",
  1666. "shasum": ""
  1667. },
  1668. "require": {
  1669. "squizlabs/php_codesniffer": "^3.0"
  1670. },
  1671. "type": "phpcodesniffer-standard",
  1672. "notification-url": "https://packagist.org/downloads/",
  1673. "license": [
  1674. "MIT"
  1675. ],
  1676. "authors": [
  1677. {
  1678. "name": "The phpMyAdmin Team",
  1679. "email": "developers@phpmyadmin.net",
  1680. "homepage": "https://www.phpmyadmin.net/team/"
  1681. }
  1682. ],
  1683. "description": "phpMyAdmin PHP CodeSniffer Coding Standard",
  1684. "keywords": [
  1685. "codesniffer",
  1686. "phpcs",
  1687. "phpmyadmin"
  1688. ],
  1689. "support": {
  1690. "issues": "https://github.com/phpmyadmin/coding-standard/issues",
  1691. "source": "https://github.com/phpmyadmin/coding-standard"
  1692. },
  1693. "time": "2017-09-28T09:13:00+00:00"
  1694. },
  1695. {
  1696. "name": "phpspec/prophecy",
  1697. "version": "v1.10.3",
  1698. "source": {
  1699. "type": "git",
  1700. "url": "https://github.com/phpspec/prophecy.git",
  1701. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  1702. },
  1703. "dist": {
  1704. "type": "zip",
  1705. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  1706. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  1707. "shasum": ""
  1708. },
  1709. "require": {
  1710. "doctrine/instantiator": "^1.0.2",
  1711. "php": "^5.3|^7.0",
  1712. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  1713. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  1714. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  1715. },
  1716. "require-dev": {
  1717. "phpspec/phpspec": "^2.5 || ^3.2",
  1718. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  1719. },
  1720. "type": "library",
  1721. "extra": {
  1722. "branch-alias": {
  1723. "dev-master": "1.10.x-dev"
  1724. }
  1725. },
  1726. "autoload": {
  1727. "psr-4": {
  1728. "Prophecy\\": "src/Prophecy"
  1729. }
  1730. },
  1731. "notification-url": "https://packagist.org/downloads/",
  1732. "license": [
  1733. "MIT"
  1734. ],
  1735. "authors": [
  1736. {
  1737. "name": "Konstantin Kudryashov",
  1738. "email": "ever.zet@gmail.com",
  1739. "homepage": "http://everzet.com"
  1740. },
  1741. {
  1742. "name": "Marcello Duarte",
  1743. "email": "marcello.duarte@gmail.com"
  1744. }
  1745. ],
  1746. "description": "Highly opinionated mocking framework for PHP 5.3+",
  1747. "homepage": "https://github.com/phpspec/prophecy",
  1748. "keywords": [
  1749. "Double",
  1750. "Dummy",
  1751. "fake",
  1752. "mock",
  1753. "spy",
  1754. "stub"
  1755. ],
  1756. "support": {
  1757. "issues": "https://github.com/phpspec/prophecy/issues",
  1758. "source": "https://github.com/phpspec/prophecy/tree/v1.10.3"
  1759. },
  1760. "time": "2020-03-05T15:02:03+00:00"
  1761. },
  1762. {
  1763. "name": "phpunit/php-code-coverage",
  1764. "version": "2.2.4",
  1765. "source": {
  1766. "type": "git",
  1767. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1768. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  1769. },
  1770. "dist": {
  1771. "type": "zip",
  1772. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  1773. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  1774. "shasum": ""
  1775. },
  1776. "require": {
  1777. "php": ">=5.3.3",
  1778. "phpunit/php-file-iterator": "~1.3",
  1779. "phpunit/php-text-template": "~1.2",
  1780. "phpunit/php-token-stream": "~1.3",
  1781. "sebastian/environment": "^1.3.2",
  1782. "sebastian/version": "~1.0"
  1783. },
  1784. "require-dev": {
  1785. "ext-xdebug": ">=2.1.4",
  1786. "phpunit/phpunit": "~4"
  1787. },
  1788. "suggest": {
  1789. "ext-dom": "*",
  1790. "ext-xdebug": ">=2.2.1",
  1791. "ext-xmlwriter": "*"
  1792. },
  1793. "type": "library",
  1794. "extra": {
  1795. "branch-alias": {
  1796. "dev-master": "2.2.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": "sb@sebastian-bergmann.de",
  1812. "role": "lead"
  1813. }
  1814. ],
  1815. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1816. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1817. "keywords": [
  1818. "coverage",
  1819. "testing",
  1820. "xunit"
  1821. ],
  1822. "support": {
  1823. "irc": "irc://irc.freenode.net/phpunit",
  1824. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  1825. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/2.2"
  1826. },
  1827. "time": "2015-10-06T15:47:00+00:00"
  1828. },
  1829. {
  1830. "name": "phpunit/php-file-iterator",
  1831. "version": "1.4.5",
  1832. "source": {
  1833. "type": "git",
  1834. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1835. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  1836. },
  1837. "dist": {
  1838. "type": "zip",
  1839. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1840. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1841. "shasum": ""
  1842. },
  1843. "require": {
  1844. "php": ">=5.3.3"
  1845. },
  1846. "type": "library",
  1847. "extra": {
  1848. "branch-alias": {
  1849. "dev-master": "1.4.x-dev"
  1850. }
  1851. },
  1852. "autoload": {
  1853. "classmap": [
  1854. "src/"
  1855. ]
  1856. },
  1857. "notification-url": "https://packagist.org/downloads/",
  1858. "license": [
  1859. "BSD-3-Clause"
  1860. ],
  1861. "authors": [
  1862. {
  1863. "name": "Sebastian Bergmann",
  1864. "email": "sb@sebastian-bergmann.de",
  1865. "role": "lead"
  1866. }
  1867. ],
  1868. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1869. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1870. "keywords": [
  1871. "filesystem",
  1872. "iterator"
  1873. ],
  1874. "support": {
  1875. "irc": "irc://irc.freenode.net/phpunit",
  1876. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  1877. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/1.4.5"
  1878. },
  1879. "time": "2017-11-27T13:52:08+00:00"
  1880. },
  1881. {
  1882. "name": "phpunit/php-text-template",
  1883. "version": "1.2.1",
  1884. "source": {
  1885. "type": "git",
  1886. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1887. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  1888. },
  1889. "dist": {
  1890. "type": "zip",
  1891. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1892. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1893. "shasum": ""
  1894. },
  1895. "require": {
  1896. "php": ">=5.3.3"
  1897. },
  1898. "type": "library",
  1899. "autoload": {
  1900. "classmap": [
  1901. "src/"
  1902. ]
  1903. },
  1904. "notification-url": "https://packagist.org/downloads/",
  1905. "license": [
  1906. "BSD-3-Clause"
  1907. ],
  1908. "authors": [
  1909. {
  1910. "name": "Sebastian Bergmann",
  1911. "email": "sebastian@phpunit.de",
  1912. "role": "lead"
  1913. }
  1914. ],
  1915. "description": "Simple template engine.",
  1916. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1917. "keywords": [
  1918. "template"
  1919. ],
  1920. "support": {
  1921. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  1922. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  1923. },
  1924. "time": "2015-06-21T13:50:34+00:00"
  1925. },
  1926. {
  1927. "name": "phpunit/php-timer",
  1928. "version": "1.0.9",
  1929. "source": {
  1930. "type": "git",
  1931. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1932. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  1933. },
  1934. "dist": {
  1935. "type": "zip",
  1936. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1937. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1938. "shasum": ""
  1939. },
  1940. "require": {
  1941. "php": "^5.3.3 || ^7.0"
  1942. },
  1943. "require-dev": {
  1944. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1945. },
  1946. "type": "library",
  1947. "extra": {
  1948. "branch-alias": {
  1949. "dev-master": "1.0-dev"
  1950. }
  1951. },
  1952. "autoload": {
  1953. "classmap": [
  1954. "src/"
  1955. ]
  1956. },
  1957. "notification-url": "https://packagist.org/downloads/",
  1958. "license": [
  1959. "BSD-3-Clause"
  1960. ],
  1961. "authors": [
  1962. {
  1963. "name": "Sebastian Bergmann",
  1964. "email": "sb@sebastian-bergmann.de",
  1965. "role": "lead"
  1966. }
  1967. ],
  1968. "description": "Utility class for timing",
  1969. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1970. "keywords": [
  1971. "timer"
  1972. ],
  1973. "support": {
  1974. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  1975. "source": "https://github.com/sebastianbergmann/php-timer/tree/master"
  1976. },
  1977. "time": "2017-02-26T11:10:40+00:00"
  1978. },
  1979. {
  1980. "name": "phpunit/php-token-stream",
  1981. "version": "1.4.12",
  1982. "source": {
  1983. "type": "git",
  1984. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1985. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
  1986. },
  1987. "dist": {
  1988. "type": "zip",
  1989. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
  1990. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
  1991. "shasum": ""
  1992. },
  1993. "require": {
  1994. "ext-tokenizer": "*",
  1995. "php": ">=5.3.3"
  1996. },
  1997. "require-dev": {
  1998. "phpunit/phpunit": "~4.2"
  1999. },
  2000. "type": "library",
  2001. "extra": {
  2002. "branch-alias": {
  2003. "dev-master": "1.4-dev"
  2004. }
  2005. },
  2006. "autoload": {
  2007. "classmap": [
  2008. "src/"
  2009. ]
  2010. },
  2011. "notification-url": "https://packagist.org/downloads/",
  2012. "license": [
  2013. "BSD-3-Clause"
  2014. ],
  2015. "authors": [
  2016. {
  2017. "name": "Sebastian Bergmann",
  2018. "email": "sebastian@phpunit.de"
  2019. }
  2020. ],
  2021. "description": "Wrapper around PHP's tokenizer extension.",
  2022. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  2023. "keywords": [
  2024. "tokenizer"
  2025. ],
  2026. "support": {
  2027. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  2028. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/1.4"
  2029. },
  2030. "abandoned": true,
  2031. "time": "2017-12-04T08:55:13+00:00"
  2032. },
  2033. {
  2034. "name": "phpunit/phpunit",
  2035. "version": "4.8.36",
  2036. "source": {
  2037. "type": "git",
  2038. "url": "https://github.com/sebastianbergmann/phpunit.git",
  2039. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517"
  2040. },
  2041. "dist": {
  2042. "type": "zip",
  2043. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/46023de9a91eec7dfb06cc56cb4e260017298517",
  2044. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517",
  2045. "shasum": ""
  2046. },
  2047. "require": {
  2048. "ext-dom": "*",
  2049. "ext-json": "*",
  2050. "ext-pcre": "*",
  2051. "ext-reflection": "*",
  2052. "ext-spl": "*",
  2053. "php": ">=5.3.3",
  2054. "phpspec/prophecy": "^1.3.1",
  2055. "phpunit/php-code-coverage": "~2.1",
  2056. "phpunit/php-file-iterator": "~1.4",
  2057. "phpunit/php-text-template": "~1.2",
  2058. "phpunit/php-timer": "^1.0.6",
  2059. "phpunit/phpunit-mock-objects": "~2.3",
  2060. "sebastian/comparator": "~1.2.2",
  2061. "sebastian/diff": "~1.2",
  2062. "sebastian/environment": "~1.3",
  2063. "sebastian/exporter": "~1.2",
  2064. "sebastian/global-state": "~1.0",
  2065. "sebastian/version": "~1.0",
  2066. "symfony/yaml": "~2.1|~3.0"
  2067. },
  2068. "suggest": {
  2069. "phpunit/php-invoker": "~1.1"
  2070. },
  2071. "bin": [
  2072. "phpunit"
  2073. ],
  2074. "type": "library",
  2075. "extra": {
  2076. "branch-alias": {
  2077. "dev-master": "4.8.x-dev"
  2078. }
  2079. },
  2080. "autoload": {
  2081. "classmap": [
  2082. "src/"
  2083. ]
  2084. },
  2085. "notification-url": "https://packagist.org/downloads/",
  2086. "license": [
  2087. "BSD-3-Clause"
  2088. ],
  2089. "authors": [
  2090. {
  2091. "name": "Sebastian Bergmann",
  2092. "email": "sebastian@phpunit.de",
  2093. "role": "lead"
  2094. }
  2095. ],
  2096. "description": "The PHP Unit Testing framework.",
  2097. "homepage": "https://phpunit.de/",
  2098. "keywords": [
  2099. "phpunit",
  2100. "testing",
  2101. "xunit"
  2102. ],
  2103. "support": {
  2104. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  2105. "source": "https://github.com/sebastianbergmann/phpunit/tree/4.8.36"
  2106. },
  2107. "time": "2017-06-21T08:07:12+00:00"
  2108. },
  2109. {
  2110. "name": "phpunit/phpunit-mock-objects",
  2111. "version": "2.3.8",
  2112. "source": {
  2113. "type": "git",
  2114. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  2115. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  2116. },
  2117. "dist": {
  2118. "type": "zip",
  2119. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  2120. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  2121. "shasum": ""
  2122. },
  2123. "require": {
  2124. "doctrine/instantiator": "^1.0.2",
  2125. "php": ">=5.3.3",
  2126. "phpunit/php-text-template": "~1.2",
  2127. "sebastian/exporter": "~1.2"
  2128. },
  2129. "require-dev": {
  2130. "phpunit/phpunit": "~4.4"
  2131. },
  2132. "suggest": {
  2133. "ext-soap": "*"
  2134. },
  2135. "type": "library",
  2136. "extra": {
  2137. "branch-alias": {
  2138. "dev-master": "2.3.x-dev"
  2139. }
  2140. },
  2141. "autoload": {
  2142. "classmap": [
  2143. "src/"
  2144. ]
  2145. },
  2146. "notification-url": "https://packagist.org/downloads/",
  2147. "license": [
  2148. "BSD-3-Clause"
  2149. ],
  2150. "authors": [
  2151. {
  2152. "name": "Sebastian Bergmann",
  2153. "email": "sb@sebastian-bergmann.de",
  2154. "role": "lead"
  2155. }
  2156. ],
  2157. "description": "Mock Object library for PHPUnit",
  2158. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  2159. "keywords": [
  2160. "mock",
  2161. "xunit"
  2162. ],
  2163. "support": {
  2164. "irc": "irc://irc.freenode.net/phpunit",
  2165. "issues": "https://github.com/sebastianbergmann/phpunit-mock-objects/issues",
  2166. "source": "https://github.com/sebastianbergmann/phpunit-mock-objects/tree/2.3"
  2167. },
  2168. "abandoned": true,
  2169. "time": "2015-10-02T06:51:40+00:00"
  2170. },
  2171. {
  2172. "name": "phpunit/phpunit-selenium",
  2173. "version": "1.4.2",
  2174. "source": {
  2175. "type": "git",
  2176. "url": "https://github.com/giorgiosironi/phpunit-selenium.git",
  2177. "reference": "c84dd7ca214563868ce216123b7ae9c792beb262"
  2178. },
  2179. "dist": {
  2180. "type": "zip",
  2181. "url": "https://api.github.com/repos/giorgiosironi/phpunit-selenium/zipball/c84dd7ca214563868ce216123b7ae9c792beb262",
  2182. "reference": "c84dd7ca214563868ce216123b7ae9c792beb262",
  2183. "shasum": ""
  2184. },
  2185. "require": {
  2186. "ext-curl": "*",
  2187. "ext-dom": "*",
  2188. "php": ">=5.3.3",
  2189. "phpunit/phpunit": "~3.7|~4.0",
  2190. "sebastian/comparator": "~1.0"
  2191. },
  2192. "type": "library",
  2193. "autoload": {
  2194. "classmap": [
  2195. "PHPUnit/"
  2196. ]
  2197. },
  2198. "notification-url": "https://packagist.org/downloads/",
  2199. "include-path": [
  2200. ""
  2201. ],
  2202. "license": [
  2203. "BSD-3-Clause"
  2204. ],
  2205. "authors": [
  2206. {
  2207. "name": "Sebastian Bergmann",
  2208. "email": "sb@sebastian-bergmann.de",
  2209. "role": "lead"
  2210. },
  2211. {
  2212. "name": "Giorgio Sironi",
  2213. "email": "info@giorgiosironi.com",
  2214. "role": "developer"
  2215. }
  2216. ],
  2217. "description": "Selenium Server integration for PHPUnit",
  2218. "homepage": "http://www.phpunit.de/",
  2219. "keywords": [
  2220. "selenium",
  2221. "testing",
  2222. "xunit"
  2223. ],
  2224. "support": {
  2225. "irc": "irc://irc.freenode.net/phpunit",
  2226. "issues": "https://github.com/sebastianbergmann/phpunit-selenium/issues",
  2227. "source": "https://github.com/giorgiosironi/phpunit-selenium/tree/1.4.2"
  2228. },
  2229. "time": "2014-11-02T09:23:27+00:00"
  2230. },
  2231. {
  2232. "name": "psr/log",
  2233. "version": "1.1.4",
  2234. "source": {
  2235. "type": "git",
  2236. "url": "https://github.com/php-fig/log.git",
  2237. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2238. },
  2239. "dist": {
  2240. "type": "zip",
  2241. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2242. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2243. "shasum": ""
  2244. },
  2245. "require": {
  2246. "php": ">=5.3.0"
  2247. },
  2248. "type": "library",
  2249. "extra": {
  2250. "branch-alias": {
  2251. "dev-master": "1.1.x-dev"
  2252. }
  2253. },
  2254. "autoload": {
  2255. "psr-4": {
  2256. "Psr\\Log\\": "Psr/Log/"
  2257. }
  2258. },
  2259. "notification-url": "https://packagist.org/downloads/",
  2260. "license": [
  2261. "MIT"
  2262. ],
  2263. "authors": [
  2264. {
  2265. "name": "PHP-FIG",
  2266. "homepage": "https://www.php-fig.org/"
  2267. }
  2268. ],
  2269. "description": "Common interface for logging libraries",
  2270. "homepage": "https://github.com/php-fig/log",
  2271. "keywords": [
  2272. "log",
  2273. "psr",
  2274. "psr-3"
  2275. ],
  2276. "support": {
  2277. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2278. },
  2279. "time": "2021-05-03T11:20:27+00:00"
  2280. },
  2281. {
  2282. "name": "sebastian/comparator",
  2283. "version": "1.2.4",
  2284. "source": {
  2285. "type": "git",
  2286. "url": "https://github.com/sebastianbergmann/comparator.git",
  2287. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  2288. },
  2289. "dist": {
  2290. "type": "zip",
  2291. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  2292. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  2293. "shasum": ""
  2294. },
  2295. "require": {
  2296. "php": ">=5.3.3",
  2297. "sebastian/diff": "~1.2",
  2298. "sebastian/exporter": "~1.2 || ~2.0"
  2299. },
  2300. "require-dev": {
  2301. "phpunit/phpunit": "~4.4"
  2302. },
  2303. "type": "library",
  2304. "extra": {
  2305. "branch-alias": {
  2306. "dev-master": "1.2.x-dev"
  2307. }
  2308. },
  2309. "autoload": {
  2310. "classmap": [
  2311. "src/"
  2312. ]
  2313. },
  2314. "notification-url": "https://packagist.org/downloads/",
  2315. "license": [
  2316. "BSD-3-Clause"
  2317. ],
  2318. "authors": [
  2319. {
  2320. "name": "Jeff Welch",
  2321. "email": "whatthejeff@gmail.com"
  2322. },
  2323. {
  2324. "name": "Volker Dusch",
  2325. "email": "github@wallbash.com"
  2326. },
  2327. {
  2328. "name": "Bernhard Schussek",
  2329. "email": "bschussek@2bepublished.at"
  2330. },
  2331. {
  2332. "name": "Sebastian Bergmann",
  2333. "email": "sebastian@phpunit.de"
  2334. }
  2335. ],
  2336. "description": "Provides the functionality to compare PHP values for equality",
  2337. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  2338. "keywords": [
  2339. "comparator",
  2340. "compare",
  2341. "equality"
  2342. ],
  2343. "support": {
  2344. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  2345. "source": "https://github.com/sebastianbergmann/comparator/tree/1.2"
  2346. },
  2347. "time": "2017-01-29T09:50:25+00:00"
  2348. },
  2349. {
  2350. "name": "sebastian/diff",
  2351. "version": "1.4.3",
  2352. "source": {
  2353. "type": "git",
  2354. "url": "https://github.com/sebastianbergmann/diff.git",
  2355. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  2356. },
  2357. "dist": {
  2358. "type": "zip",
  2359. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  2360. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  2361. "shasum": ""
  2362. },
  2363. "require": {
  2364. "php": "^5.3.3 || ^7.0"
  2365. },
  2366. "require-dev": {
  2367. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  2368. },
  2369. "type": "library",
  2370. "extra": {
  2371. "branch-alias": {
  2372. "dev-master": "1.4-dev"
  2373. }
  2374. },
  2375. "autoload": {
  2376. "classmap": [
  2377. "src/"
  2378. ]
  2379. },
  2380. "notification-url": "https://packagist.org/downloads/",
  2381. "license": [
  2382. "BSD-3-Clause"
  2383. ],
  2384. "authors": [
  2385. {
  2386. "name": "Kore Nordmann",
  2387. "email": "mail@kore-nordmann.de"
  2388. },
  2389. {
  2390. "name": "Sebastian Bergmann",
  2391. "email": "sebastian@phpunit.de"
  2392. }
  2393. ],
  2394. "description": "Diff implementation",
  2395. "homepage": "https://github.com/sebastianbergmann/diff",
  2396. "keywords": [
  2397. "diff"
  2398. ],
  2399. "support": {
  2400. "issues": "https://github.com/sebastianbergmann/diff/issues",
  2401. "source": "https://github.com/sebastianbergmann/diff/tree/1.4"
  2402. },
  2403. "time": "2017-05-22T07:24:03+00:00"
  2404. },
  2405. {
  2406. "name": "sebastian/environment",
  2407. "version": "1.3.8",
  2408. "source": {
  2409. "type": "git",
  2410. "url": "https://github.com/sebastianbergmann/environment.git",
  2411. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  2412. },
  2413. "dist": {
  2414. "type": "zip",
  2415. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  2416. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  2417. "shasum": ""
  2418. },
  2419. "require": {
  2420. "php": "^5.3.3 || ^7.0"
  2421. },
  2422. "require-dev": {
  2423. "phpunit/phpunit": "^4.8 || ^5.0"
  2424. },
  2425. "type": "library",
  2426. "extra": {
  2427. "branch-alias": {
  2428. "dev-master": "1.3.x-dev"
  2429. }
  2430. },
  2431. "autoload": {
  2432. "classmap": [
  2433. "src/"
  2434. ]
  2435. },
  2436. "notification-url": "https://packagist.org/downloads/",
  2437. "license": [
  2438. "BSD-3-Clause"
  2439. ],
  2440. "authors": [
  2441. {
  2442. "name": "Sebastian Bergmann",
  2443. "email": "sebastian@phpunit.de"
  2444. }
  2445. ],
  2446. "description": "Provides functionality to handle HHVM/PHP environments",
  2447. "homepage": "http://www.github.com/sebastianbergmann/environment",
  2448. "keywords": [
  2449. "Xdebug",
  2450. "environment",
  2451. "hhvm"
  2452. ],
  2453. "support": {
  2454. "issues": "https://github.com/sebastianbergmann/environment/issues",
  2455. "source": "https://github.com/sebastianbergmann/environment/tree/1.3"
  2456. },
  2457. "time": "2016-08-18T05:49:44+00:00"
  2458. },
  2459. {
  2460. "name": "sebastian/exporter",
  2461. "version": "1.2.2",
  2462. "source": {
  2463. "type": "git",
  2464. "url": "https://github.com/sebastianbergmann/exporter.git",
  2465. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  2466. },
  2467. "dist": {
  2468. "type": "zip",
  2469. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
  2470. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  2471. "shasum": ""
  2472. },
  2473. "require": {
  2474. "php": ">=5.3.3",
  2475. "sebastian/recursion-context": "~1.0"
  2476. },
  2477. "require-dev": {
  2478. "ext-mbstring": "*",
  2479. "phpunit/phpunit": "~4.4"
  2480. },
  2481. "type": "library",
  2482. "extra": {
  2483. "branch-alias": {
  2484. "dev-master": "1.3.x-dev"
  2485. }
  2486. },
  2487. "autoload": {
  2488. "classmap": [
  2489. "src/"
  2490. ]
  2491. },
  2492. "notification-url": "https://packagist.org/downloads/",
  2493. "license": [
  2494. "BSD-3-Clause"
  2495. ],
  2496. "authors": [
  2497. {
  2498. "name": "Jeff Welch",
  2499. "email": "whatthejeff@gmail.com"
  2500. },
  2501. {
  2502. "name": "Volker Dusch",
  2503. "email": "github@wallbash.com"
  2504. },
  2505. {
  2506. "name": "Bernhard Schussek",
  2507. "email": "bschussek@2bepublished.at"
  2508. },
  2509. {
  2510. "name": "Sebastian Bergmann",
  2511. "email": "sebastian@phpunit.de"
  2512. },
  2513. {
  2514. "name": "Adam Harvey",
  2515. "email": "aharvey@php.net"
  2516. }
  2517. ],
  2518. "description": "Provides the functionality to export PHP variables for visualization",
  2519. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  2520. "keywords": [
  2521. "export",
  2522. "exporter"
  2523. ],
  2524. "support": {
  2525. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  2526. "source": "https://github.com/sebastianbergmann/exporter/tree/master"
  2527. },
  2528. "time": "2016-06-17T09:04:28+00:00"
  2529. },
  2530. {
  2531. "name": "sebastian/global-state",
  2532. "version": "1.1.1",
  2533. "source": {
  2534. "type": "git",
  2535. "url": "https://github.com/sebastianbergmann/global-state.git",
  2536. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  2537. },
  2538. "dist": {
  2539. "type": "zip",
  2540. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  2541. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  2542. "shasum": ""
  2543. },
  2544. "require": {
  2545. "php": ">=5.3.3"
  2546. },
  2547. "require-dev": {
  2548. "phpunit/phpunit": "~4.2"
  2549. },
  2550. "suggest": {
  2551. "ext-uopz": "*"
  2552. },
  2553. "type": "library",
  2554. "extra": {
  2555. "branch-alias": {
  2556. "dev-master": "1.0-dev"
  2557. }
  2558. },
  2559. "autoload": {
  2560. "classmap": [
  2561. "src/"
  2562. ]
  2563. },
  2564. "notification-url": "https://packagist.org/downloads/",
  2565. "license": [
  2566. "BSD-3-Clause"
  2567. ],
  2568. "authors": [
  2569. {
  2570. "name": "Sebastian Bergmann",
  2571. "email": "sebastian@phpunit.de"
  2572. }
  2573. ],
  2574. "description": "Snapshotting of global state",
  2575. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  2576. "keywords": [
  2577. "global state"
  2578. ],
  2579. "support": {
  2580. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  2581. "source": "https://github.com/sebastianbergmann/global-state/tree/1.1.1"
  2582. },
  2583. "time": "2015-10-12T03:26:01+00:00"
  2584. },
  2585. {
  2586. "name": "sebastian/recursion-context",
  2587. "version": "1.0.5",
  2588. "source": {
  2589. "type": "git",
  2590. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  2591. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7"
  2592. },
  2593. "dist": {
  2594. "type": "zip",
  2595. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  2596. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  2597. "shasum": ""
  2598. },
  2599. "require": {
  2600. "php": ">=5.3.3"
  2601. },
  2602. "require-dev": {
  2603. "phpunit/phpunit": "~4.4"
  2604. },
  2605. "type": "library",
  2606. "extra": {
  2607. "branch-alias": {
  2608. "dev-master": "1.0.x-dev"
  2609. }
  2610. },
  2611. "autoload": {
  2612. "classmap": [
  2613. "src/"
  2614. ]
  2615. },
  2616. "notification-url": "https://packagist.org/downloads/",
  2617. "license": [
  2618. "BSD-3-Clause"
  2619. ],
  2620. "authors": [
  2621. {
  2622. "name": "Jeff Welch",
  2623. "email": "whatthejeff@gmail.com"
  2624. },
  2625. {
  2626. "name": "Sebastian Bergmann",
  2627. "email": "sebastian@phpunit.de"
  2628. },
  2629. {
  2630. "name": "Adam Harvey",
  2631. "email": "aharvey@php.net"
  2632. }
  2633. ],
  2634. "description": "Provides functionality to recursively process PHP variables",
  2635. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  2636. "support": {
  2637. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  2638. "source": "https://github.com/sebastianbergmann/recursion-context/tree/master"
  2639. },
  2640. "time": "2016-10-03T07:41:43+00:00"
  2641. },
  2642. {
  2643. "name": "sebastian/version",
  2644. "version": "1.0.6",
  2645. "source": {
  2646. "type": "git",
  2647. "url": "https://github.com/sebastianbergmann/version.git",
  2648. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  2649. },
  2650. "dist": {
  2651. "type": "zip",
  2652. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  2653. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  2654. "shasum": ""
  2655. },
  2656. "type": "library",
  2657. "autoload": {
  2658. "classmap": [
  2659. "src/"
  2660. ]
  2661. },
  2662. "notification-url": "https://packagist.org/downloads/",
  2663. "license": [
  2664. "BSD-3-Clause"
  2665. ],
  2666. "authors": [
  2667. {
  2668. "name": "Sebastian Bergmann",
  2669. "email": "sebastian@phpunit.de",
  2670. "role": "lead"
  2671. }
  2672. ],
  2673. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2674. "homepage": "https://github.com/sebastianbergmann/version",
  2675. "support": {
  2676. "issues": "https://github.com/sebastianbergmann/version/issues",
  2677. "source": "https://github.com/sebastianbergmann/version/tree/1.0.6"
  2678. },
  2679. "time": "2015-06-21T13:59:46+00:00"
  2680. },
  2681. {
  2682. "name": "squizlabs/php_codesniffer",
  2683. "version": "3.6.2",
  2684. "source": {
  2685. "type": "git",
  2686. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  2687. "reference": "5e4e71592f69da17871dba6e80dd51bce74a351a"
  2688. },
  2689. "dist": {
  2690. "type": "zip",
  2691. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/5e4e71592f69da17871dba6e80dd51bce74a351a",
  2692. "reference": "5e4e71592f69da17871dba6e80dd51bce74a351a",
  2693. "shasum": ""
  2694. },
  2695. "require": {
  2696. "ext-simplexml": "*",
  2697. "ext-tokenizer": "*",
  2698. "ext-xmlwriter": "*",
  2699. "php": ">=5.4.0"
  2700. },
  2701. "require-dev": {
  2702. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  2703. },
  2704. "bin": [
  2705. "bin/phpcs",
  2706. "bin/phpcbf"
  2707. ],
  2708. "type": "library",
  2709. "extra": {
  2710. "branch-alias": {
  2711. "dev-master": "3.x-dev"
  2712. }
  2713. },
  2714. "notification-url": "https://packagist.org/downloads/",
  2715. "license": [
  2716. "BSD-3-Clause"
  2717. ],
  2718. "authors": [
  2719. {
  2720. "name": "Greg Sherwood",
  2721. "role": "lead"
  2722. }
  2723. ],
  2724. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  2725. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  2726. "keywords": [
  2727. "phpcs",
  2728. "standards"
  2729. ],
  2730. "support": {
  2731. "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
  2732. "source": "https://github.com/squizlabs/PHP_CodeSniffer",
  2733. "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
  2734. },
  2735. "time": "2021-12-12T21:44:58+00:00"
  2736. },
  2737. {
  2738. "name": "symfony/console",
  2739. "version": "v2.8.52",
  2740. "source": {
  2741. "type": "git",
  2742. "url": "https://github.com/symfony/console.git",
  2743. "reference": "cbcf4b5e233af15cd2bbd50dee1ccc9b7927dc12"
  2744. },
  2745. "dist": {
  2746. "type": "zip",
  2747. "url": "https://api.github.com/repos/symfony/console/zipball/cbcf4b5e233af15cd2bbd50dee1ccc9b7927dc12",
  2748. "reference": "cbcf4b5e233af15cd2bbd50dee1ccc9b7927dc12",
  2749. "shasum": ""
  2750. },
  2751. "require": {
  2752. "php": ">=5.3.9",
  2753. "symfony/debug": "^2.7.2|~3.0.0",
  2754. "symfony/polyfill-mbstring": "~1.0"
  2755. },
  2756. "require-dev": {
  2757. "psr/log": "~1.0",
  2758. "symfony/event-dispatcher": "~2.1|~3.0.0",
  2759. "symfony/process": "~2.1|~3.0.0"
  2760. },
  2761. "suggest": {
  2762. "psr/log-implementation": "For using the console logger",
  2763. "symfony/event-dispatcher": "",
  2764. "symfony/process": ""
  2765. },
  2766. "type": "library",
  2767. "extra": {
  2768. "branch-alias": {
  2769. "dev-master": "2.8-dev"
  2770. }
  2771. },
  2772. "autoload": {
  2773. "psr-4": {
  2774. "Symfony\\Component\\Console\\": ""
  2775. },
  2776. "exclude-from-classmap": [
  2777. "/Tests/"
  2778. ]
  2779. },
  2780. "notification-url": "https://packagist.org/downloads/",
  2781. "license": [
  2782. "MIT"
  2783. ],
  2784. "authors": [
  2785. {
  2786. "name": "Fabien Potencier",
  2787. "email": "fabien@symfony.com"
  2788. },
  2789. {
  2790. "name": "Symfony Community",
  2791. "homepage": "https://symfony.com/contributors"
  2792. }
  2793. ],
  2794. "description": "Symfony Console Component",
  2795. "homepage": "https://symfony.com",
  2796. "support": {
  2797. "source": "https://github.com/symfony/console/tree/v2.8.52"
  2798. },
  2799. "time": "2018-11-20T15:55:20+00:00"
  2800. },
  2801. {
  2802. "name": "symfony/debug",
  2803. "version": "v2.8.52",
  2804. "source": {
  2805. "type": "git",
  2806. "url": "https://github.com/symfony/debug.git",
  2807. "reference": "74251c8d50dd3be7c4ce0c7b862497cdc641a5d0"
  2808. },
  2809. "dist": {
  2810. "type": "zip",
  2811. "url": "https://api.github.com/repos/symfony/debug/zipball/74251c8d50dd3be7c4ce0c7b862497cdc641a5d0",
  2812. "reference": "74251c8d50dd3be7c4ce0c7b862497cdc641a5d0",
  2813. "shasum": ""
  2814. },
  2815. "require": {
  2816. "php": ">=5.3.9",
  2817. "psr/log": "~1.0"
  2818. },
  2819. "conflict": {
  2820. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  2821. },
  2822. "require-dev": {
  2823. "symfony/class-loader": "~2.2|~3.0.0",
  2824. "symfony/http-kernel": "~2.3.24|~2.5.9|^2.6.2|~3.0.0"
  2825. },
  2826. "type": "library",
  2827. "extra": {
  2828. "branch-alias": {
  2829. "dev-master": "2.8-dev"
  2830. }
  2831. },
  2832. "autoload": {
  2833. "psr-4": {
  2834. "Symfony\\Component\\Debug\\": ""
  2835. },
  2836. "exclude-from-classmap": [
  2837. "/Tests/"
  2838. ]
  2839. },
  2840. "notification-url": "https://packagist.org/downloads/",
  2841. "license": [
  2842. "MIT"
  2843. ],
  2844. "authors": [
  2845. {
  2846. "name": "Fabien Potencier",
  2847. "email": "fabien@symfony.com"
  2848. },
  2849. {
  2850. "name": "Symfony Community",
  2851. "homepage": "https://symfony.com/contributors"
  2852. }
  2853. ],
  2854. "description": "Symfony Debug Component",
  2855. "homepage": "https://symfony.com",
  2856. "support": {
  2857. "source": "https://github.com/symfony/debug/tree/v2.8.50"
  2858. },
  2859. "time": "2018-11-11T11:18:13+00:00"
  2860. },
  2861. {
  2862. "name": "symfony/process",
  2863. "version": "v2.8.52",
  2864. "source": {
  2865. "type": "git",
  2866. "url": "https://github.com/symfony/process.git",
  2867. "reference": "c3591a09c78639822b0b290d44edb69bf9f05dc8"
  2868. },
  2869. "dist": {
  2870. "type": "zip",
  2871. "url": "https://api.github.com/repos/symfony/process/zipball/c3591a09c78639822b0b290d44edb69bf9f05dc8",
  2872. "reference": "c3591a09c78639822b0b290d44edb69bf9f05dc8",
  2873. "shasum": ""
  2874. },
  2875. "require": {
  2876. "php": ">=5.3.9"
  2877. },
  2878. "type": "library",
  2879. "extra": {
  2880. "branch-alias": {
  2881. "dev-master": "2.8-dev"
  2882. }
  2883. },
  2884. "autoload": {
  2885. "psr-4": {
  2886. "Symfony\\Component\\Process\\": ""
  2887. },
  2888. "exclude-from-classmap": [
  2889. "/Tests/"
  2890. ]
  2891. },
  2892. "notification-url": "https://packagist.org/downloads/",
  2893. "license": [
  2894. "MIT"
  2895. ],
  2896. "authors": [
  2897. {
  2898. "name": "Fabien Potencier",
  2899. "email": "fabien@symfony.com"
  2900. },
  2901. {
  2902. "name": "Symfony Community",
  2903. "homepage": "https://symfony.com/contributors"
  2904. }
  2905. ],
  2906. "description": "Symfony Process Component",
  2907. "homepage": "https://symfony.com",
  2908. "support": {
  2909. "source": "https://github.com/symfony/process/tree/v2.8.50"
  2910. },
  2911. "time": "2018-11-11T11:18:13+00:00"
  2912. },
  2913. {
  2914. "name": "symfony/yaml",
  2915. "version": "v2.8.52",
  2916. "source": {
  2917. "type": "git",
  2918. "url": "https://github.com/symfony/yaml.git",
  2919. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b"
  2920. },
  2921. "dist": {
  2922. "type": "zip",
  2923. "url": "https://api.github.com/repos/symfony/yaml/zipball/02c1859112aa779d9ab394ae4f3381911d84052b",
  2924. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b",
  2925. "shasum": ""
  2926. },
  2927. "require": {
  2928. "php": ">=5.3.9",
  2929. "symfony/polyfill-ctype": "~1.8"
  2930. },
  2931. "type": "library",
  2932. "extra": {
  2933. "branch-alias": {
  2934. "dev-master": "2.8-dev"
  2935. }
  2936. },
  2937. "autoload": {
  2938. "psr-4": {
  2939. "Symfony\\Component\\Yaml\\": ""
  2940. },
  2941. "exclude-from-classmap": [
  2942. "/Tests/"
  2943. ]
  2944. },
  2945. "notification-url": "https://packagist.org/downloads/",
  2946. "license": [
  2947. "MIT"
  2948. ],
  2949. "authors": [
  2950. {
  2951. "name": "Fabien Potencier",
  2952. "email": "fabien@symfony.com"
  2953. },
  2954. {
  2955. "name": "Symfony Community",
  2956. "homepage": "https://symfony.com/contributors"
  2957. }
  2958. ],
  2959. "description": "Symfony Yaml Component",
  2960. "homepage": "https://symfony.com",
  2961. "support": {
  2962. "source": "https://github.com/symfony/yaml/tree/v2.8.52"
  2963. },
  2964. "time": "2018-11-11T11:18:13+00:00"
  2965. },
  2966. {
  2967. "name": "webmozart/assert",
  2968. "version": "1.9.1",
  2969. "source": {
  2970. "type": "git",
  2971. "url": "https://github.com/webmozarts/assert.git",
  2972. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  2973. },
  2974. "dist": {
  2975. "type": "zip",
  2976. "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  2977. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  2978. "shasum": ""
  2979. },
  2980. "require": {
  2981. "php": "^5.3.3 || ^7.0 || ^8.0",
  2982. "symfony/polyfill-ctype": "^1.8"
  2983. },
  2984. "conflict": {
  2985. "phpstan/phpstan": "<0.12.20",
  2986. "vimeo/psalm": "<3.9.1"
  2987. },
  2988. "require-dev": {
  2989. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  2990. },
  2991. "type": "library",
  2992. "autoload": {
  2993. "psr-4": {
  2994. "Webmozart\\Assert\\": "src/"
  2995. }
  2996. },
  2997. "notification-url": "https://packagist.org/downloads/",
  2998. "license": [
  2999. "MIT"
  3000. ],
  3001. "authors": [
  3002. {
  3003. "name": "Bernhard Schussek",
  3004. "email": "bschussek@gmail.com"
  3005. }
  3006. ],
  3007. "description": "Assertions to validate method input/output with nice error messages.",
  3008. "keywords": [
  3009. "assert",
  3010. "check",
  3011. "validate"
  3012. ],
  3013. "support": {
  3014. "issues": "https://github.com/webmozarts/assert/issues",
  3015. "source": "https://github.com/webmozarts/assert/tree/1.9.1"
  3016. },
  3017. "time": "2020-07-08T17:02:28+00:00"
  3018. }
  3019. ],
  3020. "aliases": [],
  3021. "minimum-stability": "stable",
  3022. "stability-flags": [],
  3023. "prefer-stable": false,
  3024. "prefer-lowest": false,
  3025. "platform": {
  3026. "php": ">=5.5.0",
  3027. "ext-mysqli": "*",
  3028. "ext-xml": "*",
  3029. "ext-pcre": "*",
  3030. "ext-json": "*",
  3031. "ext-ctype": "*",
  3032. "ext-hash": "*"
  3033. },
  3034. "platform-dev": [],
  3035. "platform-overrides": {
  3036. "php": "5.5"
  3037. },
  3038. "plugin-api-version": "2.2.0"
  3039. }