composer.lock 323 KB

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