composer.lock 294 KB

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