composer.lock 286 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980
  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": "917a4eaae51cfd1a1bdc9d3dac9ca28b",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.2|^8.0",
  25. "symfony/http-foundation": "^4|^5|^6",
  26. "symfony/http-kernel": "^4|^5|^6"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^7|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.1-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  62. },
  63. "time": "2022-01-18T09:12:03+00:00"
  64. },
  65. {
  66. "name": "brick/math",
  67. "version": "0.9.3",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/brick/math.git",
  71. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  76. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": "^7.1 || ^8.0"
  82. },
  83. "require-dev": {
  84. "php-coveralls/php-coveralls": "^2.2",
  85. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  86. "vimeo/psalm": "4.9.2"
  87. },
  88. "type": "library",
  89. "autoload": {
  90. "psr-4": {
  91. "Brick\\Math\\": "src/"
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "MIT"
  97. ],
  98. "description": "Arbitrary-precision arithmetic library",
  99. "keywords": [
  100. "Arbitrary-precision",
  101. "BigInteger",
  102. "BigRational",
  103. "arithmetic",
  104. "bigdecimal",
  105. "bignum",
  106. "brick",
  107. "math"
  108. ],
  109. "support": {
  110. "issues": "https://github.com/brick/math/issues",
  111. "source": "https://github.com/brick/math/tree/0.9.3"
  112. },
  113. "funding": [
  114. {
  115. "url": "https://github.com/BenMorel",
  116. "type": "github"
  117. },
  118. {
  119. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  120. "type": "tidelift"
  121. }
  122. ],
  123. "time": "2021-08-15T20:50:18+00:00"
  124. },
  125. {
  126. "name": "dflydev/dot-access-data",
  127. "version": "v3.0.1",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  131. "reference": "0992cc19268b259a39e86f296da5f0677841f42c"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c",
  136. "reference": "0992cc19268b259a39e86f296da5f0677841f42c",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "php": "^7.1 || ^8.0"
  141. },
  142. "require-dev": {
  143. "phpstan/phpstan": "^0.12.42",
  144. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  145. "scrutinizer/ocular": "1.6.0",
  146. "squizlabs/php_codesniffer": "^3.5",
  147. "vimeo/psalm": "^3.14"
  148. },
  149. "type": "library",
  150. "extra": {
  151. "branch-alias": {
  152. "dev-main": "3.x-dev"
  153. }
  154. },
  155. "autoload": {
  156. "psr-4": {
  157. "Dflydev\\DotAccessData\\": "src/"
  158. }
  159. },
  160. "notification-url": "https://packagist.org/downloads/",
  161. "license": [
  162. "MIT"
  163. ],
  164. "authors": [
  165. {
  166. "name": "Dragonfly Development Inc.",
  167. "email": "info@dflydev.com",
  168. "homepage": "http://dflydev.com"
  169. },
  170. {
  171. "name": "Beau Simensen",
  172. "email": "beau@dflydev.com",
  173. "homepage": "http://beausimensen.com"
  174. },
  175. {
  176. "name": "Carlos Frutos",
  177. "email": "carlos@kiwing.it",
  178. "homepage": "https://github.com/cfrutos"
  179. },
  180. {
  181. "name": "Colin O'Dell",
  182. "email": "colinodell@gmail.com",
  183. "homepage": "https://www.colinodell.com"
  184. }
  185. ],
  186. "description": "Given a deep data structure, access data by dot notation.",
  187. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  188. "keywords": [
  189. "access",
  190. "data",
  191. "dot",
  192. "notation"
  193. ],
  194. "support": {
  195. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  196. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1"
  197. },
  198. "time": "2021-08-13T13:06:58+00:00"
  199. },
  200. {
  201. "name": "doctrine/inflector",
  202. "version": "2.0.4",
  203. "source": {
  204. "type": "git",
  205. "url": "https://github.com/doctrine/inflector.git",
  206. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  207. },
  208. "dist": {
  209. "type": "zip",
  210. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  211. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  212. "shasum": ""
  213. },
  214. "require": {
  215. "php": "^7.2 || ^8.0"
  216. },
  217. "require-dev": {
  218. "doctrine/coding-standard": "^8.2",
  219. "phpstan/phpstan": "^0.12",
  220. "phpstan/phpstan-phpunit": "^0.12",
  221. "phpstan/phpstan-strict-rules": "^0.12",
  222. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  223. "vimeo/psalm": "^4.10"
  224. },
  225. "type": "library",
  226. "autoload": {
  227. "psr-4": {
  228. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  229. }
  230. },
  231. "notification-url": "https://packagist.org/downloads/",
  232. "license": [
  233. "MIT"
  234. ],
  235. "authors": [
  236. {
  237. "name": "Guilherme Blanco",
  238. "email": "guilhermeblanco@gmail.com"
  239. },
  240. {
  241. "name": "Roman Borschel",
  242. "email": "roman@code-factory.org"
  243. },
  244. {
  245. "name": "Benjamin Eberlei",
  246. "email": "kontakt@beberlei.de"
  247. },
  248. {
  249. "name": "Jonathan Wage",
  250. "email": "jonwage@gmail.com"
  251. },
  252. {
  253. "name": "Johannes Schmitt",
  254. "email": "schmittjoh@gmail.com"
  255. }
  256. ],
  257. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  258. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  259. "keywords": [
  260. "inflection",
  261. "inflector",
  262. "lowercase",
  263. "manipulation",
  264. "php",
  265. "plural",
  266. "singular",
  267. "strings",
  268. "uppercase",
  269. "words"
  270. ],
  271. "support": {
  272. "issues": "https://github.com/doctrine/inflector/issues",
  273. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  274. },
  275. "funding": [
  276. {
  277. "url": "https://www.doctrine-project.org/sponsorship.html",
  278. "type": "custom"
  279. },
  280. {
  281. "url": "https://www.patreon.com/phpdoctrine",
  282. "type": "patreon"
  283. },
  284. {
  285. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  286. "type": "tidelift"
  287. }
  288. ],
  289. "time": "2021-10-22T20:16:43+00:00"
  290. },
  291. {
  292. "name": "doctrine/lexer",
  293. "version": "1.2.2",
  294. "source": {
  295. "type": "git",
  296. "url": "https://github.com/doctrine/lexer.git",
  297. "reference": "9c50f840f257bbb941e6f4a0e94ccf5db5c3f76c"
  298. },
  299. "dist": {
  300. "type": "zip",
  301. "url": "https://api.github.com/repos/doctrine/lexer/zipball/9c50f840f257bbb941e6f4a0e94ccf5db5c3f76c",
  302. "reference": "9c50f840f257bbb941e6f4a0e94ccf5db5c3f76c",
  303. "shasum": ""
  304. },
  305. "require": {
  306. "php": "^7.1 || ^8.0"
  307. },
  308. "require-dev": {
  309. "doctrine/coding-standard": "^9.0",
  310. "phpstan/phpstan": "1.3",
  311. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  312. "vimeo/psalm": "^4.11"
  313. },
  314. "type": "library",
  315. "autoload": {
  316. "psr-4": {
  317. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  318. }
  319. },
  320. "notification-url": "https://packagist.org/downloads/",
  321. "license": [
  322. "MIT"
  323. ],
  324. "authors": [
  325. {
  326. "name": "Guilherme Blanco",
  327. "email": "guilhermeblanco@gmail.com"
  328. },
  329. {
  330. "name": "Roman Borschel",
  331. "email": "roman@code-factory.org"
  332. },
  333. {
  334. "name": "Johannes Schmitt",
  335. "email": "schmittjoh@gmail.com"
  336. }
  337. ],
  338. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  339. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  340. "keywords": [
  341. "annotations",
  342. "docblock",
  343. "lexer",
  344. "parser",
  345. "php"
  346. ],
  347. "support": {
  348. "issues": "https://github.com/doctrine/lexer/issues",
  349. "source": "https://github.com/doctrine/lexer/tree/1.2.2"
  350. },
  351. "funding": [
  352. {
  353. "url": "https://www.doctrine-project.org/sponsorship.html",
  354. "type": "custom"
  355. },
  356. {
  357. "url": "https://www.patreon.com/phpdoctrine",
  358. "type": "patreon"
  359. },
  360. {
  361. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  362. "type": "tidelift"
  363. }
  364. ],
  365. "time": "2022-01-12T08:27:12+00:00"
  366. },
  367. {
  368. "name": "dragonmantank/cron-expression",
  369. "version": "v3.3.1",
  370. "source": {
  371. "type": "git",
  372. "url": "https://github.com/dragonmantank/cron-expression.git",
  373. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa"
  374. },
  375. "dist": {
  376. "type": "zip",
  377. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  378. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  379. "shasum": ""
  380. },
  381. "require": {
  382. "php": "^7.2|^8.0",
  383. "webmozart/assert": "^1.0"
  384. },
  385. "replace": {
  386. "mtdowling/cron-expression": "^1.0"
  387. },
  388. "require-dev": {
  389. "phpstan/extension-installer": "^1.0",
  390. "phpstan/phpstan": "^1.0",
  391. "phpstan/phpstan-webmozart-assert": "^1.0",
  392. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  393. },
  394. "type": "library",
  395. "autoload": {
  396. "psr-4": {
  397. "Cron\\": "src/Cron/"
  398. }
  399. },
  400. "notification-url": "https://packagist.org/downloads/",
  401. "license": [
  402. "MIT"
  403. ],
  404. "authors": [
  405. {
  406. "name": "Chris Tankersley",
  407. "email": "chris@ctankersley.com",
  408. "homepage": "https://github.com/dragonmantank"
  409. }
  410. ],
  411. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  412. "keywords": [
  413. "cron",
  414. "schedule"
  415. ],
  416. "support": {
  417. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  418. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.1"
  419. },
  420. "funding": [
  421. {
  422. "url": "https://github.com/dragonmantank",
  423. "type": "github"
  424. }
  425. ],
  426. "time": "2022-01-18T15:43:28+00:00"
  427. },
  428. {
  429. "name": "egulias/email-validator",
  430. "version": "2.1.25",
  431. "source": {
  432. "type": "git",
  433. "url": "https://github.com/egulias/EmailValidator.git",
  434. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  435. },
  436. "dist": {
  437. "type": "zip",
  438. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  439. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  440. "shasum": ""
  441. },
  442. "require": {
  443. "doctrine/lexer": "^1.0.1",
  444. "php": ">=5.5",
  445. "symfony/polyfill-intl-idn": "^1.10"
  446. },
  447. "require-dev": {
  448. "dominicsayers/isemail": "^3.0.7",
  449. "phpunit/phpunit": "^4.8.36|^7.5.15",
  450. "satooshi/php-coveralls": "^1.0.1"
  451. },
  452. "suggest": {
  453. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  454. },
  455. "type": "library",
  456. "extra": {
  457. "branch-alias": {
  458. "dev-master": "2.1.x-dev"
  459. }
  460. },
  461. "autoload": {
  462. "psr-4": {
  463. "Egulias\\EmailValidator\\": "src"
  464. }
  465. },
  466. "notification-url": "https://packagist.org/downloads/",
  467. "license": [
  468. "MIT"
  469. ],
  470. "authors": [
  471. {
  472. "name": "Eduardo Gulias Davis"
  473. }
  474. ],
  475. "description": "A library for validating emails against several RFCs",
  476. "homepage": "https://github.com/egulias/EmailValidator",
  477. "keywords": [
  478. "email",
  479. "emailvalidation",
  480. "emailvalidator",
  481. "validation",
  482. "validator"
  483. ],
  484. "support": {
  485. "issues": "https://github.com/egulias/EmailValidator/issues",
  486. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  487. },
  488. "funding": [
  489. {
  490. "url": "https://github.com/egulias",
  491. "type": "github"
  492. }
  493. ],
  494. "time": "2020-12-29T14:50:06+00:00"
  495. },
  496. {
  497. "name": "fruitcake/laravel-cors",
  498. "version": "v2.2.0",
  499. "source": {
  500. "type": "git",
  501. "url": "https://github.com/fruitcake/laravel-cors.git",
  502. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  503. },
  504. "dist": {
  505. "type": "zip",
  506. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  507. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  508. "shasum": ""
  509. },
  510. "require": {
  511. "asm89/stack-cors": "^2.0.1",
  512. "illuminate/contracts": "^6|^7|^8|^9",
  513. "illuminate/support": "^6|^7|^8|^9",
  514. "php": ">=7.2"
  515. },
  516. "require-dev": {
  517. "laravel/framework": "^6|^7.24|^8",
  518. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  519. "phpunit/phpunit": "^6|^7|^8|^9",
  520. "squizlabs/php_codesniffer": "^3.5"
  521. },
  522. "type": "library",
  523. "extra": {
  524. "branch-alias": {
  525. "dev-master": "2.1-dev"
  526. },
  527. "laravel": {
  528. "providers": [
  529. "Fruitcake\\Cors\\CorsServiceProvider"
  530. ]
  531. }
  532. },
  533. "autoload": {
  534. "psr-4": {
  535. "Fruitcake\\Cors\\": "src/"
  536. }
  537. },
  538. "notification-url": "https://packagist.org/downloads/",
  539. "license": [
  540. "MIT"
  541. ],
  542. "authors": [
  543. {
  544. "name": "Fruitcake",
  545. "homepage": "https://fruitcake.nl"
  546. },
  547. {
  548. "name": "Barry vd. Heuvel",
  549. "email": "barryvdh@gmail.com"
  550. }
  551. ],
  552. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  553. "keywords": [
  554. "api",
  555. "cors",
  556. "crossdomain",
  557. "laravel"
  558. ],
  559. "support": {
  560. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  561. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  562. },
  563. "funding": [
  564. {
  565. "url": "https://fruitcake.nl",
  566. "type": "custom"
  567. },
  568. {
  569. "url": "https://github.com/barryvdh",
  570. "type": "github"
  571. }
  572. ],
  573. "time": "2022-02-23T14:25:13+00:00"
  574. },
  575. {
  576. "name": "graham-campbell/result-type",
  577. "version": "v1.0.4",
  578. "source": {
  579. "type": "git",
  580. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  581. "reference": "0690bde05318336c7221785f2a932467f98b64ca"
  582. },
  583. "dist": {
  584. "type": "zip",
  585. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/0690bde05318336c7221785f2a932467f98b64ca",
  586. "reference": "0690bde05318336c7221785f2a932467f98b64ca",
  587. "shasum": ""
  588. },
  589. "require": {
  590. "php": "^7.0 || ^8.0",
  591. "phpoption/phpoption": "^1.8"
  592. },
  593. "require-dev": {
  594. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  595. },
  596. "type": "library",
  597. "autoload": {
  598. "psr-4": {
  599. "GrahamCampbell\\ResultType\\": "src/"
  600. }
  601. },
  602. "notification-url": "https://packagist.org/downloads/",
  603. "license": [
  604. "MIT"
  605. ],
  606. "authors": [
  607. {
  608. "name": "Graham Campbell",
  609. "email": "hello@gjcampbell.co.uk",
  610. "homepage": "https://github.com/GrahamCampbell"
  611. }
  612. ],
  613. "description": "An Implementation Of The Result Type",
  614. "keywords": [
  615. "Graham Campbell",
  616. "GrahamCampbell",
  617. "Result Type",
  618. "Result-Type",
  619. "result"
  620. ],
  621. "support": {
  622. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  623. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.4"
  624. },
  625. "funding": [
  626. {
  627. "url": "https://github.com/GrahamCampbell",
  628. "type": "github"
  629. },
  630. {
  631. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  632. "type": "tidelift"
  633. }
  634. ],
  635. "time": "2021-11-21T21:41:47+00:00"
  636. },
  637. {
  638. "name": "guzzlehttp/guzzle",
  639. "version": "7.4.1",
  640. "source": {
  641. "type": "git",
  642. "url": "https://github.com/guzzle/guzzle.git",
  643. "reference": "ee0a041b1760e6a53d2a39c8c34115adc2af2c79"
  644. },
  645. "dist": {
  646. "type": "zip",
  647. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/ee0a041b1760e6a53d2a39c8c34115adc2af2c79",
  648. "reference": "ee0a041b1760e6a53d2a39c8c34115adc2af2c79",
  649. "shasum": ""
  650. },
  651. "require": {
  652. "ext-json": "*",
  653. "guzzlehttp/promises": "^1.5",
  654. "guzzlehttp/psr7": "^1.8.3 || ^2.1",
  655. "php": "^7.2.5 || ^8.0",
  656. "psr/http-client": "^1.0",
  657. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  658. },
  659. "provide": {
  660. "psr/http-client-implementation": "1.0"
  661. },
  662. "require-dev": {
  663. "bamarni/composer-bin-plugin": "^1.4.1",
  664. "ext-curl": "*",
  665. "php-http/client-integration-tests": "^3.0",
  666. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  667. "psr/log": "^1.1 || ^2.0 || ^3.0"
  668. },
  669. "suggest": {
  670. "ext-curl": "Required for CURL handler support",
  671. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  672. "psr/log": "Required for using the Log middleware"
  673. },
  674. "type": "library",
  675. "extra": {
  676. "branch-alias": {
  677. "dev-master": "7.4-dev"
  678. }
  679. },
  680. "autoload": {
  681. "files": [
  682. "src/functions_include.php"
  683. ],
  684. "psr-4": {
  685. "GuzzleHttp\\": "src/"
  686. }
  687. },
  688. "notification-url": "https://packagist.org/downloads/",
  689. "license": [
  690. "MIT"
  691. ],
  692. "authors": [
  693. {
  694. "name": "Graham Campbell",
  695. "email": "hello@gjcampbell.co.uk",
  696. "homepage": "https://github.com/GrahamCampbell"
  697. },
  698. {
  699. "name": "Michael Dowling",
  700. "email": "mtdowling@gmail.com",
  701. "homepage": "https://github.com/mtdowling"
  702. },
  703. {
  704. "name": "Jeremy Lindblom",
  705. "email": "jeremeamia@gmail.com",
  706. "homepage": "https://github.com/jeremeamia"
  707. },
  708. {
  709. "name": "George Mponos",
  710. "email": "gmponos@gmail.com",
  711. "homepage": "https://github.com/gmponos"
  712. },
  713. {
  714. "name": "Tobias Nyholm",
  715. "email": "tobias.nyholm@gmail.com",
  716. "homepage": "https://github.com/Nyholm"
  717. },
  718. {
  719. "name": "Márk Sági-Kazár",
  720. "email": "mark.sagikazar@gmail.com",
  721. "homepage": "https://github.com/sagikazarmark"
  722. },
  723. {
  724. "name": "Tobias Schultze",
  725. "email": "webmaster@tubo-world.de",
  726. "homepage": "https://github.com/Tobion"
  727. }
  728. ],
  729. "description": "Guzzle is a PHP HTTP client library",
  730. "keywords": [
  731. "client",
  732. "curl",
  733. "framework",
  734. "http",
  735. "http client",
  736. "psr-18",
  737. "psr-7",
  738. "rest",
  739. "web service"
  740. ],
  741. "support": {
  742. "issues": "https://github.com/guzzle/guzzle/issues",
  743. "source": "https://github.com/guzzle/guzzle/tree/7.4.1"
  744. },
  745. "funding": [
  746. {
  747. "url": "https://github.com/GrahamCampbell",
  748. "type": "github"
  749. },
  750. {
  751. "url": "https://github.com/Nyholm",
  752. "type": "github"
  753. },
  754. {
  755. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  756. "type": "tidelift"
  757. }
  758. ],
  759. "time": "2021-12-06T18:43:05+00:00"
  760. },
  761. {
  762. "name": "guzzlehttp/promises",
  763. "version": "1.5.1",
  764. "source": {
  765. "type": "git",
  766. "url": "https://github.com/guzzle/promises.git",
  767. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  768. },
  769. "dist": {
  770. "type": "zip",
  771. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  772. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  773. "shasum": ""
  774. },
  775. "require": {
  776. "php": ">=5.5"
  777. },
  778. "require-dev": {
  779. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  780. },
  781. "type": "library",
  782. "extra": {
  783. "branch-alias": {
  784. "dev-master": "1.5-dev"
  785. }
  786. },
  787. "autoload": {
  788. "files": [
  789. "src/functions_include.php"
  790. ],
  791. "psr-4": {
  792. "GuzzleHttp\\Promise\\": "src/"
  793. }
  794. },
  795. "notification-url": "https://packagist.org/downloads/",
  796. "license": [
  797. "MIT"
  798. ],
  799. "authors": [
  800. {
  801. "name": "Graham Campbell",
  802. "email": "hello@gjcampbell.co.uk",
  803. "homepage": "https://github.com/GrahamCampbell"
  804. },
  805. {
  806. "name": "Michael Dowling",
  807. "email": "mtdowling@gmail.com",
  808. "homepage": "https://github.com/mtdowling"
  809. },
  810. {
  811. "name": "Tobias Nyholm",
  812. "email": "tobias.nyholm@gmail.com",
  813. "homepage": "https://github.com/Nyholm"
  814. },
  815. {
  816. "name": "Tobias Schultze",
  817. "email": "webmaster@tubo-world.de",
  818. "homepage": "https://github.com/Tobion"
  819. }
  820. ],
  821. "description": "Guzzle promises library",
  822. "keywords": [
  823. "promise"
  824. ],
  825. "support": {
  826. "issues": "https://github.com/guzzle/promises/issues",
  827. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  828. },
  829. "funding": [
  830. {
  831. "url": "https://github.com/GrahamCampbell",
  832. "type": "github"
  833. },
  834. {
  835. "url": "https://github.com/Nyholm",
  836. "type": "github"
  837. },
  838. {
  839. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  840. "type": "tidelift"
  841. }
  842. ],
  843. "time": "2021-10-22T20:56:57+00:00"
  844. },
  845. {
  846. "name": "guzzlehttp/psr7",
  847. "version": "2.1.0",
  848. "source": {
  849. "type": "git",
  850. "url": "https://github.com/guzzle/psr7.git",
  851. "reference": "089edd38f5b8abba6cb01567c2a8aaa47cec4c72"
  852. },
  853. "dist": {
  854. "type": "zip",
  855. "url": "https://api.github.com/repos/guzzle/psr7/zipball/089edd38f5b8abba6cb01567c2a8aaa47cec4c72",
  856. "reference": "089edd38f5b8abba6cb01567c2a8aaa47cec4c72",
  857. "shasum": ""
  858. },
  859. "require": {
  860. "php": "^7.2.5 || ^8.0",
  861. "psr/http-factory": "^1.0",
  862. "psr/http-message": "^1.0",
  863. "ralouphie/getallheaders": "^3.0"
  864. },
  865. "provide": {
  866. "psr/http-factory-implementation": "1.0",
  867. "psr/http-message-implementation": "1.0"
  868. },
  869. "require-dev": {
  870. "bamarni/composer-bin-plugin": "^1.4.1",
  871. "http-interop/http-factory-tests": "^0.9",
  872. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  873. },
  874. "suggest": {
  875. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  876. },
  877. "type": "library",
  878. "extra": {
  879. "branch-alias": {
  880. "dev-master": "2.1-dev"
  881. }
  882. },
  883. "autoload": {
  884. "psr-4": {
  885. "GuzzleHttp\\Psr7\\": "src/"
  886. }
  887. },
  888. "notification-url": "https://packagist.org/downloads/",
  889. "license": [
  890. "MIT"
  891. ],
  892. "authors": [
  893. {
  894. "name": "Graham Campbell",
  895. "email": "hello@gjcampbell.co.uk",
  896. "homepage": "https://github.com/GrahamCampbell"
  897. },
  898. {
  899. "name": "Michael Dowling",
  900. "email": "mtdowling@gmail.com",
  901. "homepage": "https://github.com/mtdowling"
  902. },
  903. {
  904. "name": "George Mponos",
  905. "email": "gmponos@gmail.com",
  906. "homepage": "https://github.com/gmponos"
  907. },
  908. {
  909. "name": "Tobias Nyholm",
  910. "email": "tobias.nyholm@gmail.com",
  911. "homepage": "https://github.com/Nyholm"
  912. },
  913. {
  914. "name": "Márk Sági-Kazár",
  915. "email": "mark.sagikazar@gmail.com",
  916. "homepage": "https://github.com/sagikazarmark"
  917. },
  918. {
  919. "name": "Tobias Schultze",
  920. "email": "webmaster@tubo-world.de",
  921. "homepage": "https://github.com/Tobion"
  922. },
  923. {
  924. "name": "Márk Sági-Kazár",
  925. "email": "mark.sagikazar@gmail.com",
  926. "homepage": "https://sagikazarmark.hu"
  927. }
  928. ],
  929. "description": "PSR-7 message implementation that also provides common utility methods",
  930. "keywords": [
  931. "http",
  932. "message",
  933. "psr-7",
  934. "request",
  935. "response",
  936. "stream",
  937. "uri",
  938. "url"
  939. ],
  940. "support": {
  941. "issues": "https://github.com/guzzle/psr7/issues",
  942. "source": "https://github.com/guzzle/psr7/tree/2.1.0"
  943. },
  944. "funding": [
  945. {
  946. "url": "https://github.com/GrahamCampbell",
  947. "type": "github"
  948. },
  949. {
  950. "url": "https://github.com/Nyholm",
  951. "type": "github"
  952. },
  953. {
  954. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  955. "type": "tidelift"
  956. }
  957. ],
  958. "time": "2021-10-06T17:43:30+00:00"
  959. },
  960. {
  961. "name": "laravel/framework",
  962. "version": "v8.83.2",
  963. "source": {
  964. "type": "git",
  965. "url": "https://github.com/laravel/framework.git",
  966. "reference": "b91b3b5b39fbbdc763746f5714e08d50a4dd7857"
  967. },
  968. "dist": {
  969. "type": "zip",
  970. "url": "https://api.github.com/repos/laravel/framework/zipball/b91b3b5b39fbbdc763746f5714e08d50a4dd7857",
  971. "reference": "b91b3b5b39fbbdc763746f5714e08d50a4dd7857",
  972. "shasum": ""
  973. },
  974. "require": {
  975. "doctrine/inflector": "^1.4|^2.0",
  976. "dragonmantank/cron-expression": "^3.0.2",
  977. "egulias/email-validator": "^2.1.10",
  978. "ext-json": "*",
  979. "ext-mbstring": "*",
  980. "ext-openssl": "*",
  981. "laravel/serializable-closure": "^1.0",
  982. "league/commonmark": "^1.3|^2.0.2",
  983. "league/flysystem": "^1.1",
  984. "monolog/monolog": "^2.0",
  985. "nesbot/carbon": "^2.53.1",
  986. "opis/closure": "^3.6",
  987. "php": "^7.3|^8.0",
  988. "psr/container": "^1.0",
  989. "psr/log": "^1.0|^2.0",
  990. "psr/simple-cache": "^1.0",
  991. "ramsey/uuid": "^4.2.2",
  992. "swiftmailer/swiftmailer": "^6.3",
  993. "symfony/console": "^5.4",
  994. "symfony/error-handler": "^5.4",
  995. "symfony/finder": "^5.4",
  996. "symfony/http-foundation": "^5.4",
  997. "symfony/http-kernel": "^5.4",
  998. "symfony/mime": "^5.4",
  999. "symfony/process": "^5.4",
  1000. "symfony/routing": "^5.4",
  1001. "symfony/var-dumper": "^5.4",
  1002. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1003. "vlucas/phpdotenv": "^5.4.1",
  1004. "voku/portable-ascii": "^1.6.1"
  1005. },
  1006. "conflict": {
  1007. "tightenco/collect": "<5.5.33"
  1008. },
  1009. "provide": {
  1010. "psr/container-implementation": "1.0",
  1011. "psr/simple-cache-implementation": "1.0"
  1012. },
  1013. "replace": {
  1014. "illuminate/auth": "self.version",
  1015. "illuminate/broadcasting": "self.version",
  1016. "illuminate/bus": "self.version",
  1017. "illuminate/cache": "self.version",
  1018. "illuminate/collections": "self.version",
  1019. "illuminate/config": "self.version",
  1020. "illuminate/console": "self.version",
  1021. "illuminate/container": "self.version",
  1022. "illuminate/contracts": "self.version",
  1023. "illuminate/cookie": "self.version",
  1024. "illuminate/database": "self.version",
  1025. "illuminate/encryption": "self.version",
  1026. "illuminate/events": "self.version",
  1027. "illuminate/filesystem": "self.version",
  1028. "illuminate/hashing": "self.version",
  1029. "illuminate/http": "self.version",
  1030. "illuminate/log": "self.version",
  1031. "illuminate/macroable": "self.version",
  1032. "illuminate/mail": "self.version",
  1033. "illuminate/notifications": "self.version",
  1034. "illuminate/pagination": "self.version",
  1035. "illuminate/pipeline": "self.version",
  1036. "illuminate/queue": "self.version",
  1037. "illuminate/redis": "self.version",
  1038. "illuminate/routing": "self.version",
  1039. "illuminate/session": "self.version",
  1040. "illuminate/support": "self.version",
  1041. "illuminate/testing": "self.version",
  1042. "illuminate/translation": "self.version",
  1043. "illuminate/validation": "self.version",
  1044. "illuminate/view": "self.version"
  1045. },
  1046. "require-dev": {
  1047. "aws/aws-sdk-php": "^3.198.1",
  1048. "doctrine/dbal": "^2.13.3|^3.1.4",
  1049. "filp/whoops": "^2.14.3",
  1050. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  1051. "league/flysystem-cached-adapter": "^1.0",
  1052. "mockery/mockery": "^1.4.4",
  1053. "orchestra/testbench-core": "^6.27",
  1054. "pda/pheanstalk": "^4.0",
  1055. "phpunit/phpunit": "^8.5.19|^9.5.8",
  1056. "predis/predis": "^1.1.9",
  1057. "symfony/cache": "^5.4"
  1058. },
  1059. "suggest": {
  1060. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1061. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  1062. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1063. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1064. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1065. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1066. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1067. "ext-memcached": "Required to use the memcache cache driver.",
  1068. "ext-pcntl": "Required to use all features of the queue worker.",
  1069. "ext-posix": "Required to use all features of the queue worker.",
  1070. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1071. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1072. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1073. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1074. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1075. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1076. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1077. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1078. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1079. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1080. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1081. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  1082. "predis/predis": "Required to use the predis connector (^1.1.9).",
  1083. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1084. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  1085. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  1086. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  1087. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1088. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1089. },
  1090. "type": "library",
  1091. "extra": {
  1092. "branch-alias": {
  1093. "dev-master": "8.x-dev"
  1094. }
  1095. },
  1096. "autoload": {
  1097. "files": [
  1098. "src/Illuminate/Collections/helpers.php",
  1099. "src/Illuminate/Events/functions.php",
  1100. "src/Illuminate/Foundation/helpers.php",
  1101. "src/Illuminate/Support/helpers.php"
  1102. ],
  1103. "psr-4": {
  1104. "Illuminate\\": "src/Illuminate/",
  1105. "Illuminate\\Support\\": [
  1106. "src/Illuminate/Macroable/",
  1107. "src/Illuminate/Collections/"
  1108. ]
  1109. }
  1110. },
  1111. "notification-url": "https://packagist.org/downloads/",
  1112. "license": [
  1113. "MIT"
  1114. ],
  1115. "authors": [
  1116. {
  1117. "name": "Taylor Otwell",
  1118. "email": "taylor@laravel.com"
  1119. }
  1120. ],
  1121. "description": "The Laravel Framework.",
  1122. "homepage": "https://laravel.com",
  1123. "keywords": [
  1124. "framework",
  1125. "laravel"
  1126. ],
  1127. "support": {
  1128. "issues": "https://github.com/laravel/framework/issues",
  1129. "source": "https://github.com/laravel/framework"
  1130. },
  1131. "time": "2022-02-22T15:10:17+00:00"
  1132. },
  1133. {
  1134. "name": "laravel/sanctum",
  1135. "version": "v2.14.2",
  1136. "source": {
  1137. "type": "git",
  1138. "url": "https://github.com/laravel/sanctum.git",
  1139. "reference": "dc5d749ba9bfcfd68d8f5c272238f88bea223e66"
  1140. },
  1141. "dist": {
  1142. "type": "zip",
  1143. "url": "https://api.github.com/repos/laravel/sanctum/zipball/dc5d749ba9bfcfd68d8f5c272238f88bea223e66",
  1144. "reference": "dc5d749ba9bfcfd68d8f5c272238f88bea223e66",
  1145. "shasum": ""
  1146. },
  1147. "require": {
  1148. "ext-json": "*",
  1149. "illuminate/contracts": "^6.9|^7.0|^8.0|^9.0",
  1150. "illuminate/database": "^6.9|^7.0|^8.0|^9.0",
  1151. "illuminate/support": "^6.9|^7.0|^8.0|^9.0",
  1152. "php": "^7.2|^8.0"
  1153. },
  1154. "require-dev": {
  1155. "mockery/mockery": "^1.0",
  1156. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  1157. "phpunit/phpunit": "^8.0|^9.3"
  1158. },
  1159. "type": "library",
  1160. "extra": {
  1161. "branch-alias": {
  1162. "dev-master": "2.x-dev"
  1163. },
  1164. "laravel": {
  1165. "providers": [
  1166. "Laravel\\Sanctum\\SanctumServiceProvider"
  1167. ]
  1168. }
  1169. },
  1170. "autoload": {
  1171. "psr-4": {
  1172. "Laravel\\Sanctum\\": "src/"
  1173. }
  1174. },
  1175. "notification-url": "https://packagist.org/downloads/",
  1176. "license": [
  1177. "MIT"
  1178. ],
  1179. "authors": [
  1180. {
  1181. "name": "Taylor Otwell",
  1182. "email": "taylor@laravel.com"
  1183. }
  1184. ],
  1185. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  1186. "keywords": [
  1187. "auth",
  1188. "laravel",
  1189. "sanctum"
  1190. ],
  1191. "support": {
  1192. "issues": "https://github.com/laravel/sanctum/issues",
  1193. "source": "https://github.com/laravel/sanctum"
  1194. },
  1195. "time": "2022-02-16T14:40:23+00:00"
  1196. },
  1197. {
  1198. "name": "laravel/serializable-closure",
  1199. "version": "v1.1.1",
  1200. "source": {
  1201. "type": "git",
  1202. "url": "https://github.com/laravel/serializable-closure.git",
  1203. "reference": "9e4b005daa20b0c161f3845040046dc9ddc1d74e"
  1204. },
  1205. "dist": {
  1206. "type": "zip",
  1207. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/9e4b005daa20b0c161f3845040046dc9ddc1d74e",
  1208. "reference": "9e4b005daa20b0c161f3845040046dc9ddc1d74e",
  1209. "shasum": ""
  1210. },
  1211. "require": {
  1212. "php": "^7.3|^8.0"
  1213. },
  1214. "require-dev": {
  1215. "pestphp/pest": "^1.18",
  1216. "phpstan/phpstan": "^0.12.98",
  1217. "symfony/var-dumper": "^5.3"
  1218. },
  1219. "type": "library",
  1220. "extra": {
  1221. "branch-alias": {
  1222. "dev-master": "1.x-dev"
  1223. }
  1224. },
  1225. "autoload": {
  1226. "psr-4": {
  1227. "Laravel\\SerializableClosure\\": "src/"
  1228. }
  1229. },
  1230. "notification-url": "https://packagist.org/downloads/",
  1231. "license": [
  1232. "MIT"
  1233. ],
  1234. "authors": [
  1235. {
  1236. "name": "Taylor Otwell",
  1237. "email": "taylor@laravel.com"
  1238. },
  1239. {
  1240. "name": "Nuno Maduro",
  1241. "email": "nuno@laravel.com"
  1242. }
  1243. ],
  1244. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1245. "keywords": [
  1246. "closure",
  1247. "laravel",
  1248. "serializable"
  1249. ],
  1250. "support": {
  1251. "issues": "https://github.com/laravel/serializable-closure/issues",
  1252. "source": "https://github.com/laravel/serializable-closure"
  1253. },
  1254. "time": "2022-02-11T19:23:53+00:00"
  1255. },
  1256. {
  1257. "name": "laravel/tinker",
  1258. "version": "v2.7.0",
  1259. "source": {
  1260. "type": "git",
  1261. "url": "https://github.com/laravel/tinker.git",
  1262. "reference": "5f2f9815b7631b9f586a3de7933c25f9327d4073"
  1263. },
  1264. "dist": {
  1265. "type": "zip",
  1266. "url": "https://api.github.com/repos/laravel/tinker/zipball/5f2f9815b7631b9f586a3de7933c25f9327d4073",
  1267. "reference": "5f2f9815b7631b9f586a3de7933c25f9327d4073",
  1268. "shasum": ""
  1269. },
  1270. "require": {
  1271. "illuminate/console": "^6.0|^7.0|^8.0|^9.0",
  1272. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  1273. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  1274. "php": "^7.2.5|^8.0",
  1275. "psy/psysh": "^0.10.4|^0.11.1",
  1276. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  1277. },
  1278. "require-dev": {
  1279. "mockery/mockery": "~1.3.3|^1.4.2",
  1280. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1281. },
  1282. "suggest": {
  1283. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)."
  1284. },
  1285. "type": "library",
  1286. "extra": {
  1287. "branch-alias": {
  1288. "dev-master": "2.x-dev"
  1289. },
  1290. "laravel": {
  1291. "providers": [
  1292. "Laravel\\Tinker\\TinkerServiceProvider"
  1293. ]
  1294. }
  1295. },
  1296. "autoload": {
  1297. "psr-4": {
  1298. "Laravel\\Tinker\\": "src/"
  1299. }
  1300. },
  1301. "notification-url": "https://packagist.org/downloads/",
  1302. "license": [
  1303. "MIT"
  1304. ],
  1305. "authors": [
  1306. {
  1307. "name": "Taylor Otwell",
  1308. "email": "taylor@laravel.com"
  1309. }
  1310. ],
  1311. "description": "Powerful REPL for the Laravel framework.",
  1312. "keywords": [
  1313. "REPL",
  1314. "Tinker",
  1315. "laravel",
  1316. "psysh"
  1317. ],
  1318. "support": {
  1319. "issues": "https://github.com/laravel/tinker/issues",
  1320. "source": "https://github.com/laravel/tinker/tree/v2.7.0"
  1321. },
  1322. "time": "2022-01-10T08:52:49+00:00"
  1323. },
  1324. {
  1325. "name": "league/commonmark",
  1326. "version": "2.2.2",
  1327. "source": {
  1328. "type": "git",
  1329. "url": "https://github.com/thephpleague/commonmark.git",
  1330. "reference": "13d7751377732637814f0cda0e3f6d3243f9f769"
  1331. },
  1332. "dist": {
  1333. "type": "zip",
  1334. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/13d7751377732637814f0cda0e3f6d3243f9f769",
  1335. "reference": "13d7751377732637814f0cda0e3f6d3243f9f769",
  1336. "shasum": ""
  1337. },
  1338. "require": {
  1339. "ext-mbstring": "*",
  1340. "league/config": "^1.1.1",
  1341. "php": "^7.4 || ^8.0",
  1342. "psr/event-dispatcher": "^1.0",
  1343. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1344. "symfony/polyfill-php80": "^1.15"
  1345. },
  1346. "require-dev": {
  1347. "cebe/markdown": "^1.0",
  1348. "commonmark/cmark": "0.30.0",
  1349. "commonmark/commonmark.js": "0.30.0",
  1350. "composer/package-versions-deprecated": "^1.8",
  1351. "erusev/parsedown": "^1.0",
  1352. "ext-json": "*",
  1353. "github/gfm": "0.29.0",
  1354. "michelf/php-markdown": "^1.4",
  1355. "phpstan/phpstan": "^0.12.88 || ^1.0.0",
  1356. "phpunit/phpunit": "^9.5.5",
  1357. "scrutinizer/ocular": "^1.8.1",
  1358. "symfony/finder": "^5.3",
  1359. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1360. "unleashedtech/php-coding-standard": "^3.1",
  1361. "vimeo/psalm": "^4.7.3"
  1362. },
  1363. "suggest": {
  1364. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1365. },
  1366. "type": "library",
  1367. "extra": {
  1368. "branch-alias": {
  1369. "dev-main": "2.3-dev"
  1370. }
  1371. },
  1372. "autoload": {
  1373. "psr-4": {
  1374. "League\\CommonMark\\": "src"
  1375. }
  1376. },
  1377. "notification-url": "https://packagist.org/downloads/",
  1378. "license": [
  1379. "BSD-3-Clause"
  1380. ],
  1381. "authors": [
  1382. {
  1383. "name": "Colin O'Dell",
  1384. "email": "colinodell@gmail.com",
  1385. "homepage": "https://www.colinodell.com",
  1386. "role": "Lead Developer"
  1387. }
  1388. ],
  1389. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1390. "homepage": "https://commonmark.thephpleague.com",
  1391. "keywords": [
  1392. "commonmark",
  1393. "flavored",
  1394. "gfm",
  1395. "github",
  1396. "github-flavored",
  1397. "markdown",
  1398. "md",
  1399. "parser"
  1400. ],
  1401. "support": {
  1402. "docs": "https://commonmark.thephpleague.com/",
  1403. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1404. "issues": "https://github.com/thephpleague/commonmark/issues",
  1405. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1406. "source": "https://github.com/thephpleague/commonmark"
  1407. },
  1408. "funding": [
  1409. {
  1410. "url": "https://www.colinodell.com/sponsor",
  1411. "type": "custom"
  1412. },
  1413. {
  1414. "url": "https://www.paypal.me/colinpodell/10.00",
  1415. "type": "custom"
  1416. },
  1417. {
  1418. "url": "https://github.com/colinodell",
  1419. "type": "github"
  1420. },
  1421. {
  1422. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1423. "type": "tidelift"
  1424. }
  1425. ],
  1426. "time": "2022-02-13T15:00:57+00:00"
  1427. },
  1428. {
  1429. "name": "league/config",
  1430. "version": "v1.1.1",
  1431. "source": {
  1432. "type": "git",
  1433. "url": "https://github.com/thephpleague/config.git",
  1434. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e"
  1435. },
  1436. "dist": {
  1437. "type": "zip",
  1438. "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  1439. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  1440. "shasum": ""
  1441. },
  1442. "require": {
  1443. "dflydev/dot-access-data": "^3.0.1",
  1444. "nette/schema": "^1.2",
  1445. "php": "^7.4 || ^8.0"
  1446. },
  1447. "require-dev": {
  1448. "phpstan/phpstan": "^0.12.90",
  1449. "phpunit/phpunit": "^9.5.5",
  1450. "scrutinizer/ocular": "^1.8.1",
  1451. "unleashedtech/php-coding-standard": "^3.1",
  1452. "vimeo/psalm": "^4.7.3"
  1453. },
  1454. "type": "library",
  1455. "extra": {
  1456. "branch-alias": {
  1457. "dev-main": "1.2-dev"
  1458. }
  1459. },
  1460. "autoload": {
  1461. "psr-4": {
  1462. "League\\Config\\": "src"
  1463. }
  1464. },
  1465. "notification-url": "https://packagist.org/downloads/",
  1466. "license": [
  1467. "BSD-3-Clause"
  1468. ],
  1469. "authors": [
  1470. {
  1471. "name": "Colin O'Dell",
  1472. "email": "colinodell@gmail.com",
  1473. "homepage": "https://www.colinodell.com",
  1474. "role": "Lead Developer"
  1475. }
  1476. ],
  1477. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1478. "homepage": "https://config.thephpleague.com",
  1479. "keywords": [
  1480. "array",
  1481. "config",
  1482. "configuration",
  1483. "dot",
  1484. "dot-access",
  1485. "nested",
  1486. "schema"
  1487. ],
  1488. "support": {
  1489. "docs": "https://config.thephpleague.com/",
  1490. "issues": "https://github.com/thephpleague/config/issues",
  1491. "rss": "https://github.com/thephpleague/config/releases.atom",
  1492. "source": "https://github.com/thephpleague/config"
  1493. },
  1494. "funding": [
  1495. {
  1496. "url": "https://www.colinodell.com/sponsor",
  1497. "type": "custom"
  1498. },
  1499. {
  1500. "url": "https://www.paypal.me/colinpodell/10.00",
  1501. "type": "custom"
  1502. },
  1503. {
  1504. "url": "https://github.com/colinodell",
  1505. "type": "github"
  1506. }
  1507. ],
  1508. "time": "2021-08-14T12:15:32+00:00"
  1509. },
  1510. {
  1511. "name": "league/flysystem",
  1512. "version": "1.1.9",
  1513. "source": {
  1514. "type": "git",
  1515. "url": "https://github.com/thephpleague/flysystem.git",
  1516. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  1517. },
  1518. "dist": {
  1519. "type": "zip",
  1520. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  1521. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  1522. "shasum": ""
  1523. },
  1524. "require": {
  1525. "ext-fileinfo": "*",
  1526. "league/mime-type-detection": "^1.3",
  1527. "php": "^7.2.5 || ^8.0"
  1528. },
  1529. "conflict": {
  1530. "league/flysystem-sftp": "<1.0.6"
  1531. },
  1532. "require-dev": {
  1533. "phpspec/prophecy": "^1.11.1",
  1534. "phpunit/phpunit": "^8.5.8"
  1535. },
  1536. "suggest": {
  1537. "ext-ftp": "Allows you to use FTP server storage",
  1538. "ext-openssl": "Allows you to use FTPS server storage",
  1539. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1540. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1541. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1542. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1543. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1544. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1545. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1546. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1547. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1548. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1549. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1550. },
  1551. "type": "library",
  1552. "extra": {
  1553. "branch-alias": {
  1554. "dev-master": "1.1-dev"
  1555. }
  1556. },
  1557. "autoload": {
  1558. "psr-4": {
  1559. "League\\Flysystem\\": "src/"
  1560. }
  1561. },
  1562. "notification-url": "https://packagist.org/downloads/",
  1563. "license": [
  1564. "MIT"
  1565. ],
  1566. "authors": [
  1567. {
  1568. "name": "Frank de Jonge",
  1569. "email": "info@frenky.net"
  1570. }
  1571. ],
  1572. "description": "Filesystem abstraction: Many filesystems, one API.",
  1573. "keywords": [
  1574. "Cloud Files",
  1575. "WebDAV",
  1576. "abstraction",
  1577. "aws",
  1578. "cloud",
  1579. "copy.com",
  1580. "dropbox",
  1581. "file systems",
  1582. "files",
  1583. "filesystem",
  1584. "filesystems",
  1585. "ftp",
  1586. "rackspace",
  1587. "remote",
  1588. "s3",
  1589. "sftp",
  1590. "storage"
  1591. ],
  1592. "support": {
  1593. "issues": "https://github.com/thephpleague/flysystem/issues",
  1594. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  1595. },
  1596. "funding": [
  1597. {
  1598. "url": "https://offset.earth/frankdejonge",
  1599. "type": "other"
  1600. }
  1601. ],
  1602. "time": "2021-12-09T09:40:50+00:00"
  1603. },
  1604. {
  1605. "name": "league/mime-type-detection",
  1606. "version": "1.9.0",
  1607. "source": {
  1608. "type": "git",
  1609. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1610. "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69"
  1611. },
  1612. "dist": {
  1613. "type": "zip",
  1614. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/aa70e813a6ad3d1558fc927863d47309b4c23e69",
  1615. "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69",
  1616. "shasum": ""
  1617. },
  1618. "require": {
  1619. "ext-fileinfo": "*",
  1620. "php": "^7.2 || ^8.0"
  1621. },
  1622. "require-dev": {
  1623. "friendsofphp/php-cs-fixer": "^3.2",
  1624. "phpstan/phpstan": "^0.12.68",
  1625. "phpunit/phpunit": "^8.5.8 || ^9.3"
  1626. },
  1627. "type": "library",
  1628. "autoload": {
  1629. "psr-4": {
  1630. "League\\MimeTypeDetection\\": "src"
  1631. }
  1632. },
  1633. "notification-url": "https://packagist.org/downloads/",
  1634. "license": [
  1635. "MIT"
  1636. ],
  1637. "authors": [
  1638. {
  1639. "name": "Frank de Jonge",
  1640. "email": "info@frankdejonge.nl"
  1641. }
  1642. ],
  1643. "description": "Mime-type detection for Flysystem",
  1644. "support": {
  1645. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1646. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.9.0"
  1647. },
  1648. "funding": [
  1649. {
  1650. "url": "https://github.com/frankdejonge",
  1651. "type": "github"
  1652. },
  1653. {
  1654. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1655. "type": "tidelift"
  1656. }
  1657. ],
  1658. "time": "2021-11-21T11:48:40+00:00"
  1659. },
  1660. {
  1661. "name": "monolog/monolog",
  1662. "version": "2.3.5",
  1663. "source": {
  1664. "type": "git",
  1665. "url": "https://github.com/Seldaek/monolog.git",
  1666. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9"
  1667. },
  1668. "dist": {
  1669. "type": "zip",
  1670. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd4380d6fc37626e2f799f29d91195040137eba9",
  1671. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9",
  1672. "shasum": ""
  1673. },
  1674. "require": {
  1675. "php": ">=7.2",
  1676. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1677. },
  1678. "provide": {
  1679. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1680. },
  1681. "require-dev": {
  1682. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1683. "doctrine/couchdb": "~1.0@dev",
  1684. "elasticsearch/elasticsearch": "^7",
  1685. "graylog2/gelf-php": "^1.4.2",
  1686. "mongodb/mongodb": "^1.8",
  1687. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1688. "php-console/php-console": "^3.1.3",
  1689. "phpspec/prophecy": "^1.6.1",
  1690. "phpstan/phpstan": "^0.12.91",
  1691. "phpunit/phpunit": "^8.5",
  1692. "predis/predis": "^1.1",
  1693. "rollbar/rollbar": "^1.3",
  1694. "ruflin/elastica": ">=0.90@dev",
  1695. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1696. },
  1697. "suggest": {
  1698. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1699. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1700. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1701. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1702. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1703. "ext-mbstring": "Allow to work properly with unicode symbols",
  1704. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1705. "ext-openssl": "Required to send log messages using SSL",
  1706. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1707. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1708. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1709. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1710. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1711. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1712. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1713. },
  1714. "type": "library",
  1715. "extra": {
  1716. "branch-alias": {
  1717. "dev-main": "2.x-dev"
  1718. }
  1719. },
  1720. "autoload": {
  1721. "psr-4": {
  1722. "Monolog\\": "src/Monolog"
  1723. }
  1724. },
  1725. "notification-url": "https://packagist.org/downloads/",
  1726. "license": [
  1727. "MIT"
  1728. ],
  1729. "authors": [
  1730. {
  1731. "name": "Jordi Boggiano",
  1732. "email": "j.boggiano@seld.be",
  1733. "homepage": "https://seld.be"
  1734. }
  1735. ],
  1736. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1737. "homepage": "https://github.com/Seldaek/monolog",
  1738. "keywords": [
  1739. "log",
  1740. "logging",
  1741. "psr-3"
  1742. ],
  1743. "support": {
  1744. "issues": "https://github.com/Seldaek/monolog/issues",
  1745. "source": "https://github.com/Seldaek/monolog/tree/2.3.5"
  1746. },
  1747. "funding": [
  1748. {
  1749. "url": "https://github.com/Seldaek",
  1750. "type": "github"
  1751. },
  1752. {
  1753. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1754. "type": "tidelift"
  1755. }
  1756. ],
  1757. "time": "2021-10-01T21:08:31+00:00"
  1758. },
  1759. {
  1760. "name": "nesbot/carbon",
  1761. "version": "2.57.0",
  1762. "source": {
  1763. "type": "git",
  1764. "url": "https://github.com/briannesbitt/Carbon.git",
  1765. "reference": "4a54375c21eea4811dbd1149fe6b246517554e78"
  1766. },
  1767. "dist": {
  1768. "type": "zip",
  1769. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4a54375c21eea4811dbd1149fe6b246517554e78",
  1770. "reference": "4a54375c21eea4811dbd1149fe6b246517554e78",
  1771. "shasum": ""
  1772. },
  1773. "require": {
  1774. "ext-json": "*",
  1775. "php": "^7.1.8 || ^8.0",
  1776. "symfony/polyfill-mbstring": "^1.0",
  1777. "symfony/polyfill-php80": "^1.16",
  1778. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1779. },
  1780. "require-dev": {
  1781. "doctrine/dbal": "^2.0 || ^3.0",
  1782. "doctrine/orm": "^2.7",
  1783. "friendsofphp/php-cs-fixer": "^3.0",
  1784. "kylekatarnls/multi-tester": "^2.0",
  1785. "phpmd/phpmd": "^2.9",
  1786. "phpstan/extension-installer": "^1.0",
  1787. "phpstan/phpstan": "^0.12.54 || ^1.0",
  1788. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  1789. "squizlabs/php_codesniffer": "^3.4"
  1790. },
  1791. "bin": [
  1792. "bin/carbon"
  1793. ],
  1794. "type": "library",
  1795. "extra": {
  1796. "branch-alias": {
  1797. "dev-3.x": "3.x-dev",
  1798. "dev-master": "2.x-dev"
  1799. },
  1800. "laravel": {
  1801. "providers": [
  1802. "Carbon\\Laravel\\ServiceProvider"
  1803. ]
  1804. },
  1805. "phpstan": {
  1806. "includes": [
  1807. "extension.neon"
  1808. ]
  1809. }
  1810. },
  1811. "autoload": {
  1812. "psr-4": {
  1813. "Carbon\\": "src/Carbon/"
  1814. }
  1815. },
  1816. "notification-url": "https://packagist.org/downloads/",
  1817. "license": [
  1818. "MIT"
  1819. ],
  1820. "authors": [
  1821. {
  1822. "name": "Brian Nesbitt",
  1823. "email": "brian@nesbot.com",
  1824. "homepage": "https://markido.com"
  1825. },
  1826. {
  1827. "name": "kylekatarnls",
  1828. "homepage": "https://github.com/kylekatarnls"
  1829. }
  1830. ],
  1831. "description": "An API extension for DateTime that supports 281 different languages.",
  1832. "homepage": "https://carbon.nesbot.com",
  1833. "keywords": [
  1834. "date",
  1835. "datetime",
  1836. "time"
  1837. ],
  1838. "support": {
  1839. "docs": "https://carbon.nesbot.com/docs",
  1840. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1841. "source": "https://github.com/briannesbitt/Carbon"
  1842. },
  1843. "funding": [
  1844. {
  1845. "url": "https://opencollective.com/Carbon",
  1846. "type": "open_collective"
  1847. },
  1848. {
  1849. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1850. "type": "tidelift"
  1851. }
  1852. ],
  1853. "time": "2022-02-13T18:13:33+00:00"
  1854. },
  1855. {
  1856. "name": "nette/schema",
  1857. "version": "v1.2.2",
  1858. "source": {
  1859. "type": "git",
  1860. "url": "https://github.com/nette/schema.git",
  1861. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df"
  1862. },
  1863. "dist": {
  1864. "type": "zip",
  1865. "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df",
  1866. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df",
  1867. "shasum": ""
  1868. },
  1869. "require": {
  1870. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  1871. "php": ">=7.1 <8.2"
  1872. },
  1873. "require-dev": {
  1874. "nette/tester": "^2.3 || ^2.4",
  1875. "phpstan/phpstan-nette": "^0.12",
  1876. "tracy/tracy": "^2.7"
  1877. },
  1878. "type": "library",
  1879. "extra": {
  1880. "branch-alias": {
  1881. "dev-master": "1.2-dev"
  1882. }
  1883. },
  1884. "autoload": {
  1885. "classmap": [
  1886. "src/"
  1887. ]
  1888. },
  1889. "notification-url": "https://packagist.org/downloads/",
  1890. "license": [
  1891. "BSD-3-Clause",
  1892. "GPL-2.0-only",
  1893. "GPL-3.0-only"
  1894. ],
  1895. "authors": [
  1896. {
  1897. "name": "David Grudl",
  1898. "homepage": "https://davidgrudl.com"
  1899. },
  1900. {
  1901. "name": "Nette Community",
  1902. "homepage": "https://nette.org/contributors"
  1903. }
  1904. ],
  1905. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  1906. "homepage": "https://nette.org",
  1907. "keywords": [
  1908. "config",
  1909. "nette"
  1910. ],
  1911. "support": {
  1912. "issues": "https://github.com/nette/schema/issues",
  1913. "source": "https://github.com/nette/schema/tree/v1.2.2"
  1914. },
  1915. "time": "2021-10-15T11:40:02+00:00"
  1916. },
  1917. {
  1918. "name": "nette/utils",
  1919. "version": "v3.2.7",
  1920. "source": {
  1921. "type": "git",
  1922. "url": "https://github.com/nette/utils.git",
  1923. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99"
  1924. },
  1925. "dist": {
  1926. "type": "zip",
  1927. "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99",
  1928. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99",
  1929. "shasum": ""
  1930. },
  1931. "require": {
  1932. "php": ">=7.2 <8.2"
  1933. },
  1934. "conflict": {
  1935. "nette/di": "<3.0.6"
  1936. },
  1937. "require-dev": {
  1938. "nette/tester": "~2.0",
  1939. "phpstan/phpstan": "^1.0",
  1940. "tracy/tracy": "^2.3"
  1941. },
  1942. "suggest": {
  1943. "ext-gd": "to use Image",
  1944. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  1945. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  1946. "ext-json": "to use Nette\\Utils\\Json",
  1947. "ext-mbstring": "to use Strings::lower() etc...",
  1948. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  1949. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  1950. },
  1951. "type": "library",
  1952. "extra": {
  1953. "branch-alias": {
  1954. "dev-master": "3.2-dev"
  1955. }
  1956. },
  1957. "autoload": {
  1958. "classmap": [
  1959. "src/"
  1960. ]
  1961. },
  1962. "notification-url": "https://packagist.org/downloads/",
  1963. "license": [
  1964. "BSD-3-Clause",
  1965. "GPL-2.0-only",
  1966. "GPL-3.0-only"
  1967. ],
  1968. "authors": [
  1969. {
  1970. "name": "David Grudl",
  1971. "homepage": "https://davidgrudl.com"
  1972. },
  1973. {
  1974. "name": "Nette Community",
  1975. "homepage": "https://nette.org/contributors"
  1976. }
  1977. ],
  1978. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  1979. "homepage": "https://nette.org",
  1980. "keywords": [
  1981. "array",
  1982. "core",
  1983. "datetime",
  1984. "images",
  1985. "json",
  1986. "nette",
  1987. "paginator",
  1988. "password",
  1989. "slugify",
  1990. "string",
  1991. "unicode",
  1992. "utf-8",
  1993. "utility",
  1994. "validation"
  1995. ],
  1996. "support": {
  1997. "issues": "https://github.com/nette/utils/issues",
  1998. "source": "https://github.com/nette/utils/tree/v3.2.7"
  1999. },
  2000. "time": "2022-01-24T11:29:14+00:00"
  2001. },
  2002. {
  2003. "name": "nikic/php-parser",
  2004. "version": "v4.13.2",
  2005. "source": {
  2006. "type": "git",
  2007. "url": "https://github.com/nikic/PHP-Parser.git",
  2008. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  2009. },
  2010. "dist": {
  2011. "type": "zip",
  2012. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  2013. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  2014. "shasum": ""
  2015. },
  2016. "require": {
  2017. "ext-tokenizer": "*",
  2018. "php": ">=7.0"
  2019. },
  2020. "require-dev": {
  2021. "ircmaxell/php-yacc": "^0.0.7",
  2022. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2023. },
  2024. "bin": [
  2025. "bin/php-parse"
  2026. ],
  2027. "type": "library",
  2028. "extra": {
  2029. "branch-alias": {
  2030. "dev-master": "4.9-dev"
  2031. }
  2032. },
  2033. "autoload": {
  2034. "psr-4": {
  2035. "PhpParser\\": "lib/PhpParser"
  2036. }
  2037. },
  2038. "notification-url": "https://packagist.org/downloads/",
  2039. "license": [
  2040. "BSD-3-Clause"
  2041. ],
  2042. "authors": [
  2043. {
  2044. "name": "Nikita Popov"
  2045. }
  2046. ],
  2047. "description": "A PHP parser written in PHP",
  2048. "keywords": [
  2049. "parser",
  2050. "php"
  2051. ],
  2052. "support": {
  2053. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2054. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  2055. },
  2056. "time": "2021-11-30T19:35:32+00:00"
  2057. },
  2058. {
  2059. "name": "opis/closure",
  2060. "version": "3.6.3",
  2061. "source": {
  2062. "type": "git",
  2063. "url": "https://github.com/opis/closure.git",
  2064. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  2065. },
  2066. "dist": {
  2067. "type": "zip",
  2068. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  2069. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  2070. "shasum": ""
  2071. },
  2072. "require": {
  2073. "php": "^5.4 || ^7.0 || ^8.0"
  2074. },
  2075. "require-dev": {
  2076. "jeremeamia/superclosure": "^2.0",
  2077. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  2078. },
  2079. "type": "library",
  2080. "extra": {
  2081. "branch-alias": {
  2082. "dev-master": "3.6.x-dev"
  2083. }
  2084. },
  2085. "autoload": {
  2086. "psr-4": {
  2087. "Opis\\Closure\\": "src/"
  2088. },
  2089. "files": [
  2090. "functions.php"
  2091. ]
  2092. },
  2093. "notification-url": "https://packagist.org/downloads/",
  2094. "license": [
  2095. "MIT"
  2096. ],
  2097. "authors": [
  2098. {
  2099. "name": "Marius Sarca",
  2100. "email": "marius.sarca@gmail.com"
  2101. },
  2102. {
  2103. "name": "Sorin Sarca",
  2104. "email": "sarca_sorin@hotmail.com"
  2105. }
  2106. ],
  2107. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2108. "homepage": "https://opis.io/closure",
  2109. "keywords": [
  2110. "anonymous functions",
  2111. "closure",
  2112. "function",
  2113. "serializable",
  2114. "serialization",
  2115. "serialize"
  2116. ],
  2117. "support": {
  2118. "issues": "https://github.com/opis/closure/issues",
  2119. "source": "https://github.com/opis/closure/tree/3.6.3"
  2120. },
  2121. "time": "2022-01-27T09:35:39+00:00"
  2122. },
  2123. {
  2124. "name": "phpoption/phpoption",
  2125. "version": "1.8.1",
  2126. "source": {
  2127. "type": "git",
  2128. "url": "https://github.com/schmittjoh/php-option.git",
  2129. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  2130. },
  2131. "dist": {
  2132. "type": "zip",
  2133. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  2134. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  2135. "shasum": ""
  2136. },
  2137. "require": {
  2138. "php": "^7.0 || ^8.0"
  2139. },
  2140. "require-dev": {
  2141. "bamarni/composer-bin-plugin": "^1.4.1",
  2142. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  2143. },
  2144. "type": "library",
  2145. "extra": {
  2146. "branch-alias": {
  2147. "dev-master": "1.8-dev"
  2148. }
  2149. },
  2150. "autoload": {
  2151. "psr-4": {
  2152. "PhpOption\\": "src/PhpOption/"
  2153. }
  2154. },
  2155. "notification-url": "https://packagist.org/downloads/",
  2156. "license": [
  2157. "Apache-2.0"
  2158. ],
  2159. "authors": [
  2160. {
  2161. "name": "Johannes M. Schmitt",
  2162. "email": "schmittjoh@gmail.com",
  2163. "homepage": "https://github.com/schmittjoh"
  2164. },
  2165. {
  2166. "name": "Graham Campbell",
  2167. "email": "hello@gjcampbell.co.uk",
  2168. "homepage": "https://github.com/GrahamCampbell"
  2169. }
  2170. ],
  2171. "description": "Option Type for PHP",
  2172. "keywords": [
  2173. "language",
  2174. "option",
  2175. "php",
  2176. "type"
  2177. ],
  2178. "support": {
  2179. "issues": "https://github.com/schmittjoh/php-option/issues",
  2180. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  2181. },
  2182. "funding": [
  2183. {
  2184. "url": "https://github.com/GrahamCampbell",
  2185. "type": "github"
  2186. },
  2187. {
  2188. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2189. "type": "tidelift"
  2190. }
  2191. ],
  2192. "time": "2021-12-04T23:24:31+00:00"
  2193. },
  2194. {
  2195. "name": "psr/container",
  2196. "version": "1.1.2",
  2197. "source": {
  2198. "type": "git",
  2199. "url": "https://github.com/php-fig/container.git",
  2200. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  2201. },
  2202. "dist": {
  2203. "type": "zip",
  2204. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  2205. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  2206. "shasum": ""
  2207. },
  2208. "require": {
  2209. "php": ">=7.4.0"
  2210. },
  2211. "type": "library",
  2212. "autoload": {
  2213. "psr-4": {
  2214. "Psr\\Container\\": "src/"
  2215. }
  2216. },
  2217. "notification-url": "https://packagist.org/downloads/",
  2218. "license": [
  2219. "MIT"
  2220. ],
  2221. "authors": [
  2222. {
  2223. "name": "PHP-FIG",
  2224. "homepage": "https://www.php-fig.org/"
  2225. }
  2226. ],
  2227. "description": "Common Container Interface (PHP FIG PSR-11)",
  2228. "homepage": "https://github.com/php-fig/container",
  2229. "keywords": [
  2230. "PSR-11",
  2231. "container",
  2232. "container-interface",
  2233. "container-interop",
  2234. "psr"
  2235. ],
  2236. "support": {
  2237. "issues": "https://github.com/php-fig/container/issues",
  2238. "source": "https://github.com/php-fig/container/tree/1.1.2"
  2239. },
  2240. "time": "2021-11-05T16:50:12+00:00"
  2241. },
  2242. {
  2243. "name": "psr/event-dispatcher",
  2244. "version": "1.0.0",
  2245. "source": {
  2246. "type": "git",
  2247. "url": "https://github.com/php-fig/event-dispatcher.git",
  2248. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2249. },
  2250. "dist": {
  2251. "type": "zip",
  2252. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2253. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2254. "shasum": ""
  2255. },
  2256. "require": {
  2257. "php": ">=7.2.0"
  2258. },
  2259. "type": "library",
  2260. "extra": {
  2261. "branch-alias": {
  2262. "dev-master": "1.0.x-dev"
  2263. }
  2264. },
  2265. "autoload": {
  2266. "psr-4": {
  2267. "Psr\\EventDispatcher\\": "src/"
  2268. }
  2269. },
  2270. "notification-url": "https://packagist.org/downloads/",
  2271. "license": [
  2272. "MIT"
  2273. ],
  2274. "authors": [
  2275. {
  2276. "name": "PHP-FIG",
  2277. "homepage": "http://www.php-fig.org/"
  2278. }
  2279. ],
  2280. "description": "Standard interfaces for event handling.",
  2281. "keywords": [
  2282. "events",
  2283. "psr",
  2284. "psr-14"
  2285. ],
  2286. "support": {
  2287. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2288. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2289. },
  2290. "time": "2019-01-08T18:20:26+00:00"
  2291. },
  2292. {
  2293. "name": "psr/http-client",
  2294. "version": "1.0.1",
  2295. "source": {
  2296. "type": "git",
  2297. "url": "https://github.com/php-fig/http-client.git",
  2298. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2299. },
  2300. "dist": {
  2301. "type": "zip",
  2302. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2303. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2304. "shasum": ""
  2305. },
  2306. "require": {
  2307. "php": "^7.0 || ^8.0",
  2308. "psr/http-message": "^1.0"
  2309. },
  2310. "type": "library",
  2311. "extra": {
  2312. "branch-alias": {
  2313. "dev-master": "1.0.x-dev"
  2314. }
  2315. },
  2316. "autoload": {
  2317. "psr-4": {
  2318. "Psr\\Http\\Client\\": "src/"
  2319. }
  2320. },
  2321. "notification-url": "https://packagist.org/downloads/",
  2322. "license": [
  2323. "MIT"
  2324. ],
  2325. "authors": [
  2326. {
  2327. "name": "PHP-FIG",
  2328. "homepage": "http://www.php-fig.org/"
  2329. }
  2330. ],
  2331. "description": "Common interface for HTTP clients",
  2332. "homepage": "https://github.com/php-fig/http-client",
  2333. "keywords": [
  2334. "http",
  2335. "http-client",
  2336. "psr",
  2337. "psr-18"
  2338. ],
  2339. "support": {
  2340. "source": "https://github.com/php-fig/http-client/tree/master"
  2341. },
  2342. "time": "2020-06-29T06:28:15+00:00"
  2343. },
  2344. {
  2345. "name": "psr/http-factory",
  2346. "version": "1.0.1",
  2347. "source": {
  2348. "type": "git",
  2349. "url": "https://github.com/php-fig/http-factory.git",
  2350. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2351. },
  2352. "dist": {
  2353. "type": "zip",
  2354. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2355. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2356. "shasum": ""
  2357. },
  2358. "require": {
  2359. "php": ">=7.0.0",
  2360. "psr/http-message": "^1.0"
  2361. },
  2362. "type": "library",
  2363. "extra": {
  2364. "branch-alias": {
  2365. "dev-master": "1.0.x-dev"
  2366. }
  2367. },
  2368. "autoload": {
  2369. "psr-4": {
  2370. "Psr\\Http\\Message\\": "src/"
  2371. }
  2372. },
  2373. "notification-url": "https://packagist.org/downloads/",
  2374. "license": [
  2375. "MIT"
  2376. ],
  2377. "authors": [
  2378. {
  2379. "name": "PHP-FIG",
  2380. "homepage": "http://www.php-fig.org/"
  2381. }
  2382. ],
  2383. "description": "Common interfaces for PSR-7 HTTP message factories",
  2384. "keywords": [
  2385. "factory",
  2386. "http",
  2387. "message",
  2388. "psr",
  2389. "psr-17",
  2390. "psr-7",
  2391. "request",
  2392. "response"
  2393. ],
  2394. "support": {
  2395. "source": "https://github.com/php-fig/http-factory/tree/master"
  2396. },
  2397. "time": "2019-04-30T12:38:16+00:00"
  2398. },
  2399. {
  2400. "name": "psr/http-message",
  2401. "version": "1.0.1",
  2402. "source": {
  2403. "type": "git",
  2404. "url": "https://github.com/php-fig/http-message.git",
  2405. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2406. },
  2407. "dist": {
  2408. "type": "zip",
  2409. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2410. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2411. "shasum": ""
  2412. },
  2413. "require": {
  2414. "php": ">=5.3.0"
  2415. },
  2416. "type": "library",
  2417. "extra": {
  2418. "branch-alias": {
  2419. "dev-master": "1.0.x-dev"
  2420. }
  2421. },
  2422. "autoload": {
  2423. "psr-4": {
  2424. "Psr\\Http\\Message\\": "src/"
  2425. }
  2426. },
  2427. "notification-url": "https://packagist.org/downloads/",
  2428. "license": [
  2429. "MIT"
  2430. ],
  2431. "authors": [
  2432. {
  2433. "name": "PHP-FIG",
  2434. "homepage": "http://www.php-fig.org/"
  2435. }
  2436. ],
  2437. "description": "Common interface for HTTP messages",
  2438. "homepage": "https://github.com/php-fig/http-message",
  2439. "keywords": [
  2440. "http",
  2441. "http-message",
  2442. "psr",
  2443. "psr-7",
  2444. "request",
  2445. "response"
  2446. ],
  2447. "support": {
  2448. "source": "https://github.com/php-fig/http-message/tree/master"
  2449. },
  2450. "time": "2016-08-06T14:39:51+00:00"
  2451. },
  2452. {
  2453. "name": "psr/log",
  2454. "version": "1.1.4",
  2455. "source": {
  2456. "type": "git",
  2457. "url": "https://github.com/php-fig/log.git",
  2458. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2459. },
  2460. "dist": {
  2461. "type": "zip",
  2462. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2463. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2464. "shasum": ""
  2465. },
  2466. "require": {
  2467. "php": ">=5.3.0"
  2468. },
  2469. "type": "library",
  2470. "extra": {
  2471. "branch-alias": {
  2472. "dev-master": "1.1.x-dev"
  2473. }
  2474. },
  2475. "autoload": {
  2476. "psr-4": {
  2477. "Psr\\Log\\": "Psr/Log/"
  2478. }
  2479. },
  2480. "notification-url": "https://packagist.org/downloads/",
  2481. "license": [
  2482. "MIT"
  2483. ],
  2484. "authors": [
  2485. {
  2486. "name": "PHP-FIG",
  2487. "homepage": "https://www.php-fig.org/"
  2488. }
  2489. ],
  2490. "description": "Common interface for logging libraries",
  2491. "homepage": "https://github.com/php-fig/log",
  2492. "keywords": [
  2493. "log",
  2494. "psr",
  2495. "psr-3"
  2496. ],
  2497. "support": {
  2498. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2499. },
  2500. "time": "2021-05-03T11:20:27+00:00"
  2501. },
  2502. {
  2503. "name": "psr/simple-cache",
  2504. "version": "1.0.1",
  2505. "source": {
  2506. "type": "git",
  2507. "url": "https://github.com/php-fig/simple-cache.git",
  2508. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2509. },
  2510. "dist": {
  2511. "type": "zip",
  2512. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2513. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2514. "shasum": ""
  2515. },
  2516. "require": {
  2517. "php": ">=5.3.0"
  2518. },
  2519. "type": "library",
  2520. "extra": {
  2521. "branch-alias": {
  2522. "dev-master": "1.0.x-dev"
  2523. }
  2524. },
  2525. "autoload": {
  2526. "psr-4": {
  2527. "Psr\\SimpleCache\\": "src/"
  2528. }
  2529. },
  2530. "notification-url": "https://packagist.org/downloads/",
  2531. "license": [
  2532. "MIT"
  2533. ],
  2534. "authors": [
  2535. {
  2536. "name": "PHP-FIG",
  2537. "homepage": "http://www.php-fig.org/"
  2538. }
  2539. ],
  2540. "description": "Common interfaces for simple caching",
  2541. "keywords": [
  2542. "cache",
  2543. "caching",
  2544. "psr",
  2545. "psr-16",
  2546. "simple-cache"
  2547. ],
  2548. "support": {
  2549. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2550. },
  2551. "time": "2017-10-23T01:57:42+00:00"
  2552. },
  2553. {
  2554. "name": "psy/psysh",
  2555. "version": "v0.11.1",
  2556. "source": {
  2557. "type": "git",
  2558. "url": "https://github.com/bobthecow/psysh.git",
  2559. "reference": "570292577277f06f590635381a7f761a6cf4f026"
  2560. },
  2561. "dist": {
  2562. "type": "zip",
  2563. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/570292577277f06f590635381a7f761a6cf4f026",
  2564. "reference": "570292577277f06f590635381a7f761a6cf4f026",
  2565. "shasum": ""
  2566. },
  2567. "require": {
  2568. "ext-json": "*",
  2569. "ext-tokenizer": "*",
  2570. "nikic/php-parser": "^4.0 || ^3.1",
  2571. "php": "^8.0 || ^7.0.8",
  2572. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  2573. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  2574. },
  2575. "require-dev": {
  2576. "bamarni/composer-bin-plugin": "^1.2",
  2577. "hoa/console": "3.17.05.02"
  2578. },
  2579. "suggest": {
  2580. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2581. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2582. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2583. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2584. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2585. },
  2586. "bin": [
  2587. "bin/psysh"
  2588. ],
  2589. "type": "library",
  2590. "extra": {
  2591. "branch-alias": {
  2592. "dev-main": "0.11.x-dev"
  2593. }
  2594. },
  2595. "autoload": {
  2596. "files": [
  2597. "src/functions.php"
  2598. ],
  2599. "psr-4": {
  2600. "Psy\\": "src/"
  2601. }
  2602. },
  2603. "notification-url": "https://packagist.org/downloads/",
  2604. "license": [
  2605. "MIT"
  2606. ],
  2607. "authors": [
  2608. {
  2609. "name": "Justin Hileman",
  2610. "email": "justin@justinhileman.info",
  2611. "homepage": "http://justinhileman.com"
  2612. }
  2613. ],
  2614. "description": "An interactive shell for modern PHP.",
  2615. "homepage": "http://psysh.org",
  2616. "keywords": [
  2617. "REPL",
  2618. "console",
  2619. "interactive",
  2620. "shell"
  2621. ],
  2622. "support": {
  2623. "issues": "https://github.com/bobthecow/psysh/issues",
  2624. "source": "https://github.com/bobthecow/psysh/tree/v0.11.1"
  2625. },
  2626. "time": "2022-01-03T13:58:38+00:00"
  2627. },
  2628. {
  2629. "name": "ralouphie/getallheaders",
  2630. "version": "3.0.3",
  2631. "source": {
  2632. "type": "git",
  2633. "url": "https://github.com/ralouphie/getallheaders.git",
  2634. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2635. },
  2636. "dist": {
  2637. "type": "zip",
  2638. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2639. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2640. "shasum": ""
  2641. },
  2642. "require": {
  2643. "php": ">=5.6"
  2644. },
  2645. "require-dev": {
  2646. "php-coveralls/php-coveralls": "^2.1",
  2647. "phpunit/phpunit": "^5 || ^6.5"
  2648. },
  2649. "type": "library",
  2650. "autoload": {
  2651. "files": [
  2652. "src/getallheaders.php"
  2653. ]
  2654. },
  2655. "notification-url": "https://packagist.org/downloads/",
  2656. "license": [
  2657. "MIT"
  2658. ],
  2659. "authors": [
  2660. {
  2661. "name": "Ralph Khattar",
  2662. "email": "ralph.khattar@gmail.com"
  2663. }
  2664. ],
  2665. "description": "A polyfill for getallheaders.",
  2666. "support": {
  2667. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2668. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2669. },
  2670. "time": "2019-03-08T08:55:37+00:00"
  2671. },
  2672. {
  2673. "name": "ramsey/collection",
  2674. "version": "1.2.2",
  2675. "source": {
  2676. "type": "git",
  2677. "url": "https://github.com/ramsey/collection.git",
  2678. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  2679. },
  2680. "dist": {
  2681. "type": "zip",
  2682. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  2683. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  2684. "shasum": ""
  2685. },
  2686. "require": {
  2687. "php": "^7.3 || ^8",
  2688. "symfony/polyfill-php81": "^1.23"
  2689. },
  2690. "require-dev": {
  2691. "captainhook/captainhook": "^5.3",
  2692. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2693. "ergebnis/composer-normalize": "^2.6",
  2694. "fakerphp/faker": "^1.5",
  2695. "hamcrest/hamcrest-php": "^2",
  2696. "jangregor/phpstan-prophecy": "^0.8",
  2697. "mockery/mockery": "^1.3",
  2698. "phpspec/prophecy-phpunit": "^2.0",
  2699. "phpstan/extension-installer": "^1",
  2700. "phpstan/phpstan": "^0.12.32",
  2701. "phpstan/phpstan-mockery": "^0.12.5",
  2702. "phpstan/phpstan-phpunit": "^0.12.11",
  2703. "phpunit/phpunit": "^8.5 || ^9",
  2704. "psy/psysh": "^0.10.4",
  2705. "slevomat/coding-standard": "^6.3",
  2706. "squizlabs/php_codesniffer": "^3.5",
  2707. "vimeo/psalm": "^4.4"
  2708. },
  2709. "type": "library",
  2710. "autoload": {
  2711. "psr-4": {
  2712. "Ramsey\\Collection\\": "src/"
  2713. }
  2714. },
  2715. "notification-url": "https://packagist.org/downloads/",
  2716. "license": [
  2717. "MIT"
  2718. ],
  2719. "authors": [
  2720. {
  2721. "name": "Ben Ramsey",
  2722. "email": "ben@benramsey.com",
  2723. "homepage": "https://benramsey.com"
  2724. }
  2725. ],
  2726. "description": "A PHP library for representing and manipulating collections.",
  2727. "keywords": [
  2728. "array",
  2729. "collection",
  2730. "hash",
  2731. "map",
  2732. "queue",
  2733. "set"
  2734. ],
  2735. "support": {
  2736. "issues": "https://github.com/ramsey/collection/issues",
  2737. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  2738. },
  2739. "funding": [
  2740. {
  2741. "url": "https://github.com/ramsey",
  2742. "type": "github"
  2743. },
  2744. {
  2745. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  2746. "type": "tidelift"
  2747. }
  2748. ],
  2749. "time": "2021-10-10T03:01:02+00:00"
  2750. },
  2751. {
  2752. "name": "ramsey/uuid",
  2753. "version": "4.2.3",
  2754. "source": {
  2755. "type": "git",
  2756. "url": "https://github.com/ramsey/uuid.git",
  2757. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  2758. },
  2759. "dist": {
  2760. "type": "zip",
  2761. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  2762. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  2763. "shasum": ""
  2764. },
  2765. "require": {
  2766. "brick/math": "^0.8 || ^0.9",
  2767. "ext-json": "*",
  2768. "php": "^7.2 || ^8.0",
  2769. "ramsey/collection": "^1.0",
  2770. "symfony/polyfill-ctype": "^1.8",
  2771. "symfony/polyfill-php80": "^1.14"
  2772. },
  2773. "replace": {
  2774. "rhumsaa/uuid": "self.version"
  2775. },
  2776. "require-dev": {
  2777. "captainhook/captainhook": "^5.10",
  2778. "captainhook/plugin-composer": "^5.3",
  2779. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2780. "doctrine/annotations": "^1.8",
  2781. "ergebnis/composer-normalize": "^2.15",
  2782. "mockery/mockery": "^1.3",
  2783. "moontoast/math": "^1.1",
  2784. "paragonie/random-lib": "^2",
  2785. "php-mock/php-mock": "^2.2",
  2786. "php-mock/php-mock-mockery": "^1.3",
  2787. "php-parallel-lint/php-parallel-lint": "^1.1",
  2788. "phpbench/phpbench": "^1.0",
  2789. "phpstan/extension-installer": "^1.0",
  2790. "phpstan/phpstan": "^0.12",
  2791. "phpstan/phpstan-mockery": "^0.12",
  2792. "phpstan/phpstan-phpunit": "^0.12",
  2793. "phpunit/phpunit": "^8.5 || ^9",
  2794. "slevomat/coding-standard": "^7.0",
  2795. "squizlabs/php_codesniffer": "^3.5",
  2796. "vimeo/psalm": "^4.9"
  2797. },
  2798. "suggest": {
  2799. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2800. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  2801. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2802. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2803. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2804. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2805. },
  2806. "type": "library",
  2807. "extra": {
  2808. "branch-alias": {
  2809. "dev-main": "4.x-dev"
  2810. },
  2811. "captainhook": {
  2812. "force-install": true
  2813. }
  2814. },
  2815. "autoload": {
  2816. "psr-4": {
  2817. "Ramsey\\Uuid\\": "src/"
  2818. },
  2819. "files": [
  2820. "src/functions.php"
  2821. ]
  2822. },
  2823. "notification-url": "https://packagist.org/downloads/",
  2824. "license": [
  2825. "MIT"
  2826. ],
  2827. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2828. "keywords": [
  2829. "guid",
  2830. "identifier",
  2831. "uuid"
  2832. ],
  2833. "support": {
  2834. "issues": "https://github.com/ramsey/uuid/issues",
  2835. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  2836. },
  2837. "funding": [
  2838. {
  2839. "url": "https://github.com/ramsey",
  2840. "type": "github"
  2841. },
  2842. {
  2843. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  2844. "type": "tidelift"
  2845. }
  2846. ],
  2847. "time": "2021-09-25T23:10:38+00:00"
  2848. },
  2849. {
  2850. "name": "swiftmailer/swiftmailer",
  2851. "version": "v6.3.0",
  2852. "source": {
  2853. "type": "git",
  2854. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2855. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  2856. },
  2857. "dist": {
  2858. "type": "zip",
  2859. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2860. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2861. "shasum": ""
  2862. },
  2863. "require": {
  2864. "egulias/email-validator": "^2.0|^3.1",
  2865. "php": ">=7.0.0",
  2866. "symfony/polyfill-iconv": "^1.0",
  2867. "symfony/polyfill-intl-idn": "^1.10",
  2868. "symfony/polyfill-mbstring": "^1.0"
  2869. },
  2870. "require-dev": {
  2871. "mockery/mockery": "^1.0",
  2872. "symfony/phpunit-bridge": "^4.4|^5.4"
  2873. },
  2874. "suggest": {
  2875. "ext-intl": "Needed to support internationalized email addresses"
  2876. },
  2877. "type": "library",
  2878. "extra": {
  2879. "branch-alias": {
  2880. "dev-master": "6.2-dev"
  2881. }
  2882. },
  2883. "autoload": {
  2884. "files": [
  2885. "lib/swift_required.php"
  2886. ]
  2887. },
  2888. "notification-url": "https://packagist.org/downloads/",
  2889. "license": [
  2890. "MIT"
  2891. ],
  2892. "authors": [
  2893. {
  2894. "name": "Chris Corbyn"
  2895. },
  2896. {
  2897. "name": "Fabien Potencier",
  2898. "email": "fabien@symfony.com"
  2899. }
  2900. ],
  2901. "description": "Swiftmailer, free feature-rich PHP mailer",
  2902. "homepage": "https://swiftmailer.symfony.com",
  2903. "keywords": [
  2904. "email",
  2905. "mail",
  2906. "mailer"
  2907. ],
  2908. "support": {
  2909. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  2910. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  2911. },
  2912. "funding": [
  2913. {
  2914. "url": "https://github.com/fabpot",
  2915. "type": "github"
  2916. },
  2917. {
  2918. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  2919. "type": "tidelift"
  2920. }
  2921. ],
  2922. "abandoned": "symfony/mailer",
  2923. "time": "2021-10-18T15:26:12+00:00"
  2924. },
  2925. {
  2926. "name": "symfony/console",
  2927. "version": "v5.4.3",
  2928. "source": {
  2929. "type": "git",
  2930. "url": "https://github.com/symfony/console.git",
  2931. "reference": "a2a86ec353d825c75856c6fd14fac416a7bdb6b8"
  2932. },
  2933. "dist": {
  2934. "type": "zip",
  2935. "url": "https://api.github.com/repos/symfony/console/zipball/a2a86ec353d825c75856c6fd14fac416a7bdb6b8",
  2936. "reference": "a2a86ec353d825c75856c6fd14fac416a7bdb6b8",
  2937. "shasum": ""
  2938. },
  2939. "require": {
  2940. "php": ">=7.2.5",
  2941. "symfony/deprecation-contracts": "^2.1|^3",
  2942. "symfony/polyfill-mbstring": "~1.0",
  2943. "symfony/polyfill-php73": "^1.9",
  2944. "symfony/polyfill-php80": "^1.16",
  2945. "symfony/service-contracts": "^1.1|^2|^3",
  2946. "symfony/string": "^5.1|^6.0"
  2947. },
  2948. "conflict": {
  2949. "psr/log": ">=3",
  2950. "symfony/dependency-injection": "<4.4",
  2951. "symfony/dotenv": "<5.1",
  2952. "symfony/event-dispatcher": "<4.4",
  2953. "symfony/lock": "<4.4",
  2954. "symfony/process": "<4.4"
  2955. },
  2956. "provide": {
  2957. "psr/log-implementation": "1.0|2.0"
  2958. },
  2959. "require-dev": {
  2960. "psr/log": "^1|^2",
  2961. "symfony/config": "^4.4|^5.0|^6.0",
  2962. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2963. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2964. "symfony/lock": "^4.4|^5.0|^6.0",
  2965. "symfony/process": "^4.4|^5.0|^6.0",
  2966. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2967. },
  2968. "suggest": {
  2969. "psr/log": "For using the console logger",
  2970. "symfony/event-dispatcher": "",
  2971. "symfony/lock": "",
  2972. "symfony/process": ""
  2973. },
  2974. "type": "library",
  2975. "autoload": {
  2976. "psr-4": {
  2977. "Symfony\\Component\\Console\\": ""
  2978. },
  2979. "exclude-from-classmap": [
  2980. "/Tests/"
  2981. ]
  2982. },
  2983. "notification-url": "https://packagist.org/downloads/",
  2984. "license": [
  2985. "MIT"
  2986. ],
  2987. "authors": [
  2988. {
  2989. "name": "Fabien Potencier",
  2990. "email": "fabien@symfony.com"
  2991. },
  2992. {
  2993. "name": "Symfony Community",
  2994. "homepage": "https://symfony.com/contributors"
  2995. }
  2996. ],
  2997. "description": "Eases the creation of beautiful and testable command line interfaces",
  2998. "homepage": "https://symfony.com",
  2999. "keywords": [
  3000. "cli",
  3001. "command line",
  3002. "console",
  3003. "terminal"
  3004. ],
  3005. "support": {
  3006. "source": "https://github.com/symfony/console/tree/v5.4.3"
  3007. },
  3008. "funding": [
  3009. {
  3010. "url": "https://symfony.com/sponsor",
  3011. "type": "custom"
  3012. },
  3013. {
  3014. "url": "https://github.com/fabpot",
  3015. "type": "github"
  3016. },
  3017. {
  3018. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3019. "type": "tidelift"
  3020. }
  3021. ],
  3022. "time": "2022-01-26T16:28:35+00:00"
  3023. },
  3024. {
  3025. "name": "symfony/css-selector",
  3026. "version": "v5.4.3",
  3027. "source": {
  3028. "type": "git",
  3029. "url": "https://github.com/symfony/css-selector.git",
  3030. "reference": "b0a190285cd95cb019237851205b8140ef6e368e"
  3031. },
  3032. "dist": {
  3033. "type": "zip",
  3034. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b0a190285cd95cb019237851205b8140ef6e368e",
  3035. "reference": "b0a190285cd95cb019237851205b8140ef6e368e",
  3036. "shasum": ""
  3037. },
  3038. "require": {
  3039. "php": ">=7.2.5",
  3040. "symfony/polyfill-php80": "^1.16"
  3041. },
  3042. "type": "library",
  3043. "autoload": {
  3044. "psr-4": {
  3045. "Symfony\\Component\\CssSelector\\": ""
  3046. },
  3047. "exclude-from-classmap": [
  3048. "/Tests/"
  3049. ]
  3050. },
  3051. "notification-url": "https://packagist.org/downloads/",
  3052. "license": [
  3053. "MIT"
  3054. ],
  3055. "authors": [
  3056. {
  3057. "name": "Fabien Potencier",
  3058. "email": "fabien@symfony.com"
  3059. },
  3060. {
  3061. "name": "Jean-François Simon",
  3062. "email": "jeanfrancois.simon@sensiolabs.com"
  3063. },
  3064. {
  3065. "name": "Symfony Community",
  3066. "homepage": "https://symfony.com/contributors"
  3067. }
  3068. ],
  3069. "description": "Converts CSS selectors to XPath expressions",
  3070. "homepage": "https://symfony.com",
  3071. "support": {
  3072. "source": "https://github.com/symfony/css-selector/tree/v5.4.3"
  3073. },
  3074. "funding": [
  3075. {
  3076. "url": "https://symfony.com/sponsor",
  3077. "type": "custom"
  3078. },
  3079. {
  3080. "url": "https://github.com/fabpot",
  3081. "type": "github"
  3082. },
  3083. {
  3084. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3085. "type": "tidelift"
  3086. }
  3087. ],
  3088. "time": "2022-01-02T09:53:40+00:00"
  3089. },
  3090. {
  3091. "name": "symfony/deprecation-contracts",
  3092. "version": "v2.5.0",
  3093. "source": {
  3094. "type": "git",
  3095. "url": "https://github.com/symfony/deprecation-contracts.git",
  3096. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8"
  3097. },
  3098. "dist": {
  3099. "type": "zip",
  3100. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  3101. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  3102. "shasum": ""
  3103. },
  3104. "require": {
  3105. "php": ">=7.1"
  3106. },
  3107. "type": "library",
  3108. "extra": {
  3109. "branch-alias": {
  3110. "dev-main": "2.5-dev"
  3111. },
  3112. "thanks": {
  3113. "name": "symfony/contracts",
  3114. "url": "https://github.com/symfony/contracts"
  3115. }
  3116. },
  3117. "autoload": {
  3118. "files": [
  3119. "function.php"
  3120. ]
  3121. },
  3122. "notification-url": "https://packagist.org/downloads/",
  3123. "license": [
  3124. "MIT"
  3125. ],
  3126. "authors": [
  3127. {
  3128. "name": "Nicolas Grekas",
  3129. "email": "p@tchwork.com"
  3130. },
  3131. {
  3132. "name": "Symfony Community",
  3133. "homepage": "https://symfony.com/contributors"
  3134. }
  3135. ],
  3136. "description": "A generic function and convention to trigger deprecation notices",
  3137. "homepage": "https://symfony.com",
  3138. "support": {
  3139. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0"
  3140. },
  3141. "funding": [
  3142. {
  3143. "url": "https://symfony.com/sponsor",
  3144. "type": "custom"
  3145. },
  3146. {
  3147. "url": "https://github.com/fabpot",
  3148. "type": "github"
  3149. },
  3150. {
  3151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3152. "type": "tidelift"
  3153. }
  3154. ],
  3155. "time": "2021-07-12T14:48:14+00:00"
  3156. },
  3157. {
  3158. "name": "symfony/error-handler",
  3159. "version": "v5.4.3",
  3160. "source": {
  3161. "type": "git",
  3162. "url": "https://github.com/symfony/error-handler.git",
  3163. "reference": "c4ffc2cd919950d13c8c9ce32a70c70214c3ffc5"
  3164. },
  3165. "dist": {
  3166. "type": "zip",
  3167. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c4ffc2cd919950d13c8c9ce32a70c70214c3ffc5",
  3168. "reference": "c4ffc2cd919950d13c8c9ce32a70c70214c3ffc5",
  3169. "shasum": ""
  3170. },
  3171. "require": {
  3172. "php": ">=7.2.5",
  3173. "psr/log": "^1|^2|^3",
  3174. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3175. },
  3176. "require-dev": {
  3177. "symfony/deprecation-contracts": "^2.1|^3",
  3178. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3179. "symfony/serializer": "^4.4|^5.0|^6.0"
  3180. },
  3181. "bin": [
  3182. "Resources/bin/patch-type-declarations"
  3183. ],
  3184. "type": "library",
  3185. "autoload": {
  3186. "psr-4": {
  3187. "Symfony\\Component\\ErrorHandler\\": ""
  3188. },
  3189. "exclude-from-classmap": [
  3190. "/Tests/"
  3191. ]
  3192. },
  3193. "notification-url": "https://packagist.org/downloads/",
  3194. "license": [
  3195. "MIT"
  3196. ],
  3197. "authors": [
  3198. {
  3199. "name": "Fabien Potencier",
  3200. "email": "fabien@symfony.com"
  3201. },
  3202. {
  3203. "name": "Symfony Community",
  3204. "homepage": "https://symfony.com/contributors"
  3205. }
  3206. ],
  3207. "description": "Provides tools to manage errors and ease debugging PHP code",
  3208. "homepage": "https://symfony.com",
  3209. "support": {
  3210. "source": "https://github.com/symfony/error-handler/tree/v5.4.3"
  3211. },
  3212. "funding": [
  3213. {
  3214. "url": "https://symfony.com/sponsor",
  3215. "type": "custom"
  3216. },
  3217. {
  3218. "url": "https://github.com/fabpot",
  3219. "type": "github"
  3220. },
  3221. {
  3222. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3223. "type": "tidelift"
  3224. }
  3225. ],
  3226. "time": "2022-01-02T09:53:40+00:00"
  3227. },
  3228. {
  3229. "name": "symfony/event-dispatcher",
  3230. "version": "v5.4.3",
  3231. "source": {
  3232. "type": "git",
  3233. "url": "https://github.com/symfony/event-dispatcher.git",
  3234. "reference": "dec8a9f58d20df252b9cd89f1c6c1530f747685d"
  3235. },
  3236. "dist": {
  3237. "type": "zip",
  3238. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/dec8a9f58d20df252b9cd89f1c6c1530f747685d",
  3239. "reference": "dec8a9f58d20df252b9cd89f1c6c1530f747685d",
  3240. "shasum": ""
  3241. },
  3242. "require": {
  3243. "php": ">=7.2.5",
  3244. "symfony/deprecation-contracts": "^2.1|^3",
  3245. "symfony/event-dispatcher-contracts": "^2|^3",
  3246. "symfony/polyfill-php80": "^1.16"
  3247. },
  3248. "conflict": {
  3249. "symfony/dependency-injection": "<4.4"
  3250. },
  3251. "provide": {
  3252. "psr/event-dispatcher-implementation": "1.0",
  3253. "symfony/event-dispatcher-implementation": "2.0"
  3254. },
  3255. "require-dev": {
  3256. "psr/log": "^1|^2|^3",
  3257. "symfony/config": "^4.4|^5.0|^6.0",
  3258. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3259. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3260. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3261. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3262. "symfony/service-contracts": "^1.1|^2|^3",
  3263. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  3264. },
  3265. "suggest": {
  3266. "symfony/dependency-injection": "",
  3267. "symfony/http-kernel": ""
  3268. },
  3269. "type": "library",
  3270. "autoload": {
  3271. "psr-4": {
  3272. "Symfony\\Component\\EventDispatcher\\": ""
  3273. },
  3274. "exclude-from-classmap": [
  3275. "/Tests/"
  3276. ]
  3277. },
  3278. "notification-url": "https://packagist.org/downloads/",
  3279. "license": [
  3280. "MIT"
  3281. ],
  3282. "authors": [
  3283. {
  3284. "name": "Fabien Potencier",
  3285. "email": "fabien@symfony.com"
  3286. },
  3287. {
  3288. "name": "Symfony Community",
  3289. "homepage": "https://symfony.com/contributors"
  3290. }
  3291. ],
  3292. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3293. "homepage": "https://symfony.com",
  3294. "support": {
  3295. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.3"
  3296. },
  3297. "funding": [
  3298. {
  3299. "url": "https://symfony.com/sponsor",
  3300. "type": "custom"
  3301. },
  3302. {
  3303. "url": "https://github.com/fabpot",
  3304. "type": "github"
  3305. },
  3306. {
  3307. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3308. "type": "tidelift"
  3309. }
  3310. ],
  3311. "time": "2022-01-02T09:53:40+00:00"
  3312. },
  3313. {
  3314. "name": "symfony/event-dispatcher-contracts",
  3315. "version": "v2.5.0",
  3316. "source": {
  3317. "type": "git",
  3318. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3319. "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a"
  3320. },
  3321. "dist": {
  3322. "type": "zip",
  3323. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
  3324. "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
  3325. "shasum": ""
  3326. },
  3327. "require": {
  3328. "php": ">=7.2.5",
  3329. "psr/event-dispatcher": "^1"
  3330. },
  3331. "suggest": {
  3332. "symfony/event-dispatcher-implementation": ""
  3333. },
  3334. "type": "library",
  3335. "extra": {
  3336. "branch-alias": {
  3337. "dev-main": "2.5-dev"
  3338. },
  3339. "thanks": {
  3340. "name": "symfony/contracts",
  3341. "url": "https://github.com/symfony/contracts"
  3342. }
  3343. },
  3344. "autoload": {
  3345. "psr-4": {
  3346. "Symfony\\Contracts\\EventDispatcher\\": ""
  3347. }
  3348. },
  3349. "notification-url": "https://packagist.org/downloads/",
  3350. "license": [
  3351. "MIT"
  3352. ],
  3353. "authors": [
  3354. {
  3355. "name": "Nicolas Grekas",
  3356. "email": "p@tchwork.com"
  3357. },
  3358. {
  3359. "name": "Symfony Community",
  3360. "homepage": "https://symfony.com/contributors"
  3361. }
  3362. ],
  3363. "description": "Generic abstractions related to dispatching event",
  3364. "homepage": "https://symfony.com",
  3365. "keywords": [
  3366. "abstractions",
  3367. "contracts",
  3368. "decoupling",
  3369. "interfaces",
  3370. "interoperability",
  3371. "standards"
  3372. ],
  3373. "support": {
  3374. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.0"
  3375. },
  3376. "funding": [
  3377. {
  3378. "url": "https://symfony.com/sponsor",
  3379. "type": "custom"
  3380. },
  3381. {
  3382. "url": "https://github.com/fabpot",
  3383. "type": "github"
  3384. },
  3385. {
  3386. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3387. "type": "tidelift"
  3388. }
  3389. ],
  3390. "time": "2021-07-12T14:48:14+00:00"
  3391. },
  3392. {
  3393. "name": "symfony/finder",
  3394. "version": "v5.4.3",
  3395. "source": {
  3396. "type": "git",
  3397. "url": "https://github.com/symfony/finder.git",
  3398. "reference": "231313534dded84c7ecaa79d14bc5da4ccb69b7d"
  3399. },
  3400. "dist": {
  3401. "type": "zip",
  3402. "url": "https://api.github.com/repos/symfony/finder/zipball/231313534dded84c7ecaa79d14bc5da4ccb69b7d",
  3403. "reference": "231313534dded84c7ecaa79d14bc5da4ccb69b7d",
  3404. "shasum": ""
  3405. },
  3406. "require": {
  3407. "php": ">=7.2.5",
  3408. "symfony/deprecation-contracts": "^2.1|^3",
  3409. "symfony/polyfill-php80": "^1.16"
  3410. },
  3411. "type": "library",
  3412. "autoload": {
  3413. "psr-4": {
  3414. "Symfony\\Component\\Finder\\": ""
  3415. },
  3416. "exclude-from-classmap": [
  3417. "/Tests/"
  3418. ]
  3419. },
  3420. "notification-url": "https://packagist.org/downloads/",
  3421. "license": [
  3422. "MIT"
  3423. ],
  3424. "authors": [
  3425. {
  3426. "name": "Fabien Potencier",
  3427. "email": "fabien@symfony.com"
  3428. },
  3429. {
  3430. "name": "Symfony Community",
  3431. "homepage": "https://symfony.com/contributors"
  3432. }
  3433. ],
  3434. "description": "Finds files and directories via an intuitive fluent interface",
  3435. "homepage": "https://symfony.com",
  3436. "support": {
  3437. "source": "https://github.com/symfony/finder/tree/v5.4.3"
  3438. },
  3439. "funding": [
  3440. {
  3441. "url": "https://symfony.com/sponsor",
  3442. "type": "custom"
  3443. },
  3444. {
  3445. "url": "https://github.com/fabpot",
  3446. "type": "github"
  3447. },
  3448. {
  3449. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3450. "type": "tidelift"
  3451. }
  3452. ],
  3453. "time": "2022-01-26T16:34:36+00:00"
  3454. },
  3455. {
  3456. "name": "symfony/http-foundation",
  3457. "version": "v5.4.3",
  3458. "source": {
  3459. "type": "git",
  3460. "url": "https://github.com/symfony/http-foundation.git",
  3461. "reference": "ef409ff341a565a3663157d4324536746d49a0c7"
  3462. },
  3463. "dist": {
  3464. "type": "zip",
  3465. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ef409ff341a565a3663157d4324536746d49a0c7",
  3466. "reference": "ef409ff341a565a3663157d4324536746d49a0c7",
  3467. "shasum": ""
  3468. },
  3469. "require": {
  3470. "php": ">=7.2.5",
  3471. "symfony/deprecation-contracts": "^2.1|^3",
  3472. "symfony/polyfill-mbstring": "~1.1",
  3473. "symfony/polyfill-php80": "^1.16"
  3474. },
  3475. "require-dev": {
  3476. "predis/predis": "~1.0",
  3477. "symfony/cache": "^4.4|^5.0|^6.0",
  3478. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3479. "symfony/mime": "^4.4|^5.0|^6.0"
  3480. },
  3481. "suggest": {
  3482. "symfony/mime": "To use the file extension guesser"
  3483. },
  3484. "type": "library",
  3485. "autoload": {
  3486. "psr-4": {
  3487. "Symfony\\Component\\HttpFoundation\\": ""
  3488. },
  3489. "exclude-from-classmap": [
  3490. "/Tests/"
  3491. ]
  3492. },
  3493. "notification-url": "https://packagist.org/downloads/",
  3494. "license": [
  3495. "MIT"
  3496. ],
  3497. "authors": [
  3498. {
  3499. "name": "Fabien Potencier",
  3500. "email": "fabien@symfony.com"
  3501. },
  3502. {
  3503. "name": "Symfony Community",
  3504. "homepage": "https://symfony.com/contributors"
  3505. }
  3506. ],
  3507. "description": "Defines an object-oriented layer for the HTTP specification",
  3508. "homepage": "https://symfony.com",
  3509. "support": {
  3510. "source": "https://github.com/symfony/http-foundation/tree/v5.4.3"
  3511. },
  3512. "funding": [
  3513. {
  3514. "url": "https://symfony.com/sponsor",
  3515. "type": "custom"
  3516. },
  3517. {
  3518. "url": "https://github.com/fabpot",
  3519. "type": "github"
  3520. },
  3521. {
  3522. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3523. "type": "tidelift"
  3524. }
  3525. ],
  3526. "time": "2022-01-02T09:53:40+00:00"
  3527. },
  3528. {
  3529. "name": "symfony/http-kernel",
  3530. "version": "v5.4.4",
  3531. "source": {
  3532. "type": "git",
  3533. "url": "https://github.com/symfony/http-kernel.git",
  3534. "reference": "49f40347228c773688a0488feea0175aa7f4d268"
  3535. },
  3536. "dist": {
  3537. "type": "zip",
  3538. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/49f40347228c773688a0488feea0175aa7f4d268",
  3539. "reference": "49f40347228c773688a0488feea0175aa7f4d268",
  3540. "shasum": ""
  3541. },
  3542. "require": {
  3543. "php": ">=7.2.5",
  3544. "psr/log": "^1|^2",
  3545. "symfony/deprecation-contracts": "^2.1|^3",
  3546. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3547. "symfony/event-dispatcher": "^5.0|^6.0",
  3548. "symfony/http-foundation": "^5.3.7|^6.0",
  3549. "symfony/polyfill-ctype": "^1.8",
  3550. "symfony/polyfill-php73": "^1.9",
  3551. "symfony/polyfill-php80": "^1.16"
  3552. },
  3553. "conflict": {
  3554. "symfony/browser-kit": "<5.4",
  3555. "symfony/cache": "<5.0",
  3556. "symfony/config": "<5.0",
  3557. "symfony/console": "<4.4",
  3558. "symfony/dependency-injection": "<5.3",
  3559. "symfony/doctrine-bridge": "<5.0",
  3560. "symfony/form": "<5.0",
  3561. "symfony/http-client": "<5.0",
  3562. "symfony/mailer": "<5.0",
  3563. "symfony/messenger": "<5.0",
  3564. "symfony/translation": "<5.0",
  3565. "symfony/twig-bridge": "<5.0",
  3566. "symfony/validator": "<5.0",
  3567. "twig/twig": "<2.13"
  3568. },
  3569. "provide": {
  3570. "psr/log-implementation": "1.0|2.0"
  3571. },
  3572. "require-dev": {
  3573. "psr/cache": "^1.0|^2.0|^3.0",
  3574. "symfony/browser-kit": "^5.4|^6.0",
  3575. "symfony/config": "^5.0|^6.0",
  3576. "symfony/console": "^4.4|^5.0|^6.0",
  3577. "symfony/css-selector": "^4.4|^5.0|^6.0",
  3578. "symfony/dependency-injection": "^5.3|^6.0",
  3579. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  3580. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3581. "symfony/finder": "^4.4|^5.0|^6.0",
  3582. "symfony/http-client-contracts": "^1.1|^2|^3",
  3583. "symfony/process": "^4.4|^5.0|^6.0",
  3584. "symfony/routing": "^4.4|^5.0|^6.0",
  3585. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  3586. "symfony/translation": "^4.4|^5.0|^6.0",
  3587. "symfony/translation-contracts": "^1.1|^2|^3",
  3588. "twig/twig": "^2.13|^3.0.4"
  3589. },
  3590. "suggest": {
  3591. "symfony/browser-kit": "",
  3592. "symfony/config": "",
  3593. "symfony/console": "",
  3594. "symfony/dependency-injection": ""
  3595. },
  3596. "type": "library",
  3597. "autoload": {
  3598. "psr-4": {
  3599. "Symfony\\Component\\HttpKernel\\": ""
  3600. },
  3601. "exclude-from-classmap": [
  3602. "/Tests/"
  3603. ]
  3604. },
  3605. "notification-url": "https://packagist.org/downloads/",
  3606. "license": [
  3607. "MIT"
  3608. ],
  3609. "authors": [
  3610. {
  3611. "name": "Fabien Potencier",
  3612. "email": "fabien@symfony.com"
  3613. },
  3614. {
  3615. "name": "Symfony Community",
  3616. "homepage": "https://symfony.com/contributors"
  3617. }
  3618. ],
  3619. "description": "Provides a structured process for converting a Request into a Response",
  3620. "homepage": "https://symfony.com",
  3621. "support": {
  3622. "source": "https://github.com/symfony/http-kernel/tree/v5.4.4"
  3623. },
  3624. "funding": [
  3625. {
  3626. "url": "https://symfony.com/sponsor",
  3627. "type": "custom"
  3628. },
  3629. {
  3630. "url": "https://github.com/fabpot",
  3631. "type": "github"
  3632. },
  3633. {
  3634. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3635. "type": "tidelift"
  3636. }
  3637. ],
  3638. "time": "2022-01-29T18:08:07+00:00"
  3639. },
  3640. {
  3641. "name": "symfony/mime",
  3642. "version": "v5.4.3",
  3643. "source": {
  3644. "type": "git",
  3645. "url": "https://github.com/symfony/mime.git",
  3646. "reference": "e1503cfb5c9a225350f549d3bb99296f4abfb80f"
  3647. },
  3648. "dist": {
  3649. "type": "zip",
  3650. "url": "https://api.github.com/repos/symfony/mime/zipball/e1503cfb5c9a225350f549d3bb99296f4abfb80f",
  3651. "reference": "e1503cfb5c9a225350f549d3bb99296f4abfb80f",
  3652. "shasum": ""
  3653. },
  3654. "require": {
  3655. "php": ">=7.2.5",
  3656. "symfony/deprecation-contracts": "^2.1|^3",
  3657. "symfony/polyfill-intl-idn": "^1.10",
  3658. "symfony/polyfill-mbstring": "^1.0",
  3659. "symfony/polyfill-php80": "^1.16"
  3660. },
  3661. "conflict": {
  3662. "egulias/email-validator": "~3.0.0",
  3663. "phpdocumentor/reflection-docblock": "<3.2.2",
  3664. "phpdocumentor/type-resolver": "<1.4.0",
  3665. "symfony/mailer": "<4.4"
  3666. },
  3667. "require-dev": {
  3668. "egulias/email-validator": "^2.1.10|^3.1",
  3669. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3670. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3671. "symfony/property-access": "^4.4|^5.1|^6.0",
  3672. "symfony/property-info": "^4.4|^5.1|^6.0",
  3673. "symfony/serializer": "^5.2|^6.0"
  3674. },
  3675. "type": "library",
  3676. "autoload": {
  3677. "psr-4": {
  3678. "Symfony\\Component\\Mime\\": ""
  3679. },
  3680. "exclude-from-classmap": [
  3681. "/Tests/"
  3682. ]
  3683. },
  3684. "notification-url": "https://packagist.org/downloads/",
  3685. "license": [
  3686. "MIT"
  3687. ],
  3688. "authors": [
  3689. {
  3690. "name": "Fabien Potencier",
  3691. "email": "fabien@symfony.com"
  3692. },
  3693. {
  3694. "name": "Symfony Community",
  3695. "homepage": "https://symfony.com/contributors"
  3696. }
  3697. ],
  3698. "description": "Allows manipulating MIME messages",
  3699. "homepage": "https://symfony.com",
  3700. "keywords": [
  3701. "mime",
  3702. "mime-type"
  3703. ],
  3704. "support": {
  3705. "source": "https://github.com/symfony/mime/tree/v5.4.3"
  3706. },
  3707. "funding": [
  3708. {
  3709. "url": "https://symfony.com/sponsor",
  3710. "type": "custom"
  3711. },
  3712. {
  3713. "url": "https://github.com/fabpot",
  3714. "type": "github"
  3715. },
  3716. {
  3717. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3718. "type": "tidelift"
  3719. }
  3720. ],
  3721. "time": "2022-01-02T09:53:40+00:00"
  3722. },
  3723. {
  3724. "name": "symfony/polyfill-ctype",
  3725. "version": "v1.24.0",
  3726. "source": {
  3727. "type": "git",
  3728. "url": "https://github.com/symfony/polyfill-ctype.git",
  3729. "reference": "30885182c981ab175d4d034db0f6f469898070ab"
  3730. },
  3731. "dist": {
  3732. "type": "zip",
  3733. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
  3734. "reference": "30885182c981ab175d4d034db0f6f469898070ab",
  3735. "shasum": ""
  3736. },
  3737. "require": {
  3738. "php": ">=7.1"
  3739. },
  3740. "provide": {
  3741. "ext-ctype": "*"
  3742. },
  3743. "suggest": {
  3744. "ext-ctype": "For best performance"
  3745. },
  3746. "type": "library",
  3747. "extra": {
  3748. "branch-alias": {
  3749. "dev-main": "1.23-dev"
  3750. },
  3751. "thanks": {
  3752. "name": "symfony/polyfill",
  3753. "url": "https://github.com/symfony/polyfill"
  3754. }
  3755. },
  3756. "autoload": {
  3757. "files": [
  3758. "bootstrap.php"
  3759. ],
  3760. "psr-4": {
  3761. "Symfony\\Polyfill\\Ctype\\": ""
  3762. }
  3763. },
  3764. "notification-url": "https://packagist.org/downloads/",
  3765. "license": [
  3766. "MIT"
  3767. ],
  3768. "authors": [
  3769. {
  3770. "name": "Gert de Pagter",
  3771. "email": "BackEndTea@gmail.com"
  3772. },
  3773. {
  3774. "name": "Symfony Community",
  3775. "homepage": "https://symfony.com/contributors"
  3776. }
  3777. ],
  3778. "description": "Symfony polyfill for ctype functions",
  3779. "homepage": "https://symfony.com",
  3780. "keywords": [
  3781. "compatibility",
  3782. "ctype",
  3783. "polyfill",
  3784. "portable"
  3785. ],
  3786. "support": {
  3787. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.24.0"
  3788. },
  3789. "funding": [
  3790. {
  3791. "url": "https://symfony.com/sponsor",
  3792. "type": "custom"
  3793. },
  3794. {
  3795. "url": "https://github.com/fabpot",
  3796. "type": "github"
  3797. },
  3798. {
  3799. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3800. "type": "tidelift"
  3801. }
  3802. ],
  3803. "time": "2021-10-20T20:35:02+00:00"
  3804. },
  3805. {
  3806. "name": "symfony/polyfill-iconv",
  3807. "version": "v1.24.0",
  3808. "source": {
  3809. "type": "git",
  3810. "url": "https://github.com/symfony/polyfill-iconv.git",
  3811. "reference": "f1aed619e28cb077fc83fac8c4c0383578356e40"
  3812. },
  3813. "dist": {
  3814. "type": "zip",
  3815. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f1aed619e28cb077fc83fac8c4c0383578356e40",
  3816. "reference": "f1aed619e28cb077fc83fac8c4c0383578356e40",
  3817. "shasum": ""
  3818. },
  3819. "require": {
  3820. "php": ">=7.1"
  3821. },
  3822. "provide": {
  3823. "ext-iconv": "*"
  3824. },
  3825. "suggest": {
  3826. "ext-iconv": "For best performance"
  3827. },
  3828. "type": "library",
  3829. "extra": {
  3830. "branch-alias": {
  3831. "dev-main": "1.23-dev"
  3832. },
  3833. "thanks": {
  3834. "name": "symfony/polyfill",
  3835. "url": "https://github.com/symfony/polyfill"
  3836. }
  3837. },
  3838. "autoload": {
  3839. "files": [
  3840. "bootstrap.php"
  3841. ],
  3842. "psr-4": {
  3843. "Symfony\\Polyfill\\Iconv\\": ""
  3844. }
  3845. },
  3846. "notification-url": "https://packagist.org/downloads/",
  3847. "license": [
  3848. "MIT"
  3849. ],
  3850. "authors": [
  3851. {
  3852. "name": "Nicolas Grekas",
  3853. "email": "p@tchwork.com"
  3854. },
  3855. {
  3856. "name": "Symfony Community",
  3857. "homepage": "https://symfony.com/contributors"
  3858. }
  3859. ],
  3860. "description": "Symfony polyfill for the Iconv extension",
  3861. "homepage": "https://symfony.com",
  3862. "keywords": [
  3863. "compatibility",
  3864. "iconv",
  3865. "polyfill",
  3866. "portable",
  3867. "shim"
  3868. ],
  3869. "support": {
  3870. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.24.0"
  3871. },
  3872. "funding": [
  3873. {
  3874. "url": "https://symfony.com/sponsor",
  3875. "type": "custom"
  3876. },
  3877. {
  3878. "url": "https://github.com/fabpot",
  3879. "type": "github"
  3880. },
  3881. {
  3882. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3883. "type": "tidelift"
  3884. }
  3885. ],
  3886. "time": "2022-01-04T09:04:05+00:00"
  3887. },
  3888. {
  3889. "name": "symfony/polyfill-intl-grapheme",
  3890. "version": "v1.24.0",
  3891. "source": {
  3892. "type": "git",
  3893. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3894. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783"
  3895. },
  3896. "dist": {
  3897. "type": "zip",
  3898. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/81b86b50cf841a64252b439e738e97f4a34e2783",
  3899. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783",
  3900. "shasum": ""
  3901. },
  3902. "require": {
  3903. "php": ">=7.1"
  3904. },
  3905. "suggest": {
  3906. "ext-intl": "For best performance"
  3907. },
  3908. "type": "library",
  3909. "extra": {
  3910. "branch-alias": {
  3911. "dev-main": "1.23-dev"
  3912. },
  3913. "thanks": {
  3914. "name": "symfony/polyfill",
  3915. "url": "https://github.com/symfony/polyfill"
  3916. }
  3917. },
  3918. "autoload": {
  3919. "files": [
  3920. "bootstrap.php"
  3921. ],
  3922. "psr-4": {
  3923. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3924. }
  3925. },
  3926. "notification-url": "https://packagist.org/downloads/",
  3927. "license": [
  3928. "MIT"
  3929. ],
  3930. "authors": [
  3931. {
  3932. "name": "Nicolas Grekas",
  3933. "email": "p@tchwork.com"
  3934. },
  3935. {
  3936. "name": "Symfony Community",
  3937. "homepage": "https://symfony.com/contributors"
  3938. }
  3939. ],
  3940. "description": "Symfony polyfill for intl's grapheme_* functions",
  3941. "homepage": "https://symfony.com",
  3942. "keywords": [
  3943. "compatibility",
  3944. "grapheme",
  3945. "intl",
  3946. "polyfill",
  3947. "portable",
  3948. "shim"
  3949. ],
  3950. "support": {
  3951. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.24.0"
  3952. },
  3953. "funding": [
  3954. {
  3955. "url": "https://symfony.com/sponsor",
  3956. "type": "custom"
  3957. },
  3958. {
  3959. "url": "https://github.com/fabpot",
  3960. "type": "github"
  3961. },
  3962. {
  3963. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3964. "type": "tidelift"
  3965. }
  3966. ],
  3967. "time": "2021-11-23T21:10:46+00:00"
  3968. },
  3969. {
  3970. "name": "symfony/polyfill-intl-idn",
  3971. "version": "v1.24.0",
  3972. "source": {
  3973. "type": "git",
  3974. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3975. "reference": "749045c69efb97c70d25d7463abba812e91f3a44"
  3976. },
  3977. "dist": {
  3978. "type": "zip",
  3979. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/749045c69efb97c70d25d7463abba812e91f3a44",
  3980. "reference": "749045c69efb97c70d25d7463abba812e91f3a44",
  3981. "shasum": ""
  3982. },
  3983. "require": {
  3984. "php": ">=7.1",
  3985. "symfony/polyfill-intl-normalizer": "^1.10",
  3986. "symfony/polyfill-php72": "^1.10"
  3987. },
  3988. "suggest": {
  3989. "ext-intl": "For best performance"
  3990. },
  3991. "type": "library",
  3992. "extra": {
  3993. "branch-alias": {
  3994. "dev-main": "1.23-dev"
  3995. },
  3996. "thanks": {
  3997. "name": "symfony/polyfill",
  3998. "url": "https://github.com/symfony/polyfill"
  3999. }
  4000. },
  4001. "autoload": {
  4002. "files": [
  4003. "bootstrap.php"
  4004. ],
  4005. "psr-4": {
  4006. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4007. }
  4008. },
  4009. "notification-url": "https://packagist.org/downloads/",
  4010. "license": [
  4011. "MIT"
  4012. ],
  4013. "authors": [
  4014. {
  4015. "name": "Laurent Bassin",
  4016. "email": "laurent@bassin.info"
  4017. },
  4018. {
  4019. "name": "Trevor Rowbotham",
  4020. "email": "trevor.rowbotham@pm.me"
  4021. },
  4022. {
  4023. "name": "Symfony Community",
  4024. "homepage": "https://symfony.com/contributors"
  4025. }
  4026. ],
  4027. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4028. "homepage": "https://symfony.com",
  4029. "keywords": [
  4030. "compatibility",
  4031. "idn",
  4032. "intl",
  4033. "polyfill",
  4034. "portable",
  4035. "shim"
  4036. ],
  4037. "support": {
  4038. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.24.0"
  4039. },
  4040. "funding": [
  4041. {
  4042. "url": "https://symfony.com/sponsor",
  4043. "type": "custom"
  4044. },
  4045. {
  4046. "url": "https://github.com/fabpot",
  4047. "type": "github"
  4048. },
  4049. {
  4050. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4051. "type": "tidelift"
  4052. }
  4053. ],
  4054. "time": "2021-09-14T14:02:44+00:00"
  4055. },
  4056. {
  4057. "name": "symfony/polyfill-intl-normalizer",
  4058. "version": "v1.24.0",
  4059. "source": {
  4060. "type": "git",
  4061. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4062. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  4063. },
  4064. "dist": {
  4065. "type": "zip",
  4066. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  4067. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  4068. "shasum": ""
  4069. },
  4070. "require": {
  4071. "php": ">=7.1"
  4072. },
  4073. "suggest": {
  4074. "ext-intl": "For best performance"
  4075. },
  4076. "type": "library",
  4077. "extra": {
  4078. "branch-alias": {
  4079. "dev-main": "1.23-dev"
  4080. },
  4081. "thanks": {
  4082. "name": "symfony/polyfill",
  4083. "url": "https://github.com/symfony/polyfill"
  4084. }
  4085. },
  4086. "autoload": {
  4087. "files": [
  4088. "bootstrap.php"
  4089. ],
  4090. "psr-4": {
  4091. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4092. },
  4093. "classmap": [
  4094. "Resources/stubs"
  4095. ]
  4096. },
  4097. "notification-url": "https://packagist.org/downloads/",
  4098. "license": [
  4099. "MIT"
  4100. ],
  4101. "authors": [
  4102. {
  4103. "name": "Nicolas Grekas",
  4104. "email": "p@tchwork.com"
  4105. },
  4106. {
  4107. "name": "Symfony Community",
  4108. "homepage": "https://symfony.com/contributors"
  4109. }
  4110. ],
  4111. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4112. "homepage": "https://symfony.com",
  4113. "keywords": [
  4114. "compatibility",
  4115. "intl",
  4116. "normalizer",
  4117. "polyfill",
  4118. "portable",
  4119. "shim"
  4120. ],
  4121. "support": {
  4122. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.24.0"
  4123. },
  4124. "funding": [
  4125. {
  4126. "url": "https://symfony.com/sponsor",
  4127. "type": "custom"
  4128. },
  4129. {
  4130. "url": "https://github.com/fabpot",
  4131. "type": "github"
  4132. },
  4133. {
  4134. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4135. "type": "tidelift"
  4136. }
  4137. ],
  4138. "time": "2021-02-19T12:13:01+00:00"
  4139. },
  4140. {
  4141. "name": "symfony/polyfill-mbstring",
  4142. "version": "v1.24.0",
  4143. "source": {
  4144. "type": "git",
  4145. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4146. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
  4147. },
  4148. "dist": {
  4149. "type": "zip",
  4150. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
  4151. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
  4152. "shasum": ""
  4153. },
  4154. "require": {
  4155. "php": ">=7.1"
  4156. },
  4157. "provide": {
  4158. "ext-mbstring": "*"
  4159. },
  4160. "suggest": {
  4161. "ext-mbstring": "For best performance"
  4162. },
  4163. "type": "library",
  4164. "extra": {
  4165. "branch-alias": {
  4166. "dev-main": "1.23-dev"
  4167. },
  4168. "thanks": {
  4169. "name": "symfony/polyfill",
  4170. "url": "https://github.com/symfony/polyfill"
  4171. }
  4172. },
  4173. "autoload": {
  4174. "files": [
  4175. "bootstrap.php"
  4176. ],
  4177. "psr-4": {
  4178. "Symfony\\Polyfill\\Mbstring\\": ""
  4179. }
  4180. },
  4181. "notification-url": "https://packagist.org/downloads/",
  4182. "license": [
  4183. "MIT"
  4184. ],
  4185. "authors": [
  4186. {
  4187. "name": "Nicolas Grekas",
  4188. "email": "p@tchwork.com"
  4189. },
  4190. {
  4191. "name": "Symfony Community",
  4192. "homepage": "https://symfony.com/contributors"
  4193. }
  4194. ],
  4195. "description": "Symfony polyfill for the Mbstring extension",
  4196. "homepage": "https://symfony.com",
  4197. "keywords": [
  4198. "compatibility",
  4199. "mbstring",
  4200. "polyfill",
  4201. "portable",
  4202. "shim"
  4203. ],
  4204. "support": {
  4205. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.24.0"
  4206. },
  4207. "funding": [
  4208. {
  4209. "url": "https://symfony.com/sponsor",
  4210. "type": "custom"
  4211. },
  4212. {
  4213. "url": "https://github.com/fabpot",
  4214. "type": "github"
  4215. },
  4216. {
  4217. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4218. "type": "tidelift"
  4219. }
  4220. ],
  4221. "time": "2021-11-30T18:21:41+00:00"
  4222. },
  4223. {
  4224. "name": "symfony/polyfill-php72",
  4225. "version": "v1.24.0",
  4226. "source": {
  4227. "type": "git",
  4228. "url": "https://github.com/symfony/polyfill-php72.git",
  4229. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  4230. },
  4231. "dist": {
  4232. "type": "zip",
  4233. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  4234. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  4235. "shasum": ""
  4236. },
  4237. "require": {
  4238. "php": ">=7.1"
  4239. },
  4240. "type": "library",
  4241. "extra": {
  4242. "branch-alias": {
  4243. "dev-main": "1.23-dev"
  4244. },
  4245. "thanks": {
  4246. "name": "symfony/polyfill",
  4247. "url": "https://github.com/symfony/polyfill"
  4248. }
  4249. },
  4250. "autoload": {
  4251. "files": [
  4252. "bootstrap.php"
  4253. ],
  4254. "psr-4": {
  4255. "Symfony\\Polyfill\\Php72\\": ""
  4256. }
  4257. },
  4258. "notification-url": "https://packagist.org/downloads/",
  4259. "license": [
  4260. "MIT"
  4261. ],
  4262. "authors": [
  4263. {
  4264. "name": "Nicolas Grekas",
  4265. "email": "p@tchwork.com"
  4266. },
  4267. {
  4268. "name": "Symfony Community",
  4269. "homepage": "https://symfony.com/contributors"
  4270. }
  4271. ],
  4272. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4273. "homepage": "https://symfony.com",
  4274. "keywords": [
  4275. "compatibility",
  4276. "polyfill",
  4277. "portable",
  4278. "shim"
  4279. ],
  4280. "support": {
  4281. "source": "https://github.com/symfony/polyfill-php72/tree/v1.24.0"
  4282. },
  4283. "funding": [
  4284. {
  4285. "url": "https://symfony.com/sponsor",
  4286. "type": "custom"
  4287. },
  4288. {
  4289. "url": "https://github.com/fabpot",
  4290. "type": "github"
  4291. },
  4292. {
  4293. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4294. "type": "tidelift"
  4295. }
  4296. ],
  4297. "time": "2021-05-27T09:17:38+00:00"
  4298. },
  4299. {
  4300. "name": "symfony/polyfill-php73",
  4301. "version": "v1.24.0",
  4302. "source": {
  4303. "type": "git",
  4304. "url": "https://github.com/symfony/polyfill-php73.git",
  4305. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5"
  4306. },
  4307. "dist": {
  4308. "type": "zip",
  4309. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5",
  4310. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5",
  4311. "shasum": ""
  4312. },
  4313. "require": {
  4314. "php": ">=7.1"
  4315. },
  4316. "type": "library",
  4317. "extra": {
  4318. "branch-alias": {
  4319. "dev-main": "1.23-dev"
  4320. },
  4321. "thanks": {
  4322. "name": "symfony/polyfill",
  4323. "url": "https://github.com/symfony/polyfill"
  4324. }
  4325. },
  4326. "autoload": {
  4327. "files": [
  4328. "bootstrap.php"
  4329. ],
  4330. "psr-4": {
  4331. "Symfony\\Polyfill\\Php73\\": ""
  4332. },
  4333. "classmap": [
  4334. "Resources/stubs"
  4335. ]
  4336. },
  4337. "notification-url": "https://packagist.org/downloads/",
  4338. "license": [
  4339. "MIT"
  4340. ],
  4341. "authors": [
  4342. {
  4343. "name": "Nicolas Grekas",
  4344. "email": "p@tchwork.com"
  4345. },
  4346. {
  4347. "name": "Symfony Community",
  4348. "homepage": "https://symfony.com/contributors"
  4349. }
  4350. ],
  4351. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4352. "homepage": "https://symfony.com",
  4353. "keywords": [
  4354. "compatibility",
  4355. "polyfill",
  4356. "portable",
  4357. "shim"
  4358. ],
  4359. "support": {
  4360. "source": "https://github.com/symfony/polyfill-php73/tree/v1.24.0"
  4361. },
  4362. "funding": [
  4363. {
  4364. "url": "https://symfony.com/sponsor",
  4365. "type": "custom"
  4366. },
  4367. {
  4368. "url": "https://github.com/fabpot",
  4369. "type": "github"
  4370. },
  4371. {
  4372. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4373. "type": "tidelift"
  4374. }
  4375. ],
  4376. "time": "2021-06-05T21:20:04+00:00"
  4377. },
  4378. {
  4379. "name": "symfony/polyfill-php80",
  4380. "version": "v1.24.0",
  4381. "source": {
  4382. "type": "git",
  4383. "url": "https://github.com/symfony/polyfill-php80.git",
  4384. "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9"
  4385. },
  4386. "dist": {
  4387. "type": "zip",
  4388. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/57b712b08eddb97c762a8caa32c84e037892d2e9",
  4389. "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9",
  4390. "shasum": ""
  4391. },
  4392. "require": {
  4393. "php": ">=7.1"
  4394. },
  4395. "type": "library",
  4396. "extra": {
  4397. "branch-alias": {
  4398. "dev-main": "1.23-dev"
  4399. },
  4400. "thanks": {
  4401. "name": "symfony/polyfill",
  4402. "url": "https://github.com/symfony/polyfill"
  4403. }
  4404. },
  4405. "autoload": {
  4406. "files": [
  4407. "bootstrap.php"
  4408. ],
  4409. "psr-4": {
  4410. "Symfony\\Polyfill\\Php80\\": ""
  4411. },
  4412. "classmap": [
  4413. "Resources/stubs"
  4414. ]
  4415. },
  4416. "notification-url": "https://packagist.org/downloads/",
  4417. "license": [
  4418. "MIT"
  4419. ],
  4420. "authors": [
  4421. {
  4422. "name": "Ion Bazan",
  4423. "email": "ion.bazan@gmail.com"
  4424. },
  4425. {
  4426. "name": "Nicolas Grekas",
  4427. "email": "p@tchwork.com"
  4428. },
  4429. {
  4430. "name": "Symfony Community",
  4431. "homepage": "https://symfony.com/contributors"
  4432. }
  4433. ],
  4434. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4435. "homepage": "https://symfony.com",
  4436. "keywords": [
  4437. "compatibility",
  4438. "polyfill",
  4439. "portable",
  4440. "shim"
  4441. ],
  4442. "support": {
  4443. "source": "https://github.com/symfony/polyfill-php80/tree/v1.24.0"
  4444. },
  4445. "funding": [
  4446. {
  4447. "url": "https://symfony.com/sponsor",
  4448. "type": "custom"
  4449. },
  4450. {
  4451. "url": "https://github.com/fabpot",
  4452. "type": "github"
  4453. },
  4454. {
  4455. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4456. "type": "tidelift"
  4457. }
  4458. ],
  4459. "time": "2021-09-13T13:58:33+00:00"
  4460. },
  4461. {
  4462. "name": "symfony/polyfill-php81",
  4463. "version": "v1.24.0",
  4464. "source": {
  4465. "type": "git",
  4466. "url": "https://github.com/symfony/polyfill-php81.git",
  4467. "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f"
  4468. },
  4469. "dist": {
  4470. "type": "zip",
  4471. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
  4472. "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
  4473. "shasum": ""
  4474. },
  4475. "require": {
  4476. "php": ">=7.1"
  4477. },
  4478. "type": "library",
  4479. "extra": {
  4480. "branch-alias": {
  4481. "dev-main": "1.23-dev"
  4482. },
  4483. "thanks": {
  4484. "name": "symfony/polyfill",
  4485. "url": "https://github.com/symfony/polyfill"
  4486. }
  4487. },
  4488. "autoload": {
  4489. "files": [
  4490. "bootstrap.php"
  4491. ],
  4492. "psr-4": {
  4493. "Symfony\\Polyfill\\Php81\\": ""
  4494. },
  4495. "classmap": [
  4496. "Resources/stubs"
  4497. ]
  4498. },
  4499. "notification-url": "https://packagist.org/downloads/",
  4500. "license": [
  4501. "MIT"
  4502. ],
  4503. "authors": [
  4504. {
  4505. "name": "Nicolas Grekas",
  4506. "email": "p@tchwork.com"
  4507. },
  4508. {
  4509. "name": "Symfony Community",
  4510. "homepage": "https://symfony.com/contributors"
  4511. }
  4512. ],
  4513. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  4514. "homepage": "https://symfony.com",
  4515. "keywords": [
  4516. "compatibility",
  4517. "polyfill",
  4518. "portable",
  4519. "shim"
  4520. ],
  4521. "support": {
  4522. "source": "https://github.com/symfony/polyfill-php81/tree/v1.24.0"
  4523. },
  4524. "funding": [
  4525. {
  4526. "url": "https://symfony.com/sponsor",
  4527. "type": "custom"
  4528. },
  4529. {
  4530. "url": "https://github.com/fabpot",
  4531. "type": "github"
  4532. },
  4533. {
  4534. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4535. "type": "tidelift"
  4536. }
  4537. ],
  4538. "time": "2021-09-13T13:58:11+00:00"
  4539. },
  4540. {
  4541. "name": "symfony/process",
  4542. "version": "v5.4.3",
  4543. "source": {
  4544. "type": "git",
  4545. "url": "https://github.com/symfony/process.git",
  4546. "reference": "553f50487389a977eb31cf6b37faae56da00f753"
  4547. },
  4548. "dist": {
  4549. "type": "zip",
  4550. "url": "https://api.github.com/repos/symfony/process/zipball/553f50487389a977eb31cf6b37faae56da00f753",
  4551. "reference": "553f50487389a977eb31cf6b37faae56da00f753",
  4552. "shasum": ""
  4553. },
  4554. "require": {
  4555. "php": ">=7.2.5",
  4556. "symfony/polyfill-php80": "^1.16"
  4557. },
  4558. "type": "library",
  4559. "autoload": {
  4560. "psr-4": {
  4561. "Symfony\\Component\\Process\\": ""
  4562. },
  4563. "exclude-from-classmap": [
  4564. "/Tests/"
  4565. ]
  4566. },
  4567. "notification-url": "https://packagist.org/downloads/",
  4568. "license": [
  4569. "MIT"
  4570. ],
  4571. "authors": [
  4572. {
  4573. "name": "Fabien Potencier",
  4574. "email": "fabien@symfony.com"
  4575. },
  4576. {
  4577. "name": "Symfony Community",
  4578. "homepage": "https://symfony.com/contributors"
  4579. }
  4580. ],
  4581. "description": "Executes commands in sub-processes",
  4582. "homepage": "https://symfony.com",
  4583. "support": {
  4584. "source": "https://github.com/symfony/process/tree/v5.4.3"
  4585. },
  4586. "funding": [
  4587. {
  4588. "url": "https://symfony.com/sponsor",
  4589. "type": "custom"
  4590. },
  4591. {
  4592. "url": "https://github.com/fabpot",
  4593. "type": "github"
  4594. },
  4595. {
  4596. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4597. "type": "tidelift"
  4598. }
  4599. ],
  4600. "time": "2022-01-26T16:28:35+00:00"
  4601. },
  4602. {
  4603. "name": "symfony/routing",
  4604. "version": "v5.4.3",
  4605. "source": {
  4606. "type": "git",
  4607. "url": "https://github.com/symfony/routing.git",
  4608. "reference": "44b29c7a94e867ccde1da604792f11a469958981"
  4609. },
  4610. "dist": {
  4611. "type": "zip",
  4612. "url": "https://api.github.com/repos/symfony/routing/zipball/44b29c7a94e867ccde1da604792f11a469958981",
  4613. "reference": "44b29c7a94e867ccde1da604792f11a469958981",
  4614. "shasum": ""
  4615. },
  4616. "require": {
  4617. "php": ">=7.2.5",
  4618. "symfony/deprecation-contracts": "^2.1|^3",
  4619. "symfony/polyfill-php80": "^1.16"
  4620. },
  4621. "conflict": {
  4622. "doctrine/annotations": "<1.12",
  4623. "symfony/config": "<5.3",
  4624. "symfony/dependency-injection": "<4.4",
  4625. "symfony/yaml": "<4.4"
  4626. },
  4627. "require-dev": {
  4628. "doctrine/annotations": "^1.12",
  4629. "psr/log": "^1|^2|^3",
  4630. "symfony/config": "^5.3|^6.0",
  4631. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4632. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4633. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  4634. "symfony/yaml": "^4.4|^5.0|^6.0"
  4635. },
  4636. "suggest": {
  4637. "symfony/config": "For using the all-in-one router or any loader",
  4638. "symfony/expression-language": "For using expression matching",
  4639. "symfony/http-foundation": "For using a Symfony Request object",
  4640. "symfony/yaml": "For using the YAML loader"
  4641. },
  4642. "type": "library",
  4643. "autoload": {
  4644. "psr-4": {
  4645. "Symfony\\Component\\Routing\\": ""
  4646. },
  4647. "exclude-from-classmap": [
  4648. "/Tests/"
  4649. ]
  4650. },
  4651. "notification-url": "https://packagist.org/downloads/",
  4652. "license": [
  4653. "MIT"
  4654. ],
  4655. "authors": [
  4656. {
  4657. "name": "Fabien Potencier",
  4658. "email": "fabien@symfony.com"
  4659. },
  4660. {
  4661. "name": "Symfony Community",
  4662. "homepage": "https://symfony.com/contributors"
  4663. }
  4664. ],
  4665. "description": "Maps an HTTP request to a set of configuration variables",
  4666. "homepage": "https://symfony.com",
  4667. "keywords": [
  4668. "router",
  4669. "routing",
  4670. "uri",
  4671. "url"
  4672. ],
  4673. "support": {
  4674. "source": "https://github.com/symfony/routing/tree/v5.4.3"
  4675. },
  4676. "funding": [
  4677. {
  4678. "url": "https://symfony.com/sponsor",
  4679. "type": "custom"
  4680. },
  4681. {
  4682. "url": "https://github.com/fabpot",
  4683. "type": "github"
  4684. },
  4685. {
  4686. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4687. "type": "tidelift"
  4688. }
  4689. ],
  4690. "time": "2022-01-02T09:53:40+00:00"
  4691. },
  4692. {
  4693. "name": "symfony/service-contracts",
  4694. "version": "v2.5.0",
  4695. "source": {
  4696. "type": "git",
  4697. "url": "https://github.com/symfony/service-contracts.git",
  4698. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc"
  4699. },
  4700. "dist": {
  4701. "type": "zip",
  4702. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  4703. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  4704. "shasum": ""
  4705. },
  4706. "require": {
  4707. "php": ">=7.2.5",
  4708. "psr/container": "^1.1",
  4709. "symfony/deprecation-contracts": "^2.1"
  4710. },
  4711. "conflict": {
  4712. "ext-psr": "<1.1|>=2"
  4713. },
  4714. "suggest": {
  4715. "symfony/service-implementation": ""
  4716. },
  4717. "type": "library",
  4718. "extra": {
  4719. "branch-alias": {
  4720. "dev-main": "2.5-dev"
  4721. },
  4722. "thanks": {
  4723. "name": "symfony/contracts",
  4724. "url": "https://github.com/symfony/contracts"
  4725. }
  4726. },
  4727. "autoload": {
  4728. "psr-4": {
  4729. "Symfony\\Contracts\\Service\\": ""
  4730. }
  4731. },
  4732. "notification-url": "https://packagist.org/downloads/",
  4733. "license": [
  4734. "MIT"
  4735. ],
  4736. "authors": [
  4737. {
  4738. "name": "Nicolas Grekas",
  4739. "email": "p@tchwork.com"
  4740. },
  4741. {
  4742. "name": "Symfony Community",
  4743. "homepage": "https://symfony.com/contributors"
  4744. }
  4745. ],
  4746. "description": "Generic abstractions related to writing services",
  4747. "homepage": "https://symfony.com",
  4748. "keywords": [
  4749. "abstractions",
  4750. "contracts",
  4751. "decoupling",
  4752. "interfaces",
  4753. "interoperability",
  4754. "standards"
  4755. ],
  4756. "support": {
  4757. "source": "https://github.com/symfony/service-contracts/tree/v2.5.0"
  4758. },
  4759. "funding": [
  4760. {
  4761. "url": "https://symfony.com/sponsor",
  4762. "type": "custom"
  4763. },
  4764. {
  4765. "url": "https://github.com/fabpot",
  4766. "type": "github"
  4767. },
  4768. {
  4769. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4770. "type": "tidelift"
  4771. }
  4772. ],
  4773. "time": "2021-11-04T16:48:04+00:00"
  4774. },
  4775. {
  4776. "name": "symfony/string",
  4777. "version": "v5.4.3",
  4778. "source": {
  4779. "type": "git",
  4780. "url": "https://github.com/symfony/string.git",
  4781. "reference": "92043b7d8383e48104e411bc9434b260dbeb5a10"
  4782. },
  4783. "dist": {
  4784. "type": "zip",
  4785. "url": "https://api.github.com/repos/symfony/string/zipball/92043b7d8383e48104e411bc9434b260dbeb5a10",
  4786. "reference": "92043b7d8383e48104e411bc9434b260dbeb5a10",
  4787. "shasum": ""
  4788. },
  4789. "require": {
  4790. "php": ">=7.2.5",
  4791. "symfony/polyfill-ctype": "~1.8",
  4792. "symfony/polyfill-intl-grapheme": "~1.0",
  4793. "symfony/polyfill-intl-normalizer": "~1.0",
  4794. "symfony/polyfill-mbstring": "~1.0",
  4795. "symfony/polyfill-php80": "~1.15"
  4796. },
  4797. "conflict": {
  4798. "symfony/translation-contracts": ">=3.0"
  4799. },
  4800. "require-dev": {
  4801. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4802. "symfony/http-client": "^4.4|^5.0|^6.0",
  4803. "symfony/translation-contracts": "^1.1|^2",
  4804. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  4805. },
  4806. "type": "library",
  4807. "autoload": {
  4808. "files": [
  4809. "Resources/functions.php"
  4810. ],
  4811. "psr-4": {
  4812. "Symfony\\Component\\String\\": ""
  4813. },
  4814. "exclude-from-classmap": [
  4815. "/Tests/"
  4816. ]
  4817. },
  4818. "notification-url": "https://packagist.org/downloads/",
  4819. "license": [
  4820. "MIT"
  4821. ],
  4822. "authors": [
  4823. {
  4824. "name": "Nicolas Grekas",
  4825. "email": "p@tchwork.com"
  4826. },
  4827. {
  4828. "name": "Symfony Community",
  4829. "homepage": "https://symfony.com/contributors"
  4830. }
  4831. ],
  4832. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4833. "homepage": "https://symfony.com",
  4834. "keywords": [
  4835. "grapheme",
  4836. "i18n",
  4837. "string",
  4838. "unicode",
  4839. "utf-8",
  4840. "utf8"
  4841. ],
  4842. "support": {
  4843. "source": "https://github.com/symfony/string/tree/v5.4.3"
  4844. },
  4845. "funding": [
  4846. {
  4847. "url": "https://symfony.com/sponsor",
  4848. "type": "custom"
  4849. },
  4850. {
  4851. "url": "https://github.com/fabpot",
  4852. "type": "github"
  4853. },
  4854. {
  4855. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4856. "type": "tidelift"
  4857. }
  4858. ],
  4859. "time": "2022-01-02T09:53:40+00:00"
  4860. },
  4861. {
  4862. "name": "symfony/translation",
  4863. "version": "v5.4.3",
  4864. "source": {
  4865. "type": "git",
  4866. "url": "https://github.com/symfony/translation.git",
  4867. "reference": "a9dd7403232c61e87e27fb306bbcd1627f245d70"
  4868. },
  4869. "dist": {
  4870. "type": "zip",
  4871. "url": "https://api.github.com/repos/symfony/translation/zipball/a9dd7403232c61e87e27fb306bbcd1627f245d70",
  4872. "reference": "a9dd7403232c61e87e27fb306bbcd1627f245d70",
  4873. "shasum": ""
  4874. },
  4875. "require": {
  4876. "php": ">=7.2.5",
  4877. "symfony/deprecation-contracts": "^2.1|^3",
  4878. "symfony/polyfill-mbstring": "~1.0",
  4879. "symfony/polyfill-php80": "^1.16",
  4880. "symfony/translation-contracts": "^2.3"
  4881. },
  4882. "conflict": {
  4883. "symfony/config": "<4.4",
  4884. "symfony/console": "<5.3",
  4885. "symfony/dependency-injection": "<5.0",
  4886. "symfony/http-kernel": "<5.0",
  4887. "symfony/twig-bundle": "<5.0",
  4888. "symfony/yaml": "<4.4"
  4889. },
  4890. "provide": {
  4891. "symfony/translation-implementation": "2.3"
  4892. },
  4893. "require-dev": {
  4894. "psr/log": "^1|^2|^3",
  4895. "symfony/config": "^4.4|^5.0|^6.0",
  4896. "symfony/console": "^5.4|^6.0",
  4897. "symfony/dependency-injection": "^5.0|^6.0",
  4898. "symfony/finder": "^4.4|^5.0|^6.0",
  4899. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  4900. "symfony/http-kernel": "^5.0|^6.0",
  4901. "symfony/intl": "^4.4|^5.0|^6.0",
  4902. "symfony/polyfill-intl-icu": "^1.21",
  4903. "symfony/service-contracts": "^1.1.2|^2|^3",
  4904. "symfony/yaml": "^4.4|^5.0|^6.0"
  4905. },
  4906. "suggest": {
  4907. "psr/log-implementation": "To use logging capability in translator",
  4908. "symfony/config": "",
  4909. "symfony/yaml": ""
  4910. },
  4911. "type": "library",
  4912. "autoload": {
  4913. "files": [
  4914. "Resources/functions.php"
  4915. ],
  4916. "psr-4": {
  4917. "Symfony\\Component\\Translation\\": ""
  4918. },
  4919. "exclude-from-classmap": [
  4920. "/Tests/"
  4921. ]
  4922. },
  4923. "notification-url": "https://packagist.org/downloads/",
  4924. "license": [
  4925. "MIT"
  4926. ],
  4927. "authors": [
  4928. {
  4929. "name": "Fabien Potencier",
  4930. "email": "fabien@symfony.com"
  4931. },
  4932. {
  4933. "name": "Symfony Community",
  4934. "homepage": "https://symfony.com/contributors"
  4935. }
  4936. ],
  4937. "description": "Provides tools to internationalize your application",
  4938. "homepage": "https://symfony.com",
  4939. "support": {
  4940. "source": "https://github.com/symfony/translation/tree/v5.4.3"
  4941. },
  4942. "funding": [
  4943. {
  4944. "url": "https://symfony.com/sponsor",
  4945. "type": "custom"
  4946. },
  4947. {
  4948. "url": "https://github.com/fabpot",
  4949. "type": "github"
  4950. },
  4951. {
  4952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4953. "type": "tidelift"
  4954. }
  4955. ],
  4956. "time": "2022-01-07T00:28:17+00:00"
  4957. },
  4958. {
  4959. "name": "symfony/translation-contracts",
  4960. "version": "v2.5.0",
  4961. "source": {
  4962. "type": "git",
  4963. "url": "https://github.com/symfony/translation-contracts.git",
  4964. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e"
  4965. },
  4966. "dist": {
  4967. "type": "zip",
  4968. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/d28150f0f44ce854e942b671fc2620a98aae1b1e",
  4969. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e",
  4970. "shasum": ""
  4971. },
  4972. "require": {
  4973. "php": ">=7.2.5"
  4974. },
  4975. "suggest": {
  4976. "symfony/translation-implementation": ""
  4977. },
  4978. "type": "library",
  4979. "extra": {
  4980. "branch-alias": {
  4981. "dev-main": "2.5-dev"
  4982. },
  4983. "thanks": {
  4984. "name": "symfony/contracts",
  4985. "url": "https://github.com/symfony/contracts"
  4986. }
  4987. },
  4988. "autoload": {
  4989. "psr-4": {
  4990. "Symfony\\Contracts\\Translation\\": ""
  4991. }
  4992. },
  4993. "notification-url": "https://packagist.org/downloads/",
  4994. "license": [
  4995. "MIT"
  4996. ],
  4997. "authors": [
  4998. {
  4999. "name": "Nicolas Grekas",
  5000. "email": "p@tchwork.com"
  5001. },
  5002. {
  5003. "name": "Symfony Community",
  5004. "homepage": "https://symfony.com/contributors"
  5005. }
  5006. ],
  5007. "description": "Generic abstractions related to translation",
  5008. "homepage": "https://symfony.com",
  5009. "keywords": [
  5010. "abstractions",
  5011. "contracts",
  5012. "decoupling",
  5013. "interfaces",
  5014. "interoperability",
  5015. "standards"
  5016. ],
  5017. "support": {
  5018. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.0"
  5019. },
  5020. "funding": [
  5021. {
  5022. "url": "https://symfony.com/sponsor",
  5023. "type": "custom"
  5024. },
  5025. {
  5026. "url": "https://github.com/fabpot",
  5027. "type": "github"
  5028. },
  5029. {
  5030. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5031. "type": "tidelift"
  5032. }
  5033. ],
  5034. "time": "2021-08-17T14:20:01+00:00"
  5035. },
  5036. {
  5037. "name": "symfony/var-dumper",
  5038. "version": "v5.4.3",
  5039. "source": {
  5040. "type": "git",
  5041. "url": "https://github.com/symfony/var-dumper.git",
  5042. "reference": "970a01f208bf895c5f327ba40b72288da43adec4"
  5043. },
  5044. "dist": {
  5045. "type": "zip",
  5046. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/970a01f208bf895c5f327ba40b72288da43adec4",
  5047. "reference": "970a01f208bf895c5f327ba40b72288da43adec4",
  5048. "shasum": ""
  5049. },
  5050. "require": {
  5051. "php": ">=7.2.5",
  5052. "symfony/polyfill-mbstring": "~1.0",
  5053. "symfony/polyfill-php80": "^1.16"
  5054. },
  5055. "conflict": {
  5056. "phpunit/phpunit": "<5.4.3",
  5057. "symfony/console": "<4.4"
  5058. },
  5059. "require-dev": {
  5060. "ext-iconv": "*",
  5061. "symfony/console": "^4.4|^5.0|^6.0",
  5062. "symfony/process": "^4.4|^5.0|^6.0",
  5063. "symfony/uid": "^5.1|^6.0",
  5064. "twig/twig": "^2.13|^3.0.4"
  5065. },
  5066. "suggest": {
  5067. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5068. "ext-intl": "To show region name in time zone dump",
  5069. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5070. },
  5071. "bin": [
  5072. "Resources/bin/var-dump-server"
  5073. ],
  5074. "type": "library",
  5075. "autoload": {
  5076. "files": [
  5077. "Resources/functions/dump.php"
  5078. ],
  5079. "psr-4": {
  5080. "Symfony\\Component\\VarDumper\\": ""
  5081. },
  5082. "exclude-from-classmap": [
  5083. "/Tests/"
  5084. ]
  5085. },
  5086. "notification-url": "https://packagist.org/downloads/",
  5087. "license": [
  5088. "MIT"
  5089. ],
  5090. "authors": [
  5091. {
  5092. "name": "Nicolas Grekas",
  5093. "email": "p@tchwork.com"
  5094. },
  5095. {
  5096. "name": "Symfony Community",
  5097. "homepage": "https://symfony.com/contributors"
  5098. }
  5099. ],
  5100. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5101. "homepage": "https://symfony.com",
  5102. "keywords": [
  5103. "debug",
  5104. "dump"
  5105. ],
  5106. "support": {
  5107. "source": "https://github.com/symfony/var-dumper/tree/v5.4.3"
  5108. },
  5109. "funding": [
  5110. {
  5111. "url": "https://symfony.com/sponsor",
  5112. "type": "custom"
  5113. },
  5114. {
  5115. "url": "https://github.com/fabpot",
  5116. "type": "github"
  5117. },
  5118. {
  5119. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5120. "type": "tidelift"
  5121. }
  5122. ],
  5123. "time": "2022-01-17T16:30:37+00:00"
  5124. },
  5125. {
  5126. "name": "tijsverkoyen/css-to-inline-styles",
  5127. "version": "2.2.4",
  5128. "source": {
  5129. "type": "git",
  5130. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5131. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  5132. },
  5133. "dist": {
  5134. "type": "zip",
  5135. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  5136. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  5137. "shasum": ""
  5138. },
  5139. "require": {
  5140. "ext-dom": "*",
  5141. "ext-libxml": "*",
  5142. "php": "^5.5 || ^7.0 || ^8.0",
  5143. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  5144. },
  5145. "require-dev": {
  5146. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  5147. },
  5148. "type": "library",
  5149. "extra": {
  5150. "branch-alias": {
  5151. "dev-master": "2.2.x-dev"
  5152. }
  5153. },
  5154. "autoload": {
  5155. "psr-4": {
  5156. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5157. }
  5158. },
  5159. "notification-url": "https://packagist.org/downloads/",
  5160. "license": [
  5161. "BSD-3-Clause"
  5162. ],
  5163. "authors": [
  5164. {
  5165. "name": "Tijs Verkoyen",
  5166. "email": "css_to_inline_styles@verkoyen.eu",
  5167. "role": "Developer"
  5168. }
  5169. ],
  5170. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  5171. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5172. "support": {
  5173. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  5174. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  5175. },
  5176. "time": "2021-12-08T09:12:39+00:00"
  5177. },
  5178. {
  5179. "name": "vlucas/phpdotenv",
  5180. "version": "v5.4.1",
  5181. "source": {
  5182. "type": "git",
  5183. "url": "https://github.com/vlucas/phpdotenv.git",
  5184. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  5185. },
  5186. "dist": {
  5187. "type": "zip",
  5188. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  5189. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  5190. "shasum": ""
  5191. },
  5192. "require": {
  5193. "ext-pcre": "*",
  5194. "graham-campbell/result-type": "^1.0.2",
  5195. "php": "^7.1.3 || ^8.0",
  5196. "phpoption/phpoption": "^1.8",
  5197. "symfony/polyfill-ctype": "^1.23",
  5198. "symfony/polyfill-mbstring": "^1.23.1",
  5199. "symfony/polyfill-php80": "^1.23.1"
  5200. },
  5201. "require-dev": {
  5202. "bamarni/composer-bin-plugin": "^1.4.1",
  5203. "ext-filter": "*",
  5204. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  5205. },
  5206. "suggest": {
  5207. "ext-filter": "Required to use the boolean validator."
  5208. },
  5209. "type": "library",
  5210. "extra": {
  5211. "branch-alias": {
  5212. "dev-master": "5.4-dev"
  5213. }
  5214. },
  5215. "autoload": {
  5216. "psr-4": {
  5217. "Dotenv\\": "src/"
  5218. }
  5219. },
  5220. "notification-url": "https://packagist.org/downloads/",
  5221. "license": [
  5222. "BSD-3-Clause"
  5223. ],
  5224. "authors": [
  5225. {
  5226. "name": "Graham Campbell",
  5227. "email": "hello@gjcampbell.co.uk",
  5228. "homepage": "https://github.com/GrahamCampbell"
  5229. },
  5230. {
  5231. "name": "Vance Lucas",
  5232. "email": "vance@vancelucas.com",
  5233. "homepage": "https://github.com/vlucas"
  5234. }
  5235. ],
  5236. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5237. "keywords": [
  5238. "dotenv",
  5239. "env",
  5240. "environment"
  5241. ],
  5242. "support": {
  5243. "issues": "https://github.com/vlucas/phpdotenv/issues",
  5244. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  5245. },
  5246. "funding": [
  5247. {
  5248. "url": "https://github.com/GrahamCampbell",
  5249. "type": "github"
  5250. },
  5251. {
  5252. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  5253. "type": "tidelift"
  5254. }
  5255. ],
  5256. "time": "2021-12-12T23:22:04+00:00"
  5257. },
  5258. {
  5259. "name": "voku/portable-ascii",
  5260. "version": "1.6.1",
  5261. "source": {
  5262. "type": "git",
  5263. "url": "https://github.com/voku/portable-ascii.git",
  5264. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  5265. },
  5266. "dist": {
  5267. "type": "zip",
  5268. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  5269. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  5270. "shasum": ""
  5271. },
  5272. "require": {
  5273. "php": ">=7.0.0"
  5274. },
  5275. "require-dev": {
  5276. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  5277. },
  5278. "suggest": {
  5279. "ext-intl": "Use Intl for transliterator_transliterate() support"
  5280. },
  5281. "type": "library",
  5282. "autoload": {
  5283. "psr-4": {
  5284. "voku\\": "src/voku/"
  5285. }
  5286. },
  5287. "notification-url": "https://packagist.org/downloads/",
  5288. "license": [
  5289. "MIT"
  5290. ],
  5291. "authors": [
  5292. {
  5293. "name": "Lars Moelleken",
  5294. "homepage": "http://www.moelleken.org/"
  5295. }
  5296. ],
  5297. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  5298. "homepage": "https://github.com/voku/portable-ascii",
  5299. "keywords": [
  5300. "ascii",
  5301. "clean",
  5302. "php"
  5303. ],
  5304. "support": {
  5305. "issues": "https://github.com/voku/portable-ascii/issues",
  5306. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  5307. },
  5308. "funding": [
  5309. {
  5310. "url": "https://www.paypal.me/moelleken",
  5311. "type": "custom"
  5312. },
  5313. {
  5314. "url": "https://github.com/voku",
  5315. "type": "github"
  5316. },
  5317. {
  5318. "url": "https://opencollective.com/portable-ascii",
  5319. "type": "open_collective"
  5320. },
  5321. {
  5322. "url": "https://www.patreon.com/voku",
  5323. "type": "patreon"
  5324. },
  5325. {
  5326. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  5327. "type": "tidelift"
  5328. }
  5329. ],
  5330. "time": "2022-01-24T18:55:24+00:00"
  5331. },
  5332. {
  5333. "name": "webmozart/assert",
  5334. "version": "1.10.0",
  5335. "source": {
  5336. "type": "git",
  5337. "url": "https://github.com/webmozarts/assert.git",
  5338. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  5339. },
  5340. "dist": {
  5341. "type": "zip",
  5342. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  5343. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  5344. "shasum": ""
  5345. },
  5346. "require": {
  5347. "php": "^7.2 || ^8.0",
  5348. "symfony/polyfill-ctype": "^1.8"
  5349. },
  5350. "conflict": {
  5351. "phpstan/phpstan": "<0.12.20",
  5352. "vimeo/psalm": "<4.6.1 || 4.6.2"
  5353. },
  5354. "require-dev": {
  5355. "phpunit/phpunit": "^8.5.13"
  5356. },
  5357. "type": "library",
  5358. "extra": {
  5359. "branch-alias": {
  5360. "dev-master": "1.10-dev"
  5361. }
  5362. },
  5363. "autoload": {
  5364. "psr-4": {
  5365. "Webmozart\\Assert\\": "src/"
  5366. }
  5367. },
  5368. "notification-url": "https://packagist.org/downloads/",
  5369. "license": [
  5370. "MIT"
  5371. ],
  5372. "authors": [
  5373. {
  5374. "name": "Bernhard Schussek",
  5375. "email": "bschussek@gmail.com"
  5376. }
  5377. ],
  5378. "description": "Assertions to validate method input/output with nice error messages.",
  5379. "keywords": [
  5380. "assert",
  5381. "check",
  5382. "validate"
  5383. ],
  5384. "support": {
  5385. "issues": "https://github.com/webmozarts/assert/issues",
  5386. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  5387. },
  5388. "time": "2021-03-09T10:59:23+00:00"
  5389. }
  5390. ],
  5391. "packages-dev": [
  5392. {
  5393. "name": "doctrine/instantiator",
  5394. "version": "1.4.0",
  5395. "source": {
  5396. "type": "git",
  5397. "url": "https://github.com/doctrine/instantiator.git",
  5398. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  5399. },
  5400. "dist": {
  5401. "type": "zip",
  5402. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  5403. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  5404. "shasum": ""
  5405. },
  5406. "require": {
  5407. "php": "^7.1 || ^8.0"
  5408. },
  5409. "require-dev": {
  5410. "doctrine/coding-standard": "^8.0",
  5411. "ext-pdo": "*",
  5412. "ext-phar": "*",
  5413. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  5414. "phpstan/phpstan": "^0.12",
  5415. "phpstan/phpstan-phpunit": "^0.12",
  5416. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5417. },
  5418. "type": "library",
  5419. "autoload": {
  5420. "psr-4": {
  5421. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  5422. }
  5423. },
  5424. "notification-url": "https://packagist.org/downloads/",
  5425. "license": [
  5426. "MIT"
  5427. ],
  5428. "authors": [
  5429. {
  5430. "name": "Marco Pivetta",
  5431. "email": "ocramius@gmail.com",
  5432. "homepage": "https://ocramius.github.io/"
  5433. }
  5434. ],
  5435. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  5436. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  5437. "keywords": [
  5438. "constructor",
  5439. "instantiate"
  5440. ],
  5441. "support": {
  5442. "issues": "https://github.com/doctrine/instantiator/issues",
  5443. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  5444. },
  5445. "funding": [
  5446. {
  5447. "url": "https://www.doctrine-project.org/sponsorship.html",
  5448. "type": "custom"
  5449. },
  5450. {
  5451. "url": "https://www.patreon.com/phpdoctrine",
  5452. "type": "patreon"
  5453. },
  5454. {
  5455. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  5456. "type": "tidelift"
  5457. }
  5458. ],
  5459. "time": "2020-11-10T18:47:58+00:00"
  5460. },
  5461. {
  5462. "name": "facade/flare-client-php",
  5463. "version": "1.9.1",
  5464. "source": {
  5465. "type": "git",
  5466. "url": "https://github.com/facade/flare-client-php.git",
  5467. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
  5468. },
  5469. "dist": {
  5470. "type": "zip",
  5471. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
  5472. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
  5473. "shasum": ""
  5474. },
  5475. "require": {
  5476. "facade/ignition-contracts": "~1.0",
  5477. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  5478. "php": "^7.1|^8.0",
  5479. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  5480. "symfony/mime": "^3.4|^4.0|^5.1",
  5481. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  5482. },
  5483. "require-dev": {
  5484. "friendsofphp/php-cs-fixer": "^2.14",
  5485. "phpunit/phpunit": "^7.5.16",
  5486. "spatie/phpunit-snapshot-assertions": "^2.0"
  5487. },
  5488. "type": "library",
  5489. "extra": {
  5490. "branch-alias": {
  5491. "dev-master": "1.0-dev"
  5492. }
  5493. },
  5494. "autoload": {
  5495. "files": [
  5496. "src/helpers.php"
  5497. ],
  5498. "psr-4": {
  5499. "Facade\\FlareClient\\": "src"
  5500. }
  5501. },
  5502. "notification-url": "https://packagist.org/downloads/",
  5503. "license": [
  5504. "MIT"
  5505. ],
  5506. "description": "Send PHP errors to Flare",
  5507. "homepage": "https://github.com/facade/flare-client-php",
  5508. "keywords": [
  5509. "exception",
  5510. "facade",
  5511. "flare",
  5512. "reporting"
  5513. ],
  5514. "support": {
  5515. "issues": "https://github.com/facade/flare-client-php/issues",
  5516. "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
  5517. },
  5518. "funding": [
  5519. {
  5520. "url": "https://github.com/spatie",
  5521. "type": "github"
  5522. }
  5523. ],
  5524. "time": "2021-09-13T12:16:46+00:00"
  5525. },
  5526. {
  5527. "name": "facade/ignition",
  5528. "version": "2.17.5",
  5529. "source": {
  5530. "type": "git",
  5531. "url": "https://github.com/facade/ignition.git",
  5532. "reference": "1d71996f83c9a5a7807331b8986ac890352b7a0c"
  5533. },
  5534. "dist": {
  5535. "type": "zip",
  5536. "url": "https://api.github.com/repos/facade/ignition/zipball/1d71996f83c9a5a7807331b8986ac890352b7a0c",
  5537. "reference": "1d71996f83c9a5a7807331b8986ac890352b7a0c",
  5538. "shasum": ""
  5539. },
  5540. "require": {
  5541. "ext-curl": "*",
  5542. "ext-json": "*",
  5543. "ext-mbstring": "*",
  5544. "facade/flare-client-php": "^1.9.1",
  5545. "facade/ignition-contracts": "^1.0.2",
  5546. "illuminate/support": "^7.0|^8.0",
  5547. "monolog/monolog": "^2.0",
  5548. "php": "^7.2.5|^8.0",
  5549. "symfony/console": "^5.0",
  5550. "symfony/var-dumper": "^5.0"
  5551. },
  5552. "require-dev": {
  5553. "friendsofphp/php-cs-fixer": "^2.14",
  5554. "livewire/livewire": "^2.4",
  5555. "mockery/mockery": "^1.3",
  5556. "orchestra/testbench": "^5.0|^6.0",
  5557. "psalm/plugin-laravel": "^1.2"
  5558. },
  5559. "suggest": {
  5560. "laravel/telescope": "^3.1"
  5561. },
  5562. "type": "library",
  5563. "extra": {
  5564. "branch-alias": {
  5565. "dev-master": "2.x-dev"
  5566. },
  5567. "laravel": {
  5568. "providers": [
  5569. "Facade\\Ignition\\IgnitionServiceProvider"
  5570. ],
  5571. "aliases": {
  5572. "Flare": "Facade\\Ignition\\Facades\\Flare"
  5573. }
  5574. }
  5575. },
  5576. "autoload": {
  5577. "files": [
  5578. "src/helpers.php"
  5579. ],
  5580. "psr-4": {
  5581. "Facade\\Ignition\\": "src"
  5582. }
  5583. },
  5584. "notification-url": "https://packagist.org/downloads/",
  5585. "license": [
  5586. "MIT"
  5587. ],
  5588. "description": "A beautiful error page for Laravel applications.",
  5589. "homepage": "https://github.com/facade/ignition",
  5590. "keywords": [
  5591. "error",
  5592. "flare",
  5593. "laravel",
  5594. "page"
  5595. ],
  5596. "support": {
  5597. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  5598. "forum": "https://twitter.com/flareappio",
  5599. "issues": "https://github.com/facade/ignition/issues",
  5600. "source": "https://github.com/facade/ignition"
  5601. },
  5602. "time": "2022-02-23T18:31:24+00:00"
  5603. },
  5604. {
  5605. "name": "facade/ignition-contracts",
  5606. "version": "1.0.2",
  5607. "source": {
  5608. "type": "git",
  5609. "url": "https://github.com/facade/ignition-contracts.git",
  5610. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  5611. },
  5612. "dist": {
  5613. "type": "zip",
  5614. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5615. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5616. "shasum": ""
  5617. },
  5618. "require": {
  5619. "php": "^7.3|^8.0"
  5620. },
  5621. "require-dev": {
  5622. "friendsofphp/php-cs-fixer": "^v2.15.8",
  5623. "phpunit/phpunit": "^9.3.11",
  5624. "vimeo/psalm": "^3.17.1"
  5625. },
  5626. "type": "library",
  5627. "autoload": {
  5628. "psr-4": {
  5629. "Facade\\IgnitionContracts\\": "src"
  5630. }
  5631. },
  5632. "notification-url": "https://packagist.org/downloads/",
  5633. "license": [
  5634. "MIT"
  5635. ],
  5636. "authors": [
  5637. {
  5638. "name": "Freek Van der Herten",
  5639. "email": "freek@spatie.be",
  5640. "homepage": "https://flareapp.io",
  5641. "role": "Developer"
  5642. }
  5643. ],
  5644. "description": "Solution contracts for Ignition",
  5645. "homepage": "https://github.com/facade/ignition-contracts",
  5646. "keywords": [
  5647. "contracts",
  5648. "flare",
  5649. "ignition"
  5650. ],
  5651. "support": {
  5652. "issues": "https://github.com/facade/ignition-contracts/issues",
  5653. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  5654. },
  5655. "time": "2020-10-16T08:27:54+00:00"
  5656. },
  5657. {
  5658. "name": "fakerphp/faker",
  5659. "version": "v1.19.0",
  5660. "source": {
  5661. "type": "git",
  5662. "url": "https://github.com/FakerPHP/Faker.git",
  5663. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75"
  5664. },
  5665. "dist": {
  5666. "type": "zip",
  5667. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/d7f08a622b3346766325488aa32ddc93ccdecc75",
  5668. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75",
  5669. "shasum": ""
  5670. },
  5671. "require": {
  5672. "php": "^7.1 || ^8.0",
  5673. "psr/container": "^1.0 || ^2.0",
  5674. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  5675. },
  5676. "conflict": {
  5677. "fzaninotto/faker": "*"
  5678. },
  5679. "require-dev": {
  5680. "bamarni/composer-bin-plugin": "^1.4.1",
  5681. "doctrine/persistence": "^1.3 || ^2.0",
  5682. "ext-intl": "*",
  5683. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  5684. },
  5685. "suggest": {
  5686. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  5687. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  5688. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  5689. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  5690. "ext-mbstring": "Required for multibyte Unicode string functionality."
  5691. },
  5692. "type": "library",
  5693. "extra": {
  5694. "branch-alias": {
  5695. "dev-main": "v1.19-dev"
  5696. }
  5697. },
  5698. "autoload": {
  5699. "psr-4": {
  5700. "Faker\\": "src/Faker/"
  5701. }
  5702. },
  5703. "notification-url": "https://packagist.org/downloads/",
  5704. "license": [
  5705. "MIT"
  5706. ],
  5707. "authors": [
  5708. {
  5709. "name": "François Zaninotto"
  5710. }
  5711. ],
  5712. "description": "Faker is a PHP library that generates fake data for you.",
  5713. "keywords": [
  5714. "data",
  5715. "faker",
  5716. "fixtures"
  5717. ],
  5718. "support": {
  5719. "issues": "https://github.com/FakerPHP/Faker/issues",
  5720. "source": "https://github.com/FakerPHP/Faker/tree/v1.19.0"
  5721. },
  5722. "time": "2022-02-02T17:38:57+00:00"
  5723. },
  5724. {
  5725. "name": "filp/whoops",
  5726. "version": "2.14.5",
  5727. "source": {
  5728. "type": "git",
  5729. "url": "https://github.com/filp/whoops.git",
  5730. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
  5731. },
  5732. "dist": {
  5733. "type": "zip",
  5734. "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  5735. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  5736. "shasum": ""
  5737. },
  5738. "require": {
  5739. "php": "^5.5.9 || ^7.0 || ^8.0",
  5740. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  5741. },
  5742. "require-dev": {
  5743. "mockery/mockery": "^0.9 || ^1.0",
  5744. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  5745. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  5746. },
  5747. "suggest": {
  5748. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  5749. "whoops/soap": "Formats errors as SOAP responses"
  5750. },
  5751. "type": "library",
  5752. "extra": {
  5753. "branch-alias": {
  5754. "dev-master": "2.7-dev"
  5755. }
  5756. },
  5757. "autoload": {
  5758. "psr-4": {
  5759. "Whoops\\": "src/Whoops/"
  5760. }
  5761. },
  5762. "notification-url": "https://packagist.org/downloads/",
  5763. "license": [
  5764. "MIT"
  5765. ],
  5766. "authors": [
  5767. {
  5768. "name": "Filipe Dobreira",
  5769. "homepage": "https://github.com/filp",
  5770. "role": "Developer"
  5771. }
  5772. ],
  5773. "description": "php error handling for cool kids",
  5774. "homepage": "https://filp.github.io/whoops/",
  5775. "keywords": [
  5776. "error",
  5777. "exception",
  5778. "handling",
  5779. "library",
  5780. "throwable",
  5781. "whoops"
  5782. ],
  5783. "support": {
  5784. "issues": "https://github.com/filp/whoops/issues",
  5785. "source": "https://github.com/filp/whoops/tree/2.14.5"
  5786. },
  5787. "funding": [
  5788. {
  5789. "url": "https://github.com/denis-sokolov",
  5790. "type": "github"
  5791. }
  5792. ],
  5793. "time": "2022-01-07T12:00:00+00:00"
  5794. },
  5795. {
  5796. "name": "hamcrest/hamcrest-php",
  5797. "version": "v2.0.1",
  5798. "source": {
  5799. "type": "git",
  5800. "url": "https://github.com/hamcrest/hamcrest-php.git",
  5801. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  5802. },
  5803. "dist": {
  5804. "type": "zip",
  5805. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5806. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5807. "shasum": ""
  5808. },
  5809. "require": {
  5810. "php": "^5.3|^7.0|^8.0"
  5811. },
  5812. "replace": {
  5813. "cordoval/hamcrest-php": "*",
  5814. "davedevelopment/hamcrest-php": "*",
  5815. "kodova/hamcrest-php": "*"
  5816. },
  5817. "require-dev": {
  5818. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  5819. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  5820. },
  5821. "type": "library",
  5822. "extra": {
  5823. "branch-alias": {
  5824. "dev-master": "2.1-dev"
  5825. }
  5826. },
  5827. "autoload": {
  5828. "classmap": [
  5829. "hamcrest"
  5830. ]
  5831. },
  5832. "notification-url": "https://packagist.org/downloads/",
  5833. "license": [
  5834. "BSD-3-Clause"
  5835. ],
  5836. "description": "This is the PHP port of Hamcrest Matchers",
  5837. "keywords": [
  5838. "test"
  5839. ],
  5840. "support": {
  5841. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  5842. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  5843. },
  5844. "time": "2020-07-09T08:09:16+00:00"
  5845. },
  5846. {
  5847. "name": "laravel-lang/lang",
  5848. "version": "10.4.13",
  5849. "source": {
  5850. "type": "git",
  5851. "url": "https://github.com/Laravel-Lang/lang.git",
  5852. "reference": "a6727ec2bc696c0e02bf4d52d7c203b2c7b716ee"
  5853. },
  5854. "dist": {
  5855. "type": "zip",
  5856. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/a6727ec2bc696c0e02bf4d52d7c203b2c7b716ee",
  5857. "reference": "a6727ec2bc696c0e02bf4d52d7c203b2c7b716ee",
  5858. "shasum": ""
  5859. },
  5860. "require": {
  5861. "ext-json": "*"
  5862. },
  5863. "conflict": {
  5864. "laravel-lang/publisher": "<12.0"
  5865. },
  5866. "require-dev": {
  5867. "dragon-code/pretty-array": "^3.0",
  5868. "dragon-code/support": "^5.6",
  5869. "guzzlehttp/guzzle": "^7.3",
  5870. "laravel-lang/publisher": "^12.1",
  5871. "laravel/breeze": "^1.2",
  5872. "laravel/fortify": "^1.7",
  5873. "laravel/jetstream": "^2.3",
  5874. "laravel/ui": "^3.4",
  5875. "orchestra/testbench": "^5.0 || ^6.0 || ^7.0",
  5876. "php": "^8.0",
  5877. "phpunit/phpunit": "^9.5",
  5878. "symfony/finder": "^5.2 || ^6.0",
  5879. "symfony/var-dumper": "^5.2 || ^6.0",
  5880. "vlucas/phpdotenv": "^5.4.1"
  5881. },
  5882. "suggest": {
  5883. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  5884. "laravel-lang/publisher": "Easy installation and update of translation files for your project",
  5885. "overtrue/laravel-lang": "Command to add languages in your project"
  5886. },
  5887. "type": "library",
  5888. "autoload": {
  5889. "psr-4": {
  5890. "LaravelLang\\Lang\\": "src"
  5891. }
  5892. },
  5893. "notification-url": "https://packagist.org/downloads/",
  5894. "license": [
  5895. "MIT"
  5896. ],
  5897. "authors": [
  5898. {
  5899. "name": "Laravel-Lang Team",
  5900. "homepage": "https://github.com/Laravel-Lang"
  5901. }
  5902. ],
  5903. "description": "Languages for Laravel",
  5904. "keywords": [
  5905. "lang",
  5906. "languages",
  5907. "laravel",
  5908. "lpm"
  5909. ],
  5910. "support": {
  5911. "issues": "https://github.com/Laravel-Lang/lang/issues",
  5912. "source": "https://github.com/Laravel-Lang/lang"
  5913. },
  5914. "funding": [
  5915. {
  5916. "url": "https://opencollective.com/laravel-lang",
  5917. "type": "open_collective"
  5918. }
  5919. ],
  5920. "time": "2022-03-31T07:07:56+00:00"
  5921. },
  5922. {
  5923. "name": "laravel/sail",
  5924. "version": "v1.13.5",
  5925. "source": {
  5926. "type": "git",
  5927. "url": "https://github.com/laravel/sail.git",
  5928. "reference": "aeb6eeb55b22c328d2f301145b97288127691d48"
  5929. },
  5930. "dist": {
  5931. "type": "zip",
  5932. "url": "https://api.github.com/repos/laravel/sail/zipball/aeb6eeb55b22c328d2f301145b97288127691d48",
  5933. "reference": "aeb6eeb55b22c328d2f301145b97288127691d48",
  5934. "shasum": ""
  5935. },
  5936. "require": {
  5937. "illuminate/console": "^8.0|^9.0",
  5938. "illuminate/contracts": "^8.0|^9.0",
  5939. "illuminate/support": "^8.0|^9.0",
  5940. "php": "^7.3|^8.0"
  5941. },
  5942. "bin": [
  5943. "bin/sail"
  5944. ],
  5945. "type": "library",
  5946. "extra": {
  5947. "branch-alias": {
  5948. "dev-master": "1.x-dev"
  5949. },
  5950. "laravel": {
  5951. "providers": [
  5952. "Laravel\\Sail\\SailServiceProvider"
  5953. ]
  5954. }
  5955. },
  5956. "autoload": {
  5957. "psr-4": {
  5958. "Laravel\\Sail\\": "src/"
  5959. }
  5960. },
  5961. "notification-url": "https://packagist.org/downloads/",
  5962. "license": [
  5963. "MIT"
  5964. ],
  5965. "authors": [
  5966. {
  5967. "name": "Taylor Otwell",
  5968. "email": "taylor@laravel.com"
  5969. }
  5970. ],
  5971. "description": "Docker files for running a basic Laravel application.",
  5972. "keywords": [
  5973. "docker",
  5974. "laravel"
  5975. ],
  5976. "support": {
  5977. "issues": "https://github.com/laravel/sail/issues",
  5978. "source": "https://github.com/laravel/sail"
  5979. },
  5980. "time": "2022-02-17T19:59:03+00:00"
  5981. },
  5982. {
  5983. "name": "mockery/mockery",
  5984. "version": "1.5.0",
  5985. "source": {
  5986. "type": "git",
  5987. "url": "https://github.com/mockery/mockery.git",
  5988. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac"
  5989. },
  5990. "dist": {
  5991. "type": "zip",
  5992. "url": "https://api.github.com/repos/mockery/mockery/zipball/c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  5993. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  5994. "shasum": ""
  5995. },
  5996. "require": {
  5997. "hamcrest/hamcrest-php": "^2.0.1",
  5998. "lib-pcre": ">=7.0",
  5999. "php": "^7.3 || ^8.0"
  6000. },
  6001. "conflict": {
  6002. "phpunit/phpunit": "<8.0"
  6003. },
  6004. "require-dev": {
  6005. "phpunit/phpunit": "^8.5 || ^9.3"
  6006. },
  6007. "type": "library",
  6008. "extra": {
  6009. "branch-alias": {
  6010. "dev-master": "1.4.x-dev"
  6011. }
  6012. },
  6013. "autoload": {
  6014. "psr-0": {
  6015. "Mockery": "library/"
  6016. }
  6017. },
  6018. "notification-url": "https://packagist.org/downloads/",
  6019. "license": [
  6020. "BSD-3-Clause"
  6021. ],
  6022. "authors": [
  6023. {
  6024. "name": "Pádraic Brady",
  6025. "email": "padraic.brady@gmail.com",
  6026. "homepage": "http://blog.astrumfutura.com"
  6027. },
  6028. {
  6029. "name": "Dave Marshall",
  6030. "email": "dave.marshall@atstsolutions.co.uk",
  6031. "homepage": "http://davedevelopment.co.uk"
  6032. }
  6033. ],
  6034. "description": "Mockery is a simple yet flexible PHP mock object framework",
  6035. "homepage": "https://github.com/mockery/mockery",
  6036. "keywords": [
  6037. "BDD",
  6038. "TDD",
  6039. "library",
  6040. "mock",
  6041. "mock objects",
  6042. "mockery",
  6043. "stub",
  6044. "test",
  6045. "test double",
  6046. "testing"
  6047. ],
  6048. "support": {
  6049. "issues": "https://github.com/mockery/mockery/issues",
  6050. "source": "https://github.com/mockery/mockery/tree/1.5.0"
  6051. },
  6052. "time": "2022-01-20T13:18:17+00:00"
  6053. },
  6054. {
  6055. "name": "myclabs/deep-copy",
  6056. "version": "1.10.2",
  6057. "source": {
  6058. "type": "git",
  6059. "url": "https://github.com/myclabs/DeepCopy.git",
  6060. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  6061. },
  6062. "dist": {
  6063. "type": "zip",
  6064. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  6065. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  6066. "shasum": ""
  6067. },
  6068. "require": {
  6069. "php": "^7.1 || ^8.0"
  6070. },
  6071. "require-dev": {
  6072. "doctrine/collections": "^1.0",
  6073. "doctrine/common": "^2.6",
  6074. "phpunit/phpunit": "^7.1"
  6075. },
  6076. "type": "library",
  6077. "autoload": {
  6078. "files": [
  6079. "src/DeepCopy/deep_copy.php"
  6080. ],
  6081. "psr-4": {
  6082. "DeepCopy\\": "src/DeepCopy/"
  6083. }
  6084. },
  6085. "notification-url": "https://packagist.org/downloads/",
  6086. "license": [
  6087. "MIT"
  6088. ],
  6089. "description": "Create deep copies (clones) of your objects",
  6090. "keywords": [
  6091. "clone",
  6092. "copy",
  6093. "duplicate",
  6094. "object",
  6095. "object graph"
  6096. ],
  6097. "support": {
  6098. "issues": "https://github.com/myclabs/DeepCopy/issues",
  6099. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  6100. },
  6101. "funding": [
  6102. {
  6103. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  6104. "type": "tidelift"
  6105. }
  6106. ],
  6107. "time": "2020-11-13T09:40:50+00:00"
  6108. },
  6109. {
  6110. "name": "nunomaduro/collision",
  6111. "version": "v5.11.0",
  6112. "source": {
  6113. "type": "git",
  6114. "url": "https://github.com/nunomaduro/collision.git",
  6115. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  6116. },
  6117. "dist": {
  6118. "type": "zip",
  6119. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  6120. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  6121. "shasum": ""
  6122. },
  6123. "require": {
  6124. "facade/ignition-contracts": "^1.0",
  6125. "filp/whoops": "^2.14.3",
  6126. "php": "^7.3 || ^8.0",
  6127. "symfony/console": "^5.0"
  6128. },
  6129. "require-dev": {
  6130. "brianium/paratest": "^6.1",
  6131. "fideloper/proxy": "^4.4.1",
  6132. "fruitcake/laravel-cors": "^2.0.3",
  6133. "laravel/framework": "8.x-dev",
  6134. "nunomaduro/larastan": "^0.6.2",
  6135. "nunomaduro/mock-final-classes": "^1.0",
  6136. "orchestra/testbench": "^6.0",
  6137. "phpstan/phpstan": "^0.12.64",
  6138. "phpunit/phpunit": "^9.5.0"
  6139. },
  6140. "type": "library",
  6141. "extra": {
  6142. "laravel": {
  6143. "providers": [
  6144. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  6145. ]
  6146. }
  6147. },
  6148. "autoload": {
  6149. "psr-4": {
  6150. "NunoMaduro\\Collision\\": "src/"
  6151. }
  6152. },
  6153. "notification-url": "https://packagist.org/downloads/",
  6154. "license": [
  6155. "MIT"
  6156. ],
  6157. "authors": [
  6158. {
  6159. "name": "Nuno Maduro",
  6160. "email": "enunomaduro@gmail.com"
  6161. }
  6162. ],
  6163. "description": "Cli error handling for console/command-line PHP applications.",
  6164. "keywords": [
  6165. "artisan",
  6166. "cli",
  6167. "command-line",
  6168. "console",
  6169. "error",
  6170. "handling",
  6171. "laravel",
  6172. "laravel-zero",
  6173. "php",
  6174. "symfony"
  6175. ],
  6176. "support": {
  6177. "issues": "https://github.com/nunomaduro/collision/issues",
  6178. "source": "https://github.com/nunomaduro/collision"
  6179. },
  6180. "funding": [
  6181. {
  6182. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6183. "type": "custom"
  6184. },
  6185. {
  6186. "url": "https://github.com/nunomaduro",
  6187. "type": "github"
  6188. },
  6189. {
  6190. "url": "https://www.patreon.com/nunomaduro",
  6191. "type": "patreon"
  6192. }
  6193. ],
  6194. "time": "2022-01-10T16:22:52+00:00"
  6195. },
  6196. {
  6197. "name": "phar-io/manifest",
  6198. "version": "2.0.3",
  6199. "source": {
  6200. "type": "git",
  6201. "url": "https://github.com/phar-io/manifest.git",
  6202. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  6203. },
  6204. "dist": {
  6205. "type": "zip",
  6206. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  6207. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  6208. "shasum": ""
  6209. },
  6210. "require": {
  6211. "ext-dom": "*",
  6212. "ext-phar": "*",
  6213. "ext-xmlwriter": "*",
  6214. "phar-io/version": "^3.0.1",
  6215. "php": "^7.2 || ^8.0"
  6216. },
  6217. "type": "library",
  6218. "extra": {
  6219. "branch-alias": {
  6220. "dev-master": "2.0.x-dev"
  6221. }
  6222. },
  6223. "autoload": {
  6224. "classmap": [
  6225. "src/"
  6226. ]
  6227. },
  6228. "notification-url": "https://packagist.org/downloads/",
  6229. "license": [
  6230. "BSD-3-Clause"
  6231. ],
  6232. "authors": [
  6233. {
  6234. "name": "Arne Blankerts",
  6235. "email": "arne@blankerts.de",
  6236. "role": "Developer"
  6237. },
  6238. {
  6239. "name": "Sebastian Heuer",
  6240. "email": "sebastian@phpeople.de",
  6241. "role": "Developer"
  6242. },
  6243. {
  6244. "name": "Sebastian Bergmann",
  6245. "email": "sebastian@phpunit.de",
  6246. "role": "Developer"
  6247. }
  6248. ],
  6249. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6250. "support": {
  6251. "issues": "https://github.com/phar-io/manifest/issues",
  6252. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  6253. },
  6254. "time": "2021-07-20T11:28:43+00:00"
  6255. },
  6256. {
  6257. "name": "phar-io/version",
  6258. "version": "3.2.1",
  6259. "source": {
  6260. "type": "git",
  6261. "url": "https://github.com/phar-io/version.git",
  6262. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  6263. },
  6264. "dist": {
  6265. "type": "zip",
  6266. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6267. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6268. "shasum": ""
  6269. },
  6270. "require": {
  6271. "php": "^7.2 || ^8.0"
  6272. },
  6273. "type": "library",
  6274. "autoload": {
  6275. "classmap": [
  6276. "src/"
  6277. ]
  6278. },
  6279. "notification-url": "https://packagist.org/downloads/",
  6280. "license": [
  6281. "BSD-3-Clause"
  6282. ],
  6283. "authors": [
  6284. {
  6285. "name": "Arne Blankerts",
  6286. "email": "arne@blankerts.de",
  6287. "role": "Developer"
  6288. },
  6289. {
  6290. "name": "Sebastian Heuer",
  6291. "email": "sebastian@phpeople.de",
  6292. "role": "Developer"
  6293. },
  6294. {
  6295. "name": "Sebastian Bergmann",
  6296. "email": "sebastian@phpunit.de",
  6297. "role": "Developer"
  6298. }
  6299. ],
  6300. "description": "Library for handling version information and constraints",
  6301. "support": {
  6302. "issues": "https://github.com/phar-io/version/issues",
  6303. "source": "https://github.com/phar-io/version/tree/3.2.1"
  6304. },
  6305. "time": "2022-02-21T01:04:05+00:00"
  6306. },
  6307. {
  6308. "name": "phpdocumentor/reflection-common",
  6309. "version": "2.2.0",
  6310. "source": {
  6311. "type": "git",
  6312. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  6313. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  6314. },
  6315. "dist": {
  6316. "type": "zip",
  6317. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  6318. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  6319. "shasum": ""
  6320. },
  6321. "require": {
  6322. "php": "^7.2 || ^8.0"
  6323. },
  6324. "type": "library",
  6325. "extra": {
  6326. "branch-alias": {
  6327. "dev-2.x": "2.x-dev"
  6328. }
  6329. },
  6330. "autoload": {
  6331. "psr-4": {
  6332. "phpDocumentor\\Reflection\\": "src/"
  6333. }
  6334. },
  6335. "notification-url": "https://packagist.org/downloads/",
  6336. "license": [
  6337. "MIT"
  6338. ],
  6339. "authors": [
  6340. {
  6341. "name": "Jaap van Otterdijk",
  6342. "email": "opensource@ijaap.nl"
  6343. }
  6344. ],
  6345. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  6346. "homepage": "http://www.phpdoc.org",
  6347. "keywords": [
  6348. "FQSEN",
  6349. "phpDocumentor",
  6350. "phpdoc",
  6351. "reflection",
  6352. "static analysis"
  6353. ],
  6354. "support": {
  6355. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  6356. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  6357. },
  6358. "time": "2020-06-27T09:03:43+00:00"
  6359. },
  6360. {
  6361. "name": "phpdocumentor/reflection-docblock",
  6362. "version": "5.3.0",
  6363. "source": {
  6364. "type": "git",
  6365. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  6366. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  6367. },
  6368. "dist": {
  6369. "type": "zip",
  6370. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  6371. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  6372. "shasum": ""
  6373. },
  6374. "require": {
  6375. "ext-filter": "*",
  6376. "php": "^7.2 || ^8.0",
  6377. "phpdocumentor/reflection-common": "^2.2",
  6378. "phpdocumentor/type-resolver": "^1.3",
  6379. "webmozart/assert": "^1.9.1"
  6380. },
  6381. "require-dev": {
  6382. "mockery/mockery": "~1.3.2",
  6383. "psalm/phar": "^4.8"
  6384. },
  6385. "type": "library",
  6386. "extra": {
  6387. "branch-alias": {
  6388. "dev-master": "5.x-dev"
  6389. }
  6390. },
  6391. "autoload": {
  6392. "psr-4": {
  6393. "phpDocumentor\\Reflection\\": "src"
  6394. }
  6395. },
  6396. "notification-url": "https://packagist.org/downloads/",
  6397. "license": [
  6398. "MIT"
  6399. ],
  6400. "authors": [
  6401. {
  6402. "name": "Mike van Riel",
  6403. "email": "me@mikevanriel.com"
  6404. },
  6405. {
  6406. "name": "Jaap van Otterdijk",
  6407. "email": "account@ijaap.nl"
  6408. }
  6409. ],
  6410. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  6411. "support": {
  6412. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  6413. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  6414. },
  6415. "time": "2021-10-19T17:43:47+00:00"
  6416. },
  6417. {
  6418. "name": "phpdocumentor/type-resolver",
  6419. "version": "1.6.0",
  6420. "source": {
  6421. "type": "git",
  6422. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  6423. "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706"
  6424. },
  6425. "dist": {
  6426. "type": "zip",
  6427. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/93ebd0014cab80c4ea9f5e297ea48672f1b87706",
  6428. "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706",
  6429. "shasum": ""
  6430. },
  6431. "require": {
  6432. "php": "^7.2 || ^8.0",
  6433. "phpdocumentor/reflection-common": "^2.0"
  6434. },
  6435. "require-dev": {
  6436. "ext-tokenizer": "*",
  6437. "psalm/phar": "^4.8"
  6438. },
  6439. "type": "library",
  6440. "extra": {
  6441. "branch-alias": {
  6442. "dev-1.x": "1.x-dev"
  6443. }
  6444. },
  6445. "autoload": {
  6446. "psr-4": {
  6447. "phpDocumentor\\Reflection\\": "src"
  6448. }
  6449. },
  6450. "notification-url": "https://packagist.org/downloads/",
  6451. "license": [
  6452. "MIT"
  6453. ],
  6454. "authors": [
  6455. {
  6456. "name": "Mike van Riel",
  6457. "email": "me@mikevanriel.com"
  6458. }
  6459. ],
  6460. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  6461. "support": {
  6462. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  6463. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.0"
  6464. },
  6465. "time": "2022-01-04T19:58:01+00:00"
  6466. },
  6467. {
  6468. "name": "phpspec/prophecy",
  6469. "version": "v1.15.0",
  6470. "source": {
  6471. "type": "git",
  6472. "url": "https://github.com/phpspec/prophecy.git",
  6473. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  6474. },
  6475. "dist": {
  6476. "type": "zip",
  6477. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  6478. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  6479. "shasum": ""
  6480. },
  6481. "require": {
  6482. "doctrine/instantiator": "^1.2",
  6483. "php": "^7.2 || ~8.0, <8.2",
  6484. "phpdocumentor/reflection-docblock": "^5.2",
  6485. "sebastian/comparator": "^3.0 || ^4.0",
  6486. "sebastian/recursion-context": "^3.0 || ^4.0"
  6487. },
  6488. "require-dev": {
  6489. "phpspec/phpspec": "^6.0 || ^7.0",
  6490. "phpunit/phpunit": "^8.0 || ^9.0"
  6491. },
  6492. "type": "library",
  6493. "extra": {
  6494. "branch-alias": {
  6495. "dev-master": "1.x-dev"
  6496. }
  6497. },
  6498. "autoload": {
  6499. "psr-4": {
  6500. "Prophecy\\": "src/Prophecy"
  6501. }
  6502. },
  6503. "notification-url": "https://packagist.org/downloads/",
  6504. "license": [
  6505. "MIT"
  6506. ],
  6507. "authors": [
  6508. {
  6509. "name": "Konstantin Kudryashov",
  6510. "email": "ever.zet@gmail.com",
  6511. "homepage": "http://everzet.com"
  6512. },
  6513. {
  6514. "name": "Marcello Duarte",
  6515. "email": "marcello.duarte@gmail.com"
  6516. }
  6517. ],
  6518. "description": "Highly opinionated mocking framework for PHP 5.3+",
  6519. "homepage": "https://github.com/phpspec/prophecy",
  6520. "keywords": [
  6521. "Double",
  6522. "Dummy",
  6523. "fake",
  6524. "mock",
  6525. "spy",
  6526. "stub"
  6527. ],
  6528. "support": {
  6529. "issues": "https://github.com/phpspec/prophecy/issues",
  6530. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  6531. },
  6532. "time": "2021-12-08T12:19:24+00:00"
  6533. },
  6534. {
  6535. "name": "phpunit/php-code-coverage",
  6536. "version": "9.2.13",
  6537. "source": {
  6538. "type": "git",
  6539. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6540. "reference": "deac8540cb7bd40b2b8cfa679b76202834fd04e8"
  6541. },
  6542. "dist": {
  6543. "type": "zip",
  6544. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/deac8540cb7bd40b2b8cfa679b76202834fd04e8",
  6545. "reference": "deac8540cb7bd40b2b8cfa679b76202834fd04e8",
  6546. "shasum": ""
  6547. },
  6548. "require": {
  6549. "ext-dom": "*",
  6550. "ext-libxml": "*",
  6551. "ext-xmlwriter": "*",
  6552. "nikic/php-parser": "^4.13.0",
  6553. "php": ">=7.3",
  6554. "phpunit/php-file-iterator": "^3.0.3",
  6555. "phpunit/php-text-template": "^2.0.2",
  6556. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  6557. "sebastian/complexity": "^2.0",
  6558. "sebastian/environment": "^5.1.2",
  6559. "sebastian/lines-of-code": "^1.0.3",
  6560. "sebastian/version": "^3.0.1",
  6561. "theseer/tokenizer": "^1.2.0"
  6562. },
  6563. "require-dev": {
  6564. "phpunit/phpunit": "^9.3"
  6565. },
  6566. "suggest": {
  6567. "ext-pcov": "*",
  6568. "ext-xdebug": "*"
  6569. },
  6570. "type": "library",
  6571. "extra": {
  6572. "branch-alias": {
  6573. "dev-master": "9.2-dev"
  6574. }
  6575. },
  6576. "autoload": {
  6577. "classmap": [
  6578. "src/"
  6579. ]
  6580. },
  6581. "notification-url": "https://packagist.org/downloads/",
  6582. "license": [
  6583. "BSD-3-Clause"
  6584. ],
  6585. "authors": [
  6586. {
  6587. "name": "Sebastian Bergmann",
  6588. "email": "sebastian@phpunit.de",
  6589. "role": "lead"
  6590. }
  6591. ],
  6592. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6593. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6594. "keywords": [
  6595. "coverage",
  6596. "testing",
  6597. "xunit"
  6598. ],
  6599. "support": {
  6600. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  6601. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.13"
  6602. },
  6603. "funding": [
  6604. {
  6605. "url": "https://github.com/sebastianbergmann",
  6606. "type": "github"
  6607. }
  6608. ],
  6609. "time": "2022-02-23T17:02:38+00:00"
  6610. },
  6611. {
  6612. "name": "phpunit/php-file-iterator",
  6613. "version": "3.0.6",
  6614. "source": {
  6615. "type": "git",
  6616. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6617. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  6618. },
  6619. "dist": {
  6620. "type": "zip",
  6621. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  6622. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  6623. "shasum": ""
  6624. },
  6625. "require": {
  6626. "php": ">=7.3"
  6627. },
  6628. "require-dev": {
  6629. "phpunit/phpunit": "^9.3"
  6630. },
  6631. "type": "library",
  6632. "extra": {
  6633. "branch-alias": {
  6634. "dev-master": "3.0-dev"
  6635. }
  6636. },
  6637. "autoload": {
  6638. "classmap": [
  6639. "src/"
  6640. ]
  6641. },
  6642. "notification-url": "https://packagist.org/downloads/",
  6643. "license": [
  6644. "BSD-3-Clause"
  6645. ],
  6646. "authors": [
  6647. {
  6648. "name": "Sebastian Bergmann",
  6649. "email": "sebastian@phpunit.de",
  6650. "role": "lead"
  6651. }
  6652. ],
  6653. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6654. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6655. "keywords": [
  6656. "filesystem",
  6657. "iterator"
  6658. ],
  6659. "support": {
  6660. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  6661. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  6662. },
  6663. "funding": [
  6664. {
  6665. "url": "https://github.com/sebastianbergmann",
  6666. "type": "github"
  6667. }
  6668. ],
  6669. "time": "2021-12-02T12:48:52+00:00"
  6670. },
  6671. {
  6672. "name": "phpunit/php-invoker",
  6673. "version": "3.1.1",
  6674. "source": {
  6675. "type": "git",
  6676. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  6677. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  6678. },
  6679. "dist": {
  6680. "type": "zip",
  6681. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6682. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6683. "shasum": ""
  6684. },
  6685. "require": {
  6686. "php": ">=7.3"
  6687. },
  6688. "require-dev": {
  6689. "ext-pcntl": "*",
  6690. "phpunit/phpunit": "^9.3"
  6691. },
  6692. "suggest": {
  6693. "ext-pcntl": "*"
  6694. },
  6695. "type": "library",
  6696. "extra": {
  6697. "branch-alias": {
  6698. "dev-master": "3.1-dev"
  6699. }
  6700. },
  6701. "autoload": {
  6702. "classmap": [
  6703. "src/"
  6704. ]
  6705. },
  6706. "notification-url": "https://packagist.org/downloads/",
  6707. "license": [
  6708. "BSD-3-Clause"
  6709. ],
  6710. "authors": [
  6711. {
  6712. "name": "Sebastian Bergmann",
  6713. "email": "sebastian@phpunit.de",
  6714. "role": "lead"
  6715. }
  6716. ],
  6717. "description": "Invoke callables with a timeout",
  6718. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  6719. "keywords": [
  6720. "process"
  6721. ],
  6722. "support": {
  6723. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  6724. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  6725. },
  6726. "funding": [
  6727. {
  6728. "url": "https://github.com/sebastianbergmann",
  6729. "type": "github"
  6730. }
  6731. ],
  6732. "time": "2020-09-28T05:58:55+00:00"
  6733. },
  6734. {
  6735. "name": "phpunit/php-text-template",
  6736. "version": "2.0.4",
  6737. "source": {
  6738. "type": "git",
  6739. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6740. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  6741. },
  6742. "dist": {
  6743. "type": "zip",
  6744. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6745. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6746. "shasum": ""
  6747. },
  6748. "require": {
  6749. "php": ">=7.3"
  6750. },
  6751. "require-dev": {
  6752. "phpunit/phpunit": "^9.3"
  6753. },
  6754. "type": "library",
  6755. "extra": {
  6756. "branch-alias": {
  6757. "dev-master": "2.0-dev"
  6758. }
  6759. },
  6760. "autoload": {
  6761. "classmap": [
  6762. "src/"
  6763. ]
  6764. },
  6765. "notification-url": "https://packagist.org/downloads/",
  6766. "license": [
  6767. "BSD-3-Clause"
  6768. ],
  6769. "authors": [
  6770. {
  6771. "name": "Sebastian Bergmann",
  6772. "email": "sebastian@phpunit.de",
  6773. "role": "lead"
  6774. }
  6775. ],
  6776. "description": "Simple template engine.",
  6777. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6778. "keywords": [
  6779. "template"
  6780. ],
  6781. "support": {
  6782. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  6783. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  6784. },
  6785. "funding": [
  6786. {
  6787. "url": "https://github.com/sebastianbergmann",
  6788. "type": "github"
  6789. }
  6790. ],
  6791. "time": "2020-10-26T05:33:50+00:00"
  6792. },
  6793. {
  6794. "name": "phpunit/php-timer",
  6795. "version": "5.0.3",
  6796. "source": {
  6797. "type": "git",
  6798. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6799. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  6800. },
  6801. "dist": {
  6802. "type": "zip",
  6803. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6804. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6805. "shasum": ""
  6806. },
  6807. "require": {
  6808. "php": ">=7.3"
  6809. },
  6810. "require-dev": {
  6811. "phpunit/phpunit": "^9.3"
  6812. },
  6813. "type": "library",
  6814. "extra": {
  6815. "branch-alias": {
  6816. "dev-master": "5.0-dev"
  6817. }
  6818. },
  6819. "autoload": {
  6820. "classmap": [
  6821. "src/"
  6822. ]
  6823. },
  6824. "notification-url": "https://packagist.org/downloads/",
  6825. "license": [
  6826. "BSD-3-Clause"
  6827. ],
  6828. "authors": [
  6829. {
  6830. "name": "Sebastian Bergmann",
  6831. "email": "sebastian@phpunit.de",
  6832. "role": "lead"
  6833. }
  6834. ],
  6835. "description": "Utility class for timing",
  6836. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6837. "keywords": [
  6838. "timer"
  6839. ],
  6840. "support": {
  6841. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  6842. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  6843. },
  6844. "funding": [
  6845. {
  6846. "url": "https://github.com/sebastianbergmann",
  6847. "type": "github"
  6848. }
  6849. ],
  6850. "time": "2020-10-26T13:16:10+00:00"
  6851. },
  6852. {
  6853. "name": "phpunit/phpunit",
  6854. "version": "9.5.16",
  6855. "source": {
  6856. "type": "git",
  6857. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6858. "reference": "5ff8c545a50226c569310a35f4fa89d79f1ddfdc"
  6859. },
  6860. "dist": {
  6861. "type": "zip",
  6862. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/5ff8c545a50226c569310a35f4fa89d79f1ddfdc",
  6863. "reference": "5ff8c545a50226c569310a35f4fa89d79f1ddfdc",
  6864. "shasum": ""
  6865. },
  6866. "require": {
  6867. "doctrine/instantiator": "^1.3.1",
  6868. "ext-dom": "*",
  6869. "ext-json": "*",
  6870. "ext-libxml": "*",
  6871. "ext-mbstring": "*",
  6872. "ext-xml": "*",
  6873. "ext-xmlwriter": "*",
  6874. "myclabs/deep-copy": "^1.10.1",
  6875. "phar-io/manifest": "^2.0.3",
  6876. "phar-io/version": "^3.0.2",
  6877. "php": ">=7.3",
  6878. "phpspec/prophecy": "^1.12.1",
  6879. "phpunit/php-code-coverage": "^9.2.13",
  6880. "phpunit/php-file-iterator": "^3.0.5",
  6881. "phpunit/php-invoker": "^3.1.1",
  6882. "phpunit/php-text-template": "^2.0.3",
  6883. "phpunit/php-timer": "^5.0.2",
  6884. "sebastian/cli-parser": "^1.0.1",
  6885. "sebastian/code-unit": "^1.0.6",
  6886. "sebastian/comparator": "^4.0.5",
  6887. "sebastian/diff": "^4.0.3",
  6888. "sebastian/environment": "^5.1.3",
  6889. "sebastian/exporter": "^4.0.3",
  6890. "sebastian/global-state": "^5.0.1",
  6891. "sebastian/object-enumerator": "^4.0.3",
  6892. "sebastian/resource-operations": "^3.0.3",
  6893. "sebastian/type": "^2.3.4",
  6894. "sebastian/version": "^3.0.2"
  6895. },
  6896. "require-dev": {
  6897. "ext-pdo": "*",
  6898. "phpspec/prophecy-phpunit": "^2.0.1"
  6899. },
  6900. "suggest": {
  6901. "ext-soap": "*",
  6902. "ext-xdebug": "*"
  6903. },
  6904. "bin": [
  6905. "phpunit"
  6906. ],
  6907. "type": "library",
  6908. "extra": {
  6909. "branch-alias": {
  6910. "dev-master": "9.5-dev"
  6911. }
  6912. },
  6913. "autoload": {
  6914. "files": [
  6915. "src/Framework/Assert/Functions.php"
  6916. ],
  6917. "classmap": [
  6918. "src/"
  6919. ]
  6920. },
  6921. "notification-url": "https://packagist.org/downloads/",
  6922. "license": [
  6923. "BSD-3-Clause"
  6924. ],
  6925. "authors": [
  6926. {
  6927. "name": "Sebastian Bergmann",
  6928. "email": "sebastian@phpunit.de",
  6929. "role": "lead"
  6930. }
  6931. ],
  6932. "description": "The PHP Unit Testing framework.",
  6933. "homepage": "https://phpunit.de/",
  6934. "keywords": [
  6935. "phpunit",
  6936. "testing",
  6937. "xunit"
  6938. ],
  6939. "support": {
  6940. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  6941. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.16"
  6942. },
  6943. "funding": [
  6944. {
  6945. "url": "https://phpunit.de/sponsors.html",
  6946. "type": "custom"
  6947. },
  6948. {
  6949. "url": "https://github.com/sebastianbergmann",
  6950. "type": "github"
  6951. }
  6952. ],
  6953. "time": "2022-02-23T17:10:58+00:00"
  6954. },
  6955. {
  6956. "name": "sebastian/cli-parser",
  6957. "version": "1.0.1",
  6958. "source": {
  6959. "type": "git",
  6960. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  6961. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  6962. },
  6963. "dist": {
  6964. "type": "zip",
  6965. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6966. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6967. "shasum": ""
  6968. },
  6969. "require": {
  6970. "php": ">=7.3"
  6971. },
  6972. "require-dev": {
  6973. "phpunit/phpunit": "^9.3"
  6974. },
  6975. "type": "library",
  6976. "extra": {
  6977. "branch-alias": {
  6978. "dev-master": "1.0-dev"
  6979. }
  6980. },
  6981. "autoload": {
  6982. "classmap": [
  6983. "src/"
  6984. ]
  6985. },
  6986. "notification-url": "https://packagist.org/downloads/",
  6987. "license": [
  6988. "BSD-3-Clause"
  6989. ],
  6990. "authors": [
  6991. {
  6992. "name": "Sebastian Bergmann",
  6993. "email": "sebastian@phpunit.de",
  6994. "role": "lead"
  6995. }
  6996. ],
  6997. "description": "Library for parsing CLI options",
  6998. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  6999. "support": {
  7000. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  7001. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  7002. },
  7003. "funding": [
  7004. {
  7005. "url": "https://github.com/sebastianbergmann",
  7006. "type": "github"
  7007. }
  7008. ],
  7009. "time": "2020-09-28T06:08:49+00:00"
  7010. },
  7011. {
  7012. "name": "sebastian/code-unit",
  7013. "version": "1.0.8",
  7014. "source": {
  7015. "type": "git",
  7016. "url": "https://github.com/sebastianbergmann/code-unit.git",
  7017. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  7018. },
  7019. "dist": {
  7020. "type": "zip",
  7021. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  7022. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  7023. "shasum": ""
  7024. },
  7025. "require": {
  7026. "php": ">=7.3"
  7027. },
  7028. "require-dev": {
  7029. "phpunit/phpunit": "^9.3"
  7030. },
  7031. "type": "library",
  7032. "extra": {
  7033. "branch-alias": {
  7034. "dev-master": "1.0-dev"
  7035. }
  7036. },
  7037. "autoload": {
  7038. "classmap": [
  7039. "src/"
  7040. ]
  7041. },
  7042. "notification-url": "https://packagist.org/downloads/",
  7043. "license": [
  7044. "BSD-3-Clause"
  7045. ],
  7046. "authors": [
  7047. {
  7048. "name": "Sebastian Bergmann",
  7049. "email": "sebastian@phpunit.de",
  7050. "role": "lead"
  7051. }
  7052. ],
  7053. "description": "Collection of value objects that represent the PHP code units",
  7054. "homepage": "https://github.com/sebastianbergmann/code-unit",
  7055. "support": {
  7056. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  7057. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  7058. },
  7059. "funding": [
  7060. {
  7061. "url": "https://github.com/sebastianbergmann",
  7062. "type": "github"
  7063. }
  7064. ],
  7065. "time": "2020-10-26T13:08:54+00:00"
  7066. },
  7067. {
  7068. "name": "sebastian/code-unit-reverse-lookup",
  7069. "version": "2.0.3",
  7070. "source": {
  7071. "type": "git",
  7072. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7073. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  7074. },
  7075. "dist": {
  7076. "type": "zip",
  7077. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  7078. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  7079. "shasum": ""
  7080. },
  7081. "require": {
  7082. "php": ">=7.3"
  7083. },
  7084. "require-dev": {
  7085. "phpunit/phpunit": "^9.3"
  7086. },
  7087. "type": "library",
  7088. "extra": {
  7089. "branch-alias": {
  7090. "dev-master": "2.0-dev"
  7091. }
  7092. },
  7093. "autoload": {
  7094. "classmap": [
  7095. "src/"
  7096. ]
  7097. },
  7098. "notification-url": "https://packagist.org/downloads/",
  7099. "license": [
  7100. "BSD-3-Clause"
  7101. ],
  7102. "authors": [
  7103. {
  7104. "name": "Sebastian Bergmann",
  7105. "email": "sebastian@phpunit.de"
  7106. }
  7107. ],
  7108. "description": "Looks up which function or method a line of code belongs to",
  7109. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7110. "support": {
  7111. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  7112. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  7113. },
  7114. "funding": [
  7115. {
  7116. "url": "https://github.com/sebastianbergmann",
  7117. "type": "github"
  7118. }
  7119. ],
  7120. "time": "2020-09-28T05:30:19+00:00"
  7121. },
  7122. {
  7123. "name": "sebastian/comparator",
  7124. "version": "4.0.6",
  7125. "source": {
  7126. "type": "git",
  7127. "url": "https://github.com/sebastianbergmann/comparator.git",
  7128. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  7129. },
  7130. "dist": {
  7131. "type": "zip",
  7132. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  7133. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  7134. "shasum": ""
  7135. },
  7136. "require": {
  7137. "php": ">=7.3",
  7138. "sebastian/diff": "^4.0",
  7139. "sebastian/exporter": "^4.0"
  7140. },
  7141. "require-dev": {
  7142. "phpunit/phpunit": "^9.3"
  7143. },
  7144. "type": "library",
  7145. "extra": {
  7146. "branch-alias": {
  7147. "dev-master": "4.0-dev"
  7148. }
  7149. },
  7150. "autoload": {
  7151. "classmap": [
  7152. "src/"
  7153. ]
  7154. },
  7155. "notification-url": "https://packagist.org/downloads/",
  7156. "license": [
  7157. "BSD-3-Clause"
  7158. ],
  7159. "authors": [
  7160. {
  7161. "name": "Sebastian Bergmann",
  7162. "email": "sebastian@phpunit.de"
  7163. },
  7164. {
  7165. "name": "Jeff Welch",
  7166. "email": "whatthejeff@gmail.com"
  7167. },
  7168. {
  7169. "name": "Volker Dusch",
  7170. "email": "github@wallbash.com"
  7171. },
  7172. {
  7173. "name": "Bernhard Schussek",
  7174. "email": "bschussek@2bepublished.at"
  7175. }
  7176. ],
  7177. "description": "Provides the functionality to compare PHP values for equality",
  7178. "homepage": "https://github.com/sebastianbergmann/comparator",
  7179. "keywords": [
  7180. "comparator",
  7181. "compare",
  7182. "equality"
  7183. ],
  7184. "support": {
  7185. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  7186. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  7187. },
  7188. "funding": [
  7189. {
  7190. "url": "https://github.com/sebastianbergmann",
  7191. "type": "github"
  7192. }
  7193. ],
  7194. "time": "2020-10-26T15:49:45+00:00"
  7195. },
  7196. {
  7197. "name": "sebastian/complexity",
  7198. "version": "2.0.2",
  7199. "source": {
  7200. "type": "git",
  7201. "url": "https://github.com/sebastianbergmann/complexity.git",
  7202. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  7203. },
  7204. "dist": {
  7205. "type": "zip",
  7206. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  7207. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  7208. "shasum": ""
  7209. },
  7210. "require": {
  7211. "nikic/php-parser": "^4.7",
  7212. "php": ">=7.3"
  7213. },
  7214. "require-dev": {
  7215. "phpunit/phpunit": "^9.3"
  7216. },
  7217. "type": "library",
  7218. "extra": {
  7219. "branch-alias": {
  7220. "dev-master": "2.0-dev"
  7221. }
  7222. },
  7223. "autoload": {
  7224. "classmap": [
  7225. "src/"
  7226. ]
  7227. },
  7228. "notification-url": "https://packagist.org/downloads/",
  7229. "license": [
  7230. "BSD-3-Clause"
  7231. ],
  7232. "authors": [
  7233. {
  7234. "name": "Sebastian Bergmann",
  7235. "email": "sebastian@phpunit.de",
  7236. "role": "lead"
  7237. }
  7238. ],
  7239. "description": "Library for calculating the complexity of PHP code units",
  7240. "homepage": "https://github.com/sebastianbergmann/complexity",
  7241. "support": {
  7242. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  7243. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  7244. },
  7245. "funding": [
  7246. {
  7247. "url": "https://github.com/sebastianbergmann",
  7248. "type": "github"
  7249. }
  7250. ],
  7251. "time": "2020-10-26T15:52:27+00:00"
  7252. },
  7253. {
  7254. "name": "sebastian/diff",
  7255. "version": "4.0.4",
  7256. "source": {
  7257. "type": "git",
  7258. "url": "https://github.com/sebastianbergmann/diff.git",
  7259. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  7260. },
  7261. "dist": {
  7262. "type": "zip",
  7263. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  7264. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  7265. "shasum": ""
  7266. },
  7267. "require": {
  7268. "php": ">=7.3"
  7269. },
  7270. "require-dev": {
  7271. "phpunit/phpunit": "^9.3",
  7272. "symfony/process": "^4.2 || ^5"
  7273. },
  7274. "type": "library",
  7275. "extra": {
  7276. "branch-alias": {
  7277. "dev-master": "4.0-dev"
  7278. }
  7279. },
  7280. "autoload": {
  7281. "classmap": [
  7282. "src/"
  7283. ]
  7284. },
  7285. "notification-url": "https://packagist.org/downloads/",
  7286. "license": [
  7287. "BSD-3-Clause"
  7288. ],
  7289. "authors": [
  7290. {
  7291. "name": "Sebastian Bergmann",
  7292. "email": "sebastian@phpunit.de"
  7293. },
  7294. {
  7295. "name": "Kore Nordmann",
  7296. "email": "mail@kore-nordmann.de"
  7297. }
  7298. ],
  7299. "description": "Diff implementation",
  7300. "homepage": "https://github.com/sebastianbergmann/diff",
  7301. "keywords": [
  7302. "diff",
  7303. "udiff",
  7304. "unidiff",
  7305. "unified diff"
  7306. ],
  7307. "support": {
  7308. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7309. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  7310. },
  7311. "funding": [
  7312. {
  7313. "url": "https://github.com/sebastianbergmann",
  7314. "type": "github"
  7315. }
  7316. ],
  7317. "time": "2020-10-26T13:10:38+00:00"
  7318. },
  7319. {
  7320. "name": "sebastian/environment",
  7321. "version": "5.1.3",
  7322. "source": {
  7323. "type": "git",
  7324. "url": "https://github.com/sebastianbergmann/environment.git",
  7325. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  7326. },
  7327. "dist": {
  7328. "type": "zip",
  7329. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  7330. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  7331. "shasum": ""
  7332. },
  7333. "require": {
  7334. "php": ">=7.3"
  7335. },
  7336. "require-dev": {
  7337. "phpunit/phpunit": "^9.3"
  7338. },
  7339. "suggest": {
  7340. "ext-posix": "*"
  7341. },
  7342. "type": "library",
  7343. "extra": {
  7344. "branch-alias": {
  7345. "dev-master": "5.1-dev"
  7346. }
  7347. },
  7348. "autoload": {
  7349. "classmap": [
  7350. "src/"
  7351. ]
  7352. },
  7353. "notification-url": "https://packagist.org/downloads/",
  7354. "license": [
  7355. "BSD-3-Clause"
  7356. ],
  7357. "authors": [
  7358. {
  7359. "name": "Sebastian Bergmann",
  7360. "email": "sebastian@phpunit.de"
  7361. }
  7362. ],
  7363. "description": "Provides functionality to handle HHVM/PHP environments",
  7364. "homepage": "http://www.github.com/sebastianbergmann/environment",
  7365. "keywords": [
  7366. "Xdebug",
  7367. "environment",
  7368. "hhvm"
  7369. ],
  7370. "support": {
  7371. "issues": "https://github.com/sebastianbergmann/environment/issues",
  7372. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  7373. },
  7374. "funding": [
  7375. {
  7376. "url": "https://github.com/sebastianbergmann",
  7377. "type": "github"
  7378. }
  7379. ],
  7380. "time": "2020-09-28T05:52:38+00:00"
  7381. },
  7382. {
  7383. "name": "sebastian/exporter",
  7384. "version": "4.0.4",
  7385. "source": {
  7386. "type": "git",
  7387. "url": "https://github.com/sebastianbergmann/exporter.git",
  7388. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  7389. },
  7390. "dist": {
  7391. "type": "zip",
  7392. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  7393. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  7394. "shasum": ""
  7395. },
  7396. "require": {
  7397. "php": ">=7.3",
  7398. "sebastian/recursion-context": "^4.0"
  7399. },
  7400. "require-dev": {
  7401. "ext-mbstring": "*",
  7402. "phpunit/phpunit": "^9.3"
  7403. },
  7404. "type": "library",
  7405. "extra": {
  7406. "branch-alias": {
  7407. "dev-master": "4.0-dev"
  7408. }
  7409. },
  7410. "autoload": {
  7411. "classmap": [
  7412. "src/"
  7413. ]
  7414. },
  7415. "notification-url": "https://packagist.org/downloads/",
  7416. "license": [
  7417. "BSD-3-Clause"
  7418. ],
  7419. "authors": [
  7420. {
  7421. "name": "Sebastian Bergmann",
  7422. "email": "sebastian@phpunit.de"
  7423. },
  7424. {
  7425. "name": "Jeff Welch",
  7426. "email": "whatthejeff@gmail.com"
  7427. },
  7428. {
  7429. "name": "Volker Dusch",
  7430. "email": "github@wallbash.com"
  7431. },
  7432. {
  7433. "name": "Adam Harvey",
  7434. "email": "aharvey@php.net"
  7435. },
  7436. {
  7437. "name": "Bernhard Schussek",
  7438. "email": "bschussek@gmail.com"
  7439. }
  7440. ],
  7441. "description": "Provides the functionality to export PHP variables for visualization",
  7442. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  7443. "keywords": [
  7444. "export",
  7445. "exporter"
  7446. ],
  7447. "support": {
  7448. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  7449. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  7450. },
  7451. "funding": [
  7452. {
  7453. "url": "https://github.com/sebastianbergmann",
  7454. "type": "github"
  7455. }
  7456. ],
  7457. "time": "2021-11-11T14:18:36+00:00"
  7458. },
  7459. {
  7460. "name": "sebastian/global-state",
  7461. "version": "5.0.5",
  7462. "source": {
  7463. "type": "git",
  7464. "url": "https://github.com/sebastianbergmann/global-state.git",
  7465. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  7466. },
  7467. "dist": {
  7468. "type": "zip",
  7469. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  7470. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  7471. "shasum": ""
  7472. },
  7473. "require": {
  7474. "php": ">=7.3",
  7475. "sebastian/object-reflector": "^2.0",
  7476. "sebastian/recursion-context": "^4.0"
  7477. },
  7478. "require-dev": {
  7479. "ext-dom": "*",
  7480. "phpunit/phpunit": "^9.3"
  7481. },
  7482. "suggest": {
  7483. "ext-uopz": "*"
  7484. },
  7485. "type": "library",
  7486. "extra": {
  7487. "branch-alias": {
  7488. "dev-master": "5.0-dev"
  7489. }
  7490. },
  7491. "autoload": {
  7492. "classmap": [
  7493. "src/"
  7494. ]
  7495. },
  7496. "notification-url": "https://packagist.org/downloads/",
  7497. "license": [
  7498. "BSD-3-Clause"
  7499. ],
  7500. "authors": [
  7501. {
  7502. "name": "Sebastian Bergmann",
  7503. "email": "sebastian@phpunit.de"
  7504. }
  7505. ],
  7506. "description": "Snapshotting of global state",
  7507. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7508. "keywords": [
  7509. "global state"
  7510. ],
  7511. "support": {
  7512. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  7513. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  7514. },
  7515. "funding": [
  7516. {
  7517. "url": "https://github.com/sebastianbergmann",
  7518. "type": "github"
  7519. }
  7520. ],
  7521. "time": "2022-02-14T08:28:10+00:00"
  7522. },
  7523. {
  7524. "name": "sebastian/lines-of-code",
  7525. "version": "1.0.3",
  7526. "source": {
  7527. "type": "git",
  7528. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  7529. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  7530. },
  7531. "dist": {
  7532. "type": "zip",
  7533. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  7534. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  7535. "shasum": ""
  7536. },
  7537. "require": {
  7538. "nikic/php-parser": "^4.6",
  7539. "php": ">=7.3"
  7540. },
  7541. "require-dev": {
  7542. "phpunit/phpunit": "^9.3"
  7543. },
  7544. "type": "library",
  7545. "extra": {
  7546. "branch-alias": {
  7547. "dev-master": "1.0-dev"
  7548. }
  7549. },
  7550. "autoload": {
  7551. "classmap": [
  7552. "src/"
  7553. ]
  7554. },
  7555. "notification-url": "https://packagist.org/downloads/",
  7556. "license": [
  7557. "BSD-3-Clause"
  7558. ],
  7559. "authors": [
  7560. {
  7561. "name": "Sebastian Bergmann",
  7562. "email": "sebastian@phpunit.de",
  7563. "role": "lead"
  7564. }
  7565. ],
  7566. "description": "Library for counting the lines of code in PHP source code",
  7567. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  7568. "support": {
  7569. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  7570. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  7571. },
  7572. "funding": [
  7573. {
  7574. "url": "https://github.com/sebastianbergmann",
  7575. "type": "github"
  7576. }
  7577. ],
  7578. "time": "2020-11-28T06:42:11+00:00"
  7579. },
  7580. {
  7581. "name": "sebastian/object-enumerator",
  7582. "version": "4.0.4",
  7583. "source": {
  7584. "type": "git",
  7585. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7586. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  7587. },
  7588. "dist": {
  7589. "type": "zip",
  7590. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  7591. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  7592. "shasum": ""
  7593. },
  7594. "require": {
  7595. "php": ">=7.3",
  7596. "sebastian/object-reflector": "^2.0",
  7597. "sebastian/recursion-context": "^4.0"
  7598. },
  7599. "require-dev": {
  7600. "phpunit/phpunit": "^9.3"
  7601. },
  7602. "type": "library",
  7603. "extra": {
  7604. "branch-alias": {
  7605. "dev-master": "4.0-dev"
  7606. }
  7607. },
  7608. "autoload": {
  7609. "classmap": [
  7610. "src/"
  7611. ]
  7612. },
  7613. "notification-url": "https://packagist.org/downloads/",
  7614. "license": [
  7615. "BSD-3-Clause"
  7616. ],
  7617. "authors": [
  7618. {
  7619. "name": "Sebastian Bergmann",
  7620. "email": "sebastian@phpunit.de"
  7621. }
  7622. ],
  7623. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7624. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7625. "support": {
  7626. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  7627. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  7628. },
  7629. "funding": [
  7630. {
  7631. "url": "https://github.com/sebastianbergmann",
  7632. "type": "github"
  7633. }
  7634. ],
  7635. "time": "2020-10-26T13:12:34+00:00"
  7636. },
  7637. {
  7638. "name": "sebastian/object-reflector",
  7639. "version": "2.0.4",
  7640. "source": {
  7641. "type": "git",
  7642. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7643. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  7644. },
  7645. "dist": {
  7646. "type": "zip",
  7647. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7648. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7649. "shasum": ""
  7650. },
  7651. "require": {
  7652. "php": ">=7.3"
  7653. },
  7654. "require-dev": {
  7655. "phpunit/phpunit": "^9.3"
  7656. },
  7657. "type": "library",
  7658. "extra": {
  7659. "branch-alias": {
  7660. "dev-master": "2.0-dev"
  7661. }
  7662. },
  7663. "autoload": {
  7664. "classmap": [
  7665. "src/"
  7666. ]
  7667. },
  7668. "notification-url": "https://packagist.org/downloads/",
  7669. "license": [
  7670. "BSD-3-Clause"
  7671. ],
  7672. "authors": [
  7673. {
  7674. "name": "Sebastian Bergmann",
  7675. "email": "sebastian@phpunit.de"
  7676. }
  7677. ],
  7678. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7679. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7680. "support": {
  7681. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  7682. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  7683. },
  7684. "funding": [
  7685. {
  7686. "url": "https://github.com/sebastianbergmann",
  7687. "type": "github"
  7688. }
  7689. ],
  7690. "time": "2020-10-26T13:14:26+00:00"
  7691. },
  7692. {
  7693. "name": "sebastian/recursion-context",
  7694. "version": "4.0.4",
  7695. "source": {
  7696. "type": "git",
  7697. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7698. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  7699. },
  7700. "dist": {
  7701. "type": "zip",
  7702. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  7703. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  7704. "shasum": ""
  7705. },
  7706. "require": {
  7707. "php": ">=7.3"
  7708. },
  7709. "require-dev": {
  7710. "phpunit/phpunit": "^9.3"
  7711. },
  7712. "type": "library",
  7713. "extra": {
  7714. "branch-alias": {
  7715. "dev-master": "4.0-dev"
  7716. }
  7717. },
  7718. "autoload": {
  7719. "classmap": [
  7720. "src/"
  7721. ]
  7722. },
  7723. "notification-url": "https://packagist.org/downloads/",
  7724. "license": [
  7725. "BSD-3-Clause"
  7726. ],
  7727. "authors": [
  7728. {
  7729. "name": "Sebastian Bergmann",
  7730. "email": "sebastian@phpunit.de"
  7731. },
  7732. {
  7733. "name": "Jeff Welch",
  7734. "email": "whatthejeff@gmail.com"
  7735. },
  7736. {
  7737. "name": "Adam Harvey",
  7738. "email": "aharvey@php.net"
  7739. }
  7740. ],
  7741. "description": "Provides functionality to recursively process PHP variables",
  7742. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  7743. "support": {
  7744. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  7745. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  7746. },
  7747. "funding": [
  7748. {
  7749. "url": "https://github.com/sebastianbergmann",
  7750. "type": "github"
  7751. }
  7752. ],
  7753. "time": "2020-10-26T13:17:30+00:00"
  7754. },
  7755. {
  7756. "name": "sebastian/resource-operations",
  7757. "version": "3.0.3",
  7758. "source": {
  7759. "type": "git",
  7760. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7761. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  7762. },
  7763. "dist": {
  7764. "type": "zip",
  7765. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7766. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7767. "shasum": ""
  7768. },
  7769. "require": {
  7770. "php": ">=7.3"
  7771. },
  7772. "require-dev": {
  7773. "phpunit/phpunit": "^9.0"
  7774. },
  7775. "type": "library",
  7776. "extra": {
  7777. "branch-alias": {
  7778. "dev-master": "3.0-dev"
  7779. }
  7780. },
  7781. "autoload": {
  7782. "classmap": [
  7783. "src/"
  7784. ]
  7785. },
  7786. "notification-url": "https://packagist.org/downloads/",
  7787. "license": [
  7788. "BSD-3-Clause"
  7789. ],
  7790. "authors": [
  7791. {
  7792. "name": "Sebastian Bergmann",
  7793. "email": "sebastian@phpunit.de"
  7794. }
  7795. ],
  7796. "description": "Provides a list of PHP built-in functions that operate on resources",
  7797. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7798. "support": {
  7799. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  7800. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  7801. },
  7802. "funding": [
  7803. {
  7804. "url": "https://github.com/sebastianbergmann",
  7805. "type": "github"
  7806. }
  7807. ],
  7808. "time": "2020-09-28T06:45:17+00:00"
  7809. },
  7810. {
  7811. "name": "sebastian/type",
  7812. "version": "2.3.4",
  7813. "source": {
  7814. "type": "git",
  7815. "url": "https://github.com/sebastianbergmann/type.git",
  7816. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914"
  7817. },
  7818. "dist": {
  7819. "type": "zip",
  7820. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  7821. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  7822. "shasum": ""
  7823. },
  7824. "require": {
  7825. "php": ">=7.3"
  7826. },
  7827. "require-dev": {
  7828. "phpunit/phpunit": "^9.3"
  7829. },
  7830. "type": "library",
  7831. "extra": {
  7832. "branch-alias": {
  7833. "dev-master": "2.3-dev"
  7834. }
  7835. },
  7836. "autoload": {
  7837. "classmap": [
  7838. "src/"
  7839. ]
  7840. },
  7841. "notification-url": "https://packagist.org/downloads/",
  7842. "license": [
  7843. "BSD-3-Clause"
  7844. ],
  7845. "authors": [
  7846. {
  7847. "name": "Sebastian Bergmann",
  7848. "email": "sebastian@phpunit.de",
  7849. "role": "lead"
  7850. }
  7851. ],
  7852. "description": "Collection of value objects that represent the types of the PHP type system",
  7853. "homepage": "https://github.com/sebastianbergmann/type",
  7854. "support": {
  7855. "issues": "https://github.com/sebastianbergmann/type/issues",
  7856. "source": "https://github.com/sebastianbergmann/type/tree/2.3.4"
  7857. },
  7858. "funding": [
  7859. {
  7860. "url": "https://github.com/sebastianbergmann",
  7861. "type": "github"
  7862. }
  7863. ],
  7864. "time": "2021-06-15T12:49:02+00:00"
  7865. },
  7866. {
  7867. "name": "sebastian/version",
  7868. "version": "3.0.2",
  7869. "source": {
  7870. "type": "git",
  7871. "url": "https://github.com/sebastianbergmann/version.git",
  7872. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  7873. },
  7874. "dist": {
  7875. "type": "zip",
  7876. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  7877. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  7878. "shasum": ""
  7879. },
  7880. "require": {
  7881. "php": ">=7.3"
  7882. },
  7883. "type": "library",
  7884. "extra": {
  7885. "branch-alias": {
  7886. "dev-master": "3.0-dev"
  7887. }
  7888. },
  7889. "autoload": {
  7890. "classmap": [
  7891. "src/"
  7892. ]
  7893. },
  7894. "notification-url": "https://packagist.org/downloads/",
  7895. "license": [
  7896. "BSD-3-Clause"
  7897. ],
  7898. "authors": [
  7899. {
  7900. "name": "Sebastian Bergmann",
  7901. "email": "sebastian@phpunit.de",
  7902. "role": "lead"
  7903. }
  7904. ],
  7905. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7906. "homepage": "https://github.com/sebastianbergmann/version",
  7907. "support": {
  7908. "issues": "https://github.com/sebastianbergmann/version/issues",
  7909. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  7910. },
  7911. "funding": [
  7912. {
  7913. "url": "https://github.com/sebastianbergmann",
  7914. "type": "github"
  7915. }
  7916. ],
  7917. "time": "2020-09-28T06:39:44+00:00"
  7918. },
  7919. {
  7920. "name": "theseer/tokenizer",
  7921. "version": "1.2.1",
  7922. "source": {
  7923. "type": "git",
  7924. "url": "https://github.com/theseer/tokenizer.git",
  7925. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  7926. },
  7927. "dist": {
  7928. "type": "zip",
  7929. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  7930. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  7931. "shasum": ""
  7932. },
  7933. "require": {
  7934. "ext-dom": "*",
  7935. "ext-tokenizer": "*",
  7936. "ext-xmlwriter": "*",
  7937. "php": "^7.2 || ^8.0"
  7938. },
  7939. "type": "library",
  7940. "autoload": {
  7941. "classmap": [
  7942. "src/"
  7943. ]
  7944. },
  7945. "notification-url": "https://packagist.org/downloads/",
  7946. "license": [
  7947. "BSD-3-Clause"
  7948. ],
  7949. "authors": [
  7950. {
  7951. "name": "Arne Blankerts",
  7952. "email": "arne@blankerts.de",
  7953. "role": "Developer"
  7954. }
  7955. ],
  7956. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7957. "support": {
  7958. "issues": "https://github.com/theseer/tokenizer/issues",
  7959. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  7960. },
  7961. "funding": [
  7962. {
  7963. "url": "https://github.com/theseer",
  7964. "type": "github"
  7965. }
  7966. ],
  7967. "time": "2021-07-28T10:34:58+00:00"
  7968. }
  7969. ],
  7970. "aliases": [],
  7971. "minimum-stability": "dev",
  7972. "stability-flags": [],
  7973. "prefer-stable": true,
  7974. "prefer-lowest": false,
  7975. "platform": {
  7976. "php": "^7.3|^8.0"
  7977. },
  7978. "platform-dev": [],
  7979. "plugin-api-version": "2.2.0"
  7980. }