composer.lock 159 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599
  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": "c5d6ba835f687ac17e14d1642d7f8fdc",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/eaac909da3ccc32b748a65b127acd8918f58d9b0",
  20. "reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "dasprid/enum": "^1.0",
  25. "ext-iconv": "*",
  26. "php": "^7.1"
  27. },
  28. "require-dev": {
  29. "phly/keep-a-changelog": "^1.4",
  30. "phpunit/phpunit": "^6.4",
  31. "squizlabs/php_codesniffer": "^3.1"
  32. },
  33. "suggest": {
  34. "ext-imagick": "to generate QR code images"
  35. },
  36. "type": "library",
  37. "autoload": {
  38. "psr-4": {
  39. "BaconQrCode\\": "src/"
  40. }
  41. },
  42. "notification-url": "https://packagist.org/downloads/",
  43. "license": [
  44. "BSD-2-Clause"
  45. ],
  46. "authors": [
  47. {
  48. "name": "Ben Scholzen 'DASPRiD'",
  49. "email": "mail@dasprids.de",
  50. "homepage": "http://www.dasprids.de",
  51. "role": "Developer"
  52. }
  53. ],
  54. "description": "BaconQrCode is a QR code generator for PHP.",
  55. "homepage": "https://github.com/Bacon/BaconQrCode",
  56. "time": "2018-04-25T17:53:56+00:00"
  57. },
  58. {
  59. "name": "dasprid/enum",
  60. "version": "1.0.0",
  61. "source": {
  62. "type": "git",
  63. "url": "https://github.com/DASPRiD/Enum.git",
  64. "reference": "631ef6e638e9494b0310837fa531bedd908fc22b"
  65. },
  66. "dist": {
  67. "type": "zip",
  68. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/631ef6e638e9494b0310837fa531bedd908fc22b",
  69. "reference": "631ef6e638e9494b0310837fa531bedd908fc22b",
  70. "shasum": ""
  71. },
  72. "require-dev": {
  73. "phpunit/phpunit": "^6.4",
  74. "squizlabs/php_codesniffer": "^3.1"
  75. },
  76. "type": "library",
  77. "autoload": {
  78. "psr-4": {
  79. "DASPRiD\\Enum\\": "src/"
  80. }
  81. },
  82. "notification-url": "https://packagist.org/downloads/",
  83. "license": [
  84. "BSD-2-Clause"
  85. ],
  86. "authors": [
  87. {
  88. "name": "Ben Scholzen 'DASPRiD'",
  89. "email": "mail@dasprids.de",
  90. "homepage": "https://dasprids.de/"
  91. }
  92. ],
  93. "description": "PHP 7.1 enum implementation",
  94. "keywords": [
  95. "enum",
  96. "map"
  97. ],
  98. "time": "2017-10-25T22:45:27+00:00"
  99. },
  100. {
  101. "name": "google/recaptcha",
  102. "version": "1.2.3",
  103. "source": {
  104. "type": "git",
  105. "url": "https://github.com/google/recaptcha.git",
  106. "reference": "98c4a6573b27e8b0990ea8789c74ea378795134c"
  107. },
  108. "dist": {
  109. "type": "zip",
  110. "url": "https://api.github.com/repos/google/recaptcha/zipball/98c4a6573b27e8b0990ea8789c74ea378795134c",
  111. "reference": "98c4a6573b27e8b0990ea8789c74ea378795134c",
  112. "shasum": ""
  113. },
  114. "require": {
  115. "php": ">=5.5"
  116. },
  117. "require-dev": {
  118. "friendsofphp/php-cs-fixer": "^2.2.20|^2.15",
  119. "php-coveralls/php-coveralls": "^2.1",
  120. "phpunit/phpunit": "^4.8.36|^5.7.27|^6.59|^7.5.11"
  121. },
  122. "type": "library",
  123. "extra": {
  124. "branch-alias": {
  125. "dev-master": "1.2.x-dev"
  126. }
  127. },
  128. "autoload": {
  129. "psr-4": {
  130. "ReCaptcha\\": "src/ReCaptcha"
  131. }
  132. },
  133. "notification-url": "https://packagist.org/downloads/",
  134. "license": [
  135. "BSD-3-Clause"
  136. ],
  137. "description": "Client library for reCAPTCHA, a free service that protects websites from spam and abuse.",
  138. "homepage": "https://www.google.com/recaptcha/",
  139. "keywords": [
  140. "Abuse",
  141. "captcha",
  142. "recaptcha",
  143. "spam"
  144. ],
  145. "time": "2019-08-16T15:48:25+00:00"
  146. },
  147. {
  148. "name": "paragonie/constant_time_encoding",
  149. "version": "v2.3.0",
  150. "source": {
  151. "type": "git",
  152. "url": "https://github.com/paragonie/constant_time_encoding.git",
  153. "reference": "47a1cedd2e4d52688eb8c96469c05ebc8fd28fa2"
  154. },
  155. "dist": {
  156. "type": "zip",
  157. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/47a1cedd2e4d52688eb8c96469c05ebc8fd28fa2",
  158. "reference": "47a1cedd2e4d52688eb8c96469c05ebc8fd28fa2",
  159. "shasum": ""
  160. },
  161. "require": {
  162. "php": "^7|^8"
  163. },
  164. "require-dev": {
  165. "phpunit/phpunit": "^6|^7",
  166. "vimeo/psalm": "^1|^2|^3"
  167. },
  168. "type": "library",
  169. "autoload": {
  170. "psr-4": {
  171. "ParagonIE\\ConstantTime\\": "src/"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "Paragon Initiative Enterprises",
  181. "email": "security@paragonie.com",
  182. "homepage": "https://paragonie.com",
  183. "role": "Maintainer"
  184. },
  185. {
  186. "name": "Steve 'Sc00bz' Thomas",
  187. "email": "steve@tobtu.com",
  188. "homepage": "https://www.tobtu.com",
  189. "role": "Original Developer"
  190. }
  191. ],
  192. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  193. "keywords": [
  194. "base16",
  195. "base32",
  196. "base32_decode",
  197. "base32_encode",
  198. "base64",
  199. "base64_decode",
  200. "base64_encode",
  201. "bin2hex",
  202. "encoding",
  203. "hex",
  204. "hex2bin",
  205. "rfc4648"
  206. ],
  207. "time": "2019-11-06T19:20:29+00:00"
  208. },
  209. {
  210. "name": "paragonie/random_compat",
  211. "version": "v9.99.99",
  212. "source": {
  213. "type": "git",
  214. "url": "https://github.com/paragonie/random_compat.git",
  215. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  216. },
  217. "dist": {
  218. "type": "zip",
  219. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  220. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  221. "shasum": ""
  222. },
  223. "require": {
  224. "php": "^7"
  225. },
  226. "require-dev": {
  227. "phpunit/phpunit": "4.*|5.*",
  228. "vimeo/psalm": "^1"
  229. },
  230. "suggest": {
  231. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  232. },
  233. "type": "library",
  234. "notification-url": "https://packagist.org/downloads/",
  235. "license": [
  236. "MIT"
  237. ],
  238. "authors": [
  239. {
  240. "name": "Paragon Initiative Enterprises",
  241. "email": "security@paragonie.com",
  242. "homepage": "https://paragonie.com"
  243. }
  244. ],
  245. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  246. "keywords": [
  247. "csprng",
  248. "polyfill",
  249. "pseudorandom",
  250. "random"
  251. ],
  252. "time": "2018-07-02T15:55:56+00:00"
  253. },
  254. {
  255. "name": "phpmyadmin/motranslator",
  256. "version": "4.0",
  257. "source": {
  258. "type": "git",
  259. "url": "https://github.com/phpmyadmin/motranslator.git",
  260. "reference": "fcb370254998fda7eeccfd7c787b4deb71b0d77c"
  261. },
  262. "dist": {
  263. "type": "zip",
  264. "url": "https://api.github.com/repos/phpmyadmin/motranslator/zipball/fcb370254998fda7eeccfd7c787b4deb71b0d77c",
  265. "reference": "fcb370254998fda7eeccfd7c787b4deb71b0d77c",
  266. "shasum": ""
  267. },
  268. "require": {
  269. "php": ">=5.3.0",
  270. "symfony/expression-language": "^4.0 || ^3.2 || ^2.8"
  271. },
  272. "require-dev": {
  273. "apigen/apigen": "^4.1",
  274. "phpunit/php-code-coverage": "*",
  275. "phpunit/phpunit": "~4.8 || ~5.7 || ~6.5"
  276. },
  277. "type": "library",
  278. "autoload": {
  279. "psr-4": {
  280. "PhpMyAdmin\\MoTranslator\\": "src"
  281. }
  282. },
  283. "notification-url": "https://packagist.org/downloads/",
  284. "license": [
  285. "GPL-2.0-or-later"
  286. ],
  287. "authors": [
  288. {
  289. "name": "The phpMyAdmin Team",
  290. "email": "developers@phpmyadmin.net",
  291. "homepage": "https://www.phpmyadmin.net/team/"
  292. }
  293. ],
  294. "description": "Translation API for PHP using Gettext MO files",
  295. "homepage": "https://github.com/phpmyadmin/motranslator",
  296. "keywords": [
  297. "gettext",
  298. "i18n",
  299. "mo",
  300. "translator"
  301. ],
  302. "time": "2018-02-12T13:22:52+00:00"
  303. },
  304. {
  305. "name": "phpmyadmin/shapefile",
  306. "version": "2.1",
  307. "source": {
  308. "type": "git",
  309. "url": "https://github.com/phpmyadmin/shapefile.git",
  310. "reference": "e23b767f2a81f61fee3fc09fc062879985f3e224"
  311. },
  312. "dist": {
  313. "type": "zip",
  314. "url": "https://api.github.com/repos/phpmyadmin/shapefile/zipball/e23b767f2a81f61fee3fc09fc062879985f3e224",
  315. "reference": "e23b767f2a81f61fee3fc09fc062879985f3e224",
  316. "shasum": ""
  317. },
  318. "require": {
  319. "php": ">=5.4.0"
  320. },
  321. "require-dev": {
  322. "phpunit/php-code-coverage": "*",
  323. "phpunit/phpunit": "~4.8 || ~5.7"
  324. },
  325. "suggest": {
  326. "ext-dbase": "For dbf files parsing"
  327. },
  328. "type": "library",
  329. "autoload": {
  330. "psr-4": {
  331. "PhpMyAdmin\\ShapeFile\\": "src"
  332. }
  333. },
  334. "notification-url": "https://packagist.org/downloads/",
  335. "license": [
  336. "GPL-2.0+"
  337. ],
  338. "authors": [
  339. {
  340. "name": "The phpMyAdmin Team",
  341. "email": "developers@phpmyadmin.net",
  342. "homepage": "https://www.phpmyadmin.net/team/"
  343. }
  344. ],
  345. "description": "ESRI ShapeFile library for PHP",
  346. "homepage": "https://github.com/phpmyadmin/shapefile",
  347. "keywords": [
  348. "ESRI",
  349. "Shapefile",
  350. "dbf",
  351. "geo",
  352. "geospatial",
  353. "shape",
  354. "shp"
  355. ],
  356. "time": "2017-05-15T08:31:47+00:00"
  357. },
  358. {
  359. "name": "phpmyadmin/sql-parser",
  360. "version": "5.3.1",
  361. "source": {
  362. "type": "git",
  363. "url": "https://github.com/phpmyadmin/sql-parser.git",
  364. "reference": "11457e9bbedc182b48c04db3a2621d17b58b0808"
  365. },
  366. "dist": {
  367. "type": "zip",
  368. "url": "https://api.github.com/repos/phpmyadmin/sql-parser/zipball/11457e9bbedc182b48c04db3a2621d17b58b0808",
  369. "reference": "11457e9bbedc182b48c04db3a2621d17b58b0808",
  370. "shasum": ""
  371. },
  372. "require": {
  373. "php": "^7.1",
  374. "symfony/polyfill-mbstring": "^1.3"
  375. },
  376. "conflict": {
  377. "phpmyadmin/motranslator": "<3.0"
  378. },
  379. "require-dev": {
  380. "phpmyadmin/coding-standard": "^1.0",
  381. "phpmyadmin/motranslator": "^4.0 || ^5.0",
  382. "phpstan/extension-installer": "^1.0",
  383. "phpstan/phpstan": "^0.12.3",
  384. "phpstan/phpstan-phpunit": "^0.12.1",
  385. "phpunit/php-code-coverage": "*",
  386. "phpunit/phpunit": "^7.4 || ^8 || ^9"
  387. },
  388. "suggest": {
  389. "ext-mbstring": "For best performance",
  390. "phpmyadmin/motranslator": "Translate messages to your favorite locale"
  391. },
  392. "bin": [
  393. "bin/highlight-query",
  394. "bin/lint-query",
  395. "bin/tokenize-query"
  396. ],
  397. "type": "library",
  398. "autoload": {
  399. "psr-4": {
  400. "PhpMyAdmin\\SqlParser\\": "src"
  401. }
  402. },
  403. "notification-url": "https://packagist.org/downloads/",
  404. "license": [
  405. "GPL-2.0-or-later"
  406. ],
  407. "authors": [
  408. {
  409. "name": "The phpMyAdmin Team",
  410. "email": "developers@phpmyadmin.net",
  411. "homepage": "https://www.phpmyadmin.net/team/"
  412. }
  413. ],
  414. "description": "A validating SQL lexer and parser with a focus on MySQL dialect.",
  415. "homepage": "https://github.com/phpmyadmin/sql-parser",
  416. "keywords": [
  417. "analysis",
  418. "lexer",
  419. "parser",
  420. "sql"
  421. ],
  422. "time": "2020-03-21T00:25:34+00:00"
  423. },
  424. {
  425. "name": "phpmyadmin/twig-i18n-extension",
  426. "version": "v2.0.0",
  427. "source": {
  428. "type": "git",
  429. "url": "https://github.com/phpmyadmin/twig-i18n-extension.git",
  430. "reference": "00250be43cc33e174077614807025e9e9bfc3171"
  431. },
  432. "dist": {
  433. "type": "zip",
  434. "url": "https://api.github.com/repos/phpmyadmin/twig-i18n-extension/zipball/00250be43cc33e174077614807025e9e9bfc3171",
  435. "reference": "00250be43cc33e174077614807025e9e9bfc3171",
  436. "shasum": ""
  437. },
  438. "require": {
  439. "php": ">=5.5.0",
  440. "twig/twig": "^1.42.3|^2.0"
  441. },
  442. "require-dev": {
  443. "symfony/phpunit-bridge": "^4.2|^5.0"
  444. },
  445. "type": "library",
  446. "extra": {
  447. "branch-alias": {
  448. "dev-master": "2.0-dev"
  449. }
  450. },
  451. "autoload": {
  452. "psr-4": {
  453. "PhpMyAdmin\\Twig\\Extensions\\": "src/"
  454. }
  455. },
  456. "notification-url": "https://packagist.org/downloads/",
  457. "license": [
  458. "MIT"
  459. ],
  460. "authors": [
  461. {
  462. "name": "Fabien Potencier",
  463. "email": "fabien@symfony.com"
  464. },
  465. {
  466. "name": "The phpMyAdmin Team",
  467. "email": "developers@phpmyadmin.net",
  468. "homepage": "https://www.phpmyadmin.net/team/"
  469. }
  470. ],
  471. "description": "Internationalization support for Twig via the gettext library",
  472. "keywords": [
  473. "gettext",
  474. "i18n"
  475. ],
  476. "time": "2019-12-19T20:09:42+00:00"
  477. },
  478. {
  479. "name": "phpseclib/phpseclib",
  480. "version": "2.0.25",
  481. "source": {
  482. "type": "git",
  483. "url": "https://github.com/phpseclib/phpseclib.git",
  484. "reference": "c18159618ed7cd7ff721ac1a8fec7860a475d2f0"
  485. },
  486. "dist": {
  487. "type": "zip",
  488. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/c18159618ed7cd7ff721ac1a8fec7860a475d2f0",
  489. "reference": "c18159618ed7cd7ff721ac1a8fec7860a475d2f0",
  490. "shasum": ""
  491. },
  492. "require": {
  493. "php": ">=5.3.3"
  494. },
  495. "require-dev": {
  496. "phing/phing": "~2.7",
  497. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  498. "sami/sami": "~2.0",
  499. "squizlabs/php_codesniffer": "~2.0"
  500. },
  501. "suggest": {
  502. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  503. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  504. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  505. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  506. },
  507. "type": "library",
  508. "autoload": {
  509. "files": [
  510. "phpseclib/bootstrap.php"
  511. ],
  512. "psr-4": {
  513. "phpseclib\\": "phpseclib/"
  514. }
  515. },
  516. "notification-url": "https://packagist.org/downloads/",
  517. "license": [
  518. "MIT"
  519. ],
  520. "authors": [
  521. {
  522. "name": "Jim Wigginton",
  523. "email": "terrafrost@php.net",
  524. "role": "Lead Developer"
  525. },
  526. {
  527. "name": "Patrick Monnerat",
  528. "email": "pm@datasphere.ch",
  529. "role": "Developer"
  530. },
  531. {
  532. "name": "Andreas Fischer",
  533. "email": "bantu@phpbb.com",
  534. "role": "Developer"
  535. },
  536. {
  537. "name": "Hans-Jürgen Petrich",
  538. "email": "petrich@tronic-media.com",
  539. "role": "Developer"
  540. },
  541. {
  542. "name": "Graham Campbell",
  543. "email": "graham@alt-three.com",
  544. "role": "Developer"
  545. }
  546. ],
  547. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  548. "homepage": "http://phpseclib.sourceforge.net",
  549. "keywords": [
  550. "BigInteger",
  551. "aes",
  552. "asn.1",
  553. "asn1",
  554. "blowfish",
  555. "crypto",
  556. "cryptography",
  557. "encryption",
  558. "rsa",
  559. "security",
  560. "sftp",
  561. "signature",
  562. "signing",
  563. "ssh",
  564. "twofish",
  565. "x.509",
  566. "x509"
  567. ],
  568. "time": "2020-02-25T04:16:50+00:00"
  569. },
  570. {
  571. "name": "pragmarx/google2fa",
  572. "version": "v6.0.1",
  573. "source": {
  574. "type": "git",
  575. "url": "https://github.com/antonioribeiro/google2fa.git",
  576. "reference": "8df7d8fe0734c7ddad5fce2251adf4b3e9218643"
  577. },
  578. "dist": {
  579. "type": "zip",
  580. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/8df7d8fe0734c7ddad5fce2251adf4b3e9218643",
  581. "reference": "8df7d8fe0734c7ddad5fce2251adf4b3e9218643",
  582. "shasum": ""
  583. },
  584. "require": {
  585. "paragonie/constant_time_encoding": "~1.0|~2.0",
  586. "paragonie/random_compat": ">=1",
  587. "php": ">=5.4",
  588. "symfony/polyfill-php56": "~1.2"
  589. },
  590. "require-dev": {
  591. "phpunit/phpunit": "~4|~5|~6|~7|~8"
  592. },
  593. "type": "library",
  594. "extra": {
  595. "component": "package",
  596. "branch-alias": {
  597. "dev-master": "2.0-dev"
  598. }
  599. },
  600. "autoload": {
  601. "psr-4": {
  602. "PragmaRX\\Google2FA\\": "src/",
  603. "PragmaRX\\Google2FA\\Tests\\": "tests/"
  604. }
  605. },
  606. "notification-url": "https://packagist.org/downloads/",
  607. "license": [
  608. "MIT"
  609. ],
  610. "authors": [
  611. {
  612. "name": "Antonio Carlos Ribeiro",
  613. "email": "acr@antoniocarlosribeiro.com",
  614. "role": "Creator & Designer"
  615. }
  616. ],
  617. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  618. "keywords": [
  619. "2fa",
  620. "Authentication",
  621. "Two Factor Authentication",
  622. "google2fa"
  623. ],
  624. "time": "2019-09-18T22:34:47+00:00"
  625. },
  626. {
  627. "name": "pragmarx/google2fa-qrcode",
  628. "version": "v1.0.3",
  629. "source": {
  630. "type": "git",
  631. "url": "https://github.com/antonioribeiro/google2fa-qrcode.git",
  632. "reference": "fd5ff0531a48b193a659309cc5fb882c14dbd03f"
  633. },
  634. "dist": {
  635. "type": "zip",
  636. "url": "https://api.github.com/repos/antonioribeiro/google2fa-qrcode/zipball/fd5ff0531a48b193a659309cc5fb882c14dbd03f",
  637. "reference": "fd5ff0531a48b193a659309cc5fb882c14dbd03f",
  638. "shasum": ""
  639. },
  640. "require": {
  641. "bacon/bacon-qr-code": "~1.0|~2.0",
  642. "php": ">=5.4",
  643. "pragmarx/google2fa": ">=4.0"
  644. },
  645. "require-dev": {
  646. "khanamiryan/qrcode-detector-decoder": "^1.0",
  647. "phpunit/phpunit": "~4|~5|~6|~7"
  648. },
  649. "type": "library",
  650. "extra": {
  651. "component": "package",
  652. "branch-alias": {
  653. "dev-master": "1.0-dev"
  654. }
  655. },
  656. "autoload": {
  657. "psr-4": {
  658. "PragmaRX\\Google2FAQRCode\\": "src/",
  659. "PragmaRX\\Google2FAQRCode\\Tests\\": "tests/"
  660. }
  661. },
  662. "notification-url": "https://packagist.org/downloads/",
  663. "license": [
  664. "MIT"
  665. ],
  666. "authors": [
  667. {
  668. "name": "Antonio Carlos Ribeiro",
  669. "email": "acr@antoniocarlosribeiro.com",
  670. "role": "Creator & Designer"
  671. }
  672. ],
  673. "description": "QR Code package for Google2FA",
  674. "keywords": [
  675. "2fa",
  676. "Authentication",
  677. "Two Factor Authentication",
  678. "google2fa",
  679. "qr code",
  680. "qrcode"
  681. ],
  682. "time": "2019-03-20T16:42:58+00:00"
  683. },
  684. {
  685. "name": "psr/cache",
  686. "version": "1.0.1",
  687. "source": {
  688. "type": "git",
  689. "url": "https://github.com/php-fig/cache.git",
  690. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  691. },
  692. "dist": {
  693. "type": "zip",
  694. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  695. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  696. "shasum": ""
  697. },
  698. "require": {
  699. "php": ">=5.3.0"
  700. },
  701. "type": "library",
  702. "extra": {
  703. "branch-alias": {
  704. "dev-master": "1.0.x-dev"
  705. }
  706. },
  707. "autoload": {
  708. "psr-4": {
  709. "Psr\\Cache\\": "src/"
  710. }
  711. },
  712. "notification-url": "https://packagist.org/downloads/",
  713. "license": [
  714. "MIT"
  715. ],
  716. "authors": [
  717. {
  718. "name": "PHP-FIG",
  719. "homepage": "http://www.php-fig.org/"
  720. }
  721. ],
  722. "description": "Common interface for caching libraries",
  723. "keywords": [
  724. "cache",
  725. "psr",
  726. "psr-6"
  727. ],
  728. "time": "2016-08-06T20:24:11+00:00"
  729. },
  730. {
  731. "name": "psr/container",
  732. "version": "1.0.0",
  733. "source": {
  734. "type": "git",
  735. "url": "https://github.com/php-fig/container.git",
  736. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  737. },
  738. "dist": {
  739. "type": "zip",
  740. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  741. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  742. "shasum": ""
  743. },
  744. "require": {
  745. "php": ">=5.3.0"
  746. },
  747. "type": "library",
  748. "extra": {
  749. "branch-alias": {
  750. "dev-master": "1.0.x-dev"
  751. }
  752. },
  753. "autoload": {
  754. "psr-4": {
  755. "Psr\\Container\\": "src/"
  756. }
  757. },
  758. "notification-url": "https://packagist.org/downloads/",
  759. "license": [
  760. "MIT"
  761. ],
  762. "authors": [
  763. {
  764. "name": "PHP-FIG",
  765. "homepage": "http://www.php-fig.org/"
  766. }
  767. ],
  768. "description": "Common Container Interface (PHP FIG PSR-11)",
  769. "homepage": "https://github.com/php-fig/container",
  770. "keywords": [
  771. "PSR-11",
  772. "container",
  773. "container-interface",
  774. "container-interop",
  775. "psr"
  776. ],
  777. "time": "2017-02-14T16:28:37+00:00"
  778. },
  779. {
  780. "name": "psr/log",
  781. "version": "1.1.2",
  782. "source": {
  783. "type": "git",
  784. "url": "https://github.com/php-fig/log.git",
  785. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  786. },
  787. "dist": {
  788. "type": "zip",
  789. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  790. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  791. "shasum": ""
  792. },
  793. "require": {
  794. "php": ">=5.3.0"
  795. },
  796. "type": "library",
  797. "extra": {
  798. "branch-alias": {
  799. "dev-master": "1.1.x-dev"
  800. }
  801. },
  802. "autoload": {
  803. "psr-4": {
  804. "Psr\\Log\\": "Psr/Log/"
  805. }
  806. },
  807. "notification-url": "https://packagist.org/downloads/",
  808. "license": [
  809. "MIT"
  810. ],
  811. "authors": [
  812. {
  813. "name": "PHP-FIG",
  814. "homepage": "http://www.php-fig.org/"
  815. }
  816. ],
  817. "description": "Common interface for logging libraries",
  818. "homepage": "https://github.com/php-fig/log",
  819. "keywords": [
  820. "log",
  821. "psr",
  822. "psr-3"
  823. ],
  824. "time": "2019-11-01T11:05:21+00:00"
  825. },
  826. {
  827. "name": "samyoul/u2f-php-server",
  828. "version": "v1.1.4",
  829. "source": {
  830. "type": "git",
  831. "url": "https://github.com/Samyoul/U2F-php-server.git",
  832. "reference": "0625202c79d570e58525ed6c4ae38500ea3f0883"
  833. },
  834. "dist": {
  835. "type": "zip",
  836. "url": "https://api.github.com/repos/Samyoul/U2F-php-server/zipball/0625202c79d570e58525ed6c4ae38500ea3f0883",
  837. "reference": "0625202c79d570e58525ed6c4ae38500ea3f0883",
  838. "shasum": ""
  839. },
  840. "require": {
  841. "ext-openssl": "*"
  842. },
  843. "type": "library",
  844. "autoload": {
  845. "psr-4": {
  846. "Samyoul\\U2F\\U2FServer\\": [
  847. "src/"
  848. ]
  849. }
  850. },
  851. "notification-url": "https://packagist.org/downloads/",
  852. "license": [
  853. "BSD-2-Clause"
  854. ],
  855. "authors": [
  856. {
  857. "name": "Samuel Hawksby-Robinson",
  858. "email": "samuel@samyoul.com"
  859. }
  860. ],
  861. "description": "Server side handling class for FIDO U2F registration and authentication",
  862. "time": "2018-10-26T12:43:39+00:00"
  863. },
  864. {
  865. "name": "symfony/cache",
  866. "version": "v4.4.5",
  867. "source": {
  868. "type": "git",
  869. "url": "https://github.com/symfony/cache.git",
  870. "reference": "28511cbd8c760a19f4b4b70961d2cd957733b3d9"
  871. },
  872. "dist": {
  873. "type": "zip",
  874. "url": "https://api.github.com/repos/symfony/cache/zipball/28511cbd8c760a19f4b4b70961d2cd957733b3d9",
  875. "reference": "28511cbd8c760a19f4b4b70961d2cd957733b3d9",
  876. "shasum": ""
  877. },
  878. "require": {
  879. "php": "^7.1.3",
  880. "psr/cache": "~1.0",
  881. "psr/log": "~1.0",
  882. "symfony/cache-contracts": "^1.1.7|^2",
  883. "symfony/service-contracts": "^1.1|^2",
  884. "symfony/var-exporter": "^4.2|^5.0"
  885. },
  886. "conflict": {
  887. "doctrine/dbal": "<2.5",
  888. "symfony/dependency-injection": "<3.4",
  889. "symfony/http-kernel": "<4.4",
  890. "symfony/var-dumper": "<4.4"
  891. },
  892. "provide": {
  893. "psr/cache-implementation": "1.0",
  894. "psr/simple-cache-implementation": "1.0",
  895. "symfony/cache-implementation": "1.0"
  896. },
  897. "require-dev": {
  898. "cache/integration-tests": "dev-master",
  899. "doctrine/cache": "~1.6",
  900. "doctrine/dbal": "~2.5",
  901. "predis/predis": "~1.1",
  902. "psr/simple-cache": "^1.0",
  903. "symfony/config": "^4.2|^5.0",
  904. "symfony/dependency-injection": "^3.4|^4.1|^5.0",
  905. "symfony/var-dumper": "^4.4|^5.0"
  906. },
  907. "type": "library",
  908. "extra": {
  909. "branch-alias": {
  910. "dev-master": "4.4-dev"
  911. }
  912. },
  913. "autoload": {
  914. "psr-4": {
  915. "Symfony\\Component\\Cache\\": ""
  916. },
  917. "exclude-from-classmap": [
  918. "/Tests/"
  919. ]
  920. },
  921. "notification-url": "https://packagist.org/downloads/",
  922. "license": [
  923. "MIT"
  924. ],
  925. "authors": [
  926. {
  927. "name": "Nicolas Grekas",
  928. "email": "p@tchwork.com"
  929. },
  930. {
  931. "name": "Symfony Community",
  932. "homepage": "https://symfony.com/contributors"
  933. }
  934. ],
  935. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  936. "homepage": "https://symfony.com",
  937. "keywords": [
  938. "caching",
  939. "psr6"
  940. ],
  941. "time": "2020-02-20T16:31:44+00:00"
  942. },
  943. {
  944. "name": "symfony/cache-contracts",
  945. "version": "v1.1.7",
  946. "source": {
  947. "type": "git",
  948. "url": "https://github.com/symfony/cache-contracts.git",
  949. "reference": "af50d14ada9e4e82cfabfabdc502d144f89be0a1"
  950. },
  951. "dist": {
  952. "type": "zip",
  953. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/af50d14ada9e4e82cfabfabdc502d144f89be0a1",
  954. "reference": "af50d14ada9e4e82cfabfabdc502d144f89be0a1",
  955. "shasum": ""
  956. },
  957. "require": {
  958. "php": "^7.1.3",
  959. "psr/cache": "^1.0"
  960. },
  961. "suggest": {
  962. "symfony/cache-implementation": ""
  963. },
  964. "type": "library",
  965. "extra": {
  966. "branch-alias": {
  967. "dev-master": "1.1-dev"
  968. }
  969. },
  970. "autoload": {
  971. "psr-4": {
  972. "Symfony\\Contracts\\Cache\\": ""
  973. }
  974. },
  975. "notification-url": "https://packagist.org/downloads/",
  976. "license": [
  977. "MIT"
  978. ],
  979. "authors": [
  980. {
  981. "name": "Nicolas Grekas",
  982. "email": "p@tchwork.com"
  983. },
  984. {
  985. "name": "Symfony Community",
  986. "homepage": "https://symfony.com/contributors"
  987. }
  988. ],
  989. "description": "Generic abstractions related to caching",
  990. "homepage": "https://symfony.com",
  991. "keywords": [
  992. "abstractions",
  993. "contracts",
  994. "decoupling",
  995. "interfaces",
  996. "interoperability",
  997. "standards"
  998. ],
  999. "time": "2019-10-04T21:43:27+00:00"
  1000. },
  1001. {
  1002. "name": "symfony/config",
  1003. "version": "v4.4.5",
  1004. "source": {
  1005. "type": "git",
  1006. "url": "https://github.com/symfony/config.git",
  1007. "reference": "cbfef5ae91ccd3b06621c18d58cd355c68c87ae9"
  1008. },
  1009. "dist": {
  1010. "type": "zip",
  1011. "url": "https://api.github.com/repos/symfony/config/zipball/cbfef5ae91ccd3b06621c18d58cd355c68c87ae9",
  1012. "reference": "cbfef5ae91ccd3b06621c18d58cd355c68c87ae9",
  1013. "shasum": ""
  1014. },
  1015. "require": {
  1016. "php": "^7.1.3",
  1017. "symfony/filesystem": "^3.4|^4.0|^5.0",
  1018. "symfony/polyfill-ctype": "~1.8"
  1019. },
  1020. "conflict": {
  1021. "symfony/finder": "<3.4"
  1022. },
  1023. "require-dev": {
  1024. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  1025. "symfony/finder": "^3.4|^4.0|^5.0",
  1026. "symfony/messenger": "^4.1|^5.0",
  1027. "symfony/service-contracts": "^1.1|^2",
  1028. "symfony/yaml": "^3.4|^4.0|^5.0"
  1029. },
  1030. "suggest": {
  1031. "symfony/yaml": "To use the yaml reference dumper"
  1032. },
  1033. "type": "library",
  1034. "extra": {
  1035. "branch-alias": {
  1036. "dev-master": "4.4-dev"
  1037. }
  1038. },
  1039. "autoload": {
  1040. "psr-4": {
  1041. "Symfony\\Component\\Config\\": ""
  1042. },
  1043. "exclude-from-classmap": [
  1044. "/Tests/"
  1045. ]
  1046. },
  1047. "notification-url": "https://packagist.org/downloads/",
  1048. "license": [
  1049. "MIT"
  1050. ],
  1051. "authors": [
  1052. {
  1053. "name": "Fabien Potencier",
  1054. "email": "fabien@symfony.com"
  1055. },
  1056. {
  1057. "name": "Symfony Community",
  1058. "homepage": "https://symfony.com/contributors"
  1059. }
  1060. ],
  1061. "description": "Symfony Config Component",
  1062. "homepage": "https://symfony.com",
  1063. "time": "2020-02-04T09:32:40+00:00"
  1064. },
  1065. {
  1066. "name": "symfony/dependency-injection",
  1067. "version": "v4.4.5",
  1068. "source": {
  1069. "type": "git",
  1070. "url": "https://github.com/symfony/dependency-injection.git",
  1071. "reference": "ebb2e882e8c9e2eb990aa61ddcd389848466e342"
  1072. },
  1073. "dist": {
  1074. "type": "zip",
  1075. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/ebb2e882e8c9e2eb990aa61ddcd389848466e342",
  1076. "reference": "ebb2e882e8c9e2eb990aa61ddcd389848466e342",
  1077. "shasum": ""
  1078. },
  1079. "require": {
  1080. "php": "^7.1.3",
  1081. "psr/container": "^1.0",
  1082. "symfony/service-contracts": "^1.1.6|^2"
  1083. },
  1084. "conflict": {
  1085. "symfony/config": "<4.3|>=5.0",
  1086. "symfony/finder": "<3.4",
  1087. "symfony/proxy-manager-bridge": "<3.4",
  1088. "symfony/yaml": "<3.4"
  1089. },
  1090. "provide": {
  1091. "psr/container-implementation": "1.0",
  1092. "symfony/service-implementation": "1.0"
  1093. },
  1094. "require-dev": {
  1095. "symfony/config": "^4.3",
  1096. "symfony/expression-language": "^3.4|^4.0|^5.0",
  1097. "symfony/yaml": "^3.4|^4.0|^5.0"
  1098. },
  1099. "suggest": {
  1100. "symfony/config": "",
  1101. "symfony/expression-language": "For using expressions in service container configuration",
  1102. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  1103. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  1104. "symfony/yaml": ""
  1105. },
  1106. "type": "library",
  1107. "extra": {
  1108. "branch-alias": {
  1109. "dev-master": "4.4-dev"
  1110. }
  1111. },
  1112. "autoload": {
  1113. "psr-4": {
  1114. "Symfony\\Component\\DependencyInjection\\": ""
  1115. },
  1116. "exclude-from-classmap": [
  1117. "/Tests/"
  1118. ]
  1119. },
  1120. "notification-url": "https://packagist.org/downloads/",
  1121. "license": [
  1122. "MIT"
  1123. ],
  1124. "authors": [
  1125. {
  1126. "name": "Fabien Potencier",
  1127. "email": "fabien@symfony.com"
  1128. },
  1129. {
  1130. "name": "Symfony Community",
  1131. "homepage": "https://symfony.com/contributors"
  1132. }
  1133. ],
  1134. "description": "Symfony DependencyInjection Component",
  1135. "homepage": "https://symfony.com",
  1136. "time": "2020-02-29T09:50:10+00:00"
  1137. },
  1138. {
  1139. "name": "symfony/expression-language",
  1140. "version": "v4.4.5",
  1141. "source": {
  1142. "type": "git",
  1143. "url": "https://github.com/symfony/expression-language.git",
  1144. "reference": "70649e0abcac6ad1109f6243886bca0445e278b9"
  1145. },
  1146. "dist": {
  1147. "type": "zip",
  1148. "url": "https://api.github.com/repos/symfony/expression-language/zipball/70649e0abcac6ad1109f6243886bca0445e278b9",
  1149. "reference": "70649e0abcac6ad1109f6243886bca0445e278b9",
  1150. "shasum": ""
  1151. },
  1152. "require": {
  1153. "php": "^7.1.3",
  1154. "symfony/cache": "^3.4|^4.0|^5.0",
  1155. "symfony/service-contracts": "^1.1|^2"
  1156. },
  1157. "type": "library",
  1158. "extra": {
  1159. "branch-alias": {
  1160. "dev-master": "4.4-dev"
  1161. }
  1162. },
  1163. "autoload": {
  1164. "psr-4": {
  1165. "Symfony\\Component\\ExpressionLanguage\\": ""
  1166. },
  1167. "exclude-from-classmap": [
  1168. "/Tests/"
  1169. ]
  1170. },
  1171. "notification-url": "https://packagist.org/downloads/",
  1172. "license": [
  1173. "MIT"
  1174. ],
  1175. "authors": [
  1176. {
  1177. "name": "Fabien Potencier",
  1178. "email": "fabien@symfony.com"
  1179. },
  1180. {
  1181. "name": "Symfony Community",
  1182. "homepage": "https://symfony.com/contributors"
  1183. }
  1184. ],
  1185. "description": "Symfony ExpressionLanguage Component",
  1186. "homepage": "https://symfony.com",
  1187. "time": "2020-02-24T13:10:00+00:00"
  1188. },
  1189. {
  1190. "name": "symfony/filesystem",
  1191. "version": "v4.4.5",
  1192. "source": {
  1193. "type": "git",
  1194. "url": "https://github.com/symfony/filesystem.git",
  1195. "reference": "266c9540b475f26122b61ef8b23dd9198f5d1cfd"
  1196. },
  1197. "dist": {
  1198. "type": "zip",
  1199. "url": "https://api.github.com/repos/symfony/filesystem/zipball/266c9540b475f26122b61ef8b23dd9198f5d1cfd",
  1200. "reference": "266c9540b475f26122b61ef8b23dd9198f5d1cfd",
  1201. "shasum": ""
  1202. },
  1203. "require": {
  1204. "php": "^7.1.3",
  1205. "symfony/polyfill-ctype": "~1.8"
  1206. },
  1207. "type": "library",
  1208. "extra": {
  1209. "branch-alias": {
  1210. "dev-master": "4.4-dev"
  1211. }
  1212. },
  1213. "autoload": {
  1214. "psr-4": {
  1215. "Symfony\\Component\\Filesystem\\": ""
  1216. },
  1217. "exclude-from-classmap": [
  1218. "/Tests/"
  1219. ]
  1220. },
  1221. "notification-url": "https://packagist.org/downloads/",
  1222. "license": [
  1223. "MIT"
  1224. ],
  1225. "authors": [
  1226. {
  1227. "name": "Fabien Potencier",
  1228. "email": "fabien@symfony.com"
  1229. },
  1230. {
  1231. "name": "Symfony Community",
  1232. "homepage": "https://symfony.com/contributors"
  1233. }
  1234. ],
  1235. "description": "Symfony Filesystem Component",
  1236. "homepage": "https://symfony.com",
  1237. "time": "2020-01-21T08:20:44+00:00"
  1238. },
  1239. {
  1240. "name": "symfony/polyfill-ctype",
  1241. "version": "v1.14.0",
  1242. "source": {
  1243. "type": "git",
  1244. "url": "https://github.com/symfony/polyfill-ctype.git",
  1245. "reference": "fbdeaec0df06cf3d51c93de80c7eb76e271f5a38"
  1246. },
  1247. "dist": {
  1248. "type": "zip",
  1249. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/fbdeaec0df06cf3d51c93de80c7eb76e271f5a38",
  1250. "reference": "fbdeaec0df06cf3d51c93de80c7eb76e271f5a38",
  1251. "shasum": ""
  1252. },
  1253. "require": {
  1254. "php": ">=5.3.3"
  1255. },
  1256. "suggest": {
  1257. "ext-ctype": "For best performance"
  1258. },
  1259. "type": "library",
  1260. "extra": {
  1261. "branch-alias": {
  1262. "dev-master": "1.14-dev"
  1263. }
  1264. },
  1265. "autoload": {
  1266. "psr-4": {
  1267. "Symfony\\Polyfill\\Ctype\\": ""
  1268. },
  1269. "files": [
  1270. "bootstrap.php"
  1271. ]
  1272. },
  1273. "notification-url": "https://packagist.org/downloads/",
  1274. "license": [
  1275. "MIT"
  1276. ],
  1277. "authors": [
  1278. {
  1279. "name": "Gert de Pagter",
  1280. "email": "BackEndTea@gmail.com"
  1281. },
  1282. {
  1283. "name": "Symfony Community",
  1284. "homepage": "https://symfony.com/contributors"
  1285. }
  1286. ],
  1287. "description": "Symfony polyfill for ctype functions",
  1288. "homepage": "https://symfony.com",
  1289. "keywords": [
  1290. "compatibility",
  1291. "ctype",
  1292. "polyfill",
  1293. "portable"
  1294. ],
  1295. "time": "2020-01-13T11:15:53+00:00"
  1296. },
  1297. {
  1298. "name": "symfony/polyfill-mbstring",
  1299. "version": "v1.14.0",
  1300. "source": {
  1301. "type": "git",
  1302. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1303. "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2"
  1304. },
  1305. "dist": {
  1306. "type": "zip",
  1307. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/34094cfa9abe1f0f14f48f490772db7a775559f2",
  1308. "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2",
  1309. "shasum": ""
  1310. },
  1311. "require": {
  1312. "php": ">=5.3.3"
  1313. },
  1314. "suggest": {
  1315. "ext-mbstring": "For best performance"
  1316. },
  1317. "type": "library",
  1318. "extra": {
  1319. "branch-alias": {
  1320. "dev-master": "1.14-dev"
  1321. }
  1322. },
  1323. "autoload": {
  1324. "psr-4": {
  1325. "Symfony\\Polyfill\\Mbstring\\": ""
  1326. },
  1327. "files": [
  1328. "bootstrap.php"
  1329. ]
  1330. },
  1331. "notification-url": "https://packagist.org/downloads/",
  1332. "license": [
  1333. "MIT"
  1334. ],
  1335. "authors": [
  1336. {
  1337. "name": "Nicolas Grekas",
  1338. "email": "p@tchwork.com"
  1339. },
  1340. {
  1341. "name": "Symfony Community",
  1342. "homepage": "https://symfony.com/contributors"
  1343. }
  1344. ],
  1345. "description": "Symfony polyfill for the Mbstring extension",
  1346. "homepage": "https://symfony.com",
  1347. "keywords": [
  1348. "compatibility",
  1349. "mbstring",
  1350. "polyfill",
  1351. "portable",
  1352. "shim"
  1353. ],
  1354. "time": "2020-01-13T11:15:53+00:00"
  1355. },
  1356. {
  1357. "name": "symfony/polyfill-php56",
  1358. "version": "v1.14.0",
  1359. "source": {
  1360. "type": "git",
  1361. "url": "https://github.com/symfony/polyfill-php56.git",
  1362. "reference": "16ec91cb06998b609501b55b7177b7d7c02badb3"
  1363. },
  1364. "dist": {
  1365. "type": "zip",
  1366. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/16ec91cb06998b609501b55b7177b7d7c02badb3",
  1367. "reference": "16ec91cb06998b609501b55b7177b7d7c02badb3",
  1368. "shasum": ""
  1369. },
  1370. "require": {
  1371. "php": ">=5.3.3",
  1372. "symfony/polyfill-util": "~1.0"
  1373. },
  1374. "type": "library",
  1375. "extra": {
  1376. "branch-alias": {
  1377. "dev-master": "1.14-dev"
  1378. }
  1379. },
  1380. "autoload": {
  1381. "psr-4": {
  1382. "Symfony\\Polyfill\\Php56\\": ""
  1383. },
  1384. "files": [
  1385. "bootstrap.php"
  1386. ]
  1387. },
  1388. "notification-url": "https://packagist.org/downloads/",
  1389. "license": [
  1390. "MIT"
  1391. ],
  1392. "authors": [
  1393. {
  1394. "name": "Nicolas Grekas",
  1395. "email": "p@tchwork.com"
  1396. },
  1397. {
  1398. "name": "Symfony Community",
  1399. "homepage": "https://symfony.com/contributors"
  1400. }
  1401. ],
  1402. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  1403. "homepage": "https://symfony.com",
  1404. "keywords": [
  1405. "compatibility",
  1406. "polyfill",
  1407. "portable",
  1408. "shim"
  1409. ],
  1410. "time": "2020-01-13T11:15:53+00:00"
  1411. },
  1412. {
  1413. "name": "symfony/polyfill-util",
  1414. "version": "v1.14.0",
  1415. "source": {
  1416. "type": "git",
  1417. "url": "https://github.com/symfony/polyfill-util.git",
  1418. "reference": "ba3cfcea6d0192cae46c62041f61cbb704b526d3"
  1419. },
  1420. "dist": {
  1421. "type": "zip",
  1422. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/ba3cfcea6d0192cae46c62041f61cbb704b526d3",
  1423. "reference": "ba3cfcea6d0192cae46c62041f61cbb704b526d3",
  1424. "shasum": ""
  1425. },
  1426. "require": {
  1427. "php": ">=5.3.3"
  1428. },
  1429. "type": "library",
  1430. "extra": {
  1431. "branch-alias": {
  1432. "dev-master": "1.14-dev"
  1433. }
  1434. },
  1435. "autoload": {
  1436. "psr-4": {
  1437. "Symfony\\Polyfill\\Util\\": ""
  1438. }
  1439. },
  1440. "notification-url": "https://packagist.org/downloads/",
  1441. "license": [
  1442. "MIT"
  1443. ],
  1444. "authors": [
  1445. {
  1446. "name": "Nicolas Grekas",
  1447. "email": "p@tchwork.com"
  1448. },
  1449. {
  1450. "name": "Symfony Community",
  1451. "homepage": "https://symfony.com/contributors"
  1452. }
  1453. ],
  1454. "description": "Symfony utilities for portability of PHP codes",
  1455. "homepage": "https://symfony.com",
  1456. "keywords": [
  1457. "compat",
  1458. "compatibility",
  1459. "polyfill",
  1460. "shim"
  1461. ],
  1462. "time": "2020-01-13T11:15:53+00:00"
  1463. },
  1464. {
  1465. "name": "symfony/service-contracts",
  1466. "version": "v1.1.8",
  1467. "source": {
  1468. "type": "git",
  1469. "url": "https://github.com/symfony/service-contracts.git",
  1470. "reference": "ffc7f5692092df31515df2a5ecf3b7302b3ddacf"
  1471. },
  1472. "dist": {
  1473. "type": "zip",
  1474. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/ffc7f5692092df31515df2a5ecf3b7302b3ddacf",
  1475. "reference": "ffc7f5692092df31515df2a5ecf3b7302b3ddacf",
  1476. "shasum": ""
  1477. },
  1478. "require": {
  1479. "php": "^7.1.3",
  1480. "psr/container": "^1.0"
  1481. },
  1482. "suggest": {
  1483. "symfony/service-implementation": ""
  1484. },
  1485. "type": "library",
  1486. "extra": {
  1487. "branch-alias": {
  1488. "dev-master": "1.1-dev"
  1489. }
  1490. },
  1491. "autoload": {
  1492. "psr-4": {
  1493. "Symfony\\Contracts\\Service\\": ""
  1494. }
  1495. },
  1496. "notification-url": "https://packagist.org/downloads/",
  1497. "license": [
  1498. "MIT"
  1499. ],
  1500. "authors": [
  1501. {
  1502. "name": "Nicolas Grekas",
  1503. "email": "p@tchwork.com"
  1504. },
  1505. {
  1506. "name": "Symfony Community",
  1507. "homepage": "https://symfony.com/contributors"
  1508. }
  1509. ],
  1510. "description": "Generic abstractions related to writing services",
  1511. "homepage": "https://symfony.com",
  1512. "keywords": [
  1513. "abstractions",
  1514. "contracts",
  1515. "decoupling",
  1516. "interfaces",
  1517. "interoperability",
  1518. "standards"
  1519. ],
  1520. "time": "2019-10-14T12:27:06+00:00"
  1521. },
  1522. {
  1523. "name": "symfony/var-exporter",
  1524. "version": "v4.4.5",
  1525. "source": {
  1526. "type": "git",
  1527. "url": "https://github.com/symfony/var-exporter.git",
  1528. "reference": "1a76a943f2af334da13bc9f33f49392fa530eec9"
  1529. },
  1530. "dist": {
  1531. "type": "zip",
  1532. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/1a76a943f2af334da13bc9f33f49392fa530eec9",
  1533. "reference": "1a76a943f2af334da13bc9f33f49392fa530eec9",
  1534. "shasum": ""
  1535. },
  1536. "require": {
  1537. "php": "^7.1.3"
  1538. },
  1539. "require-dev": {
  1540. "symfony/var-dumper": "^4.1.1|^5.0"
  1541. },
  1542. "type": "library",
  1543. "extra": {
  1544. "branch-alias": {
  1545. "dev-master": "4.4-dev"
  1546. }
  1547. },
  1548. "autoload": {
  1549. "psr-4": {
  1550. "Symfony\\Component\\VarExporter\\": ""
  1551. },
  1552. "exclude-from-classmap": [
  1553. "/Tests/"
  1554. ]
  1555. },
  1556. "notification-url": "https://packagist.org/downloads/",
  1557. "license": [
  1558. "MIT"
  1559. ],
  1560. "authors": [
  1561. {
  1562. "name": "Nicolas Grekas",
  1563. "email": "p@tchwork.com"
  1564. },
  1565. {
  1566. "name": "Symfony Community",
  1567. "homepage": "https://symfony.com/contributors"
  1568. }
  1569. ],
  1570. "description": "A blend of var_export() + serialize() to turn any serializable data structure to plain PHP code",
  1571. "homepage": "https://symfony.com",
  1572. "keywords": [
  1573. "clone",
  1574. "construct",
  1575. "export",
  1576. "hydrate",
  1577. "instantiate",
  1578. "serialize"
  1579. ],
  1580. "time": "2020-01-04T13:00:46+00:00"
  1581. },
  1582. {
  1583. "name": "symfony/yaml",
  1584. "version": "v4.4.5",
  1585. "source": {
  1586. "type": "git",
  1587. "url": "https://github.com/symfony/yaml.git",
  1588. "reference": "94d005c176db2080e98825d98e01e8b311a97a88"
  1589. },
  1590. "dist": {
  1591. "type": "zip",
  1592. "url": "https://api.github.com/repos/symfony/yaml/zipball/94d005c176db2080e98825d98e01e8b311a97a88",
  1593. "reference": "94d005c176db2080e98825d98e01e8b311a97a88",
  1594. "shasum": ""
  1595. },
  1596. "require": {
  1597. "php": "^7.1.3",
  1598. "symfony/polyfill-ctype": "~1.8"
  1599. },
  1600. "conflict": {
  1601. "symfony/console": "<3.4"
  1602. },
  1603. "require-dev": {
  1604. "symfony/console": "^3.4|^4.0|^5.0"
  1605. },
  1606. "suggest": {
  1607. "symfony/console": "For validating YAML files using the lint command"
  1608. },
  1609. "type": "library",
  1610. "extra": {
  1611. "branch-alias": {
  1612. "dev-master": "4.4-dev"
  1613. }
  1614. },
  1615. "autoload": {
  1616. "psr-4": {
  1617. "Symfony\\Component\\Yaml\\": ""
  1618. },
  1619. "exclude-from-classmap": [
  1620. "/Tests/"
  1621. ]
  1622. },
  1623. "notification-url": "https://packagist.org/downloads/",
  1624. "license": [
  1625. "MIT"
  1626. ],
  1627. "authors": [
  1628. {
  1629. "name": "Fabien Potencier",
  1630. "email": "fabien@symfony.com"
  1631. },
  1632. {
  1633. "name": "Symfony Community",
  1634. "homepage": "https://symfony.com/contributors"
  1635. }
  1636. ],
  1637. "description": "Symfony Yaml Component",
  1638. "homepage": "https://symfony.com",
  1639. "time": "2020-02-03T10:46:43+00:00"
  1640. },
  1641. {
  1642. "name": "tecnickcom/tcpdf",
  1643. "version": "6.3.5",
  1644. "source": {
  1645. "type": "git",
  1646. "url": "https://github.com/tecnickcom/TCPDF.git",
  1647. "reference": "19a535eaa7fb1c1cac499109deeb1a7a201b4549"
  1648. },
  1649. "dist": {
  1650. "type": "zip",
  1651. "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/19a535eaa7fb1c1cac499109deeb1a7a201b4549",
  1652. "reference": "19a535eaa7fb1c1cac499109deeb1a7a201b4549",
  1653. "shasum": ""
  1654. },
  1655. "require": {
  1656. "php": ">=5.3.0"
  1657. },
  1658. "type": "library",
  1659. "autoload": {
  1660. "classmap": [
  1661. "config",
  1662. "include",
  1663. "tcpdf.php",
  1664. "tcpdf_parser.php",
  1665. "tcpdf_import.php",
  1666. "tcpdf_barcodes_1d.php",
  1667. "tcpdf_barcodes_2d.php",
  1668. "include/tcpdf_colors.php",
  1669. "include/tcpdf_filters.php",
  1670. "include/tcpdf_font_data.php",
  1671. "include/tcpdf_fonts.php",
  1672. "include/tcpdf_images.php",
  1673. "include/tcpdf_static.php",
  1674. "include/barcodes/datamatrix.php",
  1675. "include/barcodes/pdf417.php",
  1676. "include/barcodes/qrcode.php"
  1677. ]
  1678. },
  1679. "notification-url": "https://packagist.org/downloads/",
  1680. "license": [
  1681. "LGPL-3.0-only"
  1682. ],
  1683. "authors": [
  1684. {
  1685. "name": "Nicola Asuni",
  1686. "email": "info@tecnick.com",
  1687. "role": "lead"
  1688. }
  1689. ],
  1690. "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
  1691. "homepage": "http://www.tcpdf.org/",
  1692. "keywords": [
  1693. "PDFD32000-2008",
  1694. "TCPDF",
  1695. "barcodes",
  1696. "datamatrix",
  1697. "pdf",
  1698. "pdf417",
  1699. "qrcode"
  1700. ],
  1701. "time": "2020-02-14T14:20:12+00:00"
  1702. },
  1703. {
  1704. "name": "twig/twig",
  1705. "version": "v2.12.5",
  1706. "source": {
  1707. "type": "git",
  1708. "url": "https://github.com/twigphp/Twig.git",
  1709. "reference": "18772e0190734944277ee97a02a9a6c6555fcd94"
  1710. },
  1711. "dist": {
  1712. "type": "zip",
  1713. "url": "https://api.github.com/repos/twigphp/Twig/zipball/18772e0190734944277ee97a02a9a6c6555fcd94",
  1714. "reference": "18772e0190734944277ee97a02a9a6c6555fcd94",
  1715. "shasum": ""
  1716. },
  1717. "require": {
  1718. "php": "^7.0",
  1719. "symfony/polyfill-ctype": "^1.8",
  1720. "symfony/polyfill-mbstring": "^1.3"
  1721. },
  1722. "require-dev": {
  1723. "psr/container": "^1.0",
  1724. "symfony/phpunit-bridge": "^4.4|^5.0"
  1725. },
  1726. "type": "library",
  1727. "extra": {
  1728. "branch-alias": {
  1729. "dev-master": "2.12-dev"
  1730. }
  1731. },
  1732. "autoload": {
  1733. "psr-0": {
  1734. "Twig_": "lib/"
  1735. },
  1736. "psr-4": {
  1737. "Twig\\": "src/"
  1738. }
  1739. },
  1740. "notification-url": "https://packagist.org/downloads/",
  1741. "license": [
  1742. "BSD-3-Clause"
  1743. ],
  1744. "authors": [
  1745. {
  1746. "name": "Fabien Potencier",
  1747. "email": "fabien@symfony.com",
  1748. "homepage": "http://fabien.potencier.org",
  1749. "role": "Lead Developer"
  1750. },
  1751. {
  1752. "name": "Twig Team",
  1753. "role": "Contributors"
  1754. },
  1755. {
  1756. "name": "Armin Ronacher",
  1757. "email": "armin.ronacher@active-4.com",
  1758. "role": "Project Founder"
  1759. }
  1760. ],
  1761. "description": "Twig, the flexible, fast, and secure template language for PHP",
  1762. "homepage": "https://twig.symfony.com",
  1763. "keywords": [
  1764. "templating"
  1765. ],
  1766. "time": "2020-02-11T15:31:23+00:00"
  1767. },
  1768. {
  1769. "name": "williamdes/mariadb-mysql-kbs",
  1770. "version": "1.2.10",
  1771. "source": {
  1772. "type": "git",
  1773. "url": "https://github.com/williamdes/mariadb-mysql-kbs.git",
  1774. "reference": "152fa144bd5f9fbdd3b5e764a506e239a730df83"
  1775. },
  1776. "dist": {
  1777. "type": "zip",
  1778. "url": "https://api.github.com/repos/williamdes/mariadb-mysql-kbs/zipball/152fa144bd5f9fbdd3b5e764a506e239a730df83",
  1779. "reference": "152fa144bd5f9fbdd3b5e764a506e239a730df83",
  1780. "shasum": ""
  1781. },
  1782. "require": {
  1783. "php": "^7.1"
  1784. },
  1785. "require-dev": {
  1786. "phpstan/phpstan": "^0.12",
  1787. "phpunit/phpunit": "^7 || ^8",
  1788. "slevomat/coding-standard": "^6.0",
  1789. "squizlabs/php_codesniffer": "^3.3",
  1790. "swaggest/json-schema": "^0.12.9"
  1791. },
  1792. "type": "library",
  1793. "autoload": {
  1794. "psr-4": {
  1795. "Williamdes\\MariaDBMySQLKBS\\": "src/"
  1796. }
  1797. },
  1798. "notification-url": "https://packagist.org/downloads/",
  1799. "license": [
  1800. "MPL-2.0"
  1801. ],
  1802. "authors": [
  1803. {
  1804. "name": "William Desportes",
  1805. "email": "williamdes@wdes.fr"
  1806. }
  1807. ],
  1808. "description": "An index of the MariaDB and MySQL Knowledge bases",
  1809. "homepage": "https://github.com/williamdes/mariadb-mysql-kbs",
  1810. "keywords": [
  1811. "composer-package",
  1812. "dataset",
  1813. "json",
  1814. "kb",
  1815. "knowledge-base",
  1816. "library",
  1817. "mariadb",
  1818. "mariadb-knowledge-bases",
  1819. "mysql",
  1820. "mysql-knowledge-bases",
  1821. "npm-package"
  1822. ],
  1823. "time": "2020-02-26T21:10:49+00:00"
  1824. }
  1825. ],
  1826. "packages-dev": [
  1827. {
  1828. "name": "codacy/coverage",
  1829. "version": "1.4.3",
  1830. "source": {
  1831. "type": "git",
  1832. "url": "https://github.com/codacy/php-codacy-coverage.git",
  1833. "reference": "1852ca987c91ef466ebcfdbdd4e1788b653eaf1d"
  1834. },
  1835. "dist": {
  1836. "type": "zip",
  1837. "url": "https://api.github.com/repos/codacy/php-codacy-coverage/zipball/1852ca987c91ef466ebcfdbdd4e1788b653eaf1d",
  1838. "reference": "1852ca987c91ef466ebcfdbdd4e1788b653eaf1d",
  1839. "shasum": ""
  1840. },
  1841. "require": {
  1842. "gitonomy/gitlib": ">=1.0",
  1843. "php": ">=5.3.3",
  1844. "symfony/console": "~2.5|~3.0|~4.0|~5.0"
  1845. },
  1846. "require-dev": {
  1847. "clue/phar-composer": "^1.1",
  1848. "phpunit/phpunit": "~6.5"
  1849. },
  1850. "bin": [
  1851. "bin/codacycoverage"
  1852. ],
  1853. "type": "library",
  1854. "autoload": {
  1855. "classmap": [
  1856. "src/"
  1857. ]
  1858. },
  1859. "notification-url": "https://packagist.org/downloads/",
  1860. "license": [
  1861. "MIT"
  1862. ],
  1863. "authors": [
  1864. {
  1865. "name": "Jakob Pupke",
  1866. "email": "jakob.pupke@gmail.com"
  1867. }
  1868. ],
  1869. "description": "Sends PHP test coverage information to Codacy.",
  1870. "homepage": "https://github.com/codacy/php-codacy-coverage",
  1871. "abandoned": true,
  1872. "time": "2020-01-10T10:52:12+00:00"
  1873. },
  1874. {
  1875. "name": "composer/xdebug-handler",
  1876. "version": "1.4.1",
  1877. "source": {
  1878. "type": "git",
  1879. "url": "https://github.com/composer/xdebug-handler.git",
  1880. "reference": "1ab9842d69e64fb3a01be6b656501032d1b78cb7"
  1881. },
  1882. "dist": {
  1883. "type": "zip",
  1884. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/1ab9842d69e64fb3a01be6b656501032d1b78cb7",
  1885. "reference": "1ab9842d69e64fb3a01be6b656501032d1b78cb7",
  1886. "shasum": ""
  1887. },
  1888. "require": {
  1889. "php": "^5.3.2 || ^7.0 || ^8.0",
  1890. "psr/log": "^1.0"
  1891. },
  1892. "require-dev": {
  1893. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  1894. },
  1895. "type": "library",
  1896. "autoload": {
  1897. "psr-4": {
  1898. "Composer\\XdebugHandler\\": "src"
  1899. }
  1900. },
  1901. "notification-url": "https://packagist.org/downloads/",
  1902. "license": [
  1903. "MIT"
  1904. ],
  1905. "authors": [
  1906. {
  1907. "name": "John Stevenson",
  1908. "email": "john-stevenson@blueyonder.co.uk"
  1909. }
  1910. ],
  1911. "description": "Restarts a process without Xdebug.",
  1912. "keywords": [
  1913. "Xdebug",
  1914. "performance"
  1915. ],
  1916. "time": "2020-03-01T12:26:26+00:00"
  1917. },
  1918. {
  1919. "name": "doctrine/instantiator",
  1920. "version": "1.3.0",
  1921. "source": {
  1922. "type": "git",
  1923. "url": "https://github.com/doctrine/instantiator.git",
  1924. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1"
  1925. },
  1926. "dist": {
  1927. "type": "zip",
  1928. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1",
  1929. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1",
  1930. "shasum": ""
  1931. },
  1932. "require": {
  1933. "php": "^7.1"
  1934. },
  1935. "require-dev": {
  1936. "doctrine/coding-standard": "^6.0",
  1937. "ext-pdo": "*",
  1938. "ext-phar": "*",
  1939. "phpbench/phpbench": "^0.13",
  1940. "phpstan/phpstan-phpunit": "^0.11",
  1941. "phpstan/phpstan-shim": "^0.11",
  1942. "phpunit/phpunit": "^7.0"
  1943. },
  1944. "type": "library",
  1945. "extra": {
  1946. "branch-alias": {
  1947. "dev-master": "1.2.x-dev"
  1948. }
  1949. },
  1950. "autoload": {
  1951. "psr-4": {
  1952. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1953. }
  1954. },
  1955. "notification-url": "https://packagist.org/downloads/",
  1956. "license": [
  1957. "MIT"
  1958. ],
  1959. "authors": [
  1960. {
  1961. "name": "Marco Pivetta",
  1962. "email": "ocramius@gmail.com",
  1963. "homepage": "http://ocramius.github.com/"
  1964. }
  1965. ],
  1966. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1967. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1968. "keywords": [
  1969. "constructor",
  1970. "instantiate"
  1971. ],
  1972. "time": "2019-10-21T16:45:58+00:00"
  1973. },
  1974. {
  1975. "name": "gitonomy/gitlib",
  1976. "version": "v1.2.0",
  1977. "source": {
  1978. "type": "git",
  1979. "url": "https://github.com/gitonomy/gitlib.git",
  1980. "reference": "a0bea921266ad1c9626d712e7f8687dcc08ca528"
  1981. },
  1982. "dist": {
  1983. "type": "zip",
  1984. "url": "https://api.github.com/repos/gitonomy/gitlib/zipball/a0bea921266ad1c9626d712e7f8687dcc08ca528",
  1985. "reference": "a0bea921266ad1c9626d712e7f8687dcc08ca528",
  1986. "shasum": ""
  1987. },
  1988. "require": {
  1989. "php": "^5.6 || ^7.0",
  1990. "symfony/process": "^3.4|^4.0|^5.0"
  1991. },
  1992. "require-dev": {
  1993. "phpunit/phpunit": "^5.7|^6.5|^7.0",
  1994. "psr/log": "^1.0"
  1995. },
  1996. "suggest": {
  1997. "psr/log": "Required to use loggers for reporting of execution"
  1998. },
  1999. "type": "library",
  2000. "extra": {
  2001. "branch-alias": {
  2002. "dev-master": "1.2-dev"
  2003. }
  2004. },
  2005. "autoload": {
  2006. "psr-4": {
  2007. "Gitonomy\\Git\\": "src/Gitonomy/Git/"
  2008. }
  2009. },
  2010. "notification-url": "https://packagist.org/downloads/",
  2011. "license": [
  2012. "MIT"
  2013. ],
  2014. "authors": [
  2015. {
  2016. "name": "Graham Campbell",
  2017. "email": "graham@alt-three.com"
  2018. },
  2019. {
  2020. "name": "Julien Didier",
  2021. "email": "genzo.wm@gmail.com"
  2022. },
  2023. {
  2024. "name": "Grégoire Pineau",
  2025. "email": "lyrixx@lyrixx.info"
  2026. },
  2027. {
  2028. "name": "Alexandre Salomé",
  2029. "email": "alexandre.salome@gmail.com"
  2030. }
  2031. ],
  2032. "description": "Library for accessing git",
  2033. "homepage": "http://gitonomy.com",
  2034. "time": "2019-12-08T12:42:25+00:00"
  2035. },
  2036. {
  2037. "name": "jean85/pretty-package-versions",
  2038. "version": "1.2",
  2039. "source": {
  2040. "type": "git",
  2041. "url": "https://github.com/Jean85/pretty-package-versions.git",
  2042. "reference": "75c7effcf3f77501d0e0caa75111aff4daa0dd48"
  2043. },
  2044. "dist": {
  2045. "type": "zip",
  2046. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/75c7effcf3f77501d0e0caa75111aff4daa0dd48",
  2047. "reference": "75c7effcf3f77501d0e0caa75111aff4daa0dd48",
  2048. "shasum": ""
  2049. },
  2050. "require": {
  2051. "ocramius/package-versions": "^1.2.0",
  2052. "php": "^7.0"
  2053. },
  2054. "require-dev": {
  2055. "phpunit/phpunit": "^6.0"
  2056. },
  2057. "type": "library",
  2058. "extra": {
  2059. "branch-alias": {
  2060. "dev-master": "1.x-dev"
  2061. }
  2062. },
  2063. "autoload": {
  2064. "psr-4": {
  2065. "Jean85\\": "src/"
  2066. }
  2067. },
  2068. "notification-url": "https://packagist.org/downloads/",
  2069. "license": [
  2070. "MIT"
  2071. ],
  2072. "authors": [
  2073. {
  2074. "name": "Alessandro Lai",
  2075. "email": "alessandro.lai85@gmail.com"
  2076. }
  2077. ],
  2078. "description": "A wrapper for ocramius/package-versions to get pretty versions strings",
  2079. "keywords": [
  2080. "composer",
  2081. "package",
  2082. "release",
  2083. "versions"
  2084. ],
  2085. "time": "2018-06-13T13:22:40+00:00"
  2086. },
  2087. {
  2088. "name": "myclabs/deep-copy",
  2089. "version": "1.9.5",
  2090. "source": {
  2091. "type": "git",
  2092. "url": "https://github.com/myclabs/DeepCopy.git",
  2093. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef"
  2094. },
  2095. "dist": {
  2096. "type": "zip",
  2097. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/b2c28789e80a97badd14145fda39b545d83ca3ef",
  2098. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef",
  2099. "shasum": ""
  2100. },
  2101. "require": {
  2102. "php": "^7.1"
  2103. },
  2104. "replace": {
  2105. "myclabs/deep-copy": "self.version"
  2106. },
  2107. "require-dev": {
  2108. "doctrine/collections": "^1.0",
  2109. "doctrine/common": "^2.6",
  2110. "phpunit/phpunit": "^7.1"
  2111. },
  2112. "type": "library",
  2113. "autoload": {
  2114. "psr-4": {
  2115. "DeepCopy\\": "src/DeepCopy/"
  2116. },
  2117. "files": [
  2118. "src/DeepCopy/deep_copy.php"
  2119. ]
  2120. },
  2121. "notification-url": "https://packagist.org/downloads/",
  2122. "license": [
  2123. "MIT"
  2124. ],
  2125. "description": "Create deep copies (clones) of your objects",
  2126. "keywords": [
  2127. "clone",
  2128. "copy",
  2129. "duplicate",
  2130. "object",
  2131. "object graph"
  2132. ],
  2133. "time": "2020-01-17T21:11:47+00:00"
  2134. },
  2135. {
  2136. "name": "nette/bootstrap",
  2137. "version": "v3.0.1",
  2138. "source": {
  2139. "type": "git",
  2140. "url": "https://github.com/nette/bootstrap.git",
  2141. "reference": "b45a1e33b6a44beb307756522396551e5a9ff249"
  2142. },
  2143. "dist": {
  2144. "type": "zip",
  2145. "url": "https://api.github.com/repos/nette/bootstrap/zipball/b45a1e33b6a44beb307756522396551e5a9ff249",
  2146. "reference": "b45a1e33b6a44beb307756522396551e5a9ff249",
  2147. "shasum": ""
  2148. },
  2149. "require": {
  2150. "nette/di": "^3.0",
  2151. "nette/utils": "^3.0",
  2152. "php": ">=7.1"
  2153. },
  2154. "conflict": {
  2155. "tracy/tracy": "<2.6"
  2156. },
  2157. "require-dev": {
  2158. "latte/latte": "^2.2",
  2159. "nette/application": "^3.0",
  2160. "nette/caching": "^3.0",
  2161. "nette/database": "^3.0",
  2162. "nette/forms": "^3.0",
  2163. "nette/http": "^3.0",
  2164. "nette/mail": "^3.0",
  2165. "nette/robot-loader": "^3.0",
  2166. "nette/safe-stream": "^2.2",
  2167. "nette/security": "^3.0",
  2168. "nette/tester": "^2.0",
  2169. "tracy/tracy": "^2.6"
  2170. },
  2171. "suggest": {
  2172. "nette/robot-loader": "to use Configurator::createRobotLoader()",
  2173. "tracy/tracy": "to use Configurator::enableTracy()"
  2174. },
  2175. "type": "library",
  2176. "extra": {
  2177. "branch-alias": {
  2178. "dev-master": "3.0-dev"
  2179. }
  2180. },
  2181. "autoload": {
  2182. "classmap": [
  2183. "src/"
  2184. ]
  2185. },
  2186. "notification-url": "https://packagist.org/downloads/",
  2187. "license": [
  2188. "BSD-3-Clause",
  2189. "GPL-2.0",
  2190. "GPL-3.0"
  2191. ],
  2192. "authors": [
  2193. {
  2194. "name": "David Grudl",
  2195. "homepage": "https://davidgrudl.com"
  2196. },
  2197. {
  2198. "name": "Nette Community",
  2199. "homepage": "https://nette.org/contributors"
  2200. }
  2201. ],
  2202. "description": "🅱 Nette Bootstrap: the simple way to configure and bootstrap your Nette application.",
  2203. "homepage": "https://nette.org",
  2204. "keywords": [
  2205. "bootstrapping",
  2206. "configurator",
  2207. "nette"
  2208. ],
  2209. "time": "2019-09-30T08:19:38+00:00"
  2210. },
  2211. {
  2212. "name": "nette/di",
  2213. "version": "v3.0.3",
  2214. "source": {
  2215. "type": "git",
  2216. "url": "https://github.com/nette/di.git",
  2217. "reference": "77d69061cbf8f9cfb7363dd983136f51213d3e41"
  2218. },
  2219. "dist": {
  2220. "type": "zip",
  2221. "url": "https://api.github.com/repos/nette/di/zipball/77d69061cbf8f9cfb7363dd983136f51213d3e41",
  2222. "reference": "77d69061cbf8f9cfb7363dd983136f51213d3e41",
  2223. "shasum": ""
  2224. },
  2225. "require": {
  2226. "ext-tokenizer": "*",
  2227. "nette/neon": "^3.0",
  2228. "nette/php-generator": "^3.3.3",
  2229. "nette/robot-loader": "^3.2",
  2230. "nette/schema": "^1.0",
  2231. "nette/utils": "^3.1",
  2232. "php": ">=7.1"
  2233. },
  2234. "conflict": {
  2235. "nette/bootstrap": "<3.0"
  2236. },
  2237. "require-dev": {
  2238. "nette/tester": "^2.2",
  2239. "phpstan/phpstan": "^0.12",
  2240. "tracy/tracy": "^2.3"
  2241. },
  2242. "type": "library",
  2243. "extra": {
  2244. "branch-alias": {
  2245. "dev-master": "3.0-dev"
  2246. }
  2247. },
  2248. "autoload": {
  2249. "classmap": [
  2250. "src/"
  2251. ]
  2252. },
  2253. "notification-url": "https://packagist.org/downloads/",
  2254. "license": [
  2255. "BSD-3-Clause",
  2256. "GPL-2.0-only",
  2257. "GPL-3.0-only"
  2258. ],
  2259. "authors": [
  2260. {
  2261. "name": "David Grudl",
  2262. "homepage": "https://davidgrudl.com"
  2263. },
  2264. {
  2265. "name": "Nette Community",
  2266. "homepage": "https://nette.org/contributors"
  2267. }
  2268. ],
  2269. "description": "💎 Nette Dependency Injection Container: Flexible, compiled and full-featured DIC with perfectly usable autowiring and support for all new PHP 7.1 features.",
  2270. "homepage": "https://nette.org",
  2271. "keywords": [
  2272. "compiled",
  2273. "di",
  2274. "dic",
  2275. "factory",
  2276. "ioc",
  2277. "nette",
  2278. "static"
  2279. ],
  2280. "time": "2020-01-20T12:14:54+00:00"
  2281. },
  2282. {
  2283. "name": "nette/finder",
  2284. "version": "v2.5.2",
  2285. "source": {
  2286. "type": "git",
  2287. "url": "https://github.com/nette/finder.git",
  2288. "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50"
  2289. },
  2290. "dist": {
  2291. "type": "zip",
  2292. "url": "https://api.github.com/repos/nette/finder/zipball/4ad2c298eb8c687dd0e74ae84206a4186eeaed50",
  2293. "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50",
  2294. "shasum": ""
  2295. },
  2296. "require": {
  2297. "nette/utils": "^2.4 || ^3.0",
  2298. "php": ">=7.1"
  2299. },
  2300. "conflict": {
  2301. "nette/nette": "<2.2"
  2302. },
  2303. "require-dev": {
  2304. "nette/tester": "^2.0",
  2305. "phpstan/phpstan": "^0.12",
  2306. "tracy/tracy": "^2.3"
  2307. },
  2308. "type": "library",
  2309. "extra": {
  2310. "branch-alias": {
  2311. "dev-master": "2.5-dev"
  2312. }
  2313. },
  2314. "autoload": {
  2315. "classmap": [
  2316. "src/"
  2317. ]
  2318. },
  2319. "notification-url": "https://packagist.org/downloads/",
  2320. "license": [
  2321. "BSD-3-Clause",
  2322. "GPL-2.0",
  2323. "GPL-3.0"
  2324. ],
  2325. "authors": [
  2326. {
  2327. "name": "David Grudl",
  2328. "homepage": "https://davidgrudl.com"
  2329. },
  2330. {
  2331. "name": "Nette Community",
  2332. "homepage": "https://nette.org/contributors"
  2333. }
  2334. ],
  2335. "description": "🔍 Nette Finder: find files and directories with an intuitive API.",
  2336. "homepage": "https://nette.org",
  2337. "keywords": [
  2338. "filesystem",
  2339. "glob",
  2340. "iterator",
  2341. "nette"
  2342. ],
  2343. "time": "2020-01-03T20:35:40+00:00"
  2344. },
  2345. {
  2346. "name": "nette/neon",
  2347. "version": "v3.1.2",
  2348. "source": {
  2349. "type": "git",
  2350. "url": "https://github.com/nette/neon.git",
  2351. "reference": "3c3dcbc6bf6c80dc97b1fc4ba9a22ae67930fc0e"
  2352. },
  2353. "dist": {
  2354. "type": "zip",
  2355. "url": "https://api.github.com/repos/nette/neon/zipball/3c3dcbc6bf6c80dc97b1fc4ba9a22ae67930fc0e",
  2356. "reference": "3c3dcbc6bf6c80dc97b1fc4ba9a22ae67930fc0e",
  2357. "shasum": ""
  2358. },
  2359. "require": {
  2360. "ext-iconv": "*",
  2361. "ext-json": "*",
  2362. "php": ">=7.1"
  2363. },
  2364. "require-dev": {
  2365. "nette/tester": "^2.0",
  2366. "phpstan/phpstan": "^0.12",
  2367. "tracy/tracy": "^2.3"
  2368. },
  2369. "type": "library",
  2370. "extra": {
  2371. "branch-alias": {
  2372. "dev-master": "3.1-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. "GPL-2.0-only",
  2384. "GPL-3.0-only"
  2385. ],
  2386. "authors": [
  2387. {
  2388. "name": "David Grudl",
  2389. "homepage": "https://davidgrudl.com"
  2390. },
  2391. {
  2392. "name": "Nette Community",
  2393. "homepage": "https://nette.org/contributors"
  2394. }
  2395. ],
  2396. "description": "🍸 Nette NEON: encodes and decodes NEON file format.",
  2397. "homepage": "https://ne-on.org",
  2398. "keywords": [
  2399. "export",
  2400. "import",
  2401. "neon",
  2402. "nette",
  2403. "yaml"
  2404. ],
  2405. "time": "2020-03-04T11:47:04+00:00"
  2406. },
  2407. {
  2408. "name": "nette/php-generator",
  2409. "version": "v3.3.4",
  2410. "source": {
  2411. "type": "git",
  2412. "url": "https://github.com/nette/php-generator.git",
  2413. "reference": "8fe7e699dca7db186f56d75800cb1ec32e39c856"
  2414. },
  2415. "dist": {
  2416. "type": "zip",
  2417. "url": "https://api.github.com/repos/nette/php-generator/zipball/8fe7e699dca7db186f56d75800cb1ec32e39c856",
  2418. "reference": "8fe7e699dca7db186f56d75800cb1ec32e39c856",
  2419. "shasum": ""
  2420. },
  2421. "require": {
  2422. "nette/utils": "^2.4.2 || ^3.0",
  2423. "php": ">=7.1"
  2424. },
  2425. "require-dev": {
  2426. "nette/tester": "^2.0",
  2427. "phpstan/phpstan": "^0.12",
  2428. "tracy/tracy": "^2.3"
  2429. },
  2430. "type": "library",
  2431. "extra": {
  2432. "branch-alias": {
  2433. "dev-master": "3.3-dev"
  2434. }
  2435. },
  2436. "autoload": {
  2437. "classmap": [
  2438. "src/"
  2439. ]
  2440. },
  2441. "notification-url": "https://packagist.org/downloads/",
  2442. "license": [
  2443. "BSD-3-Clause",
  2444. "GPL-2.0-only",
  2445. "GPL-3.0-only"
  2446. ],
  2447. "authors": [
  2448. {
  2449. "name": "David Grudl",
  2450. "homepage": "https://davidgrudl.com"
  2451. },
  2452. {
  2453. "name": "Nette Community",
  2454. "homepage": "https://nette.org/contributors"
  2455. }
  2456. ],
  2457. "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 7.4 features.",
  2458. "homepage": "https://nette.org",
  2459. "keywords": [
  2460. "code",
  2461. "nette",
  2462. "php",
  2463. "scaffolding"
  2464. ],
  2465. "time": "2020-02-09T14:39:09+00:00"
  2466. },
  2467. {
  2468. "name": "nette/robot-loader",
  2469. "version": "v3.2.3",
  2470. "source": {
  2471. "type": "git",
  2472. "url": "https://github.com/nette/robot-loader.git",
  2473. "reference": "726c462e73e739e965ec654a667407074cfe83c0"
  2474. },
  2475. "dist": {
  2476. "type": "zip",
  2477. "url": "https://api.github.com/repos/nette/robot-loader/zipball/726c462e73e739e965ec654a667407074cfe83c0",
  2478. "reference": "726c462e73e739e965ec654a667407074cfe83c0",
  2479. "shasum": ""
  2480. },
  2481. "require": {
  2482. "ext-tokenizer": "*",
  2483. "nette/finder": "^2.5 || ^3.0",
  2484. "nette/utils": "^3.0",
  2485. "php": ">=7.1"
  2486. },
  2487. "require-dev": {
  2488. "nette/tester": "^2.0",
  2489. "phpstan/phpstan": "^0.12",
  2490. "tracy/tracy": "^2.3"
  2491. },
  2492. "type": "library",
  2493. "extra": {
  2494. "branch-alias": {
  2495. "dev-master": "3.2-dev"
  2496. }
  2497. },
  2498. "autoload": {
  2499. "classmap": [
  2500. "src/"
  2501. ]
  2502. },
  2503. "notification-url": "https://packagist.org/downloads/",
  2504. "license": [
  2505. "BSD-3-Clause",
  2506. "GPL-2.0-only",
  2507. "GPL-3.0-only"
  2508. ],
  2509. "authors": [
  2510. {
  2511. "name": "David Grudl",
  2512. "homepage": "https://davidgrudl.com"
  2513. },
  2514. {
  2515. "name": "Nette Community",
  2516. "homepage": "https://nette.org/contributors"
  2517. }
  2518. ],
  2519. "description": "🍀 Nette RobotLoader: high performance and comfortable autoloader that will search and autoload classes within your application.",
  2520. "homepage": "https://nette.org",
  2521. "keywords": [
  2522. "autoload",
  2523. "class",
  2524. "interface",
  2525. "nette",
  2526. "trait"
  2527. ],
  2528. "time": "2020-02-28T13:10:07+00:00"
  2529. },
  2530. {
  2531. "name": "nette/schema",
  2532. "version": "v1.0.2",
  2533. "source": {
  2534. "type": "git",
  2535. "url": "https://github.com/nette/schema.git",
  2536. "reference": "febf71fb4052c824046f5a33f4f769a6e7fa0cb4"
  2537. },
  2538. "dist": {
  2539. "type": "zip",
  2540. "url": "https://api.github.com/repos/nette/schema/zipball/febf71fb4052c824046f5a33f4f769a6e7fa0cb4",
  2541. "reference": "febf71fb4052c824046f5a33f4f769a6e7fa0cb4",
  2542. "shasum": ""
  2543. },
  2544. "require": {
  2545. "nette/utils": "^3.1",
  2546. "php": ">=7.1"
  2547. },
  2548. "require-dev": {
  2549. "nette/tester": "^2.2",
  2550. "phpstan/phpstan-nette": "^0.12",
  2551. "tracy/tracy": "^2.3"
  2552. },
  2553. "type": "library",
  2554. "extra": {
  2555. "branch-alias": []
  2556. },
  2557. "autoload": {
  2558. "classmap": [
  2559. "src/"
  2560. ]
  2561. },
  2562. "notification-url": "https://packagist.org/downloads/",
  2563. "license": [
  2564. "BSD-3-Clause",
  2565. "GPL-2.0",
  2566. "GPL-3.0"
  2567. ],
  2568. "authors": [
  2569. {
  2570. "name": "David Grudl",
  2571. "homepage": "https://davidgrudl.com"
  2572. },
  2573. {
  2574. "name": "Nette Community",
  2575. "homepage": "https://nette.org/contributors"
  2576. }
  2577. ],
  2578. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2579. "homepage": "https://nette.org",
  2580. "keywords": [
  2581. "config",
  2582. "nette"
  2583. ],
  2584. "time": "2020-01-06T22:52:48+00:00"
  2585. },
  2586. {
  2587. "name": "nette/utils",
  2588. "version": "v3.1.1",
  2589. "source": {
  2590. "type": "git",
  2591. "url": "https://github.com/nette/utils.git",
  2592. "reference": "2c17d16d8887579ae1c0898ff94a3668997fd3eb"
  2593. },
  2594. "dist": {
  2595. "type": "zip",
  2596. "url": "https://api.github.com/repos/nette/utils/zipball/2c17d16d8887579ae1c0898ff94a3668997fd3eb",
  2597. "reference": "2c17d16d8887579ae1c0898ff94a3668997fd3eb",
  2598. "shasum": ""
  2599. },
  2600. "require": {
  2601. "php": ">=7.1"
  2602. },
  2603. "require-dev": {
  2604. "nette/tester": "~2.0",
  2605. "phpstan/phpstan": "^0.12",
  2606. "tracy/tracy": "^2.3"
  2607. },
  2608. "suggest": {
  2609. "ext-gd": "to use Image",
  2610. "ext-iconv": "to use Strings::webalize() and toAscii()",
  2611. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2612. "ext-json": "to use Nette\\Utils\\Json",
  2613. "ext-mbstring": "to use Strings::lower() etc...",
  2614. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2615. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2616. },
  2617. "type": "library",
  2618. "extra": {
  2619. "branch-alias": {
  2620. "dev-master": "3.1-dev"
  2621. }
  2622. },
  2623. "autoload": {
  2624. "classmap": [
  2625. "src/"
  2626. ]
  2627. },
  2628. "notification-url": "https://packagist.org/downloads/",
  2629. "license": [
  2630. "BSD-3-Clause",
  2631. "GPL-2.0-only",
  2632. "GPL-3.0-only"
  2633. ],
  2634. "authors": [
  2635. {
  2636. "name": "David Grudl",
  2637. "homepage": "https://davidgrudl.com"
  2638. },
  2639. {
  2640. "name": "Nette Community",
  2641. "homepage": "https://nette.org/contributors"
  2642. }
  2643. ],
  2644. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2645. "homepage": "https://nette.org",
  2646. "keywords": [
  2647. "array",
  2648. "core",
  2649. "datetime",
  2650. "images",
  2651. "json",
  2652. "nette",
  2653. "paginator",
  2654. "password",
  2655. "slugify",
  2656. "string",
  2657. "unicode",
  2658. "utf-8",
  2659. "utility",
  2660. "validation"
  2661. ],
  2662. "time": "2020-02-09T14:10:55+00:00"
  2663. },
  2664. {
  2665. "name": "nikic/php-parser",
  2666. "version": "v4.3.0",
  2667. "source": {
  2668. "type": "git",
  2669. "url": "https://github.com/nikic/PHP-Parser.git",
  2670. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc"
  2671. },
  2672. "dist": {
  2673. "type": "zip",
  2674. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  2675. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  2676. "shasum": ""
  2677. },
  2678. "require": {
  2679. "ext-tokenizer": "*",
  2680. "php": ">=7.0"
  2681. },
  2682. "require-dev": {
  2683. "ircmaxell/php-yacc": "0.0.5",
  2684. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  2685. },
  2686. "bin": [
  2687. "bin/php-parse"
  2688. ],
  2689. "type": "library",
  2690. "extra": {
  2691. "branch-alias": {
  2692. "dev-master": "4.3-dev"
  2693. }
  2694. },
  2695. "autoload": {
  2696. "psr-4": {
  2697. "PhpParser\\": "lib/PhpParser"
  2698. }
  2699. },
  2700. "notification-url": "https://packagist.org/downloads/",
  2701. "license": [
  2702. "BSD-3-Clause"
  2703. ],
  2704. "authors": [
  2705. {
  2706. "name": "Nikita Popov"
  2707. }
  2708. ],
  2709. "description": "A PHP parser written in PHP",
  2710. "keywords": [
  2711. "parser",
  2712. "php"
  2713. ],
  2714. "time": "2019-11-08T13:50:10+00:00"
  2715. },
  2716. {
  2717. "name": "ocramius/package-versions",
  2718. "version": "1.4.2",
  2719. "source": {
  2720. "type": "git",
  2721. "url": "https://github.com/Ocramius/PackageVersions.git",
  2722. "reference": "44af6f3a2e2e04f2af46bcb302ad9600cba41c7d"
  2723. },
  2724. "dist": {
  2725. "type": "zip",
  2726. "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/44af6f3a2e2e04f2af46bcb302ad9600cba41c7d",
  2727. "reference": "44af6f3a2e2e04f2af46bcb302ad9600cba41c7d",
  2728. "shasum": ""
  2729. },
  2730. "require": {
  2731. "composer-plugin-api": "^1.0.0",
  2732. "php": "^7.1.0"
  2733. },
  2734. "require-dev": {
  2735. "composer/composer": "^1.6.3",
  2736. "doctrine/coding-standard": "^5.0.1",
  2737. "ext-zip": "*",
  2738. "infection/infection": "^0.7.1",
  2739. "phpunit/phpunit": "^7.5.17"
  2740. },
  2741. "type": "composer-plugin",
  2742. "extra": {
  2743. "class": "PackageVersions\\Installer",
  2744. "branch-alias": {
  2745. "dev-master": "2.0.x-dev"
  2746. }
  2747. },
  2748. "autoload": {
  2749. "psr-4": {
  2750. "PackageVersions\\": "src/PackageVersions"
  2751. }
  2752. },
  2753. "notification-url": "https://packagist.org/downloads/",
  2754. "license": [
  2755. "MIT"
  2756. ],
  2757. "authors": [
  2758. {
  2759. "name": "Marco Pivetta",
  2760. "email": "ocramius@gmail.com"
  2761. }
  2762. ],
  2763. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  2764. "time": "2019-11-15T16:17:10+00:00"
  2765. },
  2766. {
  2767. "name": "phar-io/manifest",
  2768. "version": "1.0.3",
  2769. "source": {
  2770. "type": "git",
  2771. "url": "https://github.com/phar-io/manifest.git",
  2772. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  2773. },
  2774. "dist": {
  2775. "type": "zip",
  2776. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  2777. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  2778. "shasum": ""
  2779. },
  2780. "require": {
  2781. "ext-dom": "*",
  2782. "ext-phar": "*",
  2783. "phar-io/version": "^2.0",
  2784. "php": "^5.6 || ^7.0"
  2785. },
  2786. "type": "library",
  2787. "extra": {
  2788. "branch-alias": {
  2789. "dev-master": "1.0.x-dev"
  2790. }
  2791. },
  2792. "autoload": {
  2793. "classmap": [
  2794. "src/"
  2795. ]
  2796. },
  2797. "notification-url": "https://packagist.org/downloads/",
  2798. "license": [
  2799. "BSD-3-Clause"
  2800. ],
  2801. "authors": [
  2802. {
  2803. "name": "Arne Blankerts",
  2804. "email": "arne@blankerts.de",
  2805. "role": "Developer"
  2806. },
  2807. {
  2808. "name": "Sebastian Heuer",
  2809. "email": "sebastian@phpeople.de",
  2810. "role": "Developer"
  2811. },
  2812. {
  2813. "name": "Sebastian Bergmann",
  2814. "email": "sebastian@phpunit.de",
  2815. "role": "Developer"
  2816. }
  2817. ],
  2818. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  2819. "time": "2018-07-08T19:23:20+00:00"
  2820. },
  2821. {
  2822. "name": "phar-io/version",
  2823. "version": "2.0.1",
  2824. "source": {
  2825. "type": "git",
  2826. "url": "https://github.com/phar-io/version.git",
  2827. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  2828. },
  2829. "dist": {
  2830. "type": "zip",
  2831. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  2832. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  2833. "shasum": ""
  2834. },
  2835. "require": {
  2836. "php": "^5.6 || ^7.0"
  2837. },
  2838. "type": "library",
  2839. "autoload": {
  2840. "classmap": [
  2841. "src/"
  2842. ]
  2843. },
  2844. "notification-url": "https://packagist.org/downloads/",
  2845. "license": [
  2846. "BSD-3-Clause"
  2847. ],
  2848. "authors": [
  2849. {
  2850. "name": "Arne Blankerts",
  2851. "email": "arne@blankerts.de",
  2852. "role": "Developer"
  2853. },
  2854. {
  2855. "name": "Sebastian Heuer",
  2856. "email": "sebastian@phpeople.de",
  2857. "role": "Developer"
  2858. },
  2859. {
  2860. "name": "Sebastian Bergmann",
  2861. "email": "sebastian@phpunit.de",
  2862. "role": "Developer"
  2863. }
  2864. ],
  2865. "description": "Library for handling version information and constraints",
  2866. "time": "2018-07-08T19:19:57+00:00"
  2867. },
  2868. {
  2869. "name": "php-webdriver/webdriver",
  2870. "version": "1.8.2",
  2871. "source": {
  2872. "type": "git",
  2873. "url": "https://github.com/php-webdriver/php-webdriver.git",
  2874. "reference": "3308a70be084d6d7fd1ee5787b4c2e6eb4b70aab"
  2875. },
  2876. "dist": {
  2877. "type": "zip",
  2878. "url": "https://api.github.com/repos/php-webdriver/php-webdriver/zipball/3308a70be084d6d7fd1ee5787b4c2e6eb4b70aab",
  2879. "reference": "3308a70be084d6d7fd1ee5787b4c2e6eb4b70aab",
  2880. "shasum": ""
  2881. },
  2882. "require": {
  2883. "ext-curl": "*",
  2884. "ext-json": "*",
  2885. "ext-zip": "*",
  2886. "php": "^5.6 || ~7.0",
  2887. "symfony/polyfill-mbstring": "^1.12",
  2888. "symfony/process": "^2.8 || ^3.1 || ^4.0 || ^5.0"
  2889. },
  2890. "require-dev": {
  2891. "friendsofphp/php-cs-fixer": "^2.0",
  2892. "jakub-onderka/php-parallel-lint": "^1.0",
  2893. "php-coveralls/php-coveralls": "^2.0",
  2894. "php-mock/php-mock-phpunit": "^1.1",
  2895. "phpunit/phpunit": "^5.7",
  2896. "sebastian/environment": "^1.3.4 || ^2.0 || ^3.0",
  2897. "sminnee/phpunit-mock-objects": "^3.4",
  2898. "squizlabs/php_codesniffer": "^3.5",
  2899. "symfony/var-dumper": "^3.3 || ^4.0 || ^5.0"
  2900. },
  2901. "suggest": {
  2902. "ext-SimpleXML": "For Firefox profile creation"
  2903. },
  2904. "type": "library",
  2905. "extra": {
  2906. "branch-alias": {
  2907. "dev-master": "1.8.x-dev"
  2908. }
  2909. },
  2910. "autoload": {
  2911. "psr-4": {
  2912. "Facebook\\WebDriver\\": "lib/"
  2913. },
  2914. "files": [
  2915. "lib/Exception/TimeoutException.php"
  2916. ]
  2917. },
  2918. "notification-url": "https://packagist.org/downloads/",
  2919. "license": [
  2920. "MIT"
  2921. ],
  2922. "description": "A PHP client for Selenium WebDriver. Previously facebook/webdriver.",
  2923. "homepage": "https://github.com/php-webdriver/php-webdriver",
  2924. "keywords": [
  2925. "Chromedriver",
  2926. "geckodriver",
  2927. "php",
  2928. "selenium",
  2929. "webdriver"
  2930. ],
  2931. "time": "2020-03-04T14:40:12+00:00"
  2932. },
  2933. {
  2934. "name": "phpdocumentor/reflection-common",
  2935. "version": "2.0.0",
  2936. "source": {
  2937. "type": "git",
  2938. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2939. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a"
  2940. },
  2941. "dist": {
  2942. "type": "zip",
  2943. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a",
  2944. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a",
  2945. "shasum": ""
  2946. },
  2947. "require": {
  2948. "php": ">=7.1"
  2949. },
  2950. "require-dev": {
  2951. "phpunit/phpunit": "~6"
  2952. },
  2953. "type": "library",
  2954. "extra": {
  2955. "branch-alias": {
  2956. "dev-master": "2.x-dev"
  2957. }
  2958. },
  2959. "autoload": {
  2960. "psr-4": {
  2961. "phpDocumentor\\Reflection\\": "src/"
  2962. }
  2963. },
  2964. "notification-url": "https://packagist.org/downloads/",
  2965. "license": [
  2966. "MIT"
  2967. ],
  2968. "authors": [
  2969. {
  2970. "name": "Jaap van Otterdijk",
  2971. "email": "opensource@ijaap.nl"
  2972. }
  2973. ],
  2974. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2975. "homepage": "http://www.phpdoc.org",
  2976. "keywords": [
  2977. "FQSEN",
  2978. "phpDocumentor",
  2979. "phpdoc",
  2980. "reflection",
  2981. "static analysis"
  2982. ],
  2983. "time": "2018-08-07T13:53:10+00:00"
  2984. },
  2985. {
  2986. "name": "phpdocumentor/reflection-docblock",
  2987. "version": "4.3.4",
  2988. "source": {
  2989. "type": "git",
  2990. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2991. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
  2992. },
  2993. "dist": {
  2994. "type": "zip",
  2995. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
  2996. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
  2997. "shasum": ""
  2998. },
  2999. "require": {
  3000. "php": "^7.0",
  3001. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  3002. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  3003. "webmozart/assert": "^1.0"
  3004. },
  3005. "require-dev": {
  3006. "doctrine/instantiator": "^1.0.5",
  3007. "mockery/mockery": "^1.0",
  3008. "phpdocumentor/type-resolver": "0.4.*",
  3009. "phpunit/phpunit": "^6.4"
  3010. },
  3011. "type": "library",
  3012. "extra": {
  3013. "branch-alias": {
  3014. "dev-master": "4.x-dev"
  3015. }
  3016. },
  3017. "autoload": {
  3018. "psr-4": {
  3019. "phpDocumentor\\Reflection\\": [
  3020. "src/"
  3021. ]
  3022. }
  3023. },
  3024. "notification-url": "https://packagist.org/downloads/",
  3025. "license": [
  3026. "MIT"
  3027. ],
  3028. "authors": [
  3029. {
  3030. "name": "Mike van Riel",
  3031. "email": "me@mikevanriel.com"
  3032. }
  3033. ],
  3034. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3035. "time": "2019-12-28T18:55:12+00:00"
  3036. },
  3037. {
  3038. "name": "phpdocumentor/type-resolver",
  3039. "version": "1.0.1",
  3040. "source": {
  3041. "type": "git",
  3042. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3043. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9"
  3044. },
  3045. "dist": {
  3046. "type": "zip",
  3047. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  3048. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  3049. "shasum": ""
  3050. },
  3051. "require": {
  3052. "php": "^7.1",
  3053. "phpdocumentor/reflection-common": "^2.0"
  3054. },
  3055. "require-dev": {
  3056. "ext-tokenizer": "^7.1",
  3057. "mockery/mockery": "~1",
  3058. "phpunit/phpunit": "^7.0"
  3059. },
  3060. "type": "library",
  3061. "extra": {
  3062. "branch-alias": {
  3063. "dev-master": "1.x-dev"
  3064. }
  3065. },
  3066. "autoload": {
  3067. "psr-4": {
  3068. "phpDocumentor\\Reflection\\": "src"
  3069. }
  3070. },
  3071. "notification-url": "https://packagist.org/downloads/",
  3072. "license": [
  3073. "MIT"
  3074. ],
  3075. "authors": [
  3076. {
  3077. "name": "Mike van Riel",
  3078. "email": "me@mikevanriel.com"
  3079. }
  3080. ],
  3081. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  3082. "time": "2019-08-22T18:11:29+00:00"
  3083. },
  3084. {
  3085. "name": "phpmyadmin/coding-standard",
  3086. "version": "1.0",
  3087. "source": {
  3088. "type": "git",
  3089. "url": "https://github.com/phpmyadmin/coding-standard.git",
  3090. "reference": "80b8a0ed7c24bc9dc46821ed259d57aa7f61329e"
  3091. },
  3092. "dist": {
  3093. "type": "zip",
  3094. "url": "https://api.github.com/repos/phpmyadmin/coding-standard/zipball/80b8a0ed7c24bc9dc46821ed259d57aa7f61329e",
  3095. "reference": "80b8a0ed7c24bc9dc46821ed259d57aa7f61329e",
  3096. "shasum": ""
  3097. },
  3098. "require": {
  3099. "php": "^7.1",
  3100. "squizlabs/php_codesniffer": "^3.4.0"
  3101. },
  3102. "type": "phpcodesniffer-standard",
  3103. "notification-url": "https://packagist.org/downloads/",
  3104. "license": [
  3105. "MIT"
  3106. ],
  3107. "authors": [
  3108. {
  3109. "name": "The phpMyAdmin Team",
  3110. "email": "developers@phpmyadmin.net",
  3111. "homepage": "https://www.phpmyadmin.net/team/"
  3112. }
  3113. ],
  3114. "description": "phpMyAdmin PHP_CodeSniffer Coding Standard",
  3115. "keywords": [
  3116. "codesniffer",
  3117. "phpcs",
  3118. "phpmyadmin"
  3119. ],
  3120. "time": "2019-01-07T19:46:48+00:00"
  3121. },
  3122. {
  3123. "name": "phpspec/prophecy",
  3124. "version": "v1.10.3",
  3125. "source": {
  3126. "type": "git",
  3127. "url": "https://github.com/phpspec/prophecy.git",
  3128. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  3129. },
  3130. "dist": {
  3131. "type": "zip",
  3132. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  3133. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  3134. "shasum": ""
  3135. },
  3136. "require": {
  3137. "doctrine/instantiator": "^1.0.2",
  3138. "php": "^5.3|^7.0",
  3139. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  3140. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  3141. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  3142. },
  3143. "require-dev": {
  3144. "phpspec/phpspec": "^2.5 || ^3.2",
  3145. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  3146. },
  3147. "type": "library",
  3148. "extra": {
  3149. "branch-alias": {
  3150. "dev-master": "1.10.x-dev"
  3151. }
  3152. },
  3153. "autoload": {
  3154. "psr-4": {
  3155. "Prophecy\\": "src/Prophecy"
  3156. }
  3157. },
  3158. "notification-url": "https://packagist.org/downloads/",
  3159. "license": [
  3160. "MIT"
  3161. ],
  3162. "authors": [
  3163. {
  3164. "name": "Konstantin Kudryashov",
  3165. "email": "ever.zet@gmail.com",
  3166. "homepage": "http://everzet.com"
  3167. },
  3168. {
  3169. "name": "Marcello Duarte",
  3170. "email": "marcello.duarte@gmail.com"
  3171. }
  3172. ],
  3173. "description": "Highly opinionated mocking framework for PHP 5.3+",
  3174. "homepage": "https://github.com/phpspec/prophecy",
  3175. "keywords": [
  3176. "Double",
  3177. "Dummy",
  3178. "fake",
  3179. "mock",
  3180. "spy",
  3181. "stub"
  3182. ],
  3183. "time": "2020-03-05T15:02:03+00:00"
  3184. },
  3185. {
  3186. "name": "phpstan/phpdoc-parser",
  3187. "version": "0.3.5",
  3188. "source": {
  3189. "type": "git",
  3190. "url": "https://github.com/phpstan/phpdoc-parser.git",
  3191. "reference": "8c4ef2aefd9788238897b678a985e1d5c8df6db4"
  3192. },
  3193. "dist": {
  3194. "type": "zip",
  3195. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/8c4ef2aefd9788238897b678a985e1d5c8df6db4",
  3196. "reference": "8c4ef2aefd9788238897b678a985e1d5c8df6db4",
  3197. "shasum": ""
  3198. },
  3199. "require": {
  3200. "php": "~7.1"
  3201. },
  3202. "require-dev": {
  3203. "consistence/coding-standard": "^3.5",
  3204. "jakub-onderka/php-parallel-lint": "^0.9.2",
  3205. "phing/phing": "^2.16.0",
  3206. "phpstan/phpstan": "^0.10",
  3207. "phpunit/phpunit": "^6.3",
  3208. "slevomat/coding-standard": "^4.7.2",
  3209. "squizlabs/php_codesniffer": "^3.3.2",
  3210. "symfony/process": "^3.4 || ^4.0"
  3211. },
  3212. "type": "library",
  3213. "extra": {
  3214. "branch-alias": {
  3215. "dev-master": "0.3-dev"
  3216. }
  3217. },
  3218. "autoload": {
  3219. "psr-4": {
  3220. "PHPStan\\PhpDocParser\\": [
  3221. "src/"
  3222. ]
  3223. }
  3224. },
  3225. "notification-url": "https://packagist.org/downloads/",
  3226. "license": [
  3227. "MIT"
  3228. ],
  3229. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  3230. "time": "2019-06-07T19:13:52+00:00"
  3231. },
  3232. {
  3233. "name": "phpstan/phpstan",
  3234. "version": "0.11.19",
  3235. "source": {
  3236. "type": "git",
  3237. "url": "https://github.com/phpstan/phpstan.git",
  3238. "reference": "63cc502f6957b7f74efbac444b4cf219dcadffd7"
  3239. },
  3240. "dist": {
  3241. "type": "zip",
  3242. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/63cc502f6957b7f74efbac444b4cf219dcadffd7",
  3243. "reference": "63cc502f6957b7f74efbac444b4cf219dcadffd7",
  3244. "shasum": ""
  3245. },
  3246. "require": {
  3247. "composer/xdebug-handler": "^1.3.0",
  3248. "jean85/pretty-package-versions": "^1.0.3",
  3249. "nette/bootstrap": "^2.4 || ^3.0",
  3250. "nette/di": "^2.4.7 || ^3.0",
  3251. "nette/neon": "^2.4.3 || ^3.0",
  3252. "nette/robot-loader": "^3.0.1",
  3253. "nette/schema": "^1.0",
  3254. "nette/utils": "^2.4.5 || ^3.0",
  3255. "nikic/php-parser": "^4.2.3",
  3256. "php": "~7.1",
  3257. "phpstan/phpdoc-parser": "^0.3.5",
  3258. "symfony/console": "~3.2 || ~4.0",
  3259. "symfony/finder": "~3.2 || ~4.0"
  3260. },
  3261. "conflict": {
  3262. "symfony/console": "3.4.16 || 4.1.5"
  3263. },
  3264. "require-dev": {
  3265. "brianium/paratest": "^2.0 || ^3.0",
  3266. "consistence/coding-standard": "^3.5",
  3267. "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
  3268. "ext-intl": "*",
  3269. "ext-mysqli": "*",
  3270. "ext-simplexml": "*",
  3271. "ext-soap": "*",
  3272. "ext-zip": "*",
  3273. "jakub-onderka/php-parallel-lint": "^1.0",
  3274. "localheinz/composer-normalize": "^1.1.0",
  3275. "phing/phing": "^2.16.0",
  3276. "phpstan/phpstan-deprecation-rules": "^0.11",
  3277. "phpstan/phpstan-php-parser": "^0.11",
  3278. "phpstan/phpstan-phpunit": "^0.11",
  3279. "phpstan/phpstan-strict-rules": "^0.11",
  3280. "phpunit/phpunit": "^7.5.14 || ^8.0",
  3281. "slevomat/coding-standard": "^4.7.2",
  3282. "squizlabs/php_codesniffer": "^3.3.2"
  3283. },
  3284. "bin": [
  3285. "bin/phpstan"
  3286. ],
  3287. "type": "library",
  3288. "extra": {
  3289. "branch-alias": {
  3290. "dev-master": "0.11-dev"
  3291. }
  3292. },
  3293. "autoload": {
  3294. "psr-4": {
  3295. "PHPStan\\": [
  3296. "src/"
  3297. ]
  3298. }
  3299. },
  3300. "notification-url": "https://packagist.org/downloads/",
  3301. "license": [
  3302. "MIT"
  3303. ],
  3304. "description": "PHPStan - PHP Static Analysis Tool",
  3305. "time": "2019-10-22T20:20:22+00:00"
  3306. },
  3307. {
  3308. "name": "phpunit/php-code-coverage",
  3309. "version": "6.1.4",
  3310. "source": {
  3311. "type": "git",
  3312. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3313. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  3314. },
  3315. "dist": {
  3316. "type": "zip",
  3317. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  3318. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  3319. "shasum": ""
  3320. },
  3321. "require": {
  3322. "ext-dom": "*",
  3323. "ext-xmlwriter": "*",
  3324. "php": "^7.1",
  3325. "phpunit/php-file-iterator": "^2.0",
  3326. "phpunit/php-text-template": "^1.2.1",
  3327. "phpunit/php-token-stream": "^3.0",
  3328. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  3329. "sebastian/environment": "^3.1 || ^4.0",
  3330. "sebastian/version": "^2.0.1",
  3331. "theseer/tokenizer": "^1.1"
  3332. },
  3333. "require-dev": {
  3334. "phpunit/phpunit": "^7.0"
  3335. },
  3336. "suggest": {
  3337. "ext-xdebug": "^2.6.0"
  3338. },
  3339. "type": "library",
  3340. "extra": {
  3341. "branch-alias": {
  3342. "dev-master": "6.1-dev"
  3343. }
  3344. },
  3345. "autoload": {
  3346. "classmap": [
  3347. "src/"
  3348. ]
  3349. },
  3350. "notification-url": "https://packagist.org/downloads/",
  3351. "license": [
  3352. "BSD-3-Clause"
  3353. ],
  3354. "authors": [
  3355. {
  3356. "name": "Sebastian Bergmann",
  3357. "email": "sebastian@phpunit.de",
  3358. "role": "lead"
  3359. }
  3360. ],
  3361. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3362. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3363. "keywords": [
  3364. "coverage",
  3365. "testing",
  3366. "xunit"
  3367. ],
  3368. "time": "2018-10-31T16:06:48+00:00"
  3369. },
  3370. {
  3371. "name": "phpunit/php-file-iterator",
  3372. "version": "2.0.2",
  3373. "source": {
  3374. "type": "git",
  3375. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3376. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  3377. },
  3378. "dist": {
  3379. "type": "zip",
  3380. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  3381. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  3382. "shasum": ""
  3383. },
  3384. "require": {
  3385. "php": "^7.1"
  3386. },
  3387. "require-dev": {
  3388. "phpunit/phpunit": "^7.1"
  3389. },
  3390. "type": "library",
  3391. "extra": {
  3392. "branch-alias": {
  3393. "dev-master": "2.0.x-dev"
  3394. }
  3395. },
  3396. "autoload": {
  3397. "classmap": [
  3398. "src/"
  3399. ]
  3400. },
  3401. "notification-url": "https://packagist.org/downloads/",
  3402. "license": [
  3403. "BSD-3-Clause"
  3404. ],
  3405. "authors": [
  3406. {
  3407. "name": "Sebastian Bergmann",
  3408. "email": "sebastian@phpunit.de",
  3409. "role": "lead"
  3410. }
  3411. ],
  3412. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3413. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3414. "keywords": [
  3415. "filesystem",
  3416. "iterator"
  3417. ],
  3418. "time": "2018-09-13T20:33:42+00:00"
  3419. },
  3420. {
  3421. "name": "phpunit/php-text-template",
  3422. "version": "1.2.1",
  3423. "source": {
  3424. "type": "git",
  3425. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  3426. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  3427. },
  3428. "dist": {
  3429. "type": "zip",
  3430. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3431. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3432. "shasum": ""
  3433. },
  3434. "require": {
  3435. "php": ">=5.3.3"
  3436. },
  3437. "type": "library",
  3438. "autoload": {
  3439. "classmap": [
  3440. "src/"
  3441. ]
  3442. },
  3443. "notification-url": "https://packagist.org/downloads/",
  3444. "license": [
  3445. "BSD-3-Clause"
  3446. ],
  3447. "authors": [
  3448. {
  3449. "name": "Sebastian Bergmann",
  3450. "email": "sebastian@phpunit.de",
  3451. "role": "lead"
  3452. }
  3453. ],
  3454. "description": "Simple template engine.",
  3455. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  3456. "keywords": [
  3457. "template"
  3458. ],
  3459. "time": "2015-06-21T13:50:34+00:00"
  3460. },
  3461. {
  3462. "name": "phpunit/php-timer",
  3463. "version": "2.1.2",
  3464. "source": {
  3465. "type": "git",
  3466. "url": "https://github.com/sebastianbergmann/php-timer.git",
  3467. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  3468. },
  3469. "dist": {
  3470. "type": "zip",
  3471. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  3472. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  3473. "shasum": ""
  3474. },
  3475. "require": {
  3476. "php": "^7.1"
  3477. },
  3478. "require-dev": {
  3479. "phpunit/phpunit": "^7.0"
  3480. },
  3481. "type": "library",
  3482. "extra": {
  3483. "branch-alias": {
  3484. "dev-master": "2.1-dev"
  3485. }
  3486. },
  3487. "autoload": {
  3488. "classmap": [
  3489. "src/"
  3490. ]
  3491. },
  3492. "notification-url": "https://packagist.org/downloads/",
  3493. "license": [
  3494. "BSD-3-Clause"
  3495. ],
  3496. "authors": [
  3497. {
  3498. "name": "Sebastian Bergmann",
  3499. "email": "sebastian@phpunit.de",
  3500. "role": "lead"
  3501. }
  3502. ],
  3503. "description": "Utility class for timing",
  3504. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  3505. "keywords": [
  3506. "timer"
  3507. ],
  3508. "time": "2019-06-07T04:22:29+00:00"
  3509. },
  3510. {
  3511. "name": "phpunit/php-token-stream",
  3512. "version": "3.1.1",
  3513. "source": {
  3514. "type": "git",
  3515. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  3516. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  3517. },
  3518. "dist": {
  3519. "type": "zip",
  3520. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  3521. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  3522. "shasum": ""
  3523. },
  3524. "require": {
  3525. "ext-tokenizer": "*",
  3526. "php": "^7.1"
  3527. },
  3528. "require-dev": {
  3529. "phpunit/phpunit": "^7.0"
  3530. },
  3531. "type": "library",
  3532. "extra": {
  3533. "branch-alias": {
  3534. "dev-master": "3.1-dev"
  3535. }
  3536. },
  3537. "autoload": {
  3538. "classmap": [
  3539. "src/"
  3540. ]
  3541. },
  3542. "notification-url": "https://packagist.org/downloads/",
  3543. "license": [
  3544. "BSD-3-Clause"
  3545. ],
  3546. "authors": [
  3547. {
  3548. "name": "Sebastian Bergmann",
  3549. "email": "sebastian@phpunit.de"
  3550. }
  3551. ],
  3552. "description": "Wrapper around PHP's tokenizer extension.",
  3553. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  3554. "keywords": [
  3555. "tokenizer"
  3556. ],
  3557. "time": "2019-09-17T06:23:10+00:00"
  3558. },
  3559. {
  3560. "name": "phpunit/phpunit",
  3561. "version": "7.5.20",
  3562. "source": {
  3563. "type": "git",
  3564. "url": "https://github.com/sebastianbergmann/phpunit.git",
  3565. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c"
  3566. },
  3567. "dist": {
  3568. "type": "zip",
  3569. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c",
  3570. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c",
  3571. "shasum": ""
  3572. },
  3573. "require": {
  3574. "doctrine/instantiator": "^1.1",
  3575. "ext-dom": "*",
  3576. "ext-json": "*",
  3577. "ext-libxml": "*",
  3578. "ext-mbstring": "*",
  3579. "ext-xml": "*",
  3580. "myclabs/deep-copy": "^1.7",
  3581. "phar-io/manifest": "^1.0.2",
  3582. "phar-io/version": "^2.0",
  3583. "php": "^7.1",
  3584. "phpspec/prophecy": "^1.7",
  3585. "phpunit/php-code-coverage": "^6.0.7",
  3586. "phpunit/php-file-iterator": "^2.0.1",
  3587. "phpunit/php-text-template": "^1.2.1",
  3588. "phpunit/php-timer": "^2.1",
  3589. "sebastian/comparator": "^3.0",
  3590. "sebastian/diff": "^3.0",
  3591. "sebastian/environment": "^4.0",
  3592. "sebastian/exporter": "^3.1",
  3593. "sebastian/global-state": "^2.0",
  3594. "sebastian/object-enumerator": "^3.0.3",
  3595. "sebastian/resource-operations": "^2.0",
  3596. "sebastian/version": "^2.0.1"
  3597. },
  3598. "conflict": {
  3599. "phpunit/phpunit-mock-objects": "*"
  3600. },
  3601. "require-dev": {
  3602. "ext-pdo": "*"
  3603. },
  3604. "suggest": {
  3605. "ext-soap": "*",
  3606. "ext-xdebug": "*",
  3607. "phpunit/php-invoker": "^2.0"
  3608. },
  3609. "bin": [
  3610. "phpunit"
  3611. ],
  3612. "type": "library",
  3613. "extra": {
  3614. "branch-alias": {
  3615. "dev-master": "7.5-dev"
  3616. }
  3617. },
  3618. "autoload": {
  3619. "classmap": [
  3620. "src/"
  3621. ]
  3622. },
  3623. "notification-url": "https://packagist.org/downloads/",
  3624. "license": [
  3625. "BSD-3-Clause"
  3626. ],
  3627. "authors": [
  3628. {
  3629. "name": "Sebastian Bergmann",
  3630. "email": "sebastian@phpunit.de",
  3631. "role": "lead"
  3632. }
  3633. ],
  3634. "description": "The PHP Unit Testing framework.",
  3635. "homepage": "https://phpunit.de/",
  3636. "keywords": [
  3637. "phpunit",
  3638. "testing",
  3639. "xunit"
  3640. ],
  3641. "time": "2020-01-08T08:45:45+00:00"
  3642. },
  3643. {
  3644. "name": "sebastian/code-unit-reverse-lookup",
  3645. "version": "1.0.1",
  3646. "source": {
  3647. "type": "git",
  3648. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  3649. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  3650. },
  3651. "dist": {
  3652. "type": "zip",
  3653. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3654. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3655. "shasum": ""
  3656. },
  3657. "require": {
  3658. "php": "^5.6 || ^7.0"
  3659. },
  3660. "require-dev": {
  3661. "phpunit/phpunit": "^5.7 || ^6.0"
  3662. },
  3663. "type": "library",
  3664. "extra": {
  3665. "branch-alias": {
  3666. "dev-master": "1.0.x-dev"
  3667. }
  3668. },
  3669. "autoload": {
  3670. "classmap": [
  3671. "src/"
  3672. ]
  3673. },
  3674. "notification-url": "https://packagist.org/downloads/",
  3675. "license": [
  3676. "BSD-3-Clause"
  3677. ],
  3678. "authors": [
  3679. {
  3680. "name": "Sebastian Bergmann",
  3681. "email": "sebastian@phpunit.de"
  3682. }
  3683. ],
  3684. "description": "Looks up which function or method a line of code belongs to",
  3685. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  3686. "time": "2017-03-04T06:30:41+00:00"
  3687. },
  3688. {
  3689. "name": "sebastian/comparator",
  3690. "version": "3.0.2",
  3691. "source": {
  3692. "type": "git",
  3693. "url": "https://github.com/sebastianbergmann/comparator.git",
  3694. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  3695. },
  3696. "dist": {
  3697. "type": "zip",
  3698. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  3699. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  3700. "shasum": ""
  3701. },
  3702. "require": {
  3703. "php": "^7.1",
  3704. "sebastian/diff": "^3.0",
  3705. "sebastian/exporter": "^3.1"
  3706. },
  3707. "require-dev": {
  3708. "phpunit/phpunit": "^7.1"
  3709. },
  3710. "type": "library",
  3711. "extra": {
  3712. "branch-alias": {
  3713. "dev-master": "3.0-dev"
  3714. }
  3715. },
  3716. "autoload": {
  3717. "classmap": [
  3718. "src/"
  3719. ]
  3720. },
  3721. "notification-url": "https://packagist.org/downloads/",
  3722. "license": [
  3723. "BSD-3-Clause"
  3724. ],
  3725. "authors": [
  3726. {
  3727. "name": "Jeff Welch",
  3728. "email": "whatthejeff@gmail.com"
  3729. },
  3730. {
  3731. "name": "Volker Dusch",
  3732. "email": "github@wallbash.com"
  3733. },
  3734. {
  3735. "name": "Bernhard Schussek",
  3736. "email": "bschussek@2bepublished.at"
  3737. },
  3738. {
  3739. "name": "Sebastian Bergmann",
  3740. "email": "sebastian@phpunit.de"
  3741. }
  3742. ],
  3743. "description": "Provides the functionality to compare PHP values for equality",
  3744. "homepage": "https://github.com/sebastianbergmann/comparator",
  3745. "keywords": [
  3746. "comparator",
  3747. "compare",
  3748. "equality"
  3749. ],
  3750. "time": "2018-07-12T15:12:46+00:00"
  3751. },
  3752. {
  3753. "name": "sebastian/diff",
  3754. "version": "3.0.2",
  3755. "source": {
  3756. "type": "git",
  3757. "url": "https://github.com/sebastianbergmann/diff.git",
  3758. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  3759. },
  3760. "dist": {
  3761. "type": "zip",
  3762. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  3763. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  3764. "shasum": ""
  3765. },
  3766. "require": {
  3767. "php": "^7.1"
  3768. },
  3769. "require-dev": {
  3770. "phpunit/phpunit": "^7.5 || ^8.0",
  3771. "symfony/process": "^2 || ^3.3 || ^4"
  3772. },
  3773. "type": "library",
  3774. "extra": {
  3775. "branch-alias": {
  3776. "dev-master": "3.0-dev"
  3777. }
  3778. },
  3779. "autoload": {
  3780. "classmap": [
  3781. "src/"
  3782. ]
  3783. },
  3784. "notification-url": "https://packagist.org/downloads/",
  3785. "license": [
  3786. "BSD-3-Clause"
  3787. ],
  3788. "authors": [
  3789. {
  3790. "name": "Kore Nordmann",
  3791. "email": "mail@kore-nordmann.de"
  3792. },
  3793. {
  3794. "name": "Sebastian Bergmann",
  3795. "email": "sebastian@phpunit.de"
  3796. }
  3797. ],
  3798. "description": "Diff implementation",
  3799. "homepage": "https://github.com/sebastianbergmann/diff",
  3800. "keywords": [
  3801. "diff",
  3802. "udiff",
  3803. "unidiff",
  3804. "unified diff"
  3805. ],
  3806. "time": "2019-02-04T06:01:07+00:00"
  3807. },
  3808. {
  3809. "name": "sebastian/environment",
  3810. "version": "4.2.3",
  3811. "source": {
  3812. "type": "git",
  3813. "url": "https://github.com/sebastianbergmann/environment.git",
  3814. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  3815. },
  3816. "dist": {
  3817. "type": "zip",
  3818. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  3819. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  3820. "shasum": ""
  3821. },
  3822. "require": {
  3823. "php": "^7.1"
  3824. },
  3825. "require-dev": {
  3826. "phpunit/phpunit": "^7.5"
  3827. },
  3828. "suggest": {
  3829. "ext-posix": "*"
  3830. },
  3831. "type": "library",
  3832. "extra": {
  3833. "branch-alias": {
  3834. "dev-master": "4.2-dev"
  3835. }
  3836. },
  3837. "autoload": {
  3838. "classmap": [
  3839. "src/"
  3840. ]
  3841. },
  3842. "notification-url": "https://packagist.org/downloads/",
  3843. "license": [
  3844. "BSD-3-Clause"
  3845. ],
  3846. "authors": [
  3847. {
  3848. "name": "Sebastian Bergmann",
  3849. "email": "sebastian@phpunit.de"
  3850. }
  3851. ],
  3852. "description": "Provides functionality to handle HHVM/PHP environments",
  3853. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3854. "keywords": [
  3855. "Xdebug",
  3856. "environment",
  3857. "hhvm"
  3858. ],
  3859. "time": "2019-11-20T08:46:58+00:00"
  3860. },
  3861. {
  3862. "name": "sebastian/exporter",
  3863. "version": "3.1.2",
  3864. "source": {
  3865. "type": "git",
  3866. "url": "https://github.com/sebastianbergmann/exporter.git",
  3867. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  3868. },
  3869. "dist": {
  3870. "type": "zip",
  3871. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  3872. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  3873. "shasum": ""
  3874. },
  3875. "require": {
  3876. "php": "^7.0",
  3877. "sebastian/recursion-context": "^3.0"
  3878. },
  3879. "require-dev": {
  3880. "ext-mbstring": "*",
  3881. "phpunit/phpunit": "^6.0"
  3882. },
  3883. "type": "library",
  3884. "extra": {
  3885. "branch-alias": {
  3886. "dev-master": "3.1.x-dev"
  3887. }
  3888. },
  3889. "autoload": {
  3890. "classmap": [
  3891. "src/"
  3892. ]
  3893. },
  3894. "notification-url": "https://packagist.org/downloads/",
  3895. "license": [
  3896. "BSD-3-Clause"
  3897. ],
  3898. "authors": [
  3899. {
  3900. "name": "Sebastian Bergmann",
  3901. "email": "sebastian@phpunit.de"
  3902. },
  3903. {
  3904. "name": "Jeff Welch",
  3905. "email": "whatthejeff@gmail.com"
  3906. },
  3907. {
  3908. "name": "Volker Dusch",
  3909. "email": "github@wallbash.com"
  3910. },
  3911. {
  3912. "name": "Adam Harvey",
  3913. "email": "aharvey@php.net"
  3914. },
  3915. {
  3916. "name": "Bernhard Schussek",
  3917. "email": "bschussek@gmail.com"
  3918. }
  3919. ],
  3920. "description": "Provides the functionality to export PHP variables for visualization",
  3921. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  3922. "keywords": [
  3923. "export",
  3924. "exporter"
  3925. ],
  3926. "time": "2019-09-14T09:02:43+00:00"
  3927. },
  3928. {
  3929. "name": "sebastian/global-state",
  3930. "version": "2.0.0",
  3931. "source": {
  3932. "type": "git",
  3933. "url": "https://github.com/sebastianbergmann/global-state.git",
  3934. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  3935. },
  3936. "dist": {
  3937. "type": "zip",
  3938. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  3939. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  3940. "shasum": ""
  3941. },
  3942. "require": {
  3943. "php": "^7.0"
  3944. },
  3945. "require-dev": {
  3946. "phpunit/phpunit": "^6.0"
  3947. },
  3948. "suggest": {
  3949. "ext-uopz": "*"
  3950. },
  3951. "type": "library",
  3952. "extra": {
  3953. "branch-alias": {
  3954. "dev-master": "2.0-dev"
  3955. }
  3956. },
  3957. "autoload": {
  3958. "classmap": [
  3959. "src/"
  3960. ]
  3961. },
  3962. "notification-url": "https://packagist.org/downloads/",
  3963. "license": [
  3964. "BSD-3-Clause"
  3965. ],
  3966. "authors": [
  3967. {
  3968. "name": "Sebastian Bergmann",
  3969. "email": "sebastian@phpunit.de"
  3970. }
  3971. ],
  3972. "description": "Snapshotting of global state",
  3973. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3974. "keywords": [
  3975. "global state"
  3976. ],
  3977. "time": "2017-04-27T15:39:26+00:00"
  3978. },
  3979. {
  3980. "name": "sebastian/object-enumerator",
  3981. "version": "3.0.3",
  3982. "source": {
  3983. "type": "git",
  3984. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  3985. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  3986. },
  3987. "dist": {
  3988. "type": "zip",
  3989. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  3990. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  3991. "shasum": ""
  3992. },
  3993. "require": {
  3994. "php": "^7.0",
  3995. "sebastian/object-reflector": "^1.1.1",
  3996. "sebastian/recursion-context": "^3.0"
  3997. },
  3998. "require-dev": {
  3999. "phpunit/phpunit": "^6.0"
  4000. },
  4001. "type": "library",
  4002. "extra": {
  4003. "branch-alias": {
  4004. "dev-master": "3.0.x-dev"
  4005. }
  4006. },
  4007. "autoload": {
  4008. "classmap": [
  4009. "src/"
  4010. ]
  4011. },
  4012. "notification-url": "https://packagist.org/downloads/",
  4013. "license": [
  4014. "BSD-3-Clause"
  4015. ],
  4016. "authors": [
  4017. {
  4018. "name": "Sebastian Bergmann",
  4019. "email": "sebastian@phpunit.de"
  4020. }
  4021. ],
  4022. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  4023. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  4024. "time": "2017-08-03T12:35:26+00:00"
  4025. },
  4026. {
  4027. "name": "sebastian/object-reflector",
  4028. "version": "1.1.1",
  4029. "source": {
  4030. "type": "git",
  4031. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  4032. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  4033. },
  4034. "dist": {
  4035. "type": "zip",
  4036. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  4037. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  4038. "shasum": ""
  4039. },
  4040. "require": {
  4041. "php": "^7.0"
  4042. },
  4043. "require-dev": {
  4044. "phpunit/phpunit": "^6.0"
  4045. },
  4046. "type": "library",
  4047. "extra": {
  4048. "branch-alias": {
  4049. "dev-master": "1.1-dev"
  4050. }
  4051. },
  4052. "autoload": {
  4053. "classmap": [
  4054. "src/"
  4055. ]
  4056. },
  4057. "notification-url": "https://packagist.org/downloads/",
  4058. "license": [
  4059. "BSD-3-Clause"
  4060. ],
  4061. "authors": [
  4062. {
  4063. "name": "Sebastian Bergmann",
  4064. "email": "sebastian@phpunit.de"
  4065. }
  4066. ],
  4067. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  4068. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  4069. "time": "2017-03-29T09:07:27+00:00"
  4070. },
  4071. {
  4072. "name": "sebastian/recursion-context",
  4073. "version": "3.0.0",
  4074. "source": {
  4075. "type": "git",
  4076. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  4077. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  4078. },
  4079. "dist": {
  4080. "type": "zip",
  4081. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  4082. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  4083. "shasum": ""
  4084. },
  4085. "require": {
  4086. "php": "^7.0"
  4087. },
  4088. "require-dev": {
  4089. "phpunit/phpunit": "^6.0"
  4090. },
  4091. "type": "library",
  4092. "extra": {
  4093. "branch-alias": {
  4094. "dev-master": "3.0.x-dev"
  4095. }
  4096. },
  4097. "autoload": {
  4098. "classmap": [
  4099. "src/"
  4100. ]
  4101. },
  4102. "notification-url": "https://packagist.org/downloads/",
  4103. "license": [
  4104. "BSD-3-Clause"
  4105. ],
  4106. "authors": [
  4107. {
  4108. "name": "Jeff Welch",
  4109. "email": "whatthejeff@gmail.com"
  4110. },
  4111. {
  4112. "name": "Sebastian Bergmann",
  4113. "email": "sebastian@phpunit.de"
  4114. },
  4115. {
  4116. "name": "Adam Harvey",
  4117. "email": "aharvey@php.net"
  4118. }
  4119. ],
  4120. "description": "Provides functionality to recursively process PHP variables",
  4121. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  4122. "time": "2017-03-03T06:23:57+00:00"
  4123. },
  4124. {
  4125. "name": "sebastian/resource-operations",
  4126. "version": "2.0.1",
  4127. "source": {
  4128. "type": "git",
  4129. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  4130. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  4131. },
  4132. "dist": {
  4133. "type": "zip",
  4134. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  4135. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  4136. "shasum": ""
  4137. },
  4138. "require": {
  4139. "php": "^7.1"
  4140. },
  4141. "type": "library",
  4142. "extra": {
  4143. "branch-alias": {
  4144. "dev-master": "2.0-dev"
  4145. }
  4146. },
  4147. "autoload": {
  4148. "classmap": [
  4149. "src/"
  4150. ]
  4151. },
  4152. "notification-url": "https://packagist.org/downloads/",
  4153. "license": [
  4154. "BSD-3-Clause"
  4155. ],
  4156. "authors": [
  4157. {
  4158. "name": "Sebastian Bergmann",
  4159. "email": "sebastian@phpunit.de"
  4160. }
  4161. ],
  4162. "description": "Provides a list of PHP built-in functions that operate on resources",
  4163. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  4164. "time": "2018-10-04T04:07:39+00:00"
  4165. },
  4166. {
  4167. "name": "sebastian/version",
  4168. "version": "2.0.1",
  4169. "source": {
  4170. "type": "git",
  4171. "url": "https://github.com/sebastianbergmann/version.git",
  4172. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  4173. },
  4174. "dist": {
  4175. "type": "zip",
  4176. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  4177. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  4178. "shasum": ""
  4179. },
  4180. "require": {
  4181. "php": ">=5.6"
  4182. },
  4183. "type": "library",
  4184. "extra": {
  4185. "branch-alias": {
  4186. "dev-master": "2.0.x-dev"
  4187. }
  4188. },
  4189. "autoload": {
  4190. "classmap": [
  4191. "src/"
  4192. ]
  4193. },
  4194. "notification-url": "https://packagist.org/downloads/",
  4195. "license": [
  4196. "BSD-3-Clause"
  4197. ],
  4198. "authors": [
  4199. {
  4200. "name": "Sebastian Bergmann",
  4201. "email": "sebastian@phpunit.de",
  4202. "role": "lead"
  4203. }
  4204. ],
  4205. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  4206. "homepage": "https://github.com/sebastianbergmann/version",
  4207. "time": "2016-10-03T07:35:21+00:00"
  4208. },
  4209. {
  4210. "name": "squizlabs/php_codesniffer",
  4211. "version": "3.5.4",
  4212. "source": {
  4213. "type": "git",
  4214. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  4215. "reference": "dceec07328401de6211037abbb18bda423677e26"
  4216. },
  4217. "dist": {
  4218. "type": "zip",
  4219. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dceec07328401de6211037abbb18bda423677e26",
  4220. "reference": "dceec07328401de6211037abbb18bda423677e26",
  4221. "shasum": ""
  4222. },
  4223. "require": {
  4224. "ext-simplexml": "*",
  4225. "ext-tokenizer": "*",
  4226. "ext-xmlwriter": "*",
  4227. "php": ">=5.4.0"
  4228. },
  4229. "require-dev": {
  4230. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  4231. },
  4232. "bin": [
  4233. "bin/phpcs",
  4234. "bin/phpcbf"
  4235. ],
  4236. "type": "library",
  4237. "extra": {
  4238. "branch-alias": {
  4239. "dev-master": "3.x-dev"
  4240. }
  4241. },
  4242. "notification-url": "https://packagist.org/downloads/",
  4243. "license": [
  4244. "BSD-3-Clause"
  4245. ],
  4246. "authors": [
  4247. {
  4248. "name": "Greg Sherwood",
  4249. "role": "lead"
  4250. }
  4251. ],
  4252. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  4253. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  4254. "keywords": [
  4255. "phpcs",
  4256. "standards"
  4257. ],
  4258. "time": "2020-01-30T22:20:29+00:00"
  4259. },
  4260. {
  4261. "name": "symfony/console",
  4262. "version": "v4.4.5",
  4263. "source": {
  4264. "type": "git",
  4265. "url": "https://github.com/symfony/console.git",
  4266. "reference": "4fa15ae7be74e53f6ec8c83ed403b97e23b665e9"
  4267. },
  4268. "dist": {
  4269. "type": "zip",
  4270. "url": "https://api.github.com/repos/symfony/console/zipball/4fa15ae7be74e53f6ec8c83ed403b97e23b665e9",
  4271. "reference": "4fa15ae7be74e53f6ec8c83ed403b97e23b665e9",
  4272. "shasum": ""
  4273. },
  4274. "require": {
  4275. "php": "^7.1.3",
  4276. "symfony/polyfill-mbstring": "~1.0",
  4277. "symfony/polyfill-php73": "^1.8",
  4278. "symfony/service-contracts": "^1.1|^2"
  4279. },
  4280. "conflict": {
  4281. "symfony/dependency-injection": "<3.4",
  4282. "symfony/event-dispatcher": "<4.3|>=5",
  4283. "symfony/lock": "<4.4",
  4284. "symfony/process": "<3.3"
  4285. },
  4286. "provide": {
  4287. "psr/log-implementation": "1.0"
  4288. },
  4289. "require-dev": {
  4290. "psr/log": "~1.0",
  4291. "symfony/config": "^3.4|^4.0|^5.0",
  4292. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4293. "symfony/event-dispatcher": "^4.3",
  4294. "symfony/lock": "^4.4|^5.0",
  4295. "symfony/process": "^3.4|^4.0|^5.0",
  4296. "symfony/var-dumper": "^4.3|^5.0"
  4297. },
  4298. "suggest": {
  4299. "psr/log": "For using the console logger",
  4300. "symfony/event-dispatcher": "",
  4301. "symfony/lock": "",
  4302. "symfony/process": ""
  4303. },
  4304. "type": "library",
  4305. "extra": {
  4306. "branch-alias": {
  4307. "dev-master": "4.4-dev"
  4308. }
  4309. },
  4310. "autoload": {
  4311. "psr-4": {
  4312. "Symfony\\Component\\Console\\": ""
  4313. },
  4314. "exclude-from-classmap": [
  4315. "/Tests/"
  4316. ]
  4317. },
  4318. "notification-url": "https://packagist.org/downloads/",
  4319. "license": [
  4320. "MIT"
  4321. ],
  4322. "authors": [
  4323. {
  4324. "name": "Fabien Potencier",
  4325. "email": "fabien@symfony.com"
  4326. },
  4327. {
  4328. "name": "Symfony Community",
  4329. "homepage": "https://symfony.com/contributors"
  4330. }
  4331. ],
  4332. "description": "Symfony Console Component",
  4333. "homepage": "https://symfony.com",
  4334. "time": "2020-02-24T13:10:00+00:00"
  4335. },
  4336. {
  4337. "name": "symfony/finder",
  4338. "version": "v4.4.5",
  4339. "source": {
  4340. "type": "git",
  4341. "url": "https://github.com/symfony/finder.git",
  4342. "reference": "ea69c129aed9fdeca781d4b77eb20b62cf5d5357"
  4343. },
  4344. "dist": {
  4345. "type": "zip",
  4346. "url": "https://api.github.com/repos/symfony/finder/zipball/ea69c129aed9fdeca781d4b77eb20b62cf5d5357",
  4347. "reference": "ea69c129aed9fdeca781d4b77eb20b62cf5d5357",
  4348. "shasum": ""
  4349. },
  4350. "require": {
  4351. "php": "^7.1.3"
  4352. },
  4353. "type": "library",
  4354. "extra": {
  4355. "branch-alias": {
  4356. "dev-master": "4.4-dev"
  4357. }
  4358. },
  4359. "autoload": {
  4360. "psr-4": {
  4361. "Symfony\\Component\\Finder\\": ""
  4362. },
  4363. "exclude-from-classmap": [
  4364. "/Tests/"
  4365. ]
  4366. },
  4367. "notification-url": "https://packagist.org/downloads/",
  4368. "license": [
  4369. "MIT"
  4370. ],
  4371. "authors": [
  4372. {
  4373. "name": "Fabien Potencier",
  4374. "email": "fabien@symfony.com"
  4375. },
  4376. {
  4377. "name": "Symfony Community",
  4378. "homepage": "https://symfony.com/contributors"
  4379. }
  4380. ],
  4381. "description": "Symfony Finder Component",
  4382. "homepage": "https://symfony.com",
  4383. "time": "2020-02-14T07:42:58+00:00"
  4384. },
  4385. {
  4386. "name": "symfony/polyfill-php73",
  4387. "version": "v1.14.0",
  4388. "source": {
  4389. "type": "git",
  4390. "url": "https://github.com/symfony/polyfill-php73.git",
  4391. "reference": "5e66a0fa1070bf46bec4bea7962d285108edd675"
  4392. },
  4393. "dist": {
  4394. "type": "zip",
  4395. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/5e66a0fa1070bf46bec4bea7962d285108edd675",
  4396. "reference": "5e66a0fa1070bf46bec4bea7962d285108edd675",
  4397. "shasum": ""
  4398. },
  4399. "require": {
  4400. "php": ">=5.3.3"
  4401. },
  4402. "type": "library",
  4403. "extra": {
  4404. "branch-alias": {
  4405. "dev-master": "1.14-dev"
  4406. }
  4407. },
  4408. "autoload": {
  4409. "psr-4": {
  4410. "Symfony\\Polyfill\\Php73\\": ""
  4411. },
  4412. "files": [
  4413. "bootstrap.php"
  4414. ],
  4415. "classmap": [
  4416. "Resources/stubs"
  4417. ]
  4418. },
  4419. "notification-url": "https://packagist.org/downloads/",
  4420. "license": [
  4421. "MIT"
  4422. ],
  4423. "authors": [
  4424. {
  4425. "name": "Nicolas Grekas",
  4426. "email": "p@tchwork.com"
  4427. },
  4428. {
  4429. "name": "Symfony Community",
  4430. "homepage": "https://symfony.com/contributors"
  4431. }
  4432. ],
  4433. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4434. "homepage": "https://symfony.com",
  4435. "keywords": [
  4436. "compatibility",
  4437. "polyfill",
  4438. "portable",
  4439. "shim"
  4440. ],
  4441. "time": "2020-01-13T11:15:53+00:00"
  4442. },
  4443. {
  4444. "name": "symfony/process",
  4445. "version": "v4.4.5",
  4446. "source": {
  4447. "type": "git",
  4448. "url": "https://github.com/symfony/process.git",
  4449. "reference": "bf9166bac906c9e69fb7a11d94875e7ced97bcd7"
  4450. },
  4451. "dist": {
  4452. "type": "zip",
  4453. "url": "https://api.github.com/repos/symfony/process/zipball/bf9166bac906c9e69fb7a11d94875e7ced97bcd7",
  4454. "reference": "bf9166bac906c9e69fb7a11d94875e7ced97bcd7",
  4455. "shasum": ""
  4456. },
  4457. "require": {
  4458. "php": "^7.1.3"
  4459. },
  4460. "type": "library",
  4461. "extra": {
  4462. "branch-alias": {
  4463. "dev-master": "4.4-dev"
  4464. }
  4465. },
  4466. "autoload": {
  4467. "psr-4": {
  4468. "Symfony\\Component\\Process\\": ""
  4469. },
  4470. "exclude-from-classmap": [
  4471. "/Tests/"
  4472. ]
  4473. },
  4474. "notification-url": "https://packagist.org/downloads/",
  4475. "license": [
  4476. "MIT"
  4477. ],
  4478. "authors": [
  4479. {
  4480. "name": "Fabien Potencier",
  4481. "email": "fabien@symfony.com"
  4482. },
  4483. {
  4484. "name": "Symfony Community",
  4485. "homepage": "https://symfony.com/contributors"
  4486. }
  4487. ],
  4488. "description": "Symfony Process Component",
  4489. "homepage": "https://symfony.com",
  4490. "time": "2020-02-07T20:06:44+00:00"
  4491. },
  4492. {
  4493. "name": "theseer/tokenizer",
  4494. "version": "1.1.3",
  4495. "source": {
  4496. "type": "git",
  4497. "url": "https://github.com/theseer/tokenizer.git",
  4498. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  4499. },
  4500. "dist": {
  4501. "type": "zip",
  4502. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  4503. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  4504. "shasum": ""
  4505. },
  4506. "require": {
  4507. "ext-dom": "*",
  4508. "ext-tokenizer": "*",
  4509. "ext-xmlwriter": "*",
  4510. "php": "^7.0"
  4511. },
  4512. "type": "library",
  4513. "autoload": {
  4514. "classmap": [
  4515. "src/"
  4516. ]
  4517. },
  4518. "notification-url": "https://packagist.org/downloads/",
  4519. "license": [
  4520. "BSD-3-Clause"
  4521. ],
  4522. "authors": [
  4523. {
  4524. "name": "Arne Blankerts",
  4525. "email": "arne@blankerts.de",
  4526. "role": "Developer"
  4527. }
  4528. ],
  4529. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  4530. "time": "2019-06-13T22:48:21+00:00"
  4531. },
  4532. {
  4533. "name": "webmozart/assert",
  4534. "version": "1.7.0",
  4535. "source": {
  4536. "type": "git",
  4537. "url": "https://github.com/webmozart/assert.git",
  4538. "reference": "aed98a490f9a8f78468232db345ab9cf606cf598"
  4539. },
  4540. "dist": {
  4541. "type": "zip",
  4542. "url": "https://api.github.com/repos/webmozart/assert/zipball/aed98a490f9a8f78468232db345ab9cf606cf598",
  4543. "reference": "aed98a490f9a8f78468232db345ab9cf606cf598",
  4544. "shasum": ""
  4545. },
  4546. "require": {
  4547. "php": "^5.3.3 || ^7.0",
  4548. "symfony/polyfill-ctype": "^1.8"
  4549. },
  4550. "conflict": {
  4551. "vimeo/psalm": "<3.6.0"
  4552. },
  4553. "require-dev": {
  4554. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  4555. },
  4556. "type": "library",
  4557. "autoload": {
  4558. "psr-4": {
  4559. "Webmozart\\Assert\\": "src/"
  4560. }
  4561. },
  4562. "notification-url": "https://packagist.org/downloads/",
  4563. "license": [
  4564. "MIT"
  4565. ],
  4566. "authors": [
  4567. {
  4568. "name": "Bernhard Schussek",
  4569. "email": "bschussek@gmail.com"
  4570. }
  4571. ],
  4572. "description": "Assertions to validate method input/output with nice error messages.",
  4573. "keywords": [
  4574. "assert",
  4575. "check",
  4576. "validate"
  4577. ],
  4578. "time": "2020-02-14T12:15:55+00:00"
  4579. }
  4580. ],
  4581. "aliases": [],
  4582. "minimum-stability": "stable",
  4583. "stability-flags": [],
  4584. "prefer-stable": false,
  4585. "prefer-lowest": false,
  4586. "platform": {
  4587. "php": "^7.1.3",
  4588. "ext-hash": "*",
  4589. "ext-iconv": "*",
  4590. "ext-json": "*",
  4591. "ext-mysqli": "*",
  4592. "ext-pcre": "*",
  4593. "ext-xml": "*"
  4594. },
  4595. "platform-dev": [],
  4596. "platform-overrides": {
  4597. "php": "7.1.3"
  4598. }
  4599. }