composer.lock 199 KB

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