composer.lock 199 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586
  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": "e38355218b0df7d6d82e9129fa13697f",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  20. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "dasprid/enum": "^1.0.3",
  25. "ext-iconv": "*",
  26. "php": "^7.1 || ^8.0"
  27. },
  28. "require-dev": {
  29. "phly/keep-a-changelog": "^1.4",
  30. "phpunit/phpunit": "^7 | ^8 | ^9",
  31. "squizlabs/php_codesniffer": "^3.4"
  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": "https://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. "support": {
  57. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  58. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.3"
  59. },
  60. "time": "2020-10-30T02:02:47+00:00"
  61. },
  62. {
  63. "name": "dasprid/enum",
  64. "version": "1.0.3",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/DASPRiD/Enum.git",
  68. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  73. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  74. "shasum": ""
  75. },
  76. "require-dev": {
  77. "phpunit/phpunit": "^7 | ^8 | ^9",
  78. "squizlabs/php_codesniffer": "^3.4"
  79. },
  80. "type": "library",
  81. "autoload": {
  82. "psr-4": {
  83. "DASPRiD\\Enum\\": "src/"
  84. }
  85. },
  86. "notification-url": "https://packagist.org/downloads/",
  87. "license": [
  88. "BSD-2-Clause"
  89. ],
  90. "authors": [
  91. {
  92. "name": "Ben Scholzen 'DASPRiD'",
  93. "email": "mail@dasprids.de",
  94. "homepage": "https://dasprids.de/",
  95. "role": "Developer"
  96. }
  97. ],
  98. "description": "PHP 7.1 enum implementation",
  99. "keywords": [
  100. "enum",
  101. "map"
  102. ],
  103. "support": {
  104. "issues": "https://github.com/DASPRiD/Enum/issues",
  105. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  106. },
  107. "time": "2020-10-02T16:03:48+00:00"
  108. },
  109. {
  110. "name": "google/recaptcha",
  111. "version": "1.2.4",
  112. "source": {
  113. "type": "git",
  114. "url": "https://github.com/google/recaptcha.git",
  115. "reference": "614f25a9038be4f3f2da7cbfd778dc5b357d2419"
  116. },
  117. "dist": {
  118. "type": "zip",
  119. "url": "https://api.github.com/repos/google/recaptcha/zipball/614f25a9038be4f3f2da7cbfd778dc5b357d2419",
  120. "reference": "614f25a9038be4f3f2da7cbfd778dc5b357d2419",
  121. "shasum": ""
  122. },
  123. "require": {
  124. "php": ">=5.5"
  125. },
  126. "require-dev": {
  127. "friendsofphp/php-cs-fixer": "^2.2.20|^2.15",
  128. "php-coveralls/php-coveralls": "^2.1",
  129. "phpunit/phpunit": "^4.8.36|^5.7.27|^6.59|^7.5.11"
  130. },
  131. "type": "library",
  132. "extra": {
  133. "branch-alias": {
  134. "dev-master": "1.2.x-dev"
  135. }
  136. },
  137. "autoload": {
  138. "psr-4": {
  139. "ReCaptcha\\": "src/ReCaptcha"
  140. }
  141. },
  142. "notification-url": "https://packagist.org/downloads/",
  143. "license": [
  144. "BSD-3-Clause"
  145. ],
  146. "description": "Client library for reCAPTCHA, a free service that protects websites from spam and abuse.",
  147. "homepage": "https://www.google.com/recaptcha/",
  148. "keywords": [
  149. "Abuse",
  150. "captcha",
  151. "recaptcha",
  152. "spam"
  153. ],
  154. "support": {
  155. "forum": "https://groups.google.com/forum/#!forum/recaptcha",
  156. "issues": "https://github.com/google/recaptcha/issues",
  157. "source": "https://github.com/google/recaptcha"
  158. },
  159. "time": "2020-03-31T17:50:54+00:00"
  160. },
  161. {
  162. "name": "nikic/fast-route",
  163. "version": "v1.3.0",
  164. "source": {
  165. "type": "git",
  166. "url": "https://github.com/nikic/FastRoute.git",
  167. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  168. },
  169. "dist": {
  170. "type": "zip",
  171. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  172. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  173. "shasum": ""
  174. },
  175. "require": {
  176. "php": ">=5.4.0"
  177. },
  178. "require-dev": {
  179. "phpunit/phpunit": "^4.8.35|~5.7"
  180. },
  181. "type": "library",
  182. "autoload": {
  183. "psr-4": {
  184. "FastRoute\\": "src/"
  185. },
  186. "files": [
  187. "src/functions.php"
  188. ]
  189. },
  190. "notification-url": "https://packagist.org/downloads/",
  191. "license": [
  192. "BSD-3-Clause"
  193. ],
  194. "authors": [
  195. {
  196. "name": "Nikita Popov",
  197. "email": "nikic@php.net"
  198. }
  199. ],
  200. "description": "Fast request router for PHP",
  201. "keywords": [
  202. "router",
  203. "routing"
  204. ],
  205. "support": {
  206. "issues": "https://github.com/nikic/FastRoute/issues",
  207. "source": "https://github.com/nikic/FastRoute/tree/master"
  208. },
  209. "time": "2018-02-13T20:26:39+00:00"
  210. },
  211. {
  212. "name": "paragonie/constant_time_encoding",
  213. "version": "v2.4.0",
  214. "source": {
  215. "type": "git",
  216. "url": "https://github.com/paragonie/constant_time_encoding.git",
  217. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c"
  218. },
  219. "dist": {
  220. "type": "zip",
  221. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  222. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  223. "shasum": ""
  224. },
  225. "require": {
  226. "php": "^7|^8"
  227. },
  228. "require-dev": {
  229. "phpunit/phpunit": "^6|^7|^8|^9",
  230. "vimeo/psalm": "^1|^2|^3|^4"
  231. },
  232. "type": "library",
  233. "autoload": {
  234. "psr-4": {
  235. "ParagonIE\\ConstantTime\\": "src/"
  236. }
  237. },
  238. "notification-url": "https://packagist.org/downloads/",
  239. "license": [
  240. "MIT"
  241. ],
  242. "authors": [
  243. {
  244. "name": "Paragon Initiative Enterprises",
  245. "email": "security@paragonie.com",
  246. "homepage": "https://paragonie.com",
  247. "role": "Maintainer"
  248. },
  249. {
  250. "name": "Steve 'Sc00bz' Thomas",
  251. "email": "steve@tobtu.com",
  252. "homepage": "https://www.tobtu.com",
  253. "role": "Original Developer"
  254. }
  255. ],
  256. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  257. "keywords": [
  258. "base16",
  259. "base32",
  260. "base32_decode",
  261. "base32_encode",
  262. "base64",
  263. "base64_decode",
  264. "base64_encode",
  265. "bin2hex",
  266. "encoding",
  267. "hex",
  268. "hex2bin",
  269. "rfc4648"
  270. ],
  271. "support": {
  272. "email": "info@paragonie.com",
  273. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  274. "source": "https://github.com/paragonie/constant_time_encoding"
  275. },
  276. "time": "2020-12-06T15:14:20+00:00"
  277. },
  278. {
  279. "name": "phpmyadmin/motranslator",
  280. "version": "5.2.0",
  281. "source": {
  282. "type": "git",
  283. "url": "https://github.com/phpmyadmin/motranslator.git",
  284. "reference": "cea68a8d0abf5e7fabc4179f07ef444223ddff44"
  285. },
  286. "dist": {
  287. "type": "zip",
  288. "url": "https://api.github.com/repos/phpmyadmin/motranslator/zipball/cea68a8d0abf5e7fabc4179f07ef444223ddff44",
  289. "reference": "cea68a8d0abf5e7fabc4179f07ef444223ddff44",
  290. "shasum": ""
  291. },
  292. "require": {
  293. "php": "^7.1 || ^8.0",
  294. "symfony/expression-language": "^4.0 || ^5.0"
  295. },
  296. "require-dev": {
  297. "phpmyadmin/coding-standard": "^2.1.1",
  298. "phpstan/phpstan": "^0.12.56",
  299. "phpunit/phpunit": "^7.4 || ^8 || ^9"
  300. },
  301. "type": "library",
  302. "autoload": {
  303. "psr-4": {
  304. "PhpMyAdmin\\MoTranslator\\": "src"
  305. }
  306. },
  307. "notification-url": "https://packagist.org/downloads/",
  308. "license": [
  309. "GPL-2.0-or-later"
  310. ],
  311. "authors": [
  312. {
  313. "name": "The phpMyAdmin Team",
  314. "email": "developers@phpmyadmin.net",
  315. "homepage": "https://www.phpmyadmin.net/team/"
  316. }
  317. ],
  318. "description": "Translation API for PHP using Gettext MO files",
  319. "homepage": "https://github.com/phpmyadmin/motranslator",
  320. "keywords": [
  321. "gettext",
  322. "i18n",
  323. "mo",
  324. "translator"
  325. ],
  326. "support": {
  327. "issues": "https://github.com/phpmyadmin/motranslator/issues",
  328. "source": "https://github.com/phpmyadmin/motranslator"
  329. },
  330. "time": "2021-02-05T17:05:44+00:00"
  331. },
  332. {
  333. "name": "phpmyadmin/shapefile",
  334. "version": "2.1",
  335. "source": {
  336. "type": "git",
  337. "url": "https://github.com/phpmyadmin/shapefile.git",
  338. "reference": "e23b767f2a81f61fee3fc09fc062879985f3e224"
  339. },
  340. "dist": {
  341. "type": "zip",
  342. "url": "https://api.github.com/repos/phpmyadmin/shapefile/zipball/e23b767f2a81f61fee3fc09fc062879985f3e224",
  343. "reference": "e23b767f2a81f61fee3fc09fc062879985f3e224",
  344. "shasum": ""
  345. },
  346. "require": {
  347. "php": ">=5.4.0"
  348. },
  349. "require-dev": {
  350. "phpunit/php-code-coverage": "*",
  351. "phpunit/phpunit": "~4.8 || ~5.7"
  352. },
  353. "suggest": {
  354. "ext-dbase": "For dbf files parsing"
  355. },
  356. "type": "library",
  357. "autoload": {
  358. "psr-4": {
  359. "PhpMyAdmin\\ShapeFile\\": "src"
  360. }
  361. },
  362. "notification-url": "https://packagist.org/downloads/",
  363. "license": [
  364. "GPL-2.0+"
  365. ],
  366. "authors": [
  367. {
  368. "name": "The phpMyAdmin Team",
  369. "email": "developers@phpmyadmin.net",
  370. "homepage": "https://www.phpmyadmin.net/team/"
  371. }
  372. ],
  373. "description": "ESRI ShapeFile library for PHP",
  374. "homepage": "https://github.com/phpmyadmin/shapefile",
  375. "keywords": [
  376. "ESRI",
  377. "Shapefile",
  378. "dbf",
  379. "geo",
  380. "geospatial",
  381. "shape",
  382. "shp"
  383. ],
  384. "support": {
  385. "issues": "https://github.com/phpmyadmin/shapefile/issues",
  386. "source": "https://github.com/phpmyadmin/shapefile"
  387. },
  388. "time": "2017-05-15T08:31:47+00:00"
  389. },
  390. {
  391. "name": "phpmyadmin/sql-parser",
  392. "version": "5.4.2",
  393. "source": {
  394. "type": "git",
  395. "url": "https://github.com/phpmyadmin/sql-parser.git",
  396. "reference": "b210e219a54df9b9822880780bb3ba0fffa1f542"
  397. },
  398. "dist": {
  399. "type": "zip",
  400. "url": "https://api.github.com/repos/phpmyadmin/sql-parser/zipball/b210e219a54df9b9822880780bb3ba0fffa1f542",
  401. "reference": "b210e219a54df9b9822880780bb3ba0fffa1f542",
  402. "shasum": ""
  403. },
  404. "require": {
  405. "php": "^7.1 || ^8.0",
  406. "symfony/polyfill-mbstring": "^1.3"
  407. },
  408. "conflict": {
  409. "phpmyadmin/motranslator": "<3.0"
  410. },
  411. "require-dev": {
  412. "phpmyadmin/coding-standard": "^2.1.1",
  413. "phpmyadmin/motranslator": "^4.0 || ^5.0",
  414. "phpstan/extension-installer": "^1.0",
  415. "phpstan/phpstan": "^0.12.54",
  416. "phpstan/phpstan-phpunit": "^0.12.16",
  417. "phpunit/php-code-coverage": "*",
  418. "phpunit/phpunit": "^7.4 || ^8 || ^9"
  419. },
  420. "suggest": {
  421. "ext-mbstring": "For best performance",
  422. "phpmyadmin/motranslator": "Translate messages to your favorite locale"
  423. },
  424. "bin": [
  425. "bin/highlight-query",
  426. "bin/lint-query",
  427. "bin/tokenize-query"
  428. ],
  429. "type": "library",
  430. "autoload": {
  431. "psr-4": {
  432. "PhpMyAdmin\\SqlParser\\": "src"
  433. }
  434. },
  435. "notification-url": "https://packagist.org/downloads/",
  436. "license": [
  437. "GPL-2.0-or-later"
  438. ],
  439. "authors": [
  440. {
  441. "name": "The phpMyAdmin Team",
  442. "email": "developers@phpmyadmin.net",
  443. "homepage": "https://www.phpmyadmin.net/team/"
  444. }
  445. ],
  446. "description": "A validating SQL lexer and parser with a focus on MySQL dialect.",
  447. "homepage": "https://github.com/phpmyadmin/sql-parser",
  448. "keywords": [
  449. "analysis",
  450. "lexer",
  451. "parser",
  452. "sql"
  453. ],
  454. "support": {
  455. "issues": "https://github.com/phpmyadmin/sql-parser/issues",
  456. "source": "https://github.com/phpmyadmin/sql-parser"
  457. },
  458. "time": "2021-02-05T14:33:29+00:00"
  459. },
  460. {
  461. "name": "phpmyadmin/twig-i18n-extension",
  462. "version": "v3.0.0",
  463. "source": {
  464. "type": "git",
  465. "url": "https://github.com/phpmyadmin/twig-i18n-extension.git",
  466. "reference": "1f509fa3c3f66551e1f4a346e4477c6c0dc76f9e"
  467. },
  468. "dist": {
  469. "type": "zip",
  470. "url": "https://api.github.com/repos/phpmyadmin/twig-i18n-extension/zipball/1f509fa3c3f66551e1f4a346e4477c6c0dc76f9e",
  471. "reference": "1f509fa3c3f66551e1f4a346e4477c6c0dc76f9e",
  472. "shasum": ""
  473. },
  474. "require": {
  475. "php": ">=7.1",
  476. "twig/twig": "^1.42.3|^2.0|^3.0"
  477. },
  478. "require-dev": {
  479. "phpmyadmin/coding-standard": "^2.0",
  480. "phpunit/phpunit": "^7 || ^8 || ^9"
  481. },
  482. "type": "library",
  483. "autoload": {
  484. "psr-4": {
  485. "PhpMyAdmin\\Twig\\Extensions\\": "src/"
  486. }
  487. },
  488. "notification-url": "https://packagist.org/downloads/",
  489. "license": [
  490. "MIT"
  491. ],
  492. "authors": [
  493. {
  494. "name": "Fabien Potencier",
  495. "email": "fabien@symfony.com"
  496. },
  497. {
  498. "name": "The phpMyAdmin Team",
  499. "email": "developers@phpmyadmin.net",
  500. "homepage": "https://www.phpmyadmin.net/team/"
  501. }
  502. ],
  503. "description": "Internationalization support for Twig via the gettext library",
  504. "keywords": [
  505. "gettext",
  506. "i18n"
  507. ],
  508. "support": {
  509. "issues": "https://github.com/phpmyadmin/twig-i18n-extension/issues",
  510. "source": "https://github.com/phpmyadmin/twig-i18n-extension"
  511. },
  512. "time": "2020-06-14T07:24:39+00:00"
  513. },
  514. {
  515. "name": "phpseclib/phpseclib",
  516. "version": "2.0.31",
  517. "source": {
  518. "type": "git",
  519. "url": "https://github.com/phpseclib/phpseclib.git",
  520. "reference": "233a920cb38636a43b18d428f9a8db1f0a1a08f4"
  521. },
  522. "dist": {
  523. "type": "zip",
  524. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/233a920cb38636a43b18d428f9a8db1f0a1a08f4",
  525. "reference": "233a920cb38636a43b18d428f9a8db1f0a1a08f4",
  526. "shasum": ""
  527. },
  528. "require": {
  529. "php": ">=5.3.3"
  530. },
  531. "require-dev": {
  532. "phing/phing": "~2.7",
  533. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  534. "squizlabs/php_codesniffer": "~2.0"
  535. },
  536. "suggest": {
  537. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  538. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  539. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  540. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  541. },
  542. "type": "library",
  543. "autoload": {
  544. "files": [
  545. "phpseclib/bootstrap.php"
  546. ],
  547. "psr-4": {
  548. "phpseclib\\": "phpseclib/"
  549. }
  550. },
  551. "notification-url": "https://packagist.org/downloads/",
  552. "license": [
  553. "MIT"
  554. ],
  555. "authors": [
  556. {
  557. "name": "Jim Wigginton",
  558. "email": "terrafrost@php.net",
  559. "role": "Lead Developer"
  560. },
  561. {
  562. "name": "Patrick Monnerat",
  563. "email": "pm@datasphere.ch",
  564. "role": "Developer"
  565. },
  566. {
  567. "name": "Andreas Fischer",
  568. "email": "bantu@phpbb.com",
  569. "role": "Developer"
  570. },
  571. {
  572. "name": "Hans-Jürgen Petrich",
  573. "email": "petrich@tronic-media.com",
  574. "role": "Developer"
  575. },
  576. {
  577. "name": "Graham Campbell",
  578. "email": "graham@alt-three.com",
  579. "role": "Developer"
  580. }
  581. ],
  582. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  583. "homepage": "http://phpseclib.sourceforge.net",
  584. "keywords": [
  585. "BigInteger",
  586. "aes",
  587. "asn.1",
  588. "asn1",
  589. "blowfish",
  590. "crypto",
  591. "cryptography",
  592. "encryption",
  593. "rsa",
  594. "security",
  595. "sftp",
  596. "signature",
  597. "signing",
  598. "ssh",
  599. "twofish",
  600. "x.509",
  601. "x509"
  602. ],
  603. "support": {
  604. "issues": "https://github.com/phpseclib/phpseclib/issues",
  605. "source": "https://github.com/phpseclib/phpseclib/tree/2.0.31"
  606. },
  607. "funding": [
  608. {
  609. "url": "https://github.com/terrafrost",
  610. "type": "github"
  611. },
  612. {
  613. "url": "https://www.patreon.com/phpseclib",
  614. "type": "patreon"
  615. },
  616. {
  617. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  618. "type": "tidelift"
  619. }
  620. ],
  621. "time": "2021-04-06T13:56:45+00:00"
  622. },
  623. {
  624. "name": "pragmarx/google2fa",
  625. "version": "8.0.0",
  626. "source": {
  627. "type": "git",
  628. "url": "https://github.com/antonioribeiro/google2fa.git",
  629. "reference": "26c4c5cf30a2844ba121760fd7301f8ad240100b"
  630. },
  631. "dist": {
  632. "type": "zip",
  633. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/26c4c5cf30a2844ba121760fd7301f8ad240100b",
  634. "reference": "26c4c5cf30a2844ba121760fd7301f8ad240100b",
  635. "shasum": ""
  636. },
  637. "require": {
  638. "paragonie/constant_time_encoding": "^1.0|^2.0",
  639. "php": "^7.1|^8.0"
  640. },
  641. "require-dev": {
  642. "phpstan/phpstan": "^0.12.18",
  643. "phpunit/phpunit": "^7.5.15|^8.5|^9.0"
  644. },
  645. "type": "library",
  646. "autoload": {
  647. "psr-4": {
  648. "PragmaRX\\Google2FA\\": "src/"
  649. }
  650. },
  651. "notification-url": "https://packagist.org/downloads/",
  652. "license": [
  653. "MIT"
  654. ],
  655. "authors": [
  656. {
  657. "name": "Antonio Carlos Ribeiro",
  658. "email": "acr@antoniocarlosribeiro.com",
  659. "role": "Creator & Designer"
  660. }
  661. ],
  662. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  663. "keywords": [
  664. "2fa",
  665. "Authentication",
  666. "Two Factor Authentication",
  667. "google2fa"
  668. ],
  669. "support": {
  670. "issues": "https://github.com/antonioribeiro/google2fa/issues",
  671. "source": "https://github.com/antonioribeiro/google2fa/tree/8.0.0"
  672. },
  673. "time": "2020-04-05T10:47:18+00:00"
  674. },
  675. {
  676. "name": "pragmarx/google2fa-qrcode",
  677. "version": "v1.0.3",
  678. "source": {
  679. "type": "git",
  680. "url": "https://github.com/antonioribeiro/google2fa-qrcode.git",
  681. "reference": "fd5ff0531a48b193a659309cc5fb882c14dbd03f"
  682. },
  683. "dist": {
  684. "type": "zip",
  685. "url": "https://api.github.com/repos/antonioribeiro/google2fa-qrcode/zipball/fd5ff0531a48b193a659309cc5fb882c14dbd03f",
  686. "reference": "fd5ff0531a48b193a659309cc5fb882c14dbd03f",
  687. "shasum": ""
  688. },
  689. "require": {
  690. "bacon/bacon-qr-code": "~1.0|~2.0",
  691. "php": ">=5.4",
  692. "pragmarx/google2fa": ">=4.0"
  693. },
  694. "require-dev": {
  695. "khanamiryan/qrcode-detector-decoder": "^1.0",
  696. "phpunit/phpunit": "~4|~5|~6|~7"
  697. },
  698. "type": "library",
  699. "extra": {
  700. "component": "package",
  701. "branch-alias": {
  702. "dev-master": "1.0-dev"
  703. }
  704. },
  705. "autoload": {
  706. "psr-4": {
  707. "PragmaRX\\Google2FAQRCode\\": "src/",
  708. "PragmaRX\\Google2FAQRCode\\Tests\\": "tests/"
  709. }
  710. },
  711. "notification-url": "https://packagist.org/downloads/",
  712. "license": [
  713. "MIT"
  714. ],
  715. "authors": [
  716. {
  717. "name": "Antonio Carlos Ribeiro",
  718. "email": "acr@antoniocarlosribeiro.com",
  719. "role": "Creator & Designer"
  720. }
  721. ],
  722. "description": "QR Code package for Google2FA",
  723. "keywords": [
  724. "2fa",
  725. "Authentication",
  726. "Two Factor Authentication",
  727. "google2fa",
  728. "qr code",
  729. "qrcode"
  730. ],
  731. "support": {
  732. "issues": "https://github.com/antonioribeiro/google2fa-qrcode/issues",
  733. "source": "https://github.com/antonioribeiro/google2fa-qrcode/tree/master"
  734. },
  735. "time": "2019-03-20T16:42:58+00:00"
  736. },
  737. {
  738. "name": "psr/cache",
  739. "version": "1.0.1",
  740. "source": {
  741. "type": "git",
  742. "url": "https://github.com/php-fig/cache.git",
  743. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  744. },
  745. "dist": {
  746. "type": "zip",
  747. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  748. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  749. "shasum": ""
  750. },
  751. "require": {
  752. "php": ">=5.3.0"
  753. },
  754. "type": "library",
  755. "extra": {
  756. "branch-alias": {
  757. "dev-master": "1.0.x-dev"
  758. }
  759. },
  760. "autoload": {
  761. "psr-4": {
  762. "Psr\\Cache\\": "src/"
  763. }
  764. },
  765. "notification-url": "https://packagist.org/downloads/",
  766. "license": [
  767. "MIT"
  768. ],
  769. "authors": [
  770. {
  771. "name": "PHP-FIG",
  772. "homepage": "http://www.php-fig.org/"
  773. }
  774. ],
  775. "description": "Common interface for caching libraries",
  776. "keywords": [
  777. "cache",
  778. "psr",
  779. "psr-6"
  780. ],
  781. "support": {
  782. "source": "https://github.com/php-fig/cache/tree/master"
  783. },
  784. "time": "2016-08-06T20:24:11+00:00"
  785. },
  786. {
  787. "name": "psr/container",
  788. "version": "1.0.0",
  789. "source": {
  790. "type": "git",
  791. "url": "https://github.com/php-fig/container.git",
  792. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  793. },
  794. "dist": {
  795. "type": "zip",
  796. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  797. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  798. "shasum": ""
  799. },
  800. "require": {
  801. "php": ">=5.3.0"
  802. },
  803. "type": "library",
  804. "extra": {
  805. "branch-alias": {
  806. "dev-master": "1.0.x-dev"
  807. }
  808. },
  809. "autoload": {
  810. "psr-4": {
  811. "Psr\\Container\\": "src/"
  812. }
  813. },
  814. "notification-url": "https://packagist.org/downloads/",
  815. "license": [
  816. "MIT"
  817. ],
  818. "authors": [
  819. {
  820. "name": "PHP-FIG",
  821. "homepage": "http://www.php-fig.org/"
  822. }
  823. ],
  824. "description": "Common Container Interface (PHP FIG PSR-11)",
  825. "homepage": "https://github.com/php-fig/container",
  826. "keywords": [
  827. "PSR-11",
  828. "container",
  829. "container-interface",
  830. "container-interop",
  831. "psr"
  832. ],
  833. "support": {
  834. "issues": "https://github.com/php-fig/container/issues",
  835. "source": "https://github.com/php-fig/container/tree/master"
  836. },
  837. "time": "2017-02-14T16:28:37+00:00"
  838. },
  839. {
  840. "name": "psr/log",
  841. "version": "1.1.4",
  842. "source": {
  843. "type": "git",
  844. "url": "https://github.com/php-fig/log.git",
  845. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  846. },
  847. "dist": {
  848. "type": "zip",
  849. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  850. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  851. "shasum": ""
  852. },
  853. "require": {
  854. "php": ">=5.3.0"
  855. },
  856. "type": "library",
  857. "extra": {
  858. "branch-alias": {
  859. "dev-master": "1.1.x-dev"
  860. }
  861. },
  862. "autoload": {
  863. "psr-4": {
  864. "Psr\\Log\\": "Psr/Log/"
  865. }
  866. },
  867. "notification-url": "https://packagist.org/downloads/",
  868. "license": [
  869. "MIT"
  870. ],
  871. "authors": [
  872. {
  873. "name": "PHP-FIG",
  874. "homepage": "https://www.php-fig.org/"
  875. }
  876. ],
  877. "description": "Common interface for logging libraries",
  878. "homepage": "https://github.com/php-fig/log",
  879. "keywords": [
  880. "log",
  881. "psr",
  882. "psr-3"
  883. ],
  884. "support": {
  885. "source": "https://github.com/php-fig/log/tree/1.1.4"
  886. },
  887. "time": "2021-05-03T11:20:27+00:00"
  888. },
  889. {
  890. "name": "samyoul/u2f-php-server",
  891. "version": "v1.1.4",
  892. "source": {
  893. "type": "git",
  894. "url": "https://github.com/Samyoul/U2F-php-server.git",
  895. "reference": "0625202c79d570e58525ed6c4ae38500ea3f0883"
  896. },
  897. "dist": {
  898. "type": "zip",
  899. "url": "https://api.github.com/repos/Samyoul/U2F-php-server/zipball/0625202c79d570e58525ed6c4ae38500ea3f0883",
  900. "reference": "0625202c79d570e58525ed6c4ae38500ea3f0883",
  901. "shasum": ""
  902. },
  903. "require": {
  904. "ext-openssl": "*"
  905. },
  906. "type": "library",
  907. "autoload": {
  908. "psr-4": {
  909. "Samyoul\\U2F\\U2FServer\\": [
  910. "src/"
  911. ]
  912. }
  913. },
  914. "notification-url": "https://packagist.org/downloads/",
  915. "license": [
  916. "BSD-2-Clause"
  917. ],
  918. "authors": [
  919. {
  920. "name": "Samuel Hawksby-Robinson",
  921. "email": "samuel@samyoul.com"
  922. }
  923. ],
  924. "description": "Server side handling class for FIDO U2F registration and authentication",
  925. "support": {
  926. "issues": "https://github.com/Samyoul/U2F-php-server/issues",
  927. "source": "https://github.com/Samyoul/U2F-php-server/tree/master"
  928. },
  929. "time": "2018-10-26T12:43:39+00:00"
  930. },
  931. {
  932. "name": "symfony/cache",
  933. "version": "v4.4.25",
  934. "source": {
  935. "type": "git",
  936. "url": "https://github.com/symfony/cache.git",
  937. "reference": "e2486bd59ac996afff25cdbfb823e982a0550c3e"
  938. },
  939. "dist": {
  940. "type": "zip",
  941. "url": "https://api.github.com/repos/symfony/cache/zipball/e2486bd59ac996afff25cdbfb823e982a0550c3e",
  942. "reference": "e2486bd59ac996afff25cdbfb823e982a0550c3e",
  943. "shasum": ""
  944. },
  945. "require": {
  946. "php": ">=7.1.3",
  947. "psr/cache": "^1.0|^2.0",
  948. "psr/log": "~1.0",
  949. "symfony/cache-contracts": "^1.1.7|^2",
  950. "symfony/service-contracts": "^1.1|^2",
  951. "symfony/var-exporter": "^4.2|^5.0"
  952. },
  953. "conflict": {
  954. "doctrine/dbal": "<2.6",
  955. "symfony/dependency-injection": "<3.4",
  956. "symfony/http-kernel": "<4.4|>=5.0",
  957. "symfony/var-dumper": "<4.4"
  958. },
  959. "provide": {
  960. "psr/cache-implementation": "1.0|2.0",
  961. "psr/simple-cache-implementation": "1.0",
  962. "symfony/cache-implementation": "1.0|2.0"
  963. },
  964. "require-dev": {
  965. "cache/integration-tests": "dev-master",
  966. "doctrine/cache": "^1.6|^2.0",
  967. "doctrine/dbal": "^2.6|^3.0",
  968. "predis/predis": "^1.1",
  969. "psr/simple-cache": "^1.0",
  970. "symfony/config": "^4.2|^5.0",
  971. "symfony/dependency-injection": "^3.4|^4.1|^5.0",
  972. "symfony/filesystem": "^4.4|^5.0",
  973. "symfony/http-kernel": "^4.4",
  974. "symfony/var-dumper": "^4.4|^5.0"
  975. },
  976. "type": "library",
  977. "autoload": {
  978. "psr-4": {
  979. "Symfony\\Component\\Cache\\": ""
  980. },
  981. "exclude-from-classmap": [
  982. "/Tests/"
  983. ]
  984. },
  985. "notification-url": "https://packagist.org/downloads/",
  986. "license": [
  987. "MIT"
  988. ],
  989. "authors": [
  990. {
  991. "name": "Nicolas Grekas",
  992. "email": "p@tchwork.com"
  993. },
  994. {
  995. "name": "Symfony Community",
  996. "homepage": "https://symfony.com/contributors"
  997. }
  998. ],
  999. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  1000. "homepage": "https://symfony.com",
  1001. "keywords": [
  1002. "caching",
  1003. "psr6"
  1004. ],
  1005. "support": {
  1006. "source": "https://github.com/symfony/cache/tree/v4.4.25"
  1007. },
  1008. "funding": [
  1009. {
  1010. "url": "https://symfony.com/sponsor",
  1011. "type": "custom"
  1012. },
  1013. {
  1014. "url": "https://github.com/fabpot",
  1015. "type": "github"
  1016. },
  1017. {
  1018. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1019. "type": "tidelift"
  1020. }
  1021. ],
  1022. "time": "2021-05-26T17:39:37+00:00"
  1023. },
  1024. {
  1025. "name": "symfony/cache-contracts",
  1026. "version": "v1.1.10",
  1027. "source": {
  1028. "type": "git",
  1029. "url": "https://github.com/symfony/cache-contracts.git",
  1030. "reference": "8d5489c10ef90aa7413e4921fc3c0520e24cbed7"
  1031. },
  1032. "dist": {
  1033. "type": "zip",
  1034. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/8d5489c10ef90aa7413e4921fc3c0520e24cbed7",
  1035. "reference": "8d5489c10ef90aa7413e4921fc3c0520e24cbed7",
  1036. "shasum": ""
  1037. },
  1038. "require": {
  1039. "php": ">=7.1.3",
  1040. "psr/cache": "^1.0"
  1041. },
  1042. "suggest": {
  1043. "symfony/cache-implementation": ""
  1044. },
  1045. "type": "library",
  1046. "extra": {
  1047. "branch-alias": {
  1048. "dev-master": "1.1-dev"
  1049. },
  1050. "thanks": {
  1051. "name": "symfony/contracts",
  1052. "url": "https://github.com/symfony/contracts"
  1053. }
  1054. },
  1055. "autoload": {
  1056. "psr-4": {
  1057. "Symfony\\Contracts\\Cache\\": ""
  1058. }
  1059. },
  1060. "notification-url": "https://packagist.org/downloads/",
  1061. "license": [
  1062. "MIT"
  1063. ],
  1064. "authors": [
  1065. {
  1066. "name": "Nicolas Grekas",
  1067. "email": "p@tchwork.com"
  1068. },
  1069. {
  1070. "name": "Symfony Community",
  1071. "homepage": "https://symfony.com/contributors"
  1072. }
  1073. ],
  1074. "description": "Generic abstractions related to caching",
  1075. "homepage": "https://symfony.com",
  1076. "keywords": [
  1077. "abstractions",
  1078. "contracts",
  1079. "decoupling",
  1080. "interfaces",
  1081. "interoperability",
  1082. "standards"
  1083. ],
  1084. "support": {
  1085. "source": "https://github.com/symfony/cache-contracts/tree/v1.1.10"
  1086. },
  1087. "funding": [
  1088. {
  1089. "url": "https://symfony.com/sponsor",
  1090. "type": "custom"
  1091. },
  1092. {
  1093. "url": "https://github.com/fabpot",
  1094. "type": "github"
  1095. },
  1096. {
  1097. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1098. "type": "tidelift"
  1099. }
  1100. ],
  1101. "time": "2020-09-02T16:08:58+00:00"
  1102. },
  1103. {
  1104. "name": "symfony/config",
  1105. "version": "v4.4.25",
  1106. "source": {
  1107. "type": "git",
  1108. "url": "https://github.com/symfony/config.git",
  1109. "reference": "2803882bb10353d277d4539635dd688a053d571c"
  1110. },
  1111. "dist": {
  1112. "type": "zip",
  1113. "url": "https://api.github.com/repos/symfony/config/zipball/2803882bb10353d277d4539635dd688a053d571c",
  1114. "reference": "2803882bb10353d277d4539635dd688a053d571c",
  1115. "shasum": ""
  1116. },
  1117. "require": {
  1118. "php": ">=7.1.3",
  1119. "symfony/filesystem": "^3.4|^4.0|^5.0",
  1120. "symfony/polyfill-ctype": "~1.8",
  1121. "symfony/polyfill-php81": "^1.22"
  1122. },
  1123. "conflict": {
  1124. "symfony/finder": "<3.4"
  1125. },
  1126. "require-dev": {
  1127. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  1128. "symfony/finder": "^3.4|^4.0|^5.0",
  1129. "symfony/messenger": "^4.1|^5.0",
  1130. "symfony/service-contracts": "^1.1|^2",
  1131. "symfony/yaml": "^3.4|^4.0|^5.0"
  1132. },
  1133. "suggest": {
  1134. "symfony/yaml": "To use the yaml reference dumper"
  1135. },
  1136. "type": "library",
  1137. "autoload": {
  1138. "psr-4": {
  1139. "Symfony\\Component\\Config\\": ""
  1140. },
  1141. "exclude-from-classmap": [
  1142. "/Tests/"
  1143. ]
  1144. },
  1145. "notification-url": "https://packagist.org/downloads/",
  1146. "license": [
  1147. "MIT"
  1148. ],
  1149. "authors": [
  1150. {
  1151. "name": "Fabien Potencier",
  1152. "email": "fabien@symfony.com"
  1153. },
  1154. {
  1155. "name": "Symfony Community",
  1156. "homepage": "https://symfony.com/contributors"
  1157. }
  1158. ],
  1159. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  1160. "homepage": "https://symfony.com",
  1161. "support": {
  1162. "source": "https://github.com/symfony/config/tree/v4.4.25"
  1163. },
  1164. "funding": [
  1165. {
  1166. "url": "https://symfony.com/sponsor",
  1167. "type": "custom"
  1168. },
  1169. {
  1170. "url": "https://github.com/fabpot",
  1171. "type": "github"
  1172. },
  1173. {
  1174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1175. "type": "tidelift"
  1176. }
  1177. ],
  1178. "time": "2021-05-26T11:20:16+00:00"
  1179. },
  1180. {
  1181. "name": "symfony/dependency-injection",
  1182. "version": "v4.4.25",
  1183. "source": {
  1184. "type": "git",
  1185. "url": "https://github.com/symfony/dependency-injection.git",
  1186. "reference": "2ed2a0a6c960bf4e2e862ec77b2f2c558b83c64d"
  1187. },
  1188. "dist": {
  1189. "type": "zip",
  1190. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/2ed2a0a6c960bf4e2e862ec77b2f2c558b83c64d",
  1191. "reference": "2ed2a0a6c960bf4e2e862ec77b2f2c558b83c64d",
  1192. "shasum": ""
  1193. },
  1194. "require": {
  1195. "php": ">=7.1.3",
  1196. "psr/container": "^1.0",
  1197. "symfony/service-contracts": "^1.1.6|^2"
  1198. },
  1199. "conflict": {
  1200. "symfony/config": "<4.3|>=5.0",
  1201. "symfony/finder": "<3.4",
  1202. "symfony/proxy-manager-bridge": "<3.4",
  1203. "symfony/yaml": "<3.4"
  1204. },
  1205. "provide": {
  1206. "psr/container-implementation": "1.0",
  1207. "symfony/service-implementation": "1.0|2.0"
  1208. },
  1209. "require-dev": {
  1210. "symfony/config": "^4.3",
  1211. "symfony/expression-language": "^3.4|^4.0|^5.0",
  1212. "symfony/yaml": "^4.4|^5.0"
  1213. },
  1214. "suggest": {
  1215. "symfony/config": "",
  1216. "symfony/expression-language": "For using expressions in service container configuration",
  1217. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  1218. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  1219. "symfony/yaml": ""
  1220. },
  1221. "type": "library",
  1222. "autoload": {
  1223. "psr-4": {
  1224. "Symfony\\Component\\DependencyInjection\\": ""
  1225. },
  1226. "exclude-from-classmap": [
  1227. "/Tests/"
  1228. ]
  1229. },
  1230. "notification-url": "https://packagist.org/downloads/",
  1231. "license": [
  1232. "MIT"
  1233. ],
  1234. "authors": [
  1235. {
  1236. "name": "Fabien Potencier",
  1237. "email": "fabien@symfony.com"
  1238. },
  1239. {
  1240. "name": "Symfony Community",
  1241. "homepage": "https://symfony.com/contributors"
  1242. }
  1243. ],
  1244. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  1245. "homepage": "https://symfony.com",
  1246. "support": {
  1247. "source": "https://github.com/symfony/dependency-injection/tree/v4.4.25"
  1248. },
  1249. "funding": [
  1250. {
  1251. "url": "https://symfony.com/sponsor",
  1252. "type": "custom"
  1253. },
  1254. {
  1255. "url": "https://github.com/fabpot",
  1256. "type": "github"
  1257. },
  1258. {
  1259. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1260. "type": "tidelift"
  1261. }
  1262. ],
  1263. "time": "2021-05-26T17:54:16+00:00"
  1264. },
  1265. {
  1266. "name": "symfony/expression-language",
  1267. "version": "v4.4.25",
  1268. "source": {
  1269. "type": "git",
  1270. "url": "https://github.com/symfony/expression-language.git",
  1271. "reference": "4515f7d3fa614a23c7acc1162d7ef069c165d7af"
  1272. },
  1273. "dist": {
  1274. "type": "zip",
  1275. "url": "https://api.github.com/repos/symfony/expression-language/zipball/4515f7d3fa614a23c7acc1162d7ef069c165d7af",
  1276. "reference": "4515f7d3fa614a23c7acc1162d7ef069c165d7af",
  1277. "shasum": ""
  1278. },
  1279. "require": {
  1280. "php": ">=7.1.3",
  1281. "symfony/cache": "^3.4|^4.0|^5.0",
  1282. "symfony/service-contracts": "^1.1|^2"
  1283. },
  1284. "type": "library",
  1285. "autoload": {
  1286. "psr-4": {
  1287. "Symfony\\Component\\ExpressionLanguage\\": ""
  1288. },
  1289. "exclude-from-classmap": [
  1290. "/Tests/"
  1291. ]
  1292. },
  1293. "notification-url": "https://packagist.org/downloads/",
  1294. "license": [
  1295. "MIT"
  1296. ],
  1297. "authors": [
  1298. {
  1299. "name": "Fabien Potencier",
  1300. "email": "fabien@symfony.com"
  1301. },
  1302. {
  1303. "name": "Symfony Community",
  1304. "homepage": "https://symfony.com/contributors"
  1305. }
  1306. ],
  1307. "description": "Provides an engine that can compile and evaluate expressions",
  1308. "homepage": "https://symfony.com",
  1309. "support": {
  1310. "source": "https://github.com/symfony/expression-language/tree/v4.4.25"
  1311. },
  1312. "funding": [
  1313. {
  1314. "url": "https://symfony.com/sponsor",
  1315. "type": "custom"
  1316. },
  1317. {
  1318. "url": "https://github.com/fabpot",
  1319. "type": "github"
  1320. },
  1321. {
  1322. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1323. "type": "tidelift"
  1324. }
  1325. ],
  1326. "time": "2021-05-26T11:20:16+00:00"
  1327. },
  1328. {
  1329. "name": "symfony/filesystem",
  1330. "version": "v4.4.25",
  1331. "source": {
  1332. "type": "git",
  1333. "url": "https://github.com/symfony/filesystem.git",
  1334. "reference": "2d926ebd76f52352deb3c9577d8c1d4b96eae429"
  1335. },
  1336. "dist": {
  1337. "type": "zip",
  1338. "url": "https://api.github.com/repos/symfony/filesystem/zipball/2d926ebd76f52352deb3c9577d8c1d4b96eae429",
  1339. "reference": "2d926ebd76f52352deb3c9577d8c1d4b96eae429",
  1340. "shasum": ""
  1341. },
  1342. "require": {
  1343. "php": ">=7.1.3",
  1344. "symfony/polyfill-ctype": "~1.8"
  1345. },
  1346. "type": "library",
  1347. "autoload": {
  1348. "psr-4": {
  1349. "Symfony\\Component\\Filesystem\\": ""
  1350. },
  1351. "exclude-from-classmap": [
  1352. "/Tests/"
  1353. ]
  1354. },
  1355. "notification-url": "https://packagist.org/downloads/",
  1356. "license": [
  1357. "MIT"
  1358. ],
  1359. "authors": [
  1360. {
  1361. "name": "Fabien Potencier",
  1362. "email": "fabien@symfony.com"
  1363. },
  1364. {
  1365. "name": "Symfony Community",
  1366. "homepage": "https://symfony.com/contributors"
  1367. }
  1368. ],
  1369. "description": "Provides basic utilities for the filesystem",
  1370. "homepage": "https://symfony.com",
  1371. "support": {
  1372. "source": "https://github.com/symfony/filesystem/tree/v4.4.25"
  1373. },
  1374. "funding": [
  1375. {
  1376. "url": "https://symfony.com/sponsor",
  1377. "type": "custom"
  1378. },
  1379. {
  1380. "url": "https://github.com/fabpot",
  1381. "type": "github"
  1382. },
  1383. {
  1384. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1385. "type": "tidelift"
  1386. }
  1387. ],
  1388. "time": "2021-05-26T17:30:55+00:00"
  1389. },
  1390. {
  1391. "name": "symfony/polyfill-ctype",
  1392. "version": "v1.23.0",
  1393. "source": {
  1394. "type": "git",
  1395. "url": "https://github.com/symfony/polyfill-ctype.git",
  1396. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  1397. },
  1398. "dist": {
  1399. "type": "zip",
  1400. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  1401. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  1402. "shasum": ""
  1403. },
  1404. "require": {
  1405. "php": ">=7.1"
  1406. },
  1407. "suggest": {
  1408. "ext-ctype": "For best performance"
  1409. },
  1410. "type": "library",
  1411. "extra": {
  1412. "branch-alias": {
  1413. "dev-main": "1.23-dev"
  1414. },
  1415. "thanks": {
  1416. "name": "symfony/polyfill",
  1417. "url": "https://github.com/symfony/polyfill"
  1418. }
  1419. },
  1420. "autoload": {
  1421. "psr-4": {
  1422. "Symfony\\Polyfill\\Ctype\\": ""
  1423. },
  1424. "files": [
  1425. "bootstrap.php"
  1426. ]
  1427. },
  1428. "notification-url": "https://packagist.org/downloads/",
  1429. "license": [
  1430. "MIT"
  1431. ],
  1432. "authors": [
  1433. {
  1434. "name": "Gert de Pagter",
  1435. "email": "BackEndTea@gmail.com"
  1436. },
  1437. {
  1438. "name": "Symfony Community",
  1439. "homepage": "https://symfony.com/contributors"
  1440. }
  1441. ],
  1442. "description": "Symfony polyfill for ctype functions",
  1443. "homepage": "https://symfony.com",
  1444. "keywords": [
  1445. "compatibility",
  1446. "ctype",
  1447. "polyfill",
  1448. "portable"
  1449. ],
  1450. "support": {
  1451. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  1452. },
  1453. "funding": [
  1454. {
  1455. "url": "https://symfony.com/sponsor",
  1456. "type": "custom"
  1457. },
  1458. {
  1459. "url": "https://github.com/fabpot",
  1460. "type": "github"
  1461. },
  1462. {
  1463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1464. "type": "tidelift"
  1465. }
  1466. ],
  1467. "time": "2021-02-19T12:13:01+00:00"
  1468. },
  1469. {
  1470. "name": "symfony/polyfill-mbstring",
  1471. "version": "v1.23.0",
  1472. "source": {
  1473. "type": "git",
  1474. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1475. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1"
  1476. },
  1477. "dist": {
  1478. "type": "zip",
  1479. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  1480. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  1481. "shasum": ""
  1482. },
  1483. "require": {
  1484. "php": ">=7.1"
  1485. },
  1486. "suggest": {
  1487. "ext-mbstring": "For best performance"
  1488. },
  1489. "type": "library",
  1490. "extra": {
  1491. "branch-alias": {
  1492. "dev-main": "1.23-dev"
  1493. },
  1494. "thanks": {
  1495. "name": "symfony/polyfill",
  1496. "url": "https://github.com/symfony/polyfill"
  1497. }
  1498. },
  1499. "autoload": {
  1500. "psr-4": {
  1501. "Symfony\\Polyfill\\Mbstring\\": ""
  1502. },
  1503. "files": [
  1504. "bootstrap.php"
  1505. ]
  1506. },
  1507. "notification-url": "https://packagist.org/downloads/",
  1508. "license": [
  1509. "MIT"
  1510. ],
  1511. "authors": [
  1512. {
  1513. "name": "Nicolas Grekas",
  1514. "email": "p@tchwork.com"
  1515. },
  1516. {
  1517. "name": "Symfony Community",
  1518. "homepage": "https://symfony.com/contributors"
  1519. }
  1520. ],
  1521. "description": "Symfony polyfill for the Mbstring extension",
  1522. "homepage": "https://symfony.com",
  1523. "keywords": [
  1524. "compatibility",
  1525. "mbstring",
  1526. "polyfill",
  1527. "portable",
  1528. "shim"
  1529. ],
  1530. "support": {
  1531. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0"
  1532. },
  1533. "funding": [
  1534. {
  1535. "url": "https://symfony.com/sponsor",
  1536. "type": "custom"
  1537. },
  1538. {
  1539. "url": "https://github.com/fabpot",
  1540. "type": "github"
  1541. },
  1542. {
  1543. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1544. "type": "tidelift"
  1545. }
  1546. ],
  1547. "time": "2021-05-27T09:27:20+00:00"
  1548. },
  1549. {
  1550. "name": "symfony/polyfill-php81",
  1551. "version": "v1.23.0",
  1552. "source": {
  1553. "type": "git",
  1554. "url": "https://github.com/symfony/polyfill-php81.git",
  1555. "reference": "e66119f3de95efc359483f810c4c3e6436279436"
  1556. },
  1557. "dist": {
  1558. "type": "zip",
  1559. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436",
  1560. "reference": "e66119f3de95efc359483f810c4c3e6436279436",
  1561. "shasum": ""
  1562. },
  1563. "require": {
  1564. "php": ">=7.1"
  1565. },
  1566. "type": "library",
  1567. "extra": {
  1568. "branch-alias": {
  1569. "dev-main": "1.23-dev"
  1570. },
  1571. "thanks": {
  1572. "name": "symfony/polyfill",
  1573. "url": "https://github.com/symfony/polyfill"
  1574. }
  1575. },
  1576. "autoload": {
  1577. "psr-4": {
  1578. "Symfony\\Polyfill\\Php81\\": ""
  1579. },
  1580. "files": [
  1581. "bootstrap.php"
  1582. ],
  1583. "classmap": [
  1584. "Resources/stubs"
  1585. ]
  1586. },
  1587. "notification-url": "https://packagist.org/downloads/",
  1588. "license": [
  1589. "MIT"
  1590. ],
  1591. "authors": [
  1592. {
  1593. "name": "Nicolas Grekas",
  1594. "email": "p@tchwork.com"
  1595. },
  1596. {
  1597. "name": "Symfony Community",
  1598. "homepage": "https://symfony.com/contributors"
  1599. }
  1600. ],
  1601. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  1602. "homepage": "https://symfony.com",
  1603. "keywords": [
  1604. "compatibility",
  1605. "polyfill",
  1606. "portable",
  1607. "shim"
  1608. ],
  1609. "support": {
  1610. "source": "https://github.com/symfony/polyfill-php81/tree/v1.23.0"
  1611. },
  1612. "funding": [
  1613. {
  1614. "url": "https://symfony.com/sponsor",
  1615. "type": "custom"
  1616. },
  1617. {
  1618. "url": "https://github.com/fabpot",
  1619. "type": "github"
  1620. },
  1621. {
  1622. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1623. "type": "tidelift"
  1624. }
  1625. ],
  1626. "time": "2021-05-21T13:25:03+00:00"
  1627. },
  1628. {
  1629. "name": "symfony/service-contracts",
  1630. "version": "v1.1.9",
  1631. "source": {
  1632. "type": "git",
  1633. "url": "https://github.com/symfony/service-contracts.git",
  1634. "reference": "b776d18b303a39f56c63747bcb977ad4b27aca26"
  1635. },
  1636. "dist": {
  1637. "type": "zip",
  1638. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/b776d18b303a39f56c63747bcb977ad4b27aca26",
  1639. "reference": "b776d18b303a39f56c63747bcb977ad4b27aca26",
  1640. "shasum": ""
  1641. },
  1642. "require": {
  1643. "php": ">=7.1.3",
  1644. "psr/container": "^1.0"
  1645. },
  1646. "suggest": {
  1647. "symfony/service-implementation": ""
  1648. },
  1649. "type": "library",
  1650. "extra": {
  1651. "branch-alias": {
  1652. "dev-master": "1.1-dev"
  1653. },
  1654. "thanks": {
  1655. "name": "symfony/contracts",
  1656. "url": "https://github.com/symfony/contracts"
  1657. }
  1658. },
  1659. "autoload": {
  1660. "psr-4": {
  1661. "Symfony\\Contracts\\Service\\": ""
  1662. }
  1663. },
  1664. "notification-url": "https://packagist.org/downloads/",
  1665. "license": [
  1666. "MIT"
  1667. ],
  1668. "authors": [
  1669. {
  1670. "name": "Nicolas Grekas",
  1671. "email": "p@tchwork.com"
  1672. },
  1673. {
  1674. "name": "Symfony Community",
  1675. "homepage": "https://symfony.com/contributors"
  1676. }
  1677. ],
  1678. "description": "Generic abstractions related to writing services",
  1679. "homepage": "https://symfony.com",
  1680. "keywords": [
  1681. "abstractions",
  1682. "contracts",
  1683. "decoupling",
  1684. "interfaces",
  1685. "interoperability",
  1686. "standards"
  1687. ],
  1688. "support": {
  1689. "source": "https://github.com/symfony/service-contracts/tree/v1.1.9"
  1690. },
  1691. "funding": [
  1692. {
  1693. "url": "https://symfony.com/sponsor",
  1694. "type": "custom"
  1695. },
  1696. {
  1697. "url": "https://github.com/fabpot",
  1698. "type": "github"
  1699. },
  1700. {
  1701. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1702. "type": "tidelift"
  1703. }
  1704. ],
  1705. "time": "2020-07-06T13:19:58+00:00"
  1706. },
  1707. {
  1708. "name": "symfony/var-exporter",
  1709. "version": "v4.4.25",
  1710. "source": {
  1711. "type": "git",
  1712. "url": "https://github.com/symfony/var-exporter.git",
  1713. "reference": "723c038aac53280c8ad4209add93e679a33bbe3f"
  1714. },
  1715. "dist": {
  1716. "type": "zip",
  1717. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/723c038aac53280c8ad4209add93e679a33bbe3f",
  1718. "reference": "723c038aac53280c8ad4209add93e679a33bbe3f",
  1719. "shasum": ""
  1720. },
  1721. "require": {
  1722. "php": ">=7.1.3"
  1723. },
  1724. "require-dev": {
  1725. "symfony/var-dumper": "^4.4.9|^5.0.9"
  1726. },
  1727. "type": "library",
  1728. "autoload": {
  1729. "psr-4": {
  1730. "Symfony\\Component\\VarExporter\\": ""
  1731. },
  1732. "exclude-from-classmap": [
  1733. "/Tests/"
  1734. ]
  1735. },
  1736. "notification-url": "https://packagist.org/downloads/",
  1737. "license": [
  1738. "MIT"
  1739. ],
  1740. "authors": [
  1741. {
  1742. "name": "Nicolas Grekas",
  1743. "email": "p@tchwork.com"
  1744. },
  1745. {
  1746. "name": "Symfony Community",
  1747. "homepage": "https://symfony.com/contributors"
  1748. }
  1749. ],
  1750. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  1751. "homepage": "https://symfony.com",
  1752. "keywords": [
  1753. "clone",
  1754. "construct",
  1755. "export",
  1756. "hydrate",
  1757. "instantiate",
  1758. "serialize"
  1759. ],
  1760. "support": {
  1761. "source": "https://github.com/symfony/var-exporter/tree/v4.4.25"
  1762. },
  1763. "funding": [
  1764. {
  1765. "url": "https://symfony.com/sponsor",
  1766. "type": "custom"
  1767. },
  1768. {
  1769. "url": "https://github.com/fabpot",
  1770. "type": "github"
  1771. },
  1772. {
  1773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1774. "type": "tidelift"
  1775. }
  1776. ],
  1777. "time": "2021-05-26T17:39:37+00:00"
  1778. },
  1779. {
  1780. "name": "tecnickcom/tcpdf",
  1781. "version": "6.4.1",
  1782. "source": {
  1783. "type": "git",
  1784. "url": "https://github.com/tecnickcom/TCPDF.git",
  1785. "reference": "5ba838befdb37ef06a16d9f716f35eb03cb1b329"
  1786. },
  1787. "dist": {
  1788. "type": "zip",
  1789. "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/5ba838befdb37ef06a16d9f716f35eb03cb1b329",
  1790. "reference": "5ba838befdb37ef06a16d9f716f35eb03cb1b329",
  1791. "shasum": ""
  1792. },
  1793. "require": {
  1794. "php": ">=5.3.0"
  1795. },
  1796. "type": "library",
  1797. "autoload": {
  1798. "classmap": [
  1799. "config",
  1800. "include",
  1801. "tcpdf.php",
  1802. "tcpdf_parser.php",
  1803. "tcpdf_import.php",
  1804. "tcpdf_barcodes_1d.php",
  1805. "tcpdf_barcodes_2d.php",
  1806. "include/tcpdf_colors.php",
  1807. "include/tcpdf_filters.php",
  1808. "include/tcpdf_font_data.php",
  1809. "include/tcpdf_fonts.php",
  1810. "include/tcpdf_images.php",
  1811. "include/tcpdf_static.php",
  1812. "include/barcodes/datamatrix.php",
  1813. "include/barcodes/pdf417.php",
  1814. "include/barcodes/qrcode.php"
  1815. ]
  1816. },
  1817. "notification-url": "https://packagist.org/downloads/",
  1818. "license": [
  1819. "LGPL-3.0-only"
  1820. ],
  1821. "authors": [
  1822. {
  1823. "name": "Nicola Asuni",
  1824. "email": "info@tecnick.com",
  1825. "role": "lead"
  1826. }
  1827. ],
  1828. "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
  1829. "homepage": "http://www.tcpdf.org/",
  1830. "keywords": [
  1831. "PDFD32000-2008",
  1832. "TCPDF",
  1833. "barcodes",
  1834. "datamatrix",
  1835. "pdf",
  1836. "pdf417",
  1837. "qrcode"
  1838. ],
  1839. "support": {
  1840. "issues": "https://github.com/tecnickcom/TCPDF/issues",
  1841. "source": "https://github.com/tecnickcom/TCPDF/tree/6.4.1"
  1842. },
  1843. "funding": [
  1844. {
  1845. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&currency_code=GBP&business=paypal@tecnick.com&item_name=donation%20for%20tcpdf%20project",
  1846. "type": "custom"
  1847. }
  1848. ],
  1849. "time": "2021-03-27T16:00:33+00:00"
  1850. },
  1851. {
  1852. "name": "twig/twig",
  1853. "version": "v2.13.1",
  1854. "source": {
  1855. "type": "git",
  1856. "url": "https://github.com/twigphp/Twig.git",
  1857. "reference": "57e96259776ddcacf1814885fc3950460c8e18ef"
  1858. },
  1859. "dist": {
  1860. "type": "zip",
  1861. "url": "https://api.github.com/repos/twigphp/Twig/zipball/57e96259776ddcacf1814885fc3950460c8e18ef",
  1862. "reference": "57e96259776ddcacf1814885fc3950460c8e18ef",
  1863. "shasum": ""
  1864. },
  1865. "require": {
  1866. "php": ">=7.1.3",
  1867. "symfony/polyfill-ctype": "^1.8",
  1868. "symfony/polyfill-mbstring": "^1.3"
  1869. },
  1870. "require-dev": {
  1871. "psr/container": "^1.0",
  1872. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  1873. },
  1874. "type": "library",
  1875. "extra": {
  1876. "branch-alias": {
  1877. "dev-master": "2.13-dev"
  1878. }
  1879. },
  1880. "autoload": {
  1881. "psr-0": {
  1882. "Twig_": "lib/"
  1883. },
  1884. "psr-4": {
  1885. "Twig\\": "src/"
  1886. }
  1887. },
  1888. "notification-url": "https://packagist.org/downloads/",
  1889. "license": [
  1890. "BSD-3-Clause"
  1891. ],
  1892. "authors": [
  1893. {
  1894. "name": "Fabien Potencier",
  1895. "email": "fabien@symfony.com",
  1896. "homepage": "http://fabien.potencier.org",
  1897. "role": "Lead Developer"
  1898. },
  1899. {
  1900. "name": "Twig Team",
  1901. "role": "Contributors"
  1902. },
  1903. {
  1904. "name": "Armin Ronacher",
  1905. "email": "armin.ronacher@active-4.com",
  1906. "role": "Project Founder"
  1907. }
  1908. ],
  1909. "description": "Twig, the flexible, fast, and secure template language for PHP",
  1910. "homepage": "https://twig.symfony.com",
  1911. "keywords": [
  1912. "templating"
  1913. ],
  1914. "support": {
  1915. "issues": "https://github.com/twigphp/Twig/issues",
  1916. "source": "https://github.com/twigphp/Twig/tree/v2.13.1"
  1917. },
  1918. "funding": [
  1919. {
  1920. "url": "https://github.com/fabpot",
  1921. "type": "github"
  1922. },
  1923. {
  1924. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  1925. "type": "tidelift"
  1926. }
  1927. ],
  1928. "time": "2020-08-05T15:09:04+00:00"
  1929. },
  1930. {
  1931. "name": "williamdes/mariadb-mysql-kbs",
  1932. "version": "1.2.12",
  1933. "source": {
  1934. "type": "git",
  1935. "url": "https://github.com/williamdes/mariadb-mysql-kbs.git",
  1936. "reference": "b5d4b498ba3d24ab7ad7dd0b79384542e37286a1"
  1937. },
  1938. "dist": {
  1939. "type": "zip",
  1940. "url": "https://api.github.com/repos/williamdes/mariadb-mysql-kbs/zipball/b5d4b498ba3d24ab7ad7dd0b79384542e37286a1",
  1941. "reference": "b5d4b498ba3d24ab7ad7dd0b79384542e37286a1",
  1942. "shasum": ""
  1943. },
  1944. "require": {
  1945. "php": "^7.1 || ^8.0"
  1946. },
  1947. "require-dev": {
  1948. "phpstan/phpstan": "^0.12",
  1949. "phpunit/phpunit": "^7 || ^8 || ^9",
  1950. "slevomat/coding-standard": "^6.3",
  1951. "squizlabs/php_codesniffer": "^3.4",
  1952. "swaggest/json-schema": "^0.12.29"
  1953. },
  1954. "type": "library",
  1955. "autoload": {
  1956. "psr-4": {
  1957. "Williamdes\\MariaDBMySQLKBS\\": "src/"
  1958. }
  1959. },
  1960. "notification-url": "https://packagist.org/downloads/",
  1961. "license": [
  1962. "MPL-2.0"
  1963. ],
  1964. "authors": [
  1965. {
  1966. "name": "William Desportes",
  1967. "email": "williamdes@wdes.fr"
  1968. }
  1969. ],
  1970. "description": "An index of the MariaDB and MySQL Knowledge bases",
  1971. "homepage": "https://github.com/williamdes/mariadb-mysql-kbs",
  1972. "keywords": [
  1973. "composer-package",
  1974. "dataset",
  1975. "json",
  1976. "kb",
  1977. "knowledge-base",
  1978. "library",
  1979. "mariadb",
  1980. "mariadb-knowledge-bases",
  1981. "mysql",
  1982. "mysql-knowledge-bases",
  1983. "npm-package"
  1984. ],
  1985. "support": {
  1986. "email": "williamdes@wdes.fr",
  1987. "issues": "https://github.com/williamdes/mariadb-mysql-kbs/issues",
  1988. "source": "https://github.com/williamdes/mariadb-mysql-kbs"
  1989. },
  1990. "time": "2021-01-02T21:39:05+00:00"
  1991. }
  1992. ],
  1993. "packages-dev": [
  1994. {
  1995. "name": "amphp/amp",
  1996. "version": "v2.5.2",
  1997. "source": {
  1998. "type": "git",
  1999. "url": "https://github.com/amphp/amp.git",
  2000. "reference": "efca2b32a7580087adb8aabbff6be1dc1bb924a9"
  2001. },
  2002. "dist": {
  2003. "type": "zip",
  2004. "url": "https://api.github.com/repos/amphp/amp/zipball/efca2b32a7580087adb8aabbff6be1dc1bb924a9",
  2005. "reference": "efca2b32a7580087adb8aabbff6be1dc1bb924a9",
  2006. "shasum": ""
  2007. },
  2008. "require": {
  2009. "php": ">=7"
  2010. },
  2011. "require-dev": {
  2012. "amphp/php-cs-fixer-config": "dev-master",
  2013. "amphp/phpunit-util": "^1",
  2014. "ext-json": "*",
  2015. "jetbrains/phpstorm-stubs": "^2019.3",
  2016. "phpunit/phpunit": "^6.0.9 | ^7",
  2017. "psalm/phar": "^3.11@dev",
  2018. "react/promise": "^2"
  2019. },
  2020. "type": "library",
  2021. "extra": {
  2022. "branch-alias": {
  2023. "dev-master": "2.x-dev"
  2024. }
  2025. },
  2026. "autoload": {
  2027. "psr-4": {
  2028. "Amp\\": "lib"
  2029. },
  2030. "files": [
  2031. "lib/functions.php",
  2032. "lib/Internal/functions.php"
  2033. ]
  2034. },
  2035. "notification-url": "https://packagist.org/downloads/",
  2036. "license": [
  2037. "MIT"
  2038. ],
  2039. "authors": [
  2040. {
  2041. "name": "Daniel Lowrey",
  2042. "email": "rdlowrey@php.net"
  2043. },
  2044. {
  2045. "name": "Aaron Piotrowski",
  2046. "email": "aaron@trowski.com"
  2047. },
  2048. {
  2049. "name": "Bob Weinand",
  2050. "email": "bobwei9@hotmail.com"
  2051. },
  2052. {
  2053. "name": "Niklas Keller",
  2054. "email": "me@kelunik.com"
  2055. }
  2056. ],
  2057. "description": "A non-blocking concurrency framework for PHP applications.",
  2058. "homepage": "http://amphp.org/amp",
  2059. "keywords": [
  2060. "async",
  2061. "asynchronous",
  2062. "awaitable",
  2063. "concurrency",
  2064. "event",
  2065. "event-loop",
  2066. "future",
  2067. "non-blocking",
  2068. "promise"
  2069. ],
  2070. "support": {
  2071. "irc": "irc://irc.freenode.org/amphp",
  2072. "issues": "https://github.com/amphp/amp/issues",
  2073. "source": "https://github.com/amphp/amp/tree/v2.5.2"
  2074. },
  2075. "funding": [
  2076. {
  2077. "url": "https://github.com/amphp",
  2078. "type": "github"
  2079. }
  2080. ],
  2081. "time": "2021-01-10T17:06:37+00:00"
  2082. },
  2083. {
  2084. "name": "amphp/byte-stream",
  2085. "version": "v1.8.1",
  2086. "source": {
  2087. "type": "git",
  2088. "url": "https://github.com/amphp/byte-stream.git",
  2089. "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd"
  2090. },
  2091. "dist": {
  2092. "type": "zip",
  2093. "url": "https://api.github.com/repos/amphp/byte-stream/zipball/acbd8002b3536485c997c4e019206b3f10ca15bd",
  2094. "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd",
  2095. "shasum": ""
  2096. },
  2097. "require": {
  2098. "amphp/amp": "^2",
  2099. "php": ">=7.1"
  2100. },
  2101. "require-dev": {
  2102. "amphp/php-cs-fixer-config": "dev-master",
  2103. "amphp/phpunit-util": "^1.4",
  2104. "friendsofphp/php-cs-fixer": "^2.3",
  2105. "jetbrains/phpstorm-stubs": "^2019.3",
  2106. "phpunit/phpunit": "^6 || ^7 || ^8",
  2107. "psalm/phar": "^3.11.4"
  2108. },
  2109. "type": "library",
  2110. "extra": {
  2111. "branch-alias": {
  2112. "dev-master": "1.x-dev"
  2113. }
  2114. },
  2115. "autoload": {
  2116. "psr-4": {
  2117. "Amp\\ByteStream\\": "lib"
  2118. },
  2119. "files": [
  2120. "lib/functions.php"
  2121. ]
  2122. },
  2123. "notification-url": "https://packagist.org/downloads/",
  2124. "license": [
  2125. "MIT"
  2126. ],
  2127. "authors": [
  2128. {
  2129. "name": "Aaron Piotrowski",
  2130. "email": "aaron@trowski.com"
  2131. },
  2132. {
  2133. "name": "Niklas Keller",
  2134. "email": "me@kelunik.com"
  2135. }
  2136. ],
  2137. "description": "A stream abstraction to make working with non-blocking I/O simple.",
  2138. "homepage": "http://amphp.org/byte-stream",
  2139. "keywords": [
  2140. "amp",
  2141. "amphp",
  2142. "async",
  2143. "io",
  2144. "non-blocking",
  2145. "stream"
  2146. ],
  2147. "support": {
  2148. "irc": "irc://irc.freenode.org/amphp",
  2149. "issues": "https://github.com/amphp/byte-stream/issues",
  2150. "source": "https://github.com/amphp/byte-stream/tree/v1.8.1"
  2151. },
  2152. "funding": [
  2153. {
  2154. "url": "https://github.com/amphp",
  2155. "type": "github"
  2156. }
  2157. ],
  2158. "time": "2021-03-30T17:13:30+00:00"
  2159. },
  2160. {
  2161. "name": "composer/package-versions-deprecated",
  2162. "version": "1.11.99.2",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://github.com/composer/package-versions-deprecated.git",
  2166. "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/c6522afe5540d5fc46675043d3ed5a45a740b27c",
  2171. "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c",
  2172. "shasum": ""
  2173. },
  2174. "require": {
  2175. "composer-plugin-api": "^1.1.0 || ^2.0",
  2176. "php": "^7 || ^8"
  2177. },
  2178. "replace": {
  2179. "ocramius/package-versions": "1.11.99"
  2180. },
  2181. "require-dev": {
  2182. "composer/composer": "^1.9.3 || ^2.0@dev",
  2183. "ext-zip": "^1.13",
  2184. "phpunit/phpunit": "^6.5 || ^7"
  2185. },
  2186. "type": "composer-plugin",
  2187. "extra": {
  2188. "class": "PackageVersions\\Installer",
  2189. "branch-alias": {
  2190. "dev-master": "1.x-dev"
  2191. }
  2192. },
  2193. "autoload": {
  2194. "psr-4": {
  2195. "PackageVersions\\": "src/PackageVersions"
  2196. }
  2197. },
  2198. "notification-url": "https://packagist.org/downloads/",
  2199. "license": [
  2200. "MIT"
  2201. ],
  2202. "authors": [
  2203. {
  2204. "name": "Marco Pivetta",
  2205. "email": "ocramius@gmail.com"
  2206. },
  2207. {
  2208. "name": "Jordi Boggiano",
  2209. "email": "j.boggiano@seld.be"
  2210. }
  2211. ],
  2212. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  2213. "support": {
  2214. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  2215. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.2"
  2216. },
  2217. "funding": [
  2218. {
  2219. "url": "https://packagist.com",
  2220. "type": "custom"
  2221. },
  2222. {
  2223. "url": "https://github.com/composer",
  2224. "type": "github"
  2225. },
  2226. {
  2227. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  2228. "type": "tidelift"
  2229. }
  2230. ],
  2231. "time": "2021-05-24T07:46:03+00:00"
  2232. },
  2233. {
  2234. "name": "composer/semver",
  2235. "version": "3.2.5",
  2236. "source": {
  2237. "type": "git",
  2238. "url": "https://github.com/composer/semver.git",
  2239. "reference": "31f3ea725711245195f62e54ffa402d8ef2fdba9"
  2240. },
  2241. "dist": {
  2242. "type": "zip",
  2243. "url": "https://api.github.com/repos/composer/semver/zipball/31f3ea725711245195f62e54ffa402d8ef2fdba9",
  2244. "reference": "31f3ea725711245195f62e54ffa402d8ef2fdba9",
  2245. "shasum": ""
  2246. },
  2247. "require": {
  2248. "php": "^5.3.2 || ^7.0 || ^8.0"
  2249. },
  2250. "require-dev": {
  2251. "phpstan/phpstan": "^0.12.54",
  2252. "symfony/phpunit-bridge": "^4.2 || ^5"
  2253. },
  2254. "type": "library",
  2255. "extra": {
  2256. "branch-alias": {
  2257. "dev-main": "3.x-dev"
  2258. }
  2259. },
  2260. "autoload": {
  2261. "psr-4": {
  2262. "Composer\\Semver\\": "src"
  2263. }
  2264. },
  2265. "notification-url": "https://packagist.org/downloads/",
  2266. "license": [
  2267. "MIT"
  2268. ],
  2269. "authors": [
  2270. {
  2271. "name": "Nils Adermann",
  2272. "email": "naderman@naderman.de",
  2273. "homepage": "http://www.naderman.de"
  2274. },
  2275. {
  2276. "name": "Jordi Boggiano",
  2277. "email": "j.boggiano@seld.be",
  2278. "homepage": "http://seld.be"
  2279. },
  2280. {
  2281. "name": "Rob Bast",
  2282. "email": "rob.bast@gmail.com",
  2283. "homepage": "http://robbast.nl"
  2284. }
  2285. ],
  2286. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  2287. "keywords": [
  2288. "semantic",
  2289. "semver",
  2290. "validation",
  2291. "versioning"
  2292. ],
  2293. "support": {
  2294. "irc": "irc://irc.freenode.org/composer",
  2295. "issues": "https://github.com/composer/semver/issues",
  2296. "source": "https://github.com/composer/semver/tree/3.2.5"
  2297. },
  2298. "funding": [
  2299. {
  2300. "url": "https://packagist.com",
  2301. "type": "custom"
  2302. },
  2303. {
  2304. "url": "https://github.com/composer",
  2305. "type": "github"
  2306. },
  2307. {
  2308. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  2309. "type": "tidelift"
  2310. }
  2311. ],
  2312. "time": "2021-05-24T12:41:47+00:00"
  2313. },
  2314. {
  2315. "name": "composer/xdebug-handler",
  2316. "version": "2.0.1",
  2317. "source": {
  2318. "type": "git",
  2319. "url": "https://github.com/composer/xdebug-handler.git",
  2320. "reference": "964adcdd3a28bf9ed5d9ac6450064e0d71ed7496"
  2321. },
  2322. "dist": {
  2323. "type": "zip",
  2324. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/964adcdd3a28bf9ed5d9ac6450064e0d71ed7496",
  2325. "reference": "964adcdd3a28bf9ed5d9ac6450064e0d71ed7496",
  2326. "shasum": ""
  2327. },
  2328. "require": {
  2329. "php": "^5.3.2 || ^7.0 || ^8.0",
  2330. "psr/log": "^1.0"
  2331. },
  2332. "require-dev": {
  2333. "phpstan/phpstan": "^0.12.55",
  2334. "symfony/phpunit-bridge": "^4.2 || ^5"
  2335. },
  2336. "type": "library",
  2337. "autoload": {
  2338. "psr-4": {
  2339. "Composer\\XdebugHandler\\": "src"
  2340. }
  2341. },
  2342. "notification-url": "https://packagist.org/downloads/",
  2343. "license": [
  2344. "MIT"
  2345. ],
  2346. "authors": [
  2347. {
  2348. "name": "John Stevenson",
  2349. "email": "john-stevenson@blueyonder.co.uk"
  2350. }
  2351. ],
  2352. "description": "Restarts a process without Xdebug.",
  2353. "keywords": [
  2354. "Xdebug",
  2355. "performance"
  2356. ],
  2357. "support": {
  2358. "irc": "irc://irc.freenode.org/composer",
  2359. "issues": "https://github.com/composer/xdebug-handler/issues",
  2360. "source": "https://github.com/composer/xdebug-handler/tree/2.0.1"
  2361. },
  2362. "funding": [
  2363. {
  2364. "url": "https://packagist.com",
  2365. "type": "custom"
  2366. },
  2367. {
  2368. "url": "https://github.com/composer",
  2369. "type": "github"
  2370. },
  2371. {
  2372. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  2373. "type": "tidelift"
  2374. }
  2375. ],
  2376. "time": "2021-05-05T19:37:51+00:00"
  2377. },
  2378. {
  2379. "name": "dealerdirect/phpcodesniffer-composer-installer",
  2380. "version": "v0.7.1",
  2381. "source": {
  2382. "type": "git",
  2383. "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git",
  2384. "reference": "fe390591e0241955f22eb9ba327d137e501c771c"
  2385. },
  2386. "dist": {
  2387. "type": "zip",
  2388. "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/fe390591e0241955f22eb9ba327d137e501c771c",
  2389. "reference": "fe390591e0241955f22eb9ba327d137e501c771c",
  2390. "shasum": ""
  2391. },
  2392. "require": {
  2393. "composer-plugin-api": "^1.0 || ^2.0",
  2394. "php": ">=5.3",
  2395. "squizlabs/php_codesniffer": "^2.0 || ^3.0 || ^4.0"
  2396. },
  2397. "require-dev": {
  2398. "composer/composer": "*",
  2399. "phpcompatibility/php-compatibility": "^9.0",
  2400. "sensiolabs/security-checker": "^4.1.0"
  2401. },
  2402. "type": "composer-plugin",
  2403. "extra": {
  2404. "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
  2405. },
  2406. "autoload": {
  2407. "psr-4": {
  2408. "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
  2409. }
  2410. },
  2411. "notification-url": "https://packagist.org/downloads/",
  2412. "license": [
  2413. "MIT"
  2414. ],
  2415. "authors": [
  2416. {
  2417. "name": "Franck Nijhof",
  2418. "email": "franck.nijhof@dealerdirect.com",
  2419. "homepage": "http://www.frenck.nl",
  2420. "role": "Developer / IT Manager"
  2421. }
  2422. ],
  2423. "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
  2424. "homepage": "http://www.dealerdirect.com",
  2425. "keywords": [
  2426. "PHPCodeSniffer",
  2427. "PHP_CodeSniffer",
  2428. "code quality",
  2429. "codesniffer",
  2430. "composer",
  2431. "installer",
  2432. "phpcs",
  2433. "plugin",
  2434. "qa",
  2435. "quality",
  2436. "standard",
  2437. "standards",
  2438. "style guide",
  2439. "stylecheck",
  2440. "tests"
  2441. ],
  2442. "support": {
  2443. "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues",
  2444. "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer"
  2445. },
  2446. "time": "2020-12-07T18:04:37+00:00"
  2447. },
  2448. {
  2449. "name": "dnoegel/php-xdg-base-dir",
  2450. "version": "v0.1.1",
  2451. "source": {
  2452. "type": "git",
  2453. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  2454. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  2455. },
  2456. "dist": {
  2457. "type": "zip",
  2458. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  2459. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  2460. "shasum": ""
  2461. },
  2462. "require": {
  2463. "php": ">=5.3.2"
  2464. },
  2465. "require-dev": {
  2466. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  2467. },
  2468. "type": "library",
  2469. "autoload": {
  2470. "psr-4": {
  2471. "XdgBaseDir\\": "src/"
  2472. }
  2473. },
  2474. "notification-url": "https://packagist.org/downloads/",
  2475. "license": [
  2476. "MIT"
  2477. ],
  2478. "description": "implementation of xdg base directory specification for php",
  2479. "support": {
  2480. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  2481. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  2482. },
  2483. "time": "2019-12-04T15:06:13+00:00"
  2484. },
  2485. {
  2486. "name": "doctrine/coding-standard",
  2487. "version": "8.2.1",
  2488. "source": {
  2489. "type": "git",
  2490. "url": "https://github.com/doctrine/coding-standard.git",
  2491. "reference": "f595b060799c1a0d76ead16981804eaa0bbcd8d6"
  2492. },
  2493. "dist": {
  2494. "type": "zip",
  2495. "url": "https://api.github.com/repos/doctrine/coding-standard/zipball/f595b060799c1a0d76ead16981804eaa0bbcd8d6",
  2496. "reference": "f595b060799c1a0d76ead16981804eaa0bbcd8d6",
  2497. "shasum": ""
  2498. },
  2499. "require": {
  2500. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7",
  2501. "php": "^7.1 || ^8.0",
  2502. "slevomat/coding-standard": "^6.4.1",
  2503. "squizlabs/php_codesniffer": "^3.5.8"
  2504. },
  2505. "type": "phpcodesniffer-standard",
  2506. "notification-url": "https://packagist.org/downloads/",
  2507. "license": [
  2508. "MIT"
  2509. ],
  2510. "authors": [
  2511. {
  2512. "name": "Benjamin Eberlei",
  2513. "email": "kontakt@beberlei.de"
  2514. },
  2515. {
  2516. "name": "Steve Müller",
  2517. "email": "st.mueller@dzh-online.de"
  2518. }
  2519. ],
  2520. "description": "The Doctrine Coding Standard is a set of PHPCS rules applied to all Doctrine projects.",
  2521. "homepage": "https://www.doctrine-project.org/projects/coding-standard.html",
  2522. "keywords": [
  2523. "checks",
  2524. "code",
  2525. "coding",
  2526. "cs",
  2527. "doctrine",
  2528. "rules",
  2529. "sniffer",
  2530. "sniffs",
  2531. "standard",
  2532. "style"
  2533. ],
  2534. "support": {
  2535. "issues": "https://github.com/doctrine/coding-standard/issues",
  2536. "source": "https://github.com/doctrine/coding-standard/tree/8.2.1"
  2537. },
  2538. "time": "2021-04-03T10:54:55+00:00"
  2539. },
  2540. {
  2541. "name": "doctrine/instantiator",
  2542. "version": "1.4.0",
  2543. "source": {
  2544. "type": "git",
  2545. "url": "https://github.com/doctrine/instantiator.git",
  2546. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  2547. },
  2548. "dist": {
  2549. "type": "zip",
  2550. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  2551. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  2552. "shasum": ""
  2553. },
  2554. "require": {
  2555. "php": "^7.1 || ^8.0"
  2556. },
  2557. "require-dev": {
  2558. "doctrine/coding-standard": "^8.0",
  2559. "ext-pdo": "*",
  2560. "ext-phar": "*",
  2561. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  2562. "phpstan/phpstan": "^0.12",
  2563. "phpstan/phpstan-phpunit": "^0.12",
  2564. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  2565. },
  2566. "type": "library",
  2567. "autoload": {
  2568. "psr-4": {
  2569. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2570. }
  2571. },
  2572. "notification-url": "https://packagist.org/downloads/",
  2573. "license": [
  2574. "MIT"
  2575. ],
  2576. "authors": [
  2577. {
  2578. "name": "Marco Pivetta",
  2579. "email": "ocramius@gmail.com",
  2580. "homepage": "https://ocramius.github.io/"
  2581. }
  2582. ],
  2583. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2584. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  2585. "keywords": [
  2586. "constructor",
  2587. "instantiate"
  2588. ],
  2589. "support": {
  2590. "issues": "https://github.com/doctrine/instantiator/issues",
  2591. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  2592. },
  2593. "funding": [
  2594. {
  2595. "url": "https://www.doctrine-project.org/sponsorship.html",
  2596. "type": "custom"
  2597. },
  2598. {
  2599. "url": "https://www.patreon.com/phpdoctrine",
  2600. "type": "patreon"
  2601. },
  2602. {
  2603. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  2604. "type": "tidelift"
  2605. }
  2606. ],
  2607. "time": "2020-11-10T18:47:58+00:00"
  2608. },
  2609. {
  2610. "name": "felixfbecker/advanced-json-rpc",
  2611. "version": "v3.2.0",
  2612. "source": {
  2613. "type": "git",
  2614. "url": "https://github.com/felixfbecker/php-advanced-json-rpc.git",
  2615. "reference": "06f0b06043c7438959dbdeed8bb3f699a19be22e"
  2616. },
  2617. "dist": {
  2618. "type": "zip",
  2619. "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/06f0b06043c7438959dbdeed8bb3f699a19be22e",
  2620. "reference": "06f0b06043c7438959dbdeed8bb3f699a19be22e",
  2621. "shasum": ""
  2622. },
  2623. "require": {
  2624. "netresearch/jsonmapper": "^1.0 || ^2.0",
  2625. "php": "^7.1 || ^8.0",
  2626. "phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0"
  2627. },
  2628. "require-dev": {
  2629. "phpunit/phpunit": "^7.0 || ^8.0"
  2630. },
  2631. "type": "library",
  2632. "autoload": {
  2633. "psr-4": {
  2634. "AdvancedJsonRpc\\": "lib/"
  2635. }
  2636. },
  2637. "notification-url": "https://packagist.org/downloads/",
  2638. "license": [
  2639. "ISC"
  2640. ],
  2641. "authors": [
  2642. {
  2643. "name": "Felix Becker",
  2644. "email": "felix.b@outlook.com"
  2645. }
  2646. ],
  2647. "description": "A more advanced JSONRPC implementation",
  2648. "support": {
  2649. "issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues",
  2650. "source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.0"
  2651. },
  2652. "time": "2021-01-10T17:48:47+00:00"
  2653. },
  2654. {
  2655. "name": "felixfbecker/language-server-protocol",
  2656. "version": "1.5.1",
  2657. "source": {
  2658. "type": "git",
  2659. "url": "https://github.com/felixfbecker/php-language-server-protocol.git",
  2660. "reference": "9d846d1f5cf101deee7a61c8ba7caa0a975cd730"
  2661. },
  2662. "dist": {
  2663. "type": "zip",
  2664. "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/9d846d1f5cf101deee7a61c8ba7caa0a975cd730",
  2665. "reference": "9d846d1f5cf101deee7a61c8ba7caa0a975cd730",
  2666. "shasum": ""
  2667. },
  2668. "require": {
  2669. "php": ">=7.1"
  2670. },
  2671. "require-dev": {
  2672. "phpstan/phpstan": "*",
  2673. "squizlabs/php_codesniffer": "^3.1",
  2674. "vimeo/psalm": "^4.0"
  2675. },
  2676. "type": "library",
  2677. "extra": {
  2678. "branch-alias": {
  2679. "dev-master": "1.x-dev"
  2680. }
  2681. },
  2682. "autoload": {
  2683. "psr-4": {
  2684. "LanguageServerProtocol\\": "src/"
  2685. }
  2686. },
  2687. "notification-url": "https://packagist.org/downloads/",
  2688. "license": [
  2689. "ISC"
  2690. ],
  2691. "authors": [
  2692. {
  2693. "name": "Felix Becker",
  2694. "email": "felix.b@outlook.com"
  2695. }
  2696. ],
  2697. "description": "PHP classes for the Language Server Protocol",
  2698. "keywords": [
  2699. "language",
  2700. "microsoft",
  2701. "php",
  2702. "server"
  2703. ],
  2704. "support": {
  2705. "issues": "https://github.com/felixfbecker/php-language-server-protocol/issues",
  2706. "source": "https://github.com/felixfbecker/php-language-server-protocol/tree/1.5.1"
  2707. },
  2708. "time": "2021-02-22T14:02:09+00:00"
  2709. },
  2710. {
  2711. "name": "myclabs/deep-copy",
  2712. "version": "1.10.2",
  2713. "source": {
  2714. "type": "git",
  2715. "url": "https://github.com/myclabs/DeepCopy.git",
  2716. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  2717. },
  2718. "dist": {
  2719. "type": "zip",
  2720. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  2721. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  2722. "shasum": ""
  2723. },
  2724. "require": {
  2725. "php": "^7.1 || ^8.0"
  2726. },
  2727. "replace": {
  2728. "myclabs/deep-copy": "self.version"
  2729. },
  2730. "require-dev": {
  2731. "doctrine/collections": "^1.0",
  2732. "doctrine/common": "^2.6",
  2733. "phpunit/phpunit": "^7.1"
  2734. },
  2735. "type": "library",
  2736. "autoload": {
  2737. "psr-4": {
  2738. "DeepCopy\\": "src/DeepCopy/"
  2739. },
  2740. "files": [
  2741. "src/DeepCopy/deep_copy.php"
  2742. ]
  2743. },
  2744. "notification-url": "https://packagist.org/downloads/",
  2745. "license": [
  2746. "MIT"
  2747. ],
  2748. "description": "Create deep copies (clones) of your objects",
  2749. "keywords": [
  2750. "clone",
  2751. "copy",
  2752. "duplicate",
  2753. "object",
  2754. "object graph"
  2755. ],
  2756. "support": {
  2757. "issues": "https://github.com/myclabs/DeepCopy/issues",
  2758. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  2759. },
  2760. "funding": [
  2761. {
  2762. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  2763. "type": "tidelift"
  2764. }
  2765. ],
  2766. "time": "2020-11-13T09:40:50+00:00"
  2767. },
  2768. {
  2769. "name": "netresearch/jsonmapper",
  2770. "version": "v2.1.0",
  2771. "source": {
  2772. "type": "git",
  2773. "url": "https://github.com/cweiske/jsonmapper.git",
  2774. "reference": "e0f1e33a71587aca81be5cffbb9746510e1fe04e"
  2775. },
  2776. "dist": {
  2777. "type": "zip",
  2778. "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/e0f1e33a71587aca81be5cffbb9746510e1fe04e",
  2779. "reference": "e0f1e33a71587aca81be5cffbb9746510e1fe04e",
  2780. "shasum": ""
  2781. },
  2782. "require": {
  2783. "ext-json": "*",
  2784. "ext-pcre": "*",
  2785. "ext-reflection": "*",
  2786. "ext-spl": "*",
  2787. "php": ">=5.6"
  2788. },
  2789. "require-dev": {
  2790. "phpunit/phpunit": "~4.8.35 || ~5.7 || ~6.4 || ~7.0",
  2791. "squizlabs/php_codesniffer": "~3.5"
  2792. },
  2793. "type": "library",
  2794. "autoload": {
  2795. "psr-0": {
  2796. "JsonMapper": "src/"
  2797. }
  2798. },
  2799. "notification-url": "https://packagist.org/downloads/",
  2800. "license": [
  2801. "OSL-3.0"
  2802. ],
  2803. "authors": [
  2804. {
  2805. "name": "Christian Weiske",
  2806. "email": "cweiske@cweiske.de",
  2807. "homepage": "http://github.com/cweiske/jsonmapper/",
  2808. "role": "Developer"
  2809. }
  2810. ],
  2811. "description": "Map nested JSON structures onto PHP classes",
  2812. "support": {
  2813. "email": "cweiske@cweiske.de",
  2814. "issues": "https://github.com/cweiske/jsonmapper/issues",
  2815. "source": "https://github.com/cweiske/jsonmapper/tree/master"
  2816. },
  2817. "time": "2020-04-16T18:48:43+00:00"
  2818. },
  2819. {
  2820. "name": "nikic/php-parser",
  2821. "version": "v4.10.5",
  2822. "source": {
  2823. "type": "git",
  2824. "url": "https://github.com/nikic/PHP-Parser.git",
  2825. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f"
  2826. },
  2827. "dist": {
  2828. "type": "zip",
  2829. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4432ba399e47c66624bc73c8c0f811e5c109576f",
  2830. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f",
  2831. "shasum": ""
  2832. },
  2833. "require": {
  2834. "ext-tokenizer": "*",
  2835. "php": ">=7.0"
  2836. },
  2837. "require-dev": {
  2838. "ircmaxell/php-yacc": "^0.0.7",
  2839. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2840. },
  2841. "bin": [
  2842. "bin/php-parse"
  2843. ],
  2844. "type": "library",
  2845. "extra": {
  2846. "branch-alias": {
  2847. "dev-master": "4.9-dev"
  2848. }
  2849. },
  2850. "autoload": {
  2851. "psr-4": {
  2852. "PhpParser\\": "lib/PhpParser"
  2853. }
  2854. },
  2855. "notification-url": "https://packagist.org/downloads/",
  2856. "license": [
  2857. "BSD-3-Clause"
  2858. ],
  2859. "authors": [
  2860. {
  2861. "name": "Nikita Popov"
  2862. }
  2863. ],
  2864. "description": "A PHP parser written in PHP",
  2865. "keywords": [
  2866. "parser",
  2867. "php"
  2868. ],
  2869. "support": {
  2870. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2871. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.5"
  2872. },
  2873. "time": "2021-05-03T19:11:20+00:00"
  2874. },
  2875. {
  2876. "name": "openlss/lib-array2xml",
  2877. "version": "1.0.0",
  2878. "source": {
  2879. "type": "git",
  2880. "url": "https://github.com/nullivex/lib-array2xml.git",
  2881. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90"
  2882. },
  2883. "dist": {
  2884. "type": "zip",
  2885. "url": "https://api.github.com/repos/nullivex/lib-array2xml/zipball/a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  2886. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  2887. "shasum": ""
  2888. },
  2889. "require": {
  2890. "php": ">=5.3.2"
  2891. },
  2892. "type": "library",
  2893. "autoload": {
  2894. "psr-0": {
  2895. "LSS": ""
  2896. }
  2897. },
  2898. "notification-url": "https://packagist.org/downloads/",
  2899. "license": [
  2900. "Apache-2.0"
  2901. ],
  2902. "authors": [
  2903. {
  2904. "name": "Bryan Tong",
  2905. "email": "bryan@nullivex.com",
  2906. "homepage": "https://www.nullivex.com"
  2907. },
  2908. {
  2909. "name": "Tony Butler",
  2910. "email": "spudz76@gmail.com",
  2911. "homepage": "https://www.nullivex.com"
  2912. }
  2913. ],
  2914. "description": "Array2XML conversion library credit to lalit.org",
  2915. "homepage": "https://www.nullivex.com",
  2916. "keywords": [
  2917. "array",
  2918. "array conversion",
  2919. "xml",
  2920. "xml conversion"
  2921. ],
  2922. "support": {
  2923. "issues": "https://github.com/nullivex/lib-array2xml/issues",
  2924. "source": "https://github.com/nullivex/lib-array2xml/tree/master"
  2925. },
  2926. "time": "2019-03-29T20:06:56+00:00"
  2927. },
  2928. {
  2929. "name": "phar-io/manifest",
  2930. "version": "1.0.3",
  2931. "source": {
  2932. "type": "git",
  2933. "url": "https://github.com/phar-io/manifest.git",
  2934. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  2935. },
  2936. "dist": {
  2937. "type": "zip",
  2938. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  2939. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  2940. "shasum": ""
  2941. },
  2942. "require": {
  2943. "ext-dom": "*",
  2944. "ext-phar": "*",
  2945. "phar-io/version": "^2.0",
  2946. "php": "^5.6 || ^7.0"
  2947. },
  2948. "type": "library",
  2949. "extra": {
  2950. "branch-alias": {
  2951. "dev-master": "1.0.x-dev"
  2952. }
  2953. },
  2954. "autoload": {
  2955. "classmap": [
  2956. "src/"
  2957. ]
  2958. },
  2959. "notification-url": "https://packagist.org/downloads/",
  2960. "license": [
  2961. "BSD-3-Clause"
  2962. ],
  2963. "authors": [
  2964. {
  2965. "name": "Arne Blankerts",
  2966. "email": "arne@blankerts.de",
  2967. "role": "Developer"
  2968. },
  2969. {
  2970. "name": "Sebastian Heuer",
  2971. "email": "sebastian@phpeople.de",
  2972. "role": "Developer"
  2973. },
  2974. {
  2975. "name": "Sebastian Bergmann",
  2976. "email": "sebastian@phpunit.de",
  2977. "role": "Developer"
  2978. }
  2979. ],
  2980. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  2981. "support": {
  2982. "issues": "https://github.com/phar-io/manifest/issues",
  2983. "source": "https://github.com/phar-io/manifest/tree/master"
  2984. },
  2985. "time": "2018-07-08T19:23:20+00:00"
  2986. },
  2987. {
  2988. "name": "phar-io/version",
  2989. "version": "2.0.1",
  2990. "source": {
  2991. "type": "git",
  2992. "url": "https://github.com/phar-io/version.git",
  2993. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  2994. },
  2995. "dist": {
  2996. "type": "zip",
  2997. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  2998. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  2999. "shasum": ""
  3000. },
  3001. "require": {
  3002. "php": "^5.6 || ^7.0"
  3003. },
  3004. "type": "library",
  3005. "autoload": {
  3006. "classmap": [
  3007. "src/"
  3008. ]
  3009. },
  3010. "notification-url": "https://packagist.org/downloads/",
  3011. "license": [
  3012. "BSD-3-Clause"
  3013. ],
  3014. "authors": [
  3015. {
  3016. "name": "Arne Blankerts",
  3017. "email": "arne@blankerts.de",
  3018. "role": "Developer"
  3019. },
  3020. {
  3021. "name": "Sebastian Heuer",
  3022. "email": "sebastian@phpeople.de",
  3023. "role": "Developer"
  3024. },
  3025. {
  3026. "name": "Sebastian Bergmann",
  3027. "email": "sebastian@phpunit.de",
  3028. "role": "Developer"
  3029. }
  3030. ],
  3031. "description": "Library for handling version information and constraints",
  3032. "support": {
  3033. "issues": "https://github.com/phar-io/version/issues",
  3034. "source": "https://github.com/phar-io/version/tree/master"
  3035. },
  3036. "time": "2018-07-08T19:19:57+00:00"
  3037. },
  3038. {
  3039. "name": "php-webdriver/webdriver",
  3040. "version": "1.11.1",
  3041. "source": {
  3042. "type": "git",
  3043. "url": "https://github.com/php-webdriver/php-webdriver.git",
  3044. "reference": "da16e39968f8dd5cfb7d07eef91dc2b731c69880"
  3045. },
  3046. "dist": {
  3047. "type": "zip",
  3048. "url": "https://api.github.com/repos/php-webdriver/php-webdriver/zipball/da16e39968f8dd5cfb7d07eef91dc2b731c69880",
  3049. "reference": "da16e39968f8dd5cfb7d07eef91dc2b731c69880",
  3050. "shasum": ""
  3051. },
  3052. "require": {
  3053. "ext-curl": "*",
  3054. "ext-json": "*",
  3055. "ext-zip": "*",
  3056. "php": "^5.6 || ~7.0 || ^8.0",
  3057. "symfony/polyfill-mbstring": "^1.12",
  3058. "symfony/process": "^2.8 || ^3.1 || ^4.0 || ^5.0"
  3059. },
  3060. "replace": {
  3061. "facebook/webdriver": "*"
  3062. },
  3063. "require-dev": {
  3064. "friendsofphp/php-cs-fixer": "^2.0",
  3065. "ondram/ci-detector": "^2.1 || ^3.5 || ^4.0",
  3066. "php-coveralls/php-coveralls": "^2.4",
  3067. "php-mock/php-mock-phpunit": "^1.1 || ^2.0",
  3068. "php-parallel-lint/php-parallel-lint": "^1.2",
  3069. "phpunit/phpunit": "^5.7 || ^7 || ^8 || ^9",
  3070. "squizlabs/php_codesniffer": "^3.5",
  3071. "symfony/var-dumper": "^3.3 || ^4.0 || ^5.0"
  3072. },
  3073. "suggest": {
  3074. "ext-SimpleXML": "For Firefox profile creation"
  3075. },
  3076. "type": "library",
  3077. "autoload": {
  3078. "psr-4": {
  3079. "Facebook\\WebDriver\\": "lib/"
  3080. },
  3081. "files": [
  3082. "lib/Exception/TimeoutException.php"
  3083. ]
  3084. },
  3085. "notification-url": "https://packagist.org/downloads/",
  3086. "license": [
  3087. "MIT"
  3088. ],
  3089. "description": "A PHP client for Selenium WebDriver. Previously facebook/webdriver.",
  3090. "homepage": "https://github.com/php-webdriver/php-webdriver",
  3091. "keywords": [
  3092. "Chromedriver",
  3093. "geckodriver",
  3094. "php",
  3095. "selenium",
  3096. "webdriver"
  3097. ],
  3098. "support": {
  3099. "issues": "https://github.com/php-webdriver/php-webdriver/issues",
  3100. "source": "https://github.com/php-webdriver/php-webdriver/tree/1.11.1"
  3101. },
  3102. "time": "2021-05-21T15:12:49+00:00"
  3103. },
  3104. {
  3105. "name": "phpdocumentor/reflection-common",
  3106. "version": "2.1.0",
  3107. "source": {
  3108. "type": "git",
  3109. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3110. "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b"
  3111. },
  3112. "dist": {
  3113. "type": "zip",
  3114. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
  3115. "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
  3116. "shasum": ""
  3117. },
  3118. "require": {
  3119. "php": ">=7.1"
  3120. },
  3121. "type": "library",
  3122. "extra": {
  3123. "branch-alias": {
  3124. "dev-master": "2.x-dev"
  3125. }
  3126. },
  3127. "autoload": {
  3128. "psr-4": {
  3129. "phpDocumentor\\Reflection\\": "src/"
  3130. }
  3131. },
  3132. "notification-url": "https://packagist.org/downloads/",
  3133. "license": [
  3134. "MIT"
  3135. ],
  3136. "authors": [
  3137. {
  3138. "name": "Jaap van Otterdijk",
  3139. "email": "opensource@ijaap.nl"
  3140. }
  3141. ],
  3142. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3143. "homepage": "http://www.phpdoc.org",
  3144. "keywords": [
  3145. "FQSEN",
  3146. "phpDocumentor",
  3147. "phpdoc",
  3148. "reflection",
  3149. "static analysis"
  3150. ],
  3151. "support": {
  3152. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  3153. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/master"
  3154. },
  3155. "time": "2020-04-27T09:25:28+00:00"
  3156. },
  3157. {
  3158. "name": "phpdocumentor/reflection-docblock",
  3159. "version": "4.3.4",
  3160. "source": {
  3161. "type": "git",
  3162. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3163. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
  3164. },
  3165. "dist": {
  3166. "type": "zip",
  3167. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
  3168. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
  3169. "shasum": ""
  3170. },
  3171. "require": {
  3172. "php": "^7.0",
  3173. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  3174. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  3175. "webmozart/assert": "^1.0"
  3176. },
  3177. "require-dev": {
  3178. "doctrine/instantiator": "^1.0.5",
  3179. "mockery/mockery": "^1.0",
  3180. "phpdocumentor/type-resolver": "0.4.*",
  3181. "phpunit/phpunit": "^6.4"
  3182. },
  3183. "type": "library",
  3184. "extra": {
  3185. "branch-alias": {
  3186. "dev-master": "4.x-dev"
  3187. }
  3188. },
  3189. "autoload": {
  3190. "psr-4": {
  3191. "phpDocumentor\\Reflection\\": [
  3192. "src/"
  3193. ]
  3194. }
  3195. },
  3196. "notification-url": "https://packagist.org/downloads/",
  3197. "license": [
  3198. "MIT"
  3199. ],
  3200. "authors": [
  3201. {
  3202. "name": "Mike van Riel",
  3203. "email": "me@mikevanriel.com"
  3204. }
  3205. ],
  3206. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3207. "support": {
  3208. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  3209. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/release/4.x"
  3210. },
  3211. "time": "2019-12-28T18:55:12+00:00"
  3212. },
  3213. {
  3214. "name": "phpdocumentor/type-resolver",
  3215. "version": "1.0.1",
  3216. "source": {
  3217. "type": "git",
  3218. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3219. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9"
  3220. },
  3221. "dist": {
  3222. "type": "zip",
  3223. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  3224. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  3225. "shasum": ""
  3226. },
  3227. "require": {
  3228. "php": "^7.1",
  3229. "phpdocumentor/reflection-common": "^2.0"
  3230. },
  3231. "require-dev": {
  3232. "ext-tokenizer": "^7.1",
  3233. "mockery/mockery": "~1",
  3234. "phpunit/phpunit": "^7.0"
  3235. },
  3236. "type": "library",
  3237. "extra": {
  3238. "branch-alias": {
  3239. "dev-master": "1.x-dev"
  3240. }
  3241. },
  3242. "autoload": {
  3243. "psr-4": {
  3244. "phpDocumentor\\Reflection\\": "src"
  3245. }
  3246. },
  3247. "notification-url": "https://packagist.org/downloads/",
  3248. "license": [
  3249. "MIT"
  3250. ],
  3251. "authors": [
  3252. {
  3253. "name": "Mike van Riel",
  3254. "email": "me@mikevanriel.com"
  3255. }
  3256. ],
  3257. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  3258. "support": {
  3259. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  3260. "source": "https://github.com/phpDocumentor/TypeResolver/tree/0.7.2"
  3261. },
  3262. "time": "2019-08-22T18:11:29+00:00"
  3263. },
  3264. {
  3265. "name": "phpmyadmin/coding-standard",
  3266. "version": "2.1.1",
  3267. "source": {
  3268. "type": "git",
  3269. "url": "https://github.com/phpmyadmin/coding-standard.git",
  3270. "reference": "28b0eb2f8a902f29affab157cc118136086587c3"
  3271. },
  3272. "dist": {
  3273. "type": "zip",
  3274. "url": "https://api.github.com/repos/phpmyadmin/coding-standard/zipball/28b0eb2f8a902f29affab157cc118136086587c3",
  3275. "reference": "28b0eb2f8a902f29affab157cc118136086587c3",
  3276. "shasum": ""
  3277. },
  3278. "require": {
  3279. "doctrine/coding-standard": "^8.2.0",
  3280. "php": "^7.1 || ^8.0",
  3281. "squizlabs/php_codesniffer": "^3.5.5"
  3282. },
  3283. "type": "phpcodesniffer-standard",
  3284. "notification-url": "https://packagist.org/downloads/",
  3285. "license": [
  3286. "MIT"
  3287. ],
  3288. "authors": [
  3289. {
  3290. "name": "The phpMyAdmin Team",
  3291. "email": "developers@phpmyadmin.net",
  3292. "homepage": "https://www.phpmyadmin.net/team/"
  3293. }
  3294. ],
  3295. "description": "phpMyAdmin PHP_CodeSniffer Coding Standard",
  3296. "keywords": [
  3297. "codesniffer",
  3298. "phpcs",
  3299. "phpmyadmin"
  3300. ],
  3301. "support": {
  3302. "issues": "https://github.com/phpmyadmin/coding-standard/issues",
  3303. "source": "https://github.com/phpmyadmin/coding-standard"
  3304. },
  3305. "time": "2020-11-16T16:02:29+00:00"
  3306. },
  3307. {
  3308. "name": "phpspec/prophecy",
  3309. "version": "v1.10.3",
  3310. "source": {
  3311. "type": "git",
  3312. "url": "https://github.com/phpspec/prophecy.git",
  3313. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  3314. },
  3315. "dist": {
  3316. "type": "zip",
  3317. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  3318. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  3319. "shasum": ""
  3320. },
  3321. "require": {
  3322. "doctrine/instantiator": "^1.0.2",
  3323. "php": "^5.3|^7.0",
  3324. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  3325. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  3326. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  3327. },
  3328. "require-dev": {
  3329. "phpspec/phpspec": "^2.5 || ^3.2",
  3330. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  3331. },
  3332. "type": "library",
  3333. "extra": {
  3334. "branch-alias": {
  3335. "dev-master": "1.10.x-dev"
  3336. }
  3337. },
  3338. "autoload": {
  3339. "psr-4": {
  3340. "Prophecy\\": "src/Prophecy"
  3341. }
  3342. },
  3343. "notification-url": "https://packagist.org/downloads/",
  3344. "license": [
  3345. "MIT"
  3346. ],
  3347. "authors": [
  3348. {
  3349. "name": "Konstantin Kudryashov",
  3350. "email": "ever.zet@gmail.com",
  3351. "homepage": "http://everzet.com"
  3352. },
  3353. {
  3354. "name": "Marcello Duarte",
  3355. "email": "marcello.duarte@gmail.com"
  3356. }
  3357. ],
  3358. "description": "Highly opinionated mocking framework for PHP 5.3+",
  3359. "homepage": "https://github.com/phpspec/prophecy",
  3360. "keywords": [
  3361. "Double",
  3362. "Dummy",
  3363. "fake",
  3364. "mock",
  3365. "spy",
  3366. "stub"
  3367. ],
  3368. "support": {
  3369. "issues": "https://github.com/phpspec/prophecy/issues",
  3370. "source": "https://github.com/phpspec/prophecy/tree/v1.10.3"
  3371. },
  3372. "time": "2020-03-05T15:02:03+00:00"
  3373. },
  3374. {
  3375. "name": "phpstan/extension-installer",
  3376. "version": "1.1.0",
  3377. "source": {
  3378. "type": "git",
  3379. "url": "https://github.com/phpstan/extension-installer.git",
  3380. "reference": "66c7adc9dfa38b6b5838a9fb728b68a7d8348051"
  3381. },
  3382. "dist": {
  3383. "type": "zip",
  3384. "url": "https://api.github.com/repos/phpstan/extension-installer/zipball/66c7adc9dfa38b6b5838a9fb728b68a7d8348051",
  3385. "reference": "66c7adc9dfa38b6b5838a9fb728b68a7d8348051",
  3386. "shasum": ""
  3387. },
  3388. "require": {
  3389. "composer-plugin-api": "^1.1 || ^2.0",
  3390. "php": "^7.1 || ^8.0",
  3391. "phpstan/phpstan": ">=0.11.6"
  3392. },
  3393. "require-dev": {
  3394. "composer/composer": "^1.8",
  3395. "phing/phing": "^2.16.3",
  3396. "php-parallel-lint/php-parallel-lint": "^1.2.0",
  3397. "phpstan/phpstan-strict-rules": "^0.11 || ^0.12"
  3398. },
  3399. "type": "composer-plugin",
  3400. "extra": {
  3401. "class": "PHPStan\\ExtensionInstaller\\Plugin"
  3402. },
  3403. "autoload": {
  3404. "psr-4": {
  3405. "PHPStan\\ExtensionInstaller\\": "src/"
  3406. }
  3407. },
  3408. "notification-url": "https://packagist.org/downloads/",
  3409. "license": [
  3410. "MIT"
  3411. ],
  3412. "description": "Composer plugin for automatic installation of PHPStan extensions",
  3413. "support": {
  3414. "issues": "https://github.com/phpstan/extension-installer/issues",
  3415. "source": "https://github.com/phpstan/extension-installer/tree/1.1.0"
  3416. },
  3417. "time": "2020-12-13T13:06:13+00:00"
  3418. },
  3419. {
  3420. "name": "phpstan/phpdoc-parser",
  3421. "version": "0.4.9",
  3422. "source": {
  3423. "type": "git",
  3424. "url": "https://github.com/phpstan/phpdoc-parser.git",
  3425. "reference": "98a088b17966bdf6ee25c8a4b634df313d8aa531"
  3426. },
  3427. "dist": {
  3428. "type": "zip",
  3429. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/98a088b17966bdf6ee25c8a4b634df313d8aa531",
  3430. "reference": "98a088b17966bdf6ee25c8a4b634df313d8aa531",
  3431. "shasum": ""
  3432. },
  3433. "require": {
  3434. "php": "^7.1 || ^8.0"
  3435. },
  3436. "require-dev": {
  3437. "consistence/coding-standard": "^3.5",
  3438. "ergebnis/composer-normalize": "^2.0.2",
  3439. "jakub-onderka/php-parallel-lint": "^0.9.2",
  3440. "phing/phing": "^2.16.0",
  3441. "phpstan/extension-installer": "^1.0",
  3442. "phpstan/phpstan": "^0.12.26",
  3443. "phpstan/phpstan-strict-rules": "^0.12",
  3444. "phpunit/phpunit": "^6.3",
  3445. "slevomat/coding-standard": "^4.7.2",
  3446. "symfony/process": "^4.0"
  3447. },
  3448. "type": "library",
  3449. "extra": {
  3450. "branch-alias": {
  3451. "dev-master": "0.4-dev"
  3452. }
  3453. },
  3454. "autoload": {
  3455. "psr-4": {
  3456. "PHPStan\\PhpDocParser\\": [
  3457. "src/"
  3458. ]
  3459. }
  3460. },
  3461. "notification-url": "https://packagist.org/downloads/",
  3462. "license": [
  3463. "MIT"
  3464. ],
  3465. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  3466. "support": {
  3467. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  3468. "source": "https://github.com/phpstan/phpdoc-parser/tree/master"
  3469. },
  3470. "time": "2020-08-03T20:32:43+00:00"
  3471. },
  3472. {
  3473. "name": "phpstan/phpstan",
  3474. "version": "0.12.88",
  3475. "source": {
  3476. "type": "git",
  3477. "url": "https://github.com/phpstan/phpstan.git",
  3478. "reference": "464d1a81af49409c41074aa6640ed0c4cbd9bb68"
  3479. },
  3480. "dist": {
  3481. "type": "zip",
  3482. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/464d1a81af49409c41074aa6640ed0c4cbd9bb68",
  3483. "reference": "464d1a81af49409c41074aa6640ed0c4cbd9bb68",
  3484. "shasum": ""
  3485. },
  3486. "require": {
  3487. "php": "^7.1|^8.0"
  3488. },
  3489. "conflict": {
  3490. "phpstan/phpstan-shim": "*"
  3491. },
  3492. "bin": [
  3493. "phpstan",
  3494. "phpstan.phar"
  3495. ],
  3496. "type": "library",
  3497. "extra": {
  3498. "branch-alias": {
  3499. "dev-master": "0.12-dev"
  3500. }
  3501. },
  3502. "autoload": {
  3503. "files": [
  3504. "bootstrap.php"
  3505. ]
  3506. },
  3507. "notification-url": "https://packagist.org/downloads/",
  3508. "license": [
  3509. "MIT"
  3510. ],
  3511. "description": "PHPStan - PHP Static Analysis Tool",
  3512. "support": {
  3513. "issues": "https://github.com/phpstan/phpstan/issues",
  3514. "source": "https://github.com/phpstan/phpstan/tree/0.12.88"
  3515. },
  3516. "funding": [
  3517. {
  3518. "url": "https://github.com/ondrejmirtes",
  3519. "type": "github"
  3520. },
  3521. {
  3522. "url": "https://www.patreon.com/phpstan",
  3523. "type": "patreon"
  3524. },
  3525. {
  3526. "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
  3527. "type": "tidelift"
  3528. }
  3529. ],
  3530. "time": "2021-05-17T12:24:49+00:00"
  3531. },
  3532. {
  3533. "name": "phpstan/phpstan-phpunit",
  3534. "version": "0.12.19",
  3535. "source": {
  3536. "type": "git",
  3537. "url": "https://github.com/phpstan/phpstan-phpunit.git",
  3538. "reference": "52f7072ddc5f81492f9d2de65a24813a48c90b18"
  3539. },
  3540. "dist": {
  3541. "type": "zip",
  3542. "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/52f7072ddc5f81492f9d2de65a24813a48c90b18",
  3543. "reference": "52f7072ddc5f81492f9d2de65a24813a48c90b18",
  3544. "shasum": ""
  3545. },
  3546. "require": {
  3547. "php": "^7.1 || ^8.0",
  3548. "phpstan/phpstan": "^0.12.86"
  3549. },
  3550. "conflict": {
  3551. "phpunit/phpunit": "<7.0"
  3552. },
  3553. "require-dev": {
  3554. "phing/phing": "^2.16.3",
  3555. "php-parallel-lint/php-parallel-lint": "^1.2",
  3556. "phpstan/phpstan-strict-rules": "^0.12.6",
  3557. "phpunit/phpunit": "^7.5.20"
  3558. },
  3559. "type": "phpstan-extension",
  3560. "extra": {
  3561. "branch-alias": {
  3562. "dev-master": "0.12-dev"
  3563. },
  3564. "phpstan": {
  3565. "includes": [
  3566. "extension.neon",
  3567. "rules.neon"
  3568. ]
  3569. }
  3570. },
  3571. "autoload": {
  3572. "psr-4": {
  3573. "PHPStan\\": "src/"
  3574. }
  3575. },
  3576. "notification-url": "https://packagist.org/downloads/",
  3577. "license": [
  3578. "MIT"
  3579. ],
  3580. "description": "PHPUnit extensions and rules for PHPStan",
  3581. "support": {
  3582. "issues": "https://github.com/phpstan/phpstan-phpunit/issues",
  3583. "source": "https://github.com/phpstan/phpstan-phpunit/tree/0.12.19"
  3584. },
  3585. "time": "2021-04-30T11:10:37+00:00"
  3586. },
  3587. {
  3588. "name": "phpunit/php-code-coverage",
  3589. "version": "6.1.4",
  3590. "source": {
  3591. "type": "git",
  3592. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3593. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  3594. },
  3595. "dist": {
  3596. "type": "zip",
  3597. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  3598. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  3599. "shasum": ""
  3600. },
  3601. "require": {
  3602. "ext-dom": "*",
  3603. "ext-xmlwriter": "*",
  3604. "php": "^7.1",
  3605. "phpunit/php-file-iterator": "^2.0",
  3606. "phpunit/php-text-template": "^1.2.1",
  3607. "phpunit/php-token-stream": "^3.0",
  3608. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  3609. "sebastian/environment": "^3.1 || ^4.0",
  3610. "sebastian/version": "^2.0.1",
  3611. "theseer/tokenizer": "^1.1"
  3612. },
  3613. "require-dev": {
  3614. "phpunit/phpunit": "^7.0"
  3615. },
  3616. "suggest": {
  3617. "ext-xdebug": "^2.6.0"
  3618. },
  3619. "type": "library",
  3620. "extra": {
  3621. "branch-alias": {
  3622. "dev-master": "6.1-dev"
  3623. }
  3624. },
  3625. "autoload": {
  3626. "classmap": [
  3627. "src/"
  3628. ]
  3629. },
  3630. "notification-url": "https://packagist.org/downloads/",
  3631. "license": [
  3632. "BSD-3-Clause"
  3633. ],
  3634. "authors": [
  3635. {
  3636. "name": "Sebastian Bergmann",
  3637. "email": "sebastian@phpunit.de",
  3638. "role": "lead"
  3639. }
  3640. ],
  3641. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3642. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3643. "keywords": [
  3644. "coverage",
  3645. "testing",
  3646. "xunit"
  3647. ],
  3648. "support": {
  3649. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  3650. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/master"
  3651. },
  3652. "time": "2018-10-31T16:06:48+00:00"
  3653. },
  3654. {
  3655. "name": "phpunit/php-file-iterator",
  3656. "version": "2.0.3",
  3657. "source": {
  3658. "type": "git",
  3659. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3660. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  3661. },
  3662. "dist": {
  3663. "type": "zip",
  3664. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  3665. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  3666. "shasum": ""
  3667. },
  3668. "require": {
  3669. "php": ">=7.1"
  3670. },
  3671. "require-dev": {
  3672. "phpunit/phpunit": "^8.5"
  3673. },
  3674. "type": "library",
  3675. "extra": {
  3676. "branch-alias": {
  3677. "dev-master": "2.0.x-dev"
  3678. }
  3679. },
  3680. "autoload": {
  3681. "classmap": [
  3682. "src/"
  3683. ]
  3684. },
  3685. "notification-url": "https://packagist.org/downloads/",
  3686. "license": [
  3687. "BSD-3-Clause"
  3688. ],
  3689. "authors": [
  3690. {
  3691. "name": "Sebastian Bergmann",
  3692. "email": "sebastian@phpunit.de",
  3693. "role": "lead"
  3694. }
  3695. ],
  3696. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3697. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3698. "keywords": [
  3699. "filesystem",
  3700. "iterator"
  3701. ],
  3702. "support": {
  3703. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  3704. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3"
  3705. },
  3706. "funding": [
  3707. {
  3708. "url": "https://github.com/sebastianbergmann",
  3709. "type": "github"
  3710. }
  3711. ],
  3712. "time": "2020-11-30T08:25:21+00:00"
  3713. },
  3714. {
  3715. "name": "phpunit/php-text-template",
  3716. "version": "1.2.1",
  3717. "source": {
  3718. "type": "git",
  3719. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  3720. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  3721. },
  3722. "dist": {
  3723. "type": "zip",
  3724. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3725. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3726. "shasum": ""
  3727. },
  3728. "require": {
  3729. "php": ">=5.3.3"
  3730. },
  3731. "type": "library",
  3732. "autoload": {
  3733. "classmap": [
  3734. "src/"
  3735. ]
  3736. },
  3737. "notification-url": "https://packagist.org/downloads/",
  3738. "license": [
  3739. "BSD-3-Clause"
  3740. ],
  3741. "authors": [
  3742. {
  3743. "name": "Sebastian Bergmann",
  3744. "email": "sebastian@phpunit.de",
  3745. "role": "lead"
  3746. }
  3747. ],
  3748. "description": "Simple template engine.",
  3749. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  3750. "keywords": [
  3751. "template"
  3752. ],
  3753. "support": {
  3754. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  3755. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  3756. },
  3757. "time": "2015-06-21T13:50:34+00:00"
  3758. },
  3759. {
  3760. "name": "phpunit/php-timer",
  3761. "version": "2.1.3",
  3762. "source": {
  3763. "type": "git",
  3764. "url": "https://github.com/sebastianbergmann/php-timer.git",
  3765. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  3766. },
  3767. "dist": {
  3768. "type": "zip",
  3769. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  3770. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  3771. "shasum": ""
  3772. },
  3773. "require": {
  3774. "php": ">=7.1"
  3775. },
  3776. "require-dev": {
  3777. "phpunit/phpunit": "^8.5"
  3778. },
  3779. "type": "library",
  3780. "extra": {
  3781. "branch-alias": {
  3782. "dev-master": "2.1-dev"
  3783. }
  3784. },
  3785. "autoload": {
  3786. "classmap": [
  3787. "src/"
  3788. ]
  3789. },
  3790. "notification-url": "https://packagist.org/downloads/",
  3791. "license": [
  3792. "BSD-3-Clause"
  3793. ],
  3794. "authors": [
  3795. {
  3796. "name": "Sebastian Bergmann",
  3797. "email": "sebastian@phpunit.de",
  3798. "role": "lead"
  3799. }
  3800. ],
  3801. "description": "Utility class for timing",
  3802. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  3803. "keywords": [
  3804. "timer"
  3805. ],
  3806. "support": {
  3807. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  3808. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  3809. },
  3810. "funding": [
  3811. {
  3812. "url": "https://github.com/sebastianbergmann",
  3813. "type": "github"
  3814. }
  3815. ],
  3816. "time": "2020-11-30T08:20:02+00:00"
  3817. },
  3818. {
  3819. "name": "phpunit/php-token-stream",
  3820. "version": "3.1.2",
  3821. "source": {
  3822. "type": "git",
  3823. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  3824. "reference": "472b687829041c24b25f475e14c2f38a09edf1c2"
  3825. },
  3826. "dist": {
  3827. "type": "zip",
  3828. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/472b687829041c24b25f475e14c2f38a09edf1c2",
  3829. "reference": "472b687829041c24b25f475e14c2f38a09edf1c2",
  3830. "shasum": ""
  3831. },
  3832. "require": {
  3833. "ext-tokenizer": "*",
  3834. "php": ">=7.1"
  3835. },
  3836. "require-dev": {
  3837. "phpunit/phpunit": "^7.0"
  3838. },
  3839. "type": "library",
  3840. "extra": {
  3841. "branch-alias": {
  3842. "dev-master": "3.1-dev"
  3843. }
  3844. },
  3845. "autoload": {
  3846. "classmap": [
  3847. "src/"
  3848. ]
  3849. },
  3850. "notification-url": "https://packagist.org/downloads/",
  3851. "license": [
  3852. "BSD-3-Clause"
  3853. ],
  3854. "authors": [
  3855. {
  3856. "name": "Sebastian Bergmann",
  3857. "email": "sebastian@phpunit.de"
  3858. }
  3859. ],
  3860. "description": "Wrapper around PHP's tokenizer extension.",
  3861. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  3862. "keywords": [
  3863. "tokenizer"
  3864. ],
  3865. "support": {
  3866. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  3867. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.2"
  3868. },
  3869. "funding": [
  3870. {
  3871. "url": "https://github.com/sebastianbergmann",
  3872. "type": "github"
  3873. }
  3874. ],
  3875. "abandoned": true,
  3876. "time": "2020-11-30T08:38:46+00:00"
  3877. },
  3878. {
  3879. "name": "phpunit/phpunit",
  3880. "version": "7.5.20",
  3881. "source": {
  3882. "type": "git",
  3883. "url": "https://github.com/sebastianbergmann/phpunit.git",
  3884. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c"
  3885. },
  3886. "dist": {
  3887. "type": "zip",
  3888. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c",
  3889. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c",
  3890. "shasum": ""
  3891. },
  3892. "require": {
  3893. "doctrine/instantiator": "^1.1",
  3894. "ext-dom": "*",
  3895. "ext-json": "*",
  3896. "ext-libxml": "*",
  3897. "ext-mbstring": "*",
  3898. "ext-xml": "*",
  3899. "myclabs/deep-copy": "^1.7",
  3900. "phar-io/manifest": "^1.0.2",
  3901. "phar-io/version": "^2.0",
  3902. "php": "^7.1",
  3903. "phpspec/prophecy": "^1.7",
  3904. "phpunit/php-code-coverage": "^6.0.7",
  3905. "phpunit/php-file-iterator": "^2.0.1",
  3906. "phpunit/php-text-template": "^1.2.1",
  3907. "phpunit/php-timer": "^2.1",
  3908. "sebastian/comparator": "^3.0",
  3909. "sebastian/diff": "^3.0",
  3910. "sebastian/environment": "^4.0",
  3911. "sebastian/exporter": "^3.1",
  3912. "sebastian/global-state": "^2.0",
  3913. "sebastian/object-enumerator": "^3.0.3",
  3914. "sebastian/resource-operations": "^2.0",
  3915. "sebastian/version": "^2.0.1"
  3916. },
  3917. "conflict": {
  3918. "phpunit/phpunit-mock-objects": "*"
  3919. },
  3920. "require-dev": {
  3921. "ext-pdo": "*"
  3922. },
  3923. "suggest": {
  3924. "ext-soap": "*",
  3925. "ext-xdebug": "*",
  3926. "phpunit/php-invoker": "^2.0"
  3927. },
  3928. "bin": [
  3929. "phpunit"
  3930. ],
  3931. "type": "library",
  3932. "extra": {
  3933. "branch-alias": {
  3934. "dev-master": "7.5-dev"
  3935. }
  3936. },
  3937. "autoload": {
  3938. "classmap": [
  3939. "src/"
  3940. ]
  3941. },
  3942. "notification-url": "https://packagist.org/downloads/",
  3943. "license": [
  3944. "BSD-3-Clause"
  3945. ],
  3946. "authors": [
  3947. {
  3948. "name": "Sebastian Bergmann",
  3949. "email": "sebastian@phpunit.de",
  3950. "role": "lead"
  3951. }
  3952. ],
  3953. "description": "The PHP Unit Testing framework.",
  3954. "homepage": "https://phpunit.de/",
  3955. "keywords": [
  3956. "phpunit",
  3957. "testing",
  3958. "xunit"
  3959. ],
  3960. "support": {
  3961. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  3962. "source": "https://github.com/sebastianbergmann/phpunit/tree/7.5.20"
  3963. },
  3964. "time": "2020-01-08T08:45:45+00:00"
  3965. },
  3966. {
  3967. "name": "sebastian/code-unit-reverse-lookup",
  3968. "version": "1.0.2",
  3969. "source": {
  3970. "type": "git",
  3971. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  3972. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  3973. },
  3974. "dist": {
  3975. "type": "zip",
  3976. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  3977. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  3978. "shasum": ""
  3979. },
  3980. "require": {
  3981. "php": ">=5.6"
  3982. },
  3983. "require-dev": {
  3984. "phpunit/phpunit": "^8.5"
  3985. },
  3986. "type": "library",
  3987. "extra": {
  3988. "branch-alias": {
  3989. "dev-master": "1.0.x-dev"
  3990. }
  3991. },
  3992. "autoload": {
  3993. "classmap": [
  3994. "src/"
  3995. ]
  3996. },
  3997. "notification-url": "https://packagist.org/downloads/",
  3998. "license": [
  3999. "BSD-3-Clause"
  4000. ],
  4001. "authors": [
  4002. {
  4003. "name": "Sebastian Bergmann",
  4004. "email": "sebastian@phpunit.de"
  4005. }
  4006. ],
  4007. "description": "Looks up which function or method a line of code belongs to",
  4008. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  4009. "support": {
  4010. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  4011. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  4012. },
  4013. "funding": [
  4014. {
  4015. "url": "https://github.com/sebastianbergmann",
  4016. "type": "github"
  4017. }
  4018. ],
  4019. "time": "2020-11-30T08:15:22+00:00"
  4020. },
  4021. {
  4022. "name": "sebastian/comparator",
  4023. "version": "3.0.3",
  4024. "source": {
  4025. "type": "git",
  4026. "url": "https://github.com/sebastianbergmann/comparator.git",
  4027. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  4028. },
  4029. "dist": {
  4030. "type": "zip",
  4031. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  4032. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  4033. "shasum": ""
  4034. },
  4035. "require": {
  4036. "php": ">=7.1",
  4037. "sebastian/diff": "^3.0",
  4038. "sebastian/exporter": "^3.1"
  4039. },
  4040. "require-dev": {
  4041. "phpunit/phpunit": "^8.5"
  4042. },
  4043. "type": "library",
  4044. "extra": {
  4045. "branch-alias": {
  4046. "dev-master": "3.0-dev"
  4047. }
  4048. },
  4049. "autoload": {
  4050. "classmap": [
  4051. "src/"
  4052. ]
  4053. },
  4054. "notification-url": "https://packagist.org/downloads/",
  4055. "license": [
  4056. "BSD-3-Clause"
  4057. ],
  4058. "authors": [
  4059. {
  4060. "name": "Sebastian Bergmann",
  4061. "email": "sebastian@phpunit.de"
  4062. },
  4063. {
  4064. "name": "Jeff Welch",
  4065. "email": "whatthejeff@gmail.com"
  4066. },
  4067. {
  4068. "name": "Volker Dusch",
  4069. "email": "github@wallbash.com"
  4070. },
  4071. {
  4072. "name": "Bernhard Schussek",
  4073. "email": "bschussek@2bepublished.at"
  4074. }
  4075. ],
  4076. "description": "Provides the functionality to compare PHP values for equality",
  4077. "homepage": "https://github.com/sebastianbergmann/comparator",
  4078. "keywords": [
  4079. "comparator",
  4080. "compare",
  4081. "equality"
  4082. ],
  4083. "support": {
  4084. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  4085. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  4086. },
  4087. "funding": [
  4088. {
  4089. "url": "https://github.com/sebastianbergmann",
  4090. "type": "github"
  4091. }
  4092. ],
  4093. "time": "2020-11-30T08:04:30+00:00"
  4094. },
  4095. {
  4096. "name": "sebastian/diff",
  4097. "version": "3.0.3",
  4098. "source": {
  4099. "type": "git",
  4100. "url": "https://github.com/sebastianbergmann/diff.git",
  4101. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  4102. },
  4103. "dist": {
  4104. "type": "zip",
  4105. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  4106. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  4107. "shasum": ""
  4108. },
  4109. "require": {
  4110. "php": ">=7.1"
  4111. },
  4112. "require-dev": {
  4113. "phpunit/phpunit": "^7.5 || ^8.0",
  4114. "symfony/process": "^2 || ^3.3 || ^4"
  4115. },
  4116. "type": "library",
  4117. "extra": {
  4118. "branch-alias": {
  4119. "dev-master": "3.0-dev"
  4120. }
  4121. },
  4122. "autoload": {
  4123. "classmap": [
  4124. "src/"
  4125. ]
  4126. },
  4127. "notification-url": "https://packagist.org/downloads/",
  4128. "license": [
  4129. "BSD-3-Clause"
  4130. ],
  4131. "authors": [
  4132. {
  4133. "name": "Sebastian Bergmann",
  4134. "email": "sebastian@phpunit.de"
  4135. },
  4136. {
  4137. "name": "Kore Nordmann",
  4138. "email": "mail@kore-nordmann.de"
  4139. }
  4140. ],
  4141. "description": "Diff implementation",
  4142. "homepage": "https://github.com/sebastianbergmann/diff",
  4143. "keywords": [
  4144. "diff",
  4145. "udiff",
  4146. "unidiff",
  4147. "unified diff"
  4148. ],
  4149. "support": {
  4150. "issues": "https://github.com/sebastianbergmann/diff/issues",
  4151. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  4152. },
  4153. "funding": [
  4154. {
  4155. "url": "https://github.com/sebastianbergmann",
  4156. "type": "github"
  4157. }
  4158. ],
  4159. "time": "2020-11-30T07:59:04+00:00"
  4160. },
  4161. {
  4162. "name": "sebastian/environment",
  4163. "version": "4.2.4",
  4164. "source": {
  4165. "type": "git",
  4166. "url": "https://github.com/sebastianbergmann/environment.git",
  4167. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  4168. },
  4169. "dist": {
  4170. "type": "zip",
  4171. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  4172. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  4173. "shasum": ""
  4174. },
  4175. "require": {
  4176. "php": ">=7.1"
  4177. },
  4178. "require-dev": {
  4179. "phpunit/phpunit": "^7.5"
  4180. },
  4181. "suggest": {
  4182. "ext-posix": "*"
  4183. },
  4184. "type": "library",
  4185. "extra": {
  4186. "branch-alias": {
  4187. "dev-master": "4.2-dev"
  4188. }
  4189. },
  4190. "autoload": {
  4191. "classmap": [
  4192. "src/"
  4193. ]
  4194. },
  4195. "notification-url": "https://packagist.org/downloads/",
  4196. "license": [
  4197. "BSD-3-Clause"
  4198. ],
  4199. "authors": [
  4200. {
  4201. "name": "Sebastian Bergmann",
  4202. "email": "sebastian@phpunit.de"
  4203. }
  4204. ],
  4205. "description": "Provides functionality to handle HHVM/PHP environments",
  4206. "homepage": "http://www.github.com/sebastianbergmann/environment",
  4207. "keywords": [
  4208. "Xdebug",
  4209. "environment",
  4210. "hhvm"
  4211. ],
  4212. "support": {
  4213. "issues": "https://github.com/sebastianbergmann/environment/issues",
  4214. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  4215. },
  4216. "funding": [
  4217. {
  4218. "url": "https://github.com/sebastianbergmann",
  4219. "type": "github"
  4220. }
  4221. ],
  4222. "time": "2020-11-30T07:53:42+00:00"
  4223. },
  4224. {
  4225. "name": "sebastian/exporter",
  4226. "version": "3.1.3",
  4227. "source": {
  4228. "type": "git",
  4229. "url": "https://github.com/sebastianbergmann/exporter.git",
  4230. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  4231. },
  4232. "dist": {
  4233. "type": "zip",
  4234. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  4235. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  4236. "shasum": ""
  4237. },
  4238. "require": {
  4239. "php": ">=7.0",
  4240. "sebastian/recursion-context": "^3.0"
  4241. },
  4242. "require-dev": {
  4243. "ext-mbstring": "*",
  4244. "phpunit/phpunit": "^6.0"
  4245. },
  4246. "type": "library",
  4247. "extra": {
  4248. "branch-alias": {
  4249. "dev-master": "3.1.x-dev"
  4250. }
  4251. },
  4252. "autoload": {
  4253. "classmap": [
  4254. "src/"
  4255. ]
  4256. },
  4257. "notification-url": "https://packagist.org/downloads/",
  4258. "license": [
  4259. "BSD-3-Clause"
  4260. ],
  4261. "authors": [
  4262. {
  4263. "name": "Sebastian Bergmann",
  4264. "email": "sebastian@phpunit.de"
  4265. },
  4266. {
  4267. "name": "Jeff Welch",
  4268. "email": "whatthejeff@gmail.com"
  4269. },
  4270. {
  4271. "name": "Volker Dusch",
  4272. "email": "github@wallbash.com"
  4273. },
  4274. {
  4275. "name": "Adam Harvey",
  4276. "email": "aharvey@php.net"
  4277. },
  4278. {
  4279. "name": "Bernhard Schussek",
  4280. "email": "bschussek@gmail.com"
  4281. }
  4282. ],
  4283. "description": "Provides the functionality to export PHP variables for visualization",
  4284. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  4285. "keywords": [
  4286. "export",
  4287. "exporter"
  4288. ],
  4289. "support": {
  4290. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  4291. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
  4292. },
  4293. "funding": [
  4294. {
  4295. "url": "https://github.com/sebastianbergmann",
  4296. "type": "github"
  4297. }
  4298. ],
  4299. "time": "2020-11-30T07:47:53+00:00"
  4300. },
  4301. {
  4302. "name": "sebastian/global-state",
  4303. "version": "2.0.0",
  4304. "source": {
  4305. "type": "git",
  4306. "url": "https://github.com/sebastianbergmann/global-state.git",
  4307. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  4308. },
  4309. "dist": {
  4310. "type": "zip",
  4311. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  4312. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  4313. "shasum": ""
  4314. },
  4315. "require": {
  4316. "php": "^7.0"
  4317. },
  4318. "require-dev": {
  4319. "phpunit/phpunit": "^6.0"
  4320. },
  4321. "suggest": {
  4322. "ext-uopz": "*"
  4323. },
  4324. "type": "library",
  4325. "extra": {
  4326. "branch-alias": {
  4327. "dev-master": "2.0-dev"
  4328. }
  4329. },
  4330. "autoload": {
  4331. "classmap": [
  4332. "src/"
  4333. ]
  4334. },
  4335. "notification-url": "https://packagist.org/downloads/",
  4336. "license": [
  4337. "BSD-3-Clause"
  4338. ],
  4339. "authors": [
  4340. {
  4341. "name": "Sebastian Bergmann",
  4342. "email": "sebastian@phpunit.de"
  4343. }
  4344. ],
  4345. "description": "Snapshotting of global state",
  4346. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  4347. "keywords": [
  4348. "global state"
  4349. ],
  4350. "support": {
  4351. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  4352. "source": "https://github.com/sebastianbergmann/global-state/tree/2.0.0"
  4353. },
  4354. "time": "2017-04-27T15:39:26+00:00"
  4355. },
  4356. {
  4357. "name": "sebastian/object-enumerator",
  4358. "version": "3.0.4",
  4359. "source": {
  4360. "type": "git",
  4361. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  4362. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  4363. },
  4364. "dist": {
  4365. "type": "zip",
  4366. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  4367. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  4368. "shasum": ""
  4369. },
  4370. "require": {
  4371. "php": ">=7.0",
  4372. "sebastian/object-reflector": "^1.1.1",
  4373. "sebastian/recursion-context": "^3.0"
  4374. },
  4375. "require-dev": {
  4376. "phpunit/phpunit": "^6.0"
  4377. },
  4378. "type": "library",
  4379. "extra": {
  4380. "branch-alias": {
  4381. "dev-master": "3.0.x-dev"
  4382. }
  4383. },
  4384. "autoload": {
  4385. "classmap": [
  4386. "src/"
  4387. ]
  4388. },
  4389. "notification-url": "https://packagist.org/downloads/",
  4390. "license": [
  4391. "BSD-3-Clause"
  4392. ],
  4393. "authors": [
  4394. {
  4395. "name": "Sebastian Bergmann",
  4396. "email": "sebastian@phpunit.de"
  4397. }
  4398. ],
  4399. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  4400. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  4401. "support": {
  4402. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  4403. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  4404. },
  4405. "funding": [
  4406. {
  4407. "url": "https://github.com/sebastianbergmann",
  4408. "type": "github"
  4409. }
  4410. ],
  4411. "time": "2020-11-30T07:40:27+00:00"
  4412. },
  4413. {
  4414. "name": "sebastian/object-reflector",
  4415. "version": "1.1.2",
  4416. "source": {
  4417. "type": "git",
  4418. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  4419. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  4420. },
  4421. "dist": {
  4422. "type": "zip",
  4423. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  4424. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  4425. "shasum": ""
  4426. },
  4427. "require": {
  4428. "php": ">=7.0"
  4429. },
  4430. "require-dev": {
  4431. "phpunit/phpunit": "^6.0"
  4432. },
  4433. "type": "library",
  4434. "extra": {
  4435. "branch-alias": {
  4436. "dev-master": "1.1-dev"
  4437. }
  4438. },
  4439. "autoload": {
  4440. "classmap": [
  4441. "src/"
  4442. ]
  4443. },
  4444. "notification-url": "https://packagist.org/downloads/",
  4445. "license": [
  4446. "BSD-3-Clause"
  4447. ],
  4448. "authors": [
  4449. {
  4450. "name": "Sebastian Bergmann",
  4451. "email": "sebastian@phpunit.de"
  4452. }
  4453. ],
  4454. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  4455. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  4456. "support": {
  4457. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  4458. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  4459. },
  4460. "funding": [
  4461. {
  4462. "url": "https://github.com/sebastianbergmann",
  4463. "type": "github"
  4464. }
  4465. ],
  4466. "time": "2020-11-30T07:37:18+00:00"
  4467. },
  4468. {
  4469. "name": "sebastian/recursion-context",
  4470. "version": "3.0.1",
  4471. "source": {
  4472. "type": "git",
  4473. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  4474. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  4475. },
  4476. "dist": {
  4477. "type": "zip",
  4478. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  4479. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  4480. "shasum": ""
  4481. },
  4482. "require": {
  4483. "php": ">=7.0"
  4484. },
  4485. "require-dev": {
  4486. "phpunit/phpunit": "^6.0"
  4487. },
  4488. "type": "library",
  4489. "extra": {
  4490. "branch-alias": {
  4491. "dev-master": "3.0.x-dev"
  4492. }
  4493. },
  4494. "autoload": {
  4495. "classmap": [
  4496. "src/"
  4497. ]
  4498. },
  4499. "notification-url": "https://packagist.org/downloads/",
  4500. "license": [
  4501. "BSD-3-Clause"
  4502. ],
  4503. "authors": [
  4504. {
  4505. "name": "Sebastian Bergmann",
  4506. "email": "sebastian@phpunit.de"
  4507. },
  4508. {
  4509. "name": "Jeff Welch",
  4510. "email": "whatthejeff@gmail.com"
  4511. },
  4512. {
  4513. "name": "Adam Harvey",
  4514. "email": "aharvey@php.net"
  4515. }
  4516. ],
  4517. "description": "Provides functionality to recursively process PHP variables",
  4518. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  4519. "support": {
  4520. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  4521. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  4522. },
  4523. "funding": [
  4524. {
  4525. "url": "https://github.com/sebastianbergmann",
  4526. "type": "github"
  4527. }
  4528. ],
  4529. "time": "2020-11-30T07:34:24+00:00"
  4530. },
  4531. {
  4532. "name": "sebastian/resource-operations",
  4533. "version": "2.0.2",
  4534. "source": {
  4535. "type": "git",
  4536. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  4537. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  4538. },
  4539. "dist": {
  4540. "type": "zip",
  4541. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  4542. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  4543. "shasum": ""
  4544. },
  4545. "require": {
  4546. "php": ">=7.1"
  4547. },
  4548. "type": "library",
  4549. "extra": {
  4550. "branch-alias": {
  4551. "dev-master": "2.0-dev"
  4552. }
  4553. },
  4554. "autoload": {
  4555. "classmap": [
  4556. "src/"
  4557. ]
  4558. },
  4559. "notification-url": "https://packagist.org/downloads/",
  4560. "license": [
  4561. "BSD-3-Clause"
  4562. ],
  4563. "authors": [
  4564. {
  4565. "name": "Sebastian Bergmann",
  4566. "email": "sebastian@phpunit.de"
  4567. }
  4568. ],
  4569. "description": "Provides a list of PHP built-in functions that operate on resources",
  4570. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  4571. "support": {
  4572. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  4573. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  4574. },
  4575. "funding": [
  4576. {
  4577. "url": "https://github.com/sebastianbergmann",
  4578. "type": "github"
  4579. }
  4580. ],
  4581. "time": "2020-11-30T07:30:19+00:00"
  4582. },
  4583. {
  4584. "name": "sebastian/version",
  4585. "version": "2.0.1",
  4586. "source": {
  4587. "type": "git",
  4588. "url": "https://github.com/sebastianbergmann/version.git",
  4589. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  4590. },
  4591. "dist": {
  4592. "type": "zip",
  4593. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  4594. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  4595. "shasum": ""
  4596. },
  4597. "require": {
  4598. "php": ">=5.6"
  4599. },
  4600. "type": "library",
  4601. "extra": {
  4602. "branch-alias": {
  4603. "dev-master": "2.0.x-dev"
  4604. }
  4605. },
  4606. "autoload": {
  4607. "classmap": [
  4608. "src/"
  4609. ]
  4610. },
  4611. "notification-url": "https://packagist.org/downloads/",
  4612. "license": [
  4613. "BSD-3-Clause"
  4614. ],
  4615. "authors": [
  4616. {
  4617. "name": "Sebastian Bergmann",
  4618. "email": "sebastian@phpunit.de",
  4619. "role": "lead"
  4620. }
  4621. ],
  4622. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  4623. "homepage": "https://github.com/sebastianbergmann/version",
  4624. "support": {
  4625. "issues": "https://github.com/sebastianbergmann/version/issues",
  4626. "source": "https://github.com/sebastianbergmann/version/tree/master"
  4627. },
  4628. "time": "2016-10-03T07:35:21+00:00"
  4629. },
  4630. {
  4631. "name": "slevomat/coding-standard",
  4632. "version": "6.4.1",
  4633. "source": {
  4634. "type": "git",
  4635. "url": "https://github.com/slevomat/coding-standard.git",
  4636. "reference": "696dcca217d0c9da2c40d02731526c1e25b65346"
  4637. },
  4638. "dist": {
  4639. "type": "zip",
  4640. "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/696dcca217d0c9da2c40d02731526c1e25b65346",
  4641. "reference": "696dcca217d0c9da2c40d02731526c1e25b65346",
  4642. "shasum": ""
  4643. },
  4644. "require": {
  4645. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7",
  4646. "php": "^7.1 || ^8.0",
  4647. "phpstan/phpdoc-parser": "0.4.5 - 0.4.9",
  4648. "squizlabs/php_codesniffer": "^3.5.6"
  4649. },
  4650. "require-dev": {
  4651. "phing/phing": "2.16.3",
  4652. "php-parallel-lint/php-parallel-lint": "1.2.0",
  4653. "phpstan/phpstan": "0.12.48",
  4654. "phpstan/phpstan-deprecation-rules": "0.12.5",
  4655. "phpstan/phpstan-phpunit": "0.12.16",
  4656. "phpstan/phpstan-strict-rules": "0.12.5",
  4657. "phpunit/phpunit": "7.5.20|8.5.5|9.4.0"
  4658. },
  4659. "type": "phpcodesniffer-standard",
  4660. "extra": {
  4661. "branch-alias": {
  4662. "dev-master": "6.x-dev"
  4663. }
  4664. },
  4665. "autoload": {
  4666. "psr-4": {
  4667. "SlevomatCodingStandard\\": "SlevomatCodingStandard"
  4668. }
  4669. },
  4670. "notification-url": "https://packagist.org/downloads/",
  4671. "license": [
  4672. "MIT"
  4673. ],
  4674. "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
  4675. "support": {
  4676. "issues": "https://github.com/slevomat/coding-standard/issues",
  4677. "source": "https://github.com/slevomat/coding-standard/tree/6.4.1"
  4678. },
  4679. "funding": [
  4680. {
  4681. "url": "https://github.com/kukulich",
  4682. "type": "github"
  4683. },
  4684. {
  4685. "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard",
  4686. "type": "tidelift"
  4687. }
  4688. ],
  4689. "time": "2020-10-05T12:39:37+00:00"
  4690. },
  4691. {
  4692. "name": "squizlabs/php_codesniffer",
  4693. "version": "3.6.0",
  4694. "source": {
  4695. "type": "git",
  4696. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  4697. "reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625"
  4698. },
  4699. "dist": {
  4700. "type": "zip",
  4701. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ffced0d2c8fa8e6cdc4d695a743271fab6c38625",
  4702. "reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625",
  4703. "shasum": ""
  4704. },
  4705. "require": {
  4706. "ext-simplexml": "*",
  4707. "ext-tokenizer": "*",
  4708. "ext-xmlwriter": "*",
  4709. "php": ">=5.4.0"
  4710. },
  4711. "require-dev": {
  4712. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  4713. },
  4714. "bin": [
  4715. "bin/phpcs",
  4716. "bin/phpcbf"
  4717. ],
  4718. "type": "library",
  4719. "extra": {
  4720. "branch-alias": {
  4721. "dev-master": "3.x-dev"
  4722. }
  4723. },
  4724. "notification-url": "https://packagist.org/downloads/",
  4725. "license": [
  4726. "BSD-3-Clause"
  4727. ],
  4728. "authors": [
  4729. {
  4730. "name": "Greg Sherwood",
  4731. "role": "lead"
  4732. }
  4733. ],
  4734. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  4735. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  4736. "keywords": [
  4737. "phpcs",
  4738. "standards"
  4739. ],
  4740. "support": {
  4741. "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
  4742. "source": "https://github.com/squizlabs/PHP_CodeSniffer",
  4743. "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
  4744. },
  4745. "time": "2021-04-09T00:54:41+00:00"
  4746. },
  4747. {
  4748. "name": "symfony/console",
  4749. "version": "v4.4.25",
  4750. "source": {
  4751. "type": "git",
  4752. "url": "https://github.com/symfony/console.git",
  4753. "reference": "a62acecdf5b50e314a4f305cd01b5282126f3095"
  4754. },
  4755. "dist": {
  4756. "type": "zip",
  4757. "url": "https://api.github.com/repos/symfony/console/zipball/a62acecdf5b50e314a4f305cd01b5282126f3095",
  4758. "reference": "a62acecdf5b50e314a4f305cd01b5282126f3095",
  4759. "shasum": ""
  4760. },
  4761. "require": {
  4762. "php": ">=7.1.3",
  4763. "symfony/polyfill-mbstring": "~1.0",
  4764. "symfony/polyfill-php73": "^1.8",
  4765. "symfony/polyfill-php80": "^1.15",
  4766. "symfony/service-contracts": "^1.1|^2"
  4767. },
  4768. "conflict": {
  4769. "symfony/dependency-injection": "<3.4",
  4770. "symfony/event-dispatcher": "<4.3|>=5",
  4771. "symfony/lock": "<4.4",
  4772. "symfony/process": "<3.3"
  4773. },
  4774. "provide": {
  4775. "psr/log-implementation": "1.0"
  4776. },
  4777. "require-dev": {
  4778. "psr/log": "~1.0",
  4779. "symfony/config": "^3.4|^4.0|^5.0",
  4780. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4781. "symfony/event-dispatcher": "^4.3",
  4782. "symfony/lock": "^4.4|^5.0",
  4783. "symfony/process": "^3.4|^4.0|^5.0",
  4784. "symfony/var-dumper": "^4.3|^5.0"
  4785. },
  4786. "suggest": {
  4787. "psr/log": "For using the console logger",
  4788. "symfony/event-dispatcher": "",
  4789. "symfony/lock": "",
  4790. "symfony/process": ""
  4791. },
  4792. "type": "library",
  4793. "autoload": {
  4794. "psr-4": {
  4795. "Symfony\\Component\\Console\\": ""
  4796. },
  4797. "exclude-from-classmap": [
  4798. "/Tests/"
  4799. ]
  4800. },
  4801. "notification-url": "https://packagist.org/downloads/",
  4802. "license": [
  4803. "MIT"
  4804. ],
  4805. "authors": [
  4806. {
  4807. "name": "Fabien Potencier",
  4808. "email": "fabien@symfony.com"
  4809. },
  4810. {
  4811. "name": "Symfony Community",
  4812. "homepage": "https://symfony.com/contributors"
  4813. }
  4814. ],
  4815. "description": "Eases the creation of beautiful and testable command line interfaces",
  4816. "homepage": "https://symfony.com",
  4817. "support": {
  4818. "source": "https://github.com/symfony/console/tree/v4.4.25"
  4819. },
  4820. "funding": [
  4821. {
  4822. "url": "https://symfony.com/sponsor",
  4823. "type": "custom"
  4824. },
  4825. {
  4826. "url": "https://github.com/fabpot",
  4827. "type": "github"
  4828. },
  4829. {
  4830. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4831. "type": "tidelift"
  4832. }
  4833. ],
  4834. "time": "2021-05-26T11:20:16+00:00"
  4835. },
  4836. {
  4837. "name": "symfony/finder",
  4838. "version": "v4.4.25",
  4839. "source": {
  4840. "type": "git",
  4841. "url": "https://github.com/symfony/finder.git",
  4842. "reference": "ed33314396d968a8936c95f5bd1b88bd3b3e94a3"
  4843. },
  4844. "dist": {
  4845. "type": "zip",
  4846. "url": "https://api.github.com/repos/symfony/finder/zipball/ed33314396d968a8936c95f5bd1b88bd3b3e94a3",
  4847. "reference": "ed33314396d968a8936c95f5bd1b88bd3b3e94a3",
  4848. "shasum": ""
  4849. },
  4850. "require": {
  4851. "php": ">=7.1.3"
  4852. },
  4853. "type": "library",
  4854. "autoload": {
  4855. "psr-4": {
  4856. "Symfony\\Component\\Finder\\": ""
  4857. },
  4858. "exclude-from-classmap": [
  4859. "/Tests/"
  4860. ]
  4861. },
  4862. "notification-url": "https://packagist.org/downloads/",
  4863. "license": [
  4864. "MIT"
  4865. ],
  4866. "authors": [
  4867. {
  4868. "name": "Fabien Potencier",
  4869. "email": "fabien@symfony.com"
  4870. },
  4871. {
  4872. "name": "Symfony Community",
  4873. "homepage": "https://symfony.com/contributors"
  4874. }
  4875. ],
  4876. "description": "Finds files and directories via an intuitive fluent interface",
  4877. "homepage": "https://symfony.com",
  4878. "support": {
  4879. "source": "https://github.com/symfony/finder/tree/v4.4.25"
  4880. },
  4881. "funding": [
  4882. {
  4883. "url": "https://symfony.com/sponsor",
  4884. "type": "custom"
  4885. },
  4886. {
  4887. "url": "https://github.com/fabpot",
  4888. "type": "github"
  4889. },
  4890. {
  4891. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4892. "type": "tidelift"
  4893. }
  4894. ],
  4895. "time": "2021-05-26T11:20:16+00:00"
  4896. },
  4897. {
  4898. "name": "symfony/polyfill-php73",
  4899. "version": "v1.23.0",
  4900. "source": {
  4901. "type": "git",
  4902. "url": "https://github.com/symfony/polyfill-php73.git",
  4903. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  4904. },
  4905. "dist": {
  4906. "type": "zip",
  4907. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  4908. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  4909. "shasum": ""
  4910. },
  4911. "require": {
  4912. "php": ">=7.1"
  4913. },
  4914. "type": "library",
  4915. "extra": {
  4916. "branch-alias": {
  4917. "dev-main": "1.23-dev"
  4918. },
  4919. "thanks": {
  4920. "name": "symfony/polyfill",
  4921. "url": "https://github.com/symfony/polyfill"
  4922. }
  4923. },
  4924. "autoload": {
  4925. "psr-4": {
  4926. "Symfony\\Polyfill\\Php73\\": ""
  4927. },
  4928. "files": [
  4929. "bootstrap.php"
  4930. ],
  4931. "classmap": [
  4932. "Resources/stubs"
  4933. ]
  4934. },
  4935. "notification-url": "https://packagist.org/downloads/",
  4936. "license": [
  4937. "MIT"
  4938. ],
  4939. "authors": [
  4940. {
  4941. "name": "Nicolas Grekas",
  4942. "email": "p@tchwork.com"
  4943. },
  4944. {
  4945. "name": "Symfony Community",
  4946. "homepage": "https://symfony.com/contributors"
  4947. }
  4948. ],
  4949. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4950. "homepage": "https://symfony.com",
  4951. "keywords": [
  4952. "compatibility",
  4953. "polyfill",
  4954. "portable",
  4955. "shim"
  4956. ],
  4957. "support": {
  4958. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  4959. },
  4960. "funding": [
  4961. {
  4962. "url": "https://symfony.com/sponsor",
  4963. "type": "custom"
  4964. },
  4965. {
  4966. "url": "https://github.com/fabpot",
  4967. "type": "github"
  4968. },
  4969. {
  4970. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4971. "type": "tidelift"
  4972. }
  4973. ],
  4974. "time": "2021-02-19T12:13:01+00:00"
  4975. },
  4976. {
  4977. "name": "symfony/polyfill-php80",
  4978. "version": "v1.23.0",
  4979. "source": {
  4980. "type": "git",
  4981. "url": "https://github.com/symfony/polyfill-php80.git",
  4982. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0"
  4983. },
  4984. "dist": {
  4985. "type": "zip",
  4986. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  4987. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  4988. "shasum": ""
  4989. },
  4990. "require": {
  4991. "php": ">=7.1"
  4992. },
  4993. "type": "library",
  4994. "extra": {
  4995. "branch-alias": {
  4996. "dev-main": "1.23-dev"
  4997. },
  4998. "thanks": {
  4999. "name": "symfony/polyfill",
  5000. "url": "https://github.com/symfony/polyfill"
  5001. }
  5002. },
  5003. "autoload": {
  5004. "psr-4": {
  5005. "Symfony\\Polyfill\\Php80\\": ""
  5006. },
  5007. "files": [
  5008. "bootstrap.php"
  5009. ],
  5010. "classmap": [
  5011. "Resources/stubs"
  5012. ]
  5013. },
  5014. "notification-url": "https://packagist.org/downloads/",
  5015. "license": [
  5016. "MIT"
  5017. ],
  5018. "authors": [
  5019. {
  5020. "name": "Ion Bazan",
  5021. "email": "ion.bazan@gmail.com"
  5022. },
  5023. {
  5024. "name": "Nicolas Grekas",
  5025. "email": "p@tchwork.com"
  5026. },
  5027. {
  5028. "name": "Symfony Community",
  5029. "homepage": "https://symfony.com/contributors"
  5030. }
  5031. ],
  5032. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5033. "homepage": "https://symfony.com",
  5034. "keywords": [
  5035. "compatibility",
  5036. "polyfill",
  5037. "portable",
  5038. "shim"
  5039. ],
  5040. "support": {
  5041. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0"
  5042. },
  5043. "funding": [
  5044. {
  5045. "url": "https://symfony.com/sponsor",
  5046. "type": "custom"
  5047. },
  5048. {
  5049. "url": "https://github.com/fabpot",
  5050. "type": "github"
  5051. },
  5052. {
  5053. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5054. "type": "tidelift"
  5055. }
  5056. ],
  5057. "time": "2021-02-19T12:13:01+00:00"
  5058. },
  5059. {
  5060. "name": "symfony/process",
  5061. "version": "v4.4.25",
  5062. "source": {
  5063. "type": "git",
  5064. "url": "https://github.com/symfony/process.git",
  5065. "reference": "cd61e6dd273975c6625316de9d141ebd197f93c9"
  5066. },
  5067. "dist": {
  5068. "type": "zip",
  5069. "url": "https://api.github.com/repos/symfony/process/zipball/cd61e6dd273975c6625316de9d141ebd197f93c9",
  5070. "reference": "cd61e6dd273975c6625316de9d141ebd197f93c9",
  5071. "shasum": ""
  5072. },
  5073. "require": {
  5074. "php": ">=7.1.3"
  5075. },
  5076. "type": "library",
  5077. "autoload": {
  5078. "psr-4": {
  5079. "Symfony\\Component\\Process\\": ""
  5080. },
  5081. "exclude-from-classmap": [
  5082. "/Tests/"
  5083. ]
  5084. },
  5085. "notification-url": "https://packagist.org/downloads/",
  5086. "license": [
  5087. "MIT"
  5088. ],
  5089. "authors": [
  5090. {
  5091. "name": "Fabien Potencier",
  5092. "email": "fabien@symfony.com"
  5093. },
  5094. {
  5095. "name": "Symfony Community",
  5096. "homepage": "https://symfony.com/contributors"
  5097. }
  5098. ],
  5099. "description": "Executes commands in sub-processes",
  5100. "homepage": "https://symfony.com",
  5101. "support": {
  5102. "source": "https://github.com/symfony/process/tree/v4.4.25"
  5103. },
  5104. "funding": [
  5105. {
  5106. "url": "https://symfony.com/sponsor",
  5107. "type": "custom"
  5108. },
  5109. {
  5110. "url": "https://github.com/fabpot",
  5111. "type": "github"
  5112. },
  5113. {
  5114. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5115. "type": "tidelift"
  5116. }
  5117. ],
  5118. "time": "2021-05-26T11:20:16+00:00"
  5119. },
  5120. {
  5121. "name": "symfony/translation-contracts",
  5122. "version": "v1.1.10",
  5123. "source": {
  5124. "type": "git",
  5125. "url": "https://github.com/symfony/translation-contracts.git",
  5126. "reference": "84180a25fad31e23bebd26ca09d89464f082cacc"
  5127. },
  5128. "dist": {
  5129. "type": "zip",
  5130. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/84180a25fad31e23bebd26ca09d89464f082cacc",
  5131. "reference": "84180a25fad31e23bebd26ca09d89464f082cacc",
  5132. "shasum": ""
  5133. },
  5134. "require": {
  5135. "php": ">=7.1.3"
  5136. },
  5137. "suggest": {
  5138. "symfony/translation-implementation": ""
  5139. },
  5140. "type": "library",
  5141. "extra": {
  5142. "branch-alias": {
  5143. "dev-master": "1.1-dev"
  5144. },
  5145. "thanks": {
  5146. "name": "symfony/contracts",
  5147. "url": "https://github.com/symfony/contracts"
  5148. }
  5149. },
  5150. "autoload": {
  5151. "psr-4": {
  5152. "Symfony\\Contracts\\Translation\\": ""
  5153. }
  5154. },
  5155. "notification-url": "https://packagist.org/downloads/",
  5156. "license": [
  5157. "MIT"
  5158. ],
  5159. "authors": [
  5160. {
  5161. "name": "Nicolas Grekas",
  5162. "email": "p@tchwork.com"
  5163. },
  5164. {
  5165. "name": "Symfony Community",
  5166. "homepage": "https://symfony.com/contributors"
  5167. }
  5168. ],
  5169. "description": "Generic abstractions related to translation",
  5170. "homepage": "https://symfony.com",
  5171. "keywords": [
  5172. "abstractions",
  5173. "contracts",
  5174. "decoupling",
  5175. "interfaces",
  5176. "interoperability",
  5177. "standards"
  5178. ],
  5179. "support": {
  5180. "source": "https://github.com/symfony/translation-contracts/tree/v1.1.10"
  5181. },
  5182. "funding": [
  5183. {
  5184. "url": "https://symfony.com/sponsor",
  5185. "type": "custom"
  5186. },
  5187. {
  5188. "url": "https://github.com/fabpot",
  5189. "type": "github"
  5190. },
  5191. {
  5192. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5193. "type": "tidelift"
  5194. }
  5195. ],
  5196. "time": "2020-09-02T16:08:58+00:00"
  5197. },
  5198. {
  5199. "name": "symfony/twig-bridge",
  5200. "version": "v4.4.25",
  5201. "source": {
  5202. "type": "git",
  5203. "url": "https://github.com/symfony/twig-bridge.git",
  5204. "reference": "631a2a05f153f553cbe9602efbb7b3fdbcbe8cfa"
  5205. },
  5206. "dist": {
  5207. "type": "zip",
  5208. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/631a2a05f153f553cbe9602efbb7b3fdbcbe8cfa",
  5209. "reference": "631a2a05f153f553cbe9602efbb7b3fdbcbe8cfa",
  5210. "shasum": ""
  5211. },
  5212. "require": {
  5213. "php": ">=7.1.3",
  5214. "symfony/translation-contracts": "^1.1|^2",
  5215. "twig/twig": "^1.43|^2.13|^3.0.4"
  5216. },
  5217. "conflict": {
  5218. "symfony/console": "<3.4",
  5219. "symfony/form": "<4.4",
  5220. "symfony/http-foundation": "<4.3",
  5221. "symfony/translation": "<4.2",
  5222. "symfony/workflow": "<4.3"
  5223. },
  5224. "require-dev": {
  5225. "egulias/email-validator": "^2.1.10|^3",
  5226. "symfony/asset": "^3.4|^4.0|^5.0",
  5227. "symfony/console": "^3.4|^4.0|^5.0",
  5228. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5229. "symfony/error-handler": "^4.4|^5.0",
  5230. "symfony/expression-language": "^3.4|^4.0|^5.0",
  5231. "symfony/finder": "^3.4|^4.0|^5.0",
  5232. "symfony/form": "^4.4.17",
  5233. "symfony/http-foundation": "^4.3|^5.0",
  5234. "symfony/http-kernel": "^4.4",
  5235. "symfony/intl": "^4.4|^5.0",
  5236. "symfony/mime": "^4.3|^5.0",
  5237. "symfony/polyfill-intl-icu": "~1.0",
  5238. "symfony/routing": "^3.4|^4.0|^5.0",
  5239. "symfony/security-acl": "^2.8|^3.0",
  5240. "symfony/security-core": "^3.0|^4.0|^5.0",
  5241. "symfony/security-csrf": "^3.4|^4.0|^5.0",
  5242. "symfony/security-http": "^3.4|^4.0|^5.0",
  5243. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  5244. "symfony/templating": "^3.4|^4.0|^5.0",
  5245. "symfony/translation": "^4.2.1|^5.0",
  5246. "symfony/web-link": "^4.4|^5.0",
  5247. "symfony/workflow": "^4.3|^5.0",
  5248. "symfony/yaml": "^3.4|^4.0|^5.0",
  5249. "twig/cssinliner-extra": "^2.12|^3",
  5250. "twig/inky-extra": "^2.12|^3",
  5251. "twig/markdown-extra": "^2.12|^3"
  5252. },
  5253. "suggest": {
  5254. "symfony/asset": "For using the AssetExtension",
  5255. "symfony/expression-language": "For using the ExpressionExtension",
  5256. "symfony/finder": "",
  5257. "symfony/form": "For using the FormExtension",
  5258. "symfony/http-kernel": "For using the HttpKernelExtension",
  5259. "symfony/routing": "For using the RoutingExtension",
  5260. "symfony/security-core": "For using the SecurityExtension",
  5261. "symfony/security-csrf": "For using the CsrfExtension",
  5262. "symfony/security-http": "For using the LogoutUrlExtension",
  5263. "symfony/stopwatch": "For using the StopwatchExtension",
  5264. "symfony/templating": "For using the TwigEngine",
  5265. "symfony/translation": "For using the TranslationExtension",
  5266. "symfony/var-dumper": "For using the DumpExtension",
  5267. "symfony/web-link": "For using the WebLinkExtension",
  5268. "symfony/yaml": "For using the YamlExtension"
  5269. },
  5270. "type": "symfony-bridge",
  5271. "autoload": {
  5272. "psr-4": {
  5273. "Symfony\\Bridge\\Twig\\": ""
  5274. },
  5275. "exclude-from-classmap": [
  5276. "/Tests/"
  5277. ]
  5278. },
  5279. "notification-url": "https://packagist.org/downloads/",
  5280. "license": [
  5281. "MIT"
  5282. ],
  5283. "authors": [
  5284. {
  5285. "name": "Fabien Potencier",
  5286. "email": "fabien@symfony.com"
  5287. },
  5288. {
  5289. "name": "Symfony Community",
  5290. "homepage": "https://symfony.com/contributors"
  5291. }
  5292. ],
  5293. "description": "Provides integration for Twig with various Symfony components",
  5294. "homepage": "https://symfony.com",
  5295. "support": {
  5296. "source": "https://github.com/symfony/twig-bridge/tree/v4.4.25"
  5297. },
  5298. "funding": [
  5299. {
  5300. "url": "https://symfony.com/sponsor",
  5301. "type": "custom"
  5302. },
  5303. {
  5304. "url": "https://github.com/fabpot",
  5305. "type": "github"
  5306. },
  5307. {
  5308. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5309. "type": "tidelift"
  5310. }
  5311. ],
  5312. "time": "2021-05-26T11:20:16+00:00"
  5313. },
  5314. {
  5315. "name": "theseer/tokenizer",
  5316. "version": "1.1.3",
  5317. "source": {
  5318. "type": "git",
  5319. "url": "https://github.com/theseer/tokenizer.git",
  5320. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  5321. },
  5322. "dist": {
  5323. "type": "zip",
  5324. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  5325. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  5326. "shasum": ""
  5327. },
  5328. "require": {
  5329. "ext-dom": "*",
  5330. "ext-tokenizer": "*",
  5331. "ext-xmlwriter": "*",
  5332. "php": "^7.0"
  5333. },
  5334. "type": "library",
  5335. "autoload": {
  5336. "classmap": [
  5337. "src/"
  5338. ]
  5339. },
  5340. "notification-url": "https://packagist.org/downloads/",
  5341. "license": [
  5342. "BSD-3-Clause"
  5343. ],
  5344. "authors": [
  5345. {
  5346. "name": "Arne Blankerts",
  5347. "email": "arne@blankerts.de",
  5348. "role": "Developer"
  5349. }
  5350. ],
  5351. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  5352. "support": {
  5353. "issues": "https://github.com/theseer/tokenizer/issues",
  5354. "source": "https://github.com/theseer/tokenizer/tree/master"
  5355. },
  5356. "time": "2019-06-13T22:48:21+00:00"
  5357. },
  5358. {
  5359. "name": "vimeo/psalm",
  5360. "version": "4.7.3",
  5361. "source": {
  5362. "type": "git",
  5363. "url": "https://github.com/vimeo/psalm.git",
  5364. "reference": "38c452ae584467e939d55377aaf83b5a26f19dd1"
  5365. },
  5366. "dist": {
  5367. "type": "zip",
  5368. "url": "https://api.github.com/repos/vimeo/psalm/zipball/38c452ae584467e939d55377aaf83b5a26f19dd1",
  5369. "reference": "38c452ae584467e939d55377aaf83b5a26f19dd1",
  5370. "shasum": ""
  5371. },
  5372. "require": {
  5373. "amphp/amp": "^2.4.2",
  5374. "amphp/byte-stream": "^1.5",
  5375. "composer/package-versions-deprecated": "^1.8.0",
  5376. "composer/semver": "^1.4 || ^2.0 || ^3.0",
  5377. "composer/xdebug-handler": "^1.1 || ^2.0",
  5378. "dnoegel/php-xdg-base-dir": "^0.1.1",
  5379. "ext-dom": "*",
  5380. "ext-json": "*",
  5381. "ext-libxml": "*",
  5382. "ext-mbstring": "*",
  5383. "ext-simplexml": "*",
  5384. "ext-tokenizer": "*",
  5385. "felixfbecker/advanced-json-rpc": "^3.0.3",
  5386. "felixfbecker/language-server-protocol": "^1.5",
  5387. "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
  5388. "nikic/php-parser": "^4.10.5",
  5389. "openlss/lib-array2xml": "^1.0",
  5390. "php": "^7.1|^8",
  5391. "sebastian/diff": "^3.0 || ^4.0",
  5392. "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0",
  5393. "webmozart/path-util": "^2.3"
  5394. },
  5395. "provide": {
  5396. "psalm/psalm": "self.version"
  5397. },
  5398. "require-dev": {
  5399. "bamarni/composer-bin-plugin": "^1.2",
  5400. "brianium/paratest": "^4.0||^6.0",
  5401. "ext-curl": "*",
  5402. "php-parallel-lint/php-parallel-lint": "^1.2",
  5403. "phpdocumentor/reflection-docblock": "^5",
  5404. "phpmyadmin/sql-parser": "5.1.0||dev-master",
  5405. "phpspec/prophecy": ">=1.9.0",
  5406. "phpunit/phpunit": "^9.0",
  5407. "psalm/plugin-phpunit": "^0.13",
  5408. "slevomat/coding-standard": "^7.0",
  5409. "squizlabs/php_codesniffer": "^3.5",
  5410. "symfony/process": "^4.3",
  5411. "weirdan/phpunit-appveyor-reporter": "^1.0.0",
  5412. "weirdan/prophecy-shim": "^1.0 || ^2.0"
  5413. },
  5414. "suggest": {
  5415. "ext-igbinary": "^2.0.5"
  5416. },
  5417. "bin": [
  5418. "psalm",
  5419. "psalm-language-server",
  5420. "psalm-plugin",
  5421. "psalm-refactor",
  5422. "psalter"
  5423. ],
  5424. "type": "library",
  5425. "extra": {
  5426. "branch-alias": {
  5427. "dev-master": "4.x-dev",
  5428. "dev-3.x": "3.x-dev",
  5429. "dev-2.x": "2.x-dev",
  5430. "dev-1.x": "1.x-dev"
  5431. }
  5432. },
  5433. "autoload": {
  5434. "psr-4": {
  5435. "Psalm\\": "src/Psalm/"
  5436. },
  5437. "files": [
  5438. "src/functions.php",
  5439. "src/spl_object_id.php"
  5440. ]
  5441. },
  5442. "notification-url": "https://packagist.org/downloads/",
  5443. "license": [
  5444. "MIT"
  5445. ],
  5446. "authors": [
  5447. {
  5448. "name": "Matthew Brown"
  5449. }
  5450. ],
  5451. "description": "A static analysis tool for finding errors in PHP applications",
  5452. "keywords": [
  5453. "code",
  5454. "inspection",
  5455. "php"
  5456. ],
  5457. "support": {
  5458. "issues": "https://github.com/vimeo/psalm/issues",
  5459. "source": "https://github.com/vimeo/psalm/tree/4.7.3"
  5460. },
  5461. "time": "2021-05-24T04:09:51+00:00"
  5462. },
  5463. {
  5464. "name": "webmozart/assert",
  5465. "version": "1.9.1",
  5466. "source": {
  5467. "type": "git",
  5468. "url": "https://github.com/webmozarts/assert.git",
  5469. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  5470. },
  5471. "dist": {
  5472. "type": "zip",
  5473. "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  5474. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  5475. "shasum": ""
  5476. },
  5477. "require": {
  5478. "php": "^5.3.3 || ^7.0 || ^8.0",
  5479. "symfony/polyfill-ctype": "^1.8"
  5480. },
  5481. "conflict": {
  5482. "phpstan/phpstan": "<0.12.20",
  5483. "vimeo/psalm": "<3.9.1"
  5484. },
  5485. "require-dev": {
  5486. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  5487. },
  5488. "type": "library",
  5489. "autoload": {
  5490. "psr-4": {
  5491. "Webmozart\\Assert\\": "src/"
  5492. }
  5493. },
  5494. "notification-url": "https://packagist.org/downloads/",
  5495. "license": [
  5496. "MIT"
  5497. ],
  5498. "authors": [
  5499. {
  5500. "name": "Bernhard Schussek",
  5501. "email": "bschussek@gmail.com"
  5502. }
  5503. ],
  5504. "description": "Assertions to validate method input/output with nice error messages.",
  5505. "keywords": [
  5506. "assert",
  5507. "check",
  5508. "validate"
  5509. ],
  5510. "support": {
  5511. "issues": "https://github.com/webmozarts/assert/issues",
  5512. "source": "https://github.com/webmozarts/assert/tree/1.9.1"
  5513. },
  5514. "time": "2020-07-08T17:02:28+00:00"
  5515. },
  5516. {
  5517. "name": "webmozart/path-util",
  5518. "version": "2.3.0",
  5519. "source": {
  5520. "type": "git",
  5521. "url": "https://github.com/webmozart/path-util.git",
  5522. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  5523. },
  5524. "dist": {
  5525. "type": "zip",
  5526. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  5527. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  5528. "shasum": ""
  5529. },
  5530. "require": {
  5531. "php": ">=5.3.3",
  5532. "webmozart/assert": "~1.0"
  5533. },
  5534. "require-dev": {
  5535. "phpunit/phpunit": "^4.6",
  5536. "sebastian/version": "^1.0.1"
  5537. },
  5538. "type": "library",
  5539. "extra": {
  5540. "branch-alias": {
  5541. "dev-master": "2.3-dev"
  5542. }
  5543. },
  5544. "autoload": {
  5545. "psr-4": {
  5546. "Webmozart\\PathUtil\\": "src/"
  5547. }
  5548. },
  5549. "notification-url": "https://packagist.org/downloads/",
  5550. "license": [
  5551. "MIT"
  5552. ],
  5553. "authors": [
  5554. {
  5555. "name": "Bernhard Schussek",
  5556. "email": "bschussek@gmail.com"
  5557. }
  5558. ],
  5559. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  5560. "support": {
  5561. "issues": "https://github.com/webmozart/path-util/issues",
  5562. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  5563. },
  5564. "time": "2015-12-17T08:42:14+00:00"
  5565. }
  5566. ],
  5567. "aliases": [],
  5568. "minimum-stability": "stable",
  5569. "stability-flags": [],
  5570. "prefer-stable": false,
  5571. "prefer-lowest": false,
  5572. "platform": {
  5573. "php": "^7.1.3 || ^8.0",
  5574. "ext-hash": "*",
  5575. "ext-iconv": "*",
  5576. "ext-json": "*",
  5577. "ext-mysqli": "*",
  5578. "ext-pcre": "*",
  5579. "ext-xml": "*"
  5580. },
  5581. "platform-dev": [],
  5582. "platform-overrides": {
  5583. "php": "7.1.3"
  5584. },
  5585. "plugin-api-version": "2.0.0"
  5586. }