composer.lock 282 KB

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