composer.lock 205 KB

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