composer.lock 318 KB

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