You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699
  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": "967da805bc378478110ac4356055617a",
  8. "packages": [
  9. {
  10. "name": "akaunting/laravel-money",
  11. "version": "5.1.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/akaunting/laravel-money.git",
  15. "reference": "193fcc98e9ab829952e4a1b075a8845e89d15e8d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/193fcc98e9ab829952e4a1b075a8845e89d15e8d",
  20. "reference": "193fcc98e9ab829952e4a1b075a8845e89d15e8d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "illuminate/contracts": "^9.0|^10.0",
  25. "illuminate/support": "^9.0|^10.0",
  26. "illuminate/validation": "^9.0|^10.0",
  27. "illuminate/view": "^9.0|^10.0",
  28. "php": "^8.0",
  29. "vlucas/phpdotenv": "^5.4.1"
  30. },
  31. "require-dev": {
  32. "orchestra/testbench": "^7.4|^8.0",
  33. "phpunit/phpunit": "^9.5|^10.0",
  34. "vimeo/psalm": "^4.23"
  35. },
  36. "type": "library",
  37. "extra": {
  38. "laravel": {
  39. "providers": [
  40. "Akaunting\\Money\\Provider"
  41. ]
  42. }
  43. },
  44. "autoload": {
  45. "files": [
  46. "src/helpers.php"
  47. ],
  48. "psr-4": {
  49. "Akaunting\\Money\\": "src"
  50. }
  51. },
  52. "notification-url": "https://packagist.org/downloads/",
  53. "license": [
  54. "MIT"
  55. ],
  56. "authors": [
  57. {
  58. "name": "Denis Duliçi",
  59. "email": "info@akaunting.com",
  60. "homepage": "https://akaunting.com",
  61. "role": "Developer"
  62. }
  63. ],
  64. "description": "Currency formatting and conversion package for Laravel",
  65. "keywords": [
  66. "convert",
  67. "currency",
  68. "format",
  69. "laravel",
  70. "money"
  71. ],
  72. "support": {
  73. "issues": "https://github.com/akaunting/laravel-money/issues",
  74. "source": "https://github.com/akaunting/laravel-money/tree/5.1.2"
  75. },
  76. "time": "2023-07-28T06:57:28+00:00"
  77. },
  78. {
  79. "name": "andrewdwallo/filament-companies",
  80. "version": "v3.1.0",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "19427296796036ed486ea88fdbb8a274329249fb"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/19427296796036ed486ea88fdbb8a274329249fb",
  89. "reference": "19427296796036ed486ea88fdbb8a274329249fb",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "ext-json": "*",
  94. "filament/filament": "^3.0",
  95. "illuminate/console": "^10.0",
  96. "illuminate/contracts": "^10.0",
  97. "illuminate/support": "^10.0",
  98. "laravel/socialite": "^5.6",
  99. "matomo/device-detector": "^6.1",
  100. "php": "^8.1"
  101. },
  102. "require-dev": {
  103. "laravel/sanctum": "^3.0",
  104. "livewire/livewire": "^3.0@beta",
  105. "mockery/mockery": "^1.0",
  106. "orchestra/testbench": "^8.0",
  107. "phpunit/phpunit": "^9.3"
  108. },
  109. "type": "library",
  110. "extra": {
  111. "laravel": {
  112. "providers": [
  113. "Wallo\\FilamentCompanies\\FilamentCompaniesServiceProvider"
  114. ]
  115. }
  116. },
  117. "autoload": {
  118. "psr-4": {
  119. "Wallo\\FilamentCompanies\\": "src/"
  120. }
  121. },
  122. "notification-url": "https://packagist.org/downloads/",
  123. "license": [
  124. "MIT"
  125. ],
  126. "authors": [
  127. {
  128. "name": "Andrew Wallo",
  129. "email": "andrewdwallo@gmail.com",
  130. "role": "Developer"
  131. }
  132. ],
  133. "description": "A Laravel Authentication System based on Companies built using Filament",
  134. "homepage": "https://github.com/andrewdwallo/filament-companies",
  135. "keywords": [
  136. "ERP",
  137. "andrewdwallo",
  138. "auth",
  139. "companies",
  140. "filament",
  141. "laravel",
  142. "tailwind",
  143. "wallo"
  144. ],
  145. "support": {
  146. "issues": "https://github.com/andrewdwallo/filament-companies/issues",
  147. "source": "https://github.com/andrewdwallo/filament-companies/tree/v3.1.0"
  148. },
  149. "time": "2023-10-02T04:15:21+00:00"
  150. },
  151. {
  152. "name": "andrewdwallo/filament-selectify",
  153. "version": "v2.0.5",
  154. "source": {
  155. "type": "git",
  156. "url": "https://github.com/andrewdwallo/filament-selectify.git",
  157. "reference": "037d802420f6538be76943fe0b004c1cd3c364d9"
  158. },
  159. "dist": {
  160. "type": "zip",
  161. "url": "https://api.github.com/repos/andrewdwallo/filament-selectify/zipball/037d802420f6538be76943fe0b004c1cd3c364d9",
  162. "reference": "037d802420f6538be76943fe0b004c1cd3c364d9",
  163. "shasum": ""
  164. },
  165. "require": {
  166. "filament/forms": "^3.0",
  167. "php": "^8.1",
  168. "spatie/laravel-package-tools": "^1.15.0"
  169. },
  170. "require-dev": {
  171. "laravel/pint": "^1.0",
  172. "nunomaduro/collision": "^7.9",
  173. "orchestra/testbench": "^8.0",
  174. "pestphp/pest": "^2.0",
  175. "pestphp/pest-plugin-arch": "^2.0",
  176. "pestphp/pest-plugin-laravel": "^2.0"
  177. },
  178. "type": "library",
  179. "extra": {
  180. "laravel": {
  181. "providers": [
  182. "Wallo\\FilamentSelectify\\FilamentSelectifyServiceProvider"
  183. ]
  184. }
  185. },
  186. "autoload": {
  187. "psr-4": {
  188. "Wallo\\FilamentSelectify\\": "src/"
  189. }
  190. },
  191. "notification-url": "https://packagist.org/downloads/",
  192. "license": [
  193. "MIT"
  194. ],
  195. "authors": [
  196. {
  197. "name": "Andrew Wallo",
  198. "email": "andrewdwallo@gmail.com",
  199. "role": "Developer"
  200. }
  201. ],
  202. "description": "This is my package filament-selectify",
  203. "homepage": "https://github.com/andrewdwallo/filament-selectify",
  204. "keywords": [
  205. "andrewdwallo",
  206. "filament-selectify",
  207. "laravel"
  208. ],
  209. "support": {
  210. "issues": "https://github.com/andrewdwallo/filament-selectify/issues",
  211. "source": "https://github.com/andrewdwallo/filament-selectify/tree/v2.0.5"
  212. },
  213. "time": "2023-09-12T00:21:19+00:00"
  214. },
  215. {
  216. "name": "blade-ui-kit/blade-heroicons",
  217. "version": "2.1.0",
  218. "source": {
  219. "type": "git",
  220. "url": "https://github.com/blade-ui-kit/blade-heroicons.git",
  221. "reference": "f756c807b0d04afd2caf7079bac26492da9cc6d4"
  222. },
  223. "dist": {
  224. "type": "zip",
  225. "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/f756c807b0d04afd2caf7079bac26492da9cc6d4",
  226. "reference": "f756c807b0d04afd2caf7079bac26492da9cc6d4",
  227. "shasum": ""
  228. },
  229. "require": {
  230. "blade-ui-kit/blade-icons": "^1.1",
  231. "illuminate/support": "^9.0|^10.0",
  232. "php": "^8.0"
  233. },
  234. "require-dev": {
  235. "orchestra/testbench": "^7.0|^8.0",
  236. "phpunit/phpunit": "^9.0"
  237. },
  238. "type": "library",
  239. "extra": {
  240. "laravel": {
  241. "providers": [
  242. "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
  243. ]
  244. }
  245. },
  246. "autoload": {
  247. "psr-4": {
  248. "BladeUI\\Heroicons\\": "src"
  249. }
  250. },
  251. "notification-url": "https://packagist.org/downloads/",
  252. "license": [
  253. "MIT"
  254. ],
  255. "authors": [
  256. {
  257. "name": "Dries Vints",
  258. "homepage": "https://driesvints.com"
  259. }
  260. ],
  261. "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
  262. "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
  263. "keywords": [
  264. "Heroicons",
  265. "blade",
  266. "laravel"
  267. ],
  268. "support": {
  269. "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues",
  270. "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/2.1.0"
  271. },
  272. "funding": [
  273. {
  274. "url": "https://github.com/caneco",
  275. "type": "github"
  276. },
  277. {
  278. "url": "https://github.com/driesvints",
  279. "type": "github"
  280. }
  281. ],
  282. "time": "2023-01-11T08:38:22+00:00"
  283. },
  284. {
  285. "name": "blade-ui-kit/blade-icons",
  286. "version": "1.5.2",
  287. "source": {
  288. "type": "git",
  289. "url": "https://github.com/blade-ui-kit/blade-icons.git",
  290. "reference": "4d6b6b2548b1994a777211a985e18691701891e4"
  291. },
  292. "dist": {
  293. "type": "zip",
  294. "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/4d6b6b2548b1994a777211a985e18691701891e4",
  295. "reference": "4d6b6b2548b1994a777211a985e18691701891e4",
  296. "shasum": ""
  297. },
  298. "require": {
  299. "illuminate/contracts": "^8.0|^9.0|^10.0",
  300. "illuminate/filesystem": "^8.0|^9.0|^10.0",
  301. "illuminate/support": "^8.0|^9.0|^10.0",
  302. "illuminate/view": "^8.0|^9.0|^10.0",
  303. "php": "^7.4|^8.0",
  304. "symfony/console": "^5.3|^6.0",
  305. "symfony/finder": "^5.3|^6.0"
  306. },
  307. "require-dev": {
  308. "mockery/mockery": "^1.3",
  309. "orchestra/testbench": "^6.0|^7.0|^8.0",
  310. "phpunit/phpunit": "^9.0"
  311. },
  312. "bin": [
  313. "bin/blade-icons-generate"
  314. ],
  315. "type": "library",
  316. "extra": {
  317. "laravel": {
  318. "providers": [
  319. "BladeUI\\Icons\\BladeIconsServiceProvider"
  320. ]
  321. }
  322. },
  323. "autoload": {
  324. "files": [
  325. "src/helpers.php"
  326. ],
  327. "psr-4": {
  328. "BladeUI\\Icons\\": "src"
  329. }
  330. },
  331. "notification-url": "https://packagist.org/downloads/",
  332. "license": [
  333. "MIT"
  334. ],
  335. "authors": [
  336. {
  337. "name": "Dries Vints",
  338. "homepage": "https://driesvints.com"
  339. }
  340. ],
  341. "description": "A package to easily make use of icons in your Laravel Blade views.",
  342. "homepage": "https://github.com/blade-ui-kit/blade-icons",
  343. "keywords": [
  344. "blade",
  345. "icons",
  346. "laravel",
  347. "svg"
  348. ],
  349. "support": {
  350. "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
  351. "source": "https://github.com/blade-ui-kit/blade-icons"
  352. },
  353. "funding": [
  354. {
  355. "url": "https://github.com/sponsors/driesvints",
  356. "type": "github"
  357. }
  358. ],
  359. "time": "2023-06-09T15:47:26+00:00"
  360. },
  361. {
  362. "name": "brick/math",
  363. "version": "0.11.0",
  364. "source": {
  365. "type": "git",
  366. "url": "https://github.com/brick/math.git",
  367. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  368. },
  369. "dist": {
  370. "type": "zip",
  371. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  372. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  373. "shasum": ""
  374. },
  375. "require": {
  376. "php": "^8.0"
  377. },
  378. "require-dev": {
  379. "php-coveralls/php-coveralls": "^2.2",
  380. "phpunit/phpunit": "^9.0",
  381. "vimeo/psalm": "5.0.0"
  382. },
  383. "type": "library",
  384. "autoload": {
  385. "psr-4": {
  386. "Brick\\Math\\": "src/"
  387. }
  388. },
  389. "notification-url": "https://packagist.org/downloads/",
  390. "license": [
  391. "MIT"
  392. ],
  393. "description": "Arbitrary-precision arithmetic library",
  394. "keywords": [
  395. "Arbitrary-precision",
  396. "BigInteger",
  397. "BigRational",
  398. "arithmetic",
  399. "bigdecimal",
  400. "bignum",
  401. "brick",
  402. "math"
  403. ],
  404. "support": {
  405. "issues": "https://github.com/brick/math/issues",
  406. "source": "https://github.com/brick/math/tree/0.11.0"
  407. },
  408. "funding": [
  409. {
  410. "url": "https://github.com/BenMorel",
  411. "type": "github"
  412. }
  413. ],
  414. "time": "2023-01-15T23:15:59+00:00"
  415. },
  416. {
  417. "name": "danharrin/date-format-converter",
  418. "version": "v0.3.0",
  419. "source": {
  420. "type": "git",
  421. "url": "https://github.com/danharrin/date-format-converter.git",
  422. "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2"
  423. },
  424. "dist": {
  425. "type": "zip",
  426. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/42b6ddc52059d4ba228a67c15adaaa0c039e75f2",
  427. "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2",
  428. "shasum": ""
  429. },
  430. "require": {
  431. "php": "^7.2|^8.0"
  432. },
  433. "type": "library",
  434. "autoload": {
  435. "files": [
  436. "src/helpers.php",
  437. "src/standards.php"
  438. ],
  439. "psr-4": {
  440. "DanHarrin\\DateFormatConverter\\": "src/"
  441. }
  442. },
  443. "notification-url": "https://packagist.org/downloads/",
  444. "license": [
  445. "MIT"
  446. ],
  447. "authors": [
  448. {
  449. "name": "Dan Harrin",
  450. "email": "dan@danharrin.com"
  451. }
  452. ],
  453. "description": "Convert token-based date formats between standards.",
  454. "homepage": "https://github.com/danharrin/date-format-converter",
  455. "support": {
  456. "issues": "https://github.com/danharrin/date-format-converter/issues",
  457. "source": "https://github.com/danharrin/date-format-converter"
  458. },
  459. "funding": [
  460. {
  461. "url": "https://github.com/danharrin",
  462. "type": "github"
  463. }
  464. ],
  465. "time": "2022-09-29T07:48:20+00:00"
  466. },
  467. {
  468. "name": "danharrin/livewire-rate-limiting",
  469. "version": "v1.1.0",
  470. "source": {
  471. "type": "git",
  472. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  473. "reference": "a55996683cabf2e93893280d602191243b3b80b8"
  474. },
  475. "dist": {
  476. "type": "zip",
  477. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/a55996683cabf2e93893280d602191243b3b80b8",
  478. "reference": "a55996683cabf2e93893280d602191243b3b80b8",
  479. "shasum": ""
  480. },
  481. "require": {
  482. "illuminate/support": "^9.0|^10.0",
  483. "php": "^8.0"
  484. },
  485. "require-dev": {
  486. "livewire/livewire": "^2.3",
  487. "orchestra/testbench": "^7.0|^8.0",
  488. "phpunit/phpunit": "^9.0|^10.0"
  489. },
  490. "type": "library",
  491. "autoload": {
  492. "psr-4": {
  493. "DanHarrin\\LivewireRateLimiting\\": "src"
  494. }
  495. },
  496. "notification-url": "https://packagist.org/downloads/",
  497. "license": [
  498. "MIT"
  499. ],
  500. "authors": [
  501. {
  502. "name": "Dan Harrin",
  503. "email": "dan@danharrin.com"
  504. }
  505. ],
  506. "description": "Apply rate limiters to Laravel Livewire actions.",
  507. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  508. "support": {
  509. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  510. "source": "https://github.com/danharrin/livewire-rate-limiting"
  511. },
  512. "funding": [
  513. {
  514. "url": "https://github.com/danharrin",
  515. "type": "github"
  516. }
  517. ],
  518. "time": "2023-03-12T12:17:29+00:00"
  519. },
  520. {
  521. "name": "dflydev/dot-access-data",
  522. "version": "v3.0.2",
  523. "source": {
  524. "type": "git",
  525. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  526. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  527. },
  528. "dist": {
  529. "type": "zip",
  530. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  531. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  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.2"
  592. },
  593. "time": "2022-10-27T11:44:00+00:00"
  594. },
  595. {
  596. "name": "doctrine/cache",
  597. "version": "2.2.0",
  598. "source": {
  599. "type": "git",
  600. "url": "https://github.com/doctrine/cache.git",
  601. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  602. },
  603. "dist": {
  604. "type": "zip",
  605. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  606. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  607. "shasum": ""
  608. },
  609. "require": {
  610. "php": "~7.1 || ^8.0"
  611. },
  612. "conflict": {
  613. "doctrine/common": ">2.2,<2.4"
  614. },
  615. "require-dev": {
  616. "cache/integration-tests": "dev-master",
  617. "doctrine/coding-standard": "^9",
  618. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  619. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  620. "symfony/cache": "^4.4 || ^5.4 || ^6",
  621. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  622. },
  623. "type": "library",
  624. "autoload": {
  625. "psr-4": {
  626. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  627. }
  628. },
  629. "notification-url": "https://packagist.org/downloads/",
  630. "license": [
  631. "MIT"
  632. ],
  633. "authors": [
  634. {
  635. "name": "Guilherme Blanco",
  636. "email": "guilhermeblanco@gmail.com"
  637. },
  638. {
  639. "name": "Roman Borschel",
  640. "email": "roman@code-factory.org"
  641. },
  642. {
  643. "name": "Benjamin Eberlei",
  644. "email": "kontakt@beberlei.de"
  645. },
  646. {
  647. "name": "Jonathan Wage",
  648. "email": "jonwage@gmail.com"
  649. },
  650. {
  651. "name": "Johannes Schmitt",
  652. "email": "schmittjoh@gmail.com"
  653. }
  654. ],
  655. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  656. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  657. "keywords": [
  658. "abstraction",
  659. "apcu",
  660. "cache",
  661. "caching",
  662. "couchdb",
  663. "memcached",
  664. "php",
  665. "redis",
  666. "xcache"
  667. ],
  668. "support": {
  669. "issues": "https://github.com/doctrine/cache/issues",
  670. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  671. },
  672. "funding": [
  673. {
  674. "url": "https://www.doctrine-project.org/sponsorship.html",
  675. "type": "custom"
  676. },
  677. {
  678. "url": "https://www.patreon.com/phpdoctrine",
  679. "type": "patreon"
  680. },
  681. {
  682. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  683. "type": "tidelift"
  684. }
  685. ],
  686. "time": "2022-05-20T20:07:39+00:00"
  687. },
  688. {
  689. "name": "doctrine/dbal",
  690. "version": "3.7.0",
  691. "source": {
  692. "type": "git",
  693. "url": "https://github.com/doctrine/dbal.git",
  694. "reference": "00d03067f07482f025d41ab55e4ba0db5eca2cdf"
  695. },
  696. "dist": {
  697. "type": "zip",
  698. "url": "https://api.github.com/repos/doctrine/dbal/zipball/00d03067f07482f025d41ab55e4ba0db5eca2cdf",
  699. "reference": "00d03067f07482f025d41ab55e4ba0db5eca2cdf",
  700. "shasum": ""
  701. },
  702. "require": {
  703. "composer-runtime-api": "^2",
  704. "doctrine/cache": "^1.11|^2.0",
  705. "doctrine/deprecations": "^0.5.3|^1",
  706. "doctrine/event-manager": "^1|^2",
  707. "php": "^7.4 || ^8.0",
  708. "psr/cache": "^1|^2|^3",
  709. "psr/log": "^1|^2|^3"
  710. },
  711. "require-dev": {
  712. "doctrine/coding-standard": "12.0.0",
  713. "fig/log-test": "^1",
  714. "jetbrains/phpstorm-stubs": "2023.1",
  715. "phpstan/phpstan": "1.10.35",
  716. "phpstan/phpstan-strict-rules": "^1.5",
  717. "phpunit/phpunit": "9.6.13",
  718. "psalm/plugin-phpunit": "0.18.4",
  719. "slevomat/coding-standard": "8.13.1",
  720. "squizlabs/php_codesniffer": "3.7.2",
  721. "symfony/cache": "^5.4|^6.0",
  722. "symfony/console": "^4.4|^5.4|^6.0",
  723. "vimeo/psalm": "4.30.0"
  724. },
  725. "suggest": {
  726. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  727. },
  728. "bin": [
  729. "bin/doctrine-dbal"
  730. ],
  731. "type": "library",
  732. "autoload": {
  733. "psr-4": {
  734. "Doctrine\\DBAL\\": "src"
  735. }
  736. },
  737. "notification-url": "https://packagist.org/downloads/",
  738. "license": [
  739. "MIT"
  740. ],
  741. "authors": [
  742. {
  743. "name": "Guilherme Blanco",
  744. "email": "guilhermeblanco@gmail.com"
  745. },
  746. {
  747. "name": "Roman Borschel",
  748. "email": "roman@code-factory.org"
  749. },
  750. {
  751. "name": "Benjamin Eberlei",
  752. "email": "kontakt@beberlei.de"
  753. },
  754. {
  755. "name": "Jonathan Wage",
  756. "email": "jonwage@gmail.com"
  757. }
  758. ],
  759. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  760. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  761. "keywords": [
  762. "abstraction",
  763. "database",
  764. "db2",
  765. "dbal",
  766. "mariadb",
  767. "mssql",
  768. "mysql",
  769. "oci8",
  770. "oracle",
  771. "pdo",
  772. "pgsql",
  773. "postgresql",
  774. "queryobject",
  775. "sasql",
  776. "sql",
  777. "sqlite",
  778. "sqlserver",
  779. "sqlsrv"
  780. ],
  781. "support": {
  782. "issues": "https://github.com/doctrine/dbal/issues",
  783. "source": "https://github.com/doctrine/dbal/tree/3.7.0"
  784. },
  785. "funding": [
  786. {
  787. "url": "https://www.doctrine-project.org/sponsorship.html",
  788. "type": "custom"
  789. },
  790. {
  791. "url": "https://www.patreon.com/phpdoctrine",
  792. "type": "patreon"
  793. },
  794. {
  795. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  796. "type": "tidelift"
  797. }
  798. ],
  799. "time": "2023-09-26T20:56:55+00:00"
  800. },
  801. {
  802. "name": "doctrine/deprecations",
  803. "version": "1.1.2",
  804. "source": {
  805. "type": "git",
  806. "url": "https://github.com/doctrine/deprecations.git",
  807. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931"
  808. },
  809. "dist": {
  810. "type": "zip",
  811. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  812. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  813. "shasum": ""
  814. },
  815. "require": {
  816. "php": "^7.1 || ^8.0"
  817. },
  818. "require-dev": {
  819. "doctrine/coding-standard": "^9",
  820. "phpstan/phpstan": "1.4.10 || 1.10.15",
  821. "phpstan/phpstan-phpunit": "^1.0",
  822. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  823. "psalm/plugin-phpunit": "0.18.4",
  824. "psr/log": "^1 || ^2 || ^3",
  825. "vimeo/psalm": "4.30.0 || 5.12.0"
  826. },
  827. "suggest": {
  828. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  829. },
  830. "type": "library",
  831. "autoload": {
  832. "psr-4": {
  833. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  834. }
  835. },
  836. "notification-url": "https://packagist.org/downloads/",
  837. "license": [
  838. "MIT"
  839. ],
  840. "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.",
  841. "homepage": "https://www.doctrine-project.org/",
  842. "support": {
  843. "issues": "https://github.com/doctrine/deprecations/issues",
  844. "source": "https://github.com/doctrine/deprecations/tree/1.1.2"
  845. },
  846. "time": "2023-09-27T20:04:15+00:00"
  847. },
  848. {
  849. "name": "doctrine/event-manager",
  850. "version": "2.0.0",
  851. "source": {
  852. "type": "git",
  853. "url": "https://github.com/doctrine/event-manager.git",
  854. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  855. },
  856. "dist": {
  857. "type": "zip",
  858. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  859. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  860. "shasum": ""
  861. },
  862. "require": {
  863. "php": "^8.1"
  864. },
  865. "conflict": {
  866. "doctrine/common": "<2.9"
  867. },
  868. "require-dev": {
  869. "doctrine/coding-standard": "^10",
  870. "phpstan/phpstan": "^1.8.8",
  871. "phpunit/phpunit": "^9.5",
  872. "vimeo/psalm": "^4.28"
  873. },
  874. "type": "library",
  875. "autoload": {
  876. "psr-4": {
  877. "Doctrine\\Common\\": "src"
  878. }
  879. },
  880. "notification-url": "https://packagist.org/downloads/",
  881. "license": [
  882. "MIT"
  883. ],
  884. "authors": [
  885. {
  886. "name": "Guilherme Blanco",
  887. "email": "guilhermeblanco@gmail.com"
  888. },
  889. {
  890. "name": "Roman Borschel",
  891. "email": "roman@code-factory.org"
  892. },
  893. {
  894. "name": "Benjamin Eberlei",
  895. "email": "kontakt@beberlei.de"
  896. },
  897. {
  898. "name": "Jonathan Wage",
  899. "email": "jonwage@gmail.com"
  900. },
  901. {
  902. "name": "Johannes Schmitt",
  903. "email": "schmittjoh@gmail.com"
  904. },
  905. {
  906. "name": "Marco Pivetta",
  907. "email": "ocramius@gmail.com"
  908. }
  909. ],
  910. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  911. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  912. "keywords": [
  913. "event",
  914. "event dispatcher",
  915. "event manager",
  916. "event system",
  917. "events"
  918. ],
  919. "support": {
  920. "issues": "https://github.com/doctrine/event-manager/issues",
  921. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  922. },
  923. "funding": [
  924. {
  925. "url": "https://www.doctrine-project.org/sponsorship.html",
  926. "type": "custom"
  927. },
  928. {
  929. "url": "https://www.patreon.com/phpdoctrine",
  930. "type": "patreon"
  931. },
  932. {
  933. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  934. "type": "tidelift"
  935. }
  936. ],
  937. "time": "2022-10-12T20:59:15+00:00"
  938. },
  939. {
  940. "name": "doctrine/inflector",
  941. "version": "2.0.8",
  942. "source": {
  943. "type": "git",
  944. "url": "https://github.com/doctrine/inflector.git",
  945. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  946. },
  947. "dist": {
  948. "type": "zip",
  949. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  950. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  951. "shasum": ""
  952. },
  953. "require": {
  954. "php": "^7.2 || ^8.0"
  955. },
  956. "require-dev": {
  957. "doctrine/coding-standard": "^11.0",
  958. "phpstan/phpstan": "^1.8",
  959. "phpstan/phpstan-phpunit": "^1.1",
  960. "phpstan/phpstan-strict-rules": "^1.3",
  961. "phpunit/phpunit": "^8.5 || ^9.5",
  962. "vimeo/psalm": "^4.25 || ^5.4"
  963. },
  964. "type": "library",
  965. "autoload": {
  966. "psr-4": {
  967. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  968. }
  969. },
  970. "notification-url": "https://packagist.org/downloads/",
  971. "license": [
  972. "MIT"
  973. ],
  974. "authors": [
  975. {
  976. "name": "Guilherme Blanco",
  977. "email": "guilhermeblanco@gmail.com"
  978. },
  979. {
  980. "name": "Roman Borschel",
  981. "email": "roman@code-factory.org"
  982. },
  983. {
  984. "name": "Benjamin Eberlei",
  985. "email": "kontakt@beberlei.de"
  986. },
  987. {
  988. "name": "Jonathan Wage",
  989. "email": "jonwage@gmail.com"
  990. },
  991. {
  992. "name": "Johannes Schmitt",
  993. "email": "schmittjoh@gmail.com"
  994. }
  995. ],
  996. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  997. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  998. "keywords": [
  999. "inflection",
  1000. "inflector",
  1001. "lowercase",
  1002. "manipulation",
  1003. "php",
  1004. "plural",
  1005. "singular",
  1006. "strings",
  1007. "uppercase",
  1008. "words"
  1009. ],
  1010. "support": {
  1011. "issues": "https://github.com/doctrine/inflector/issues",
  1012. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  1013. },
  1014. "funding": [
  1015. {
  1016. "url": "https://www.doctrine-project.org/sponsorship.html",
  1017. "type": "custom"
  1018. },
  1019. {
  1020. "url": "https://www.patreon.com/phpdoctrine",
  1021. "type": "patreon"
  1022. },
  1023. {
  1024. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1025. "type": "tidelift"
  1026. }
  1027. ],
  1028. "time": "2023-06-16T13:40:37+00:00"
  1029. },
  1030. {
  1031. "name": "doctrine/lexer",
  1032. "version": "3.0.0",
  1033. "source": {
  1034. "type": "git",
  1035. "url": "https://github.com/doctrine/lexer.git",
  1036. "reference": "84a527db05647743d50373e0ec53a152f2cde568"
  1037. },
  1038. "dist": {
  1039. "type": "zip",
  1040. "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568",
  1041. "reference": "84a527db05647743d50373e0ec53a152f2cde568",
  1042. "shasum": ""
  1043. },
  1044. "require": {
  1045. "php": "^8.1"
  1046. },
  1047. "require-dev": {
  1048. "doctrine/coding-standard": "^10",
  1049. "phpstan/phpstan": "^1.9",
  1050. "phpunit/phpunit": "^9.5",
  1051. "psalm/plugin-phpunit": "^0.18.3",
  1052. "vimeo/psalm": "^5.0"
  1053. },
  1054. "type": "library",
  1055. "autoload": {
  1056. "psr-4": {
  1057. "Doctrine\\Common\\Lexer\\": "src"
  1058. }
  1059. },
  1060. "notification-url": "https://packagist.org/downloads/",
  1061. "license": [
  1062. "MIT"
  1063. ],
  1064. "authors": [
  1065. {
  1066. "name": "Guilherme Blanco",
  1067. "email": "guilhermeblanco@gmail.com"
  1068. },
  1069. {
  1070. "name": "Roman Borschel",
  1071. "email": "roman@code-factory.org"
  1072. },
  1073. {
  1074. "name": "Johannes Schmitt",
  1075. "email": "schmittjoh@gmail.com"
  1076. }
  1077. ],
  1078. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1079. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1080. "keywords": [
  1081. "annotations",
  1082. "docblock",
  1083. "lexer",
  1084. "parser",
  1085. "php"
  1086. ],
  1087. "support": {
  1088. "issues": "https://github.com/doctrine/lexer/issues",
  1089. "source": "https://github.com/doctrine/lexer/tree/3.0.0"
  1090. },
  1091. "funding": [
  1092. {
  1093. "url": "https://www.doctrine-project.org/sponsorship.html",
  1094. "type": "custom"
  1095. },
  1096. {
  1097. "url": "https://www.patreon.com/phpdoctrine",
  1098. "type": "patreon"
  1099. },
  1100. {
  1101. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1102. "type": "tidelift"
  1103. }
  1104. ],
  1105. "time": "2022-12-15T16:57:16+00:00"
  1106. },
  1107. {
  1108. "name": "dragonmantank/cron-expression",
  1109. "version": "v3.3.3",
  1110. "source": {
  1111. "type": "git",
  1112. "url": "https://github.com/dragonmantank/cron-expression.git",
  1113. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  1114. },
  1115. "dist": {
  1116. "type": "zip",
  1117. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1118. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1119. "shasum": ""
  1120. },
  1121. "require": {
  1122. "php": "^7.2|^8.0",
  1123. "webmozart/assert": "^1.0"
  1124. },
  1125. "replace": {
  1126. "mtdowling/cron-expression": "^1.0"
  1127. },
  1128. "require-dev": {
  1129. "phpstan/extension-installer": "^1.0",
  1130. "phpstan/phpstan": "^1.0",
  1131. "phpstan/phpstan-webmozart-assert": "^1.0",
  1132. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1133. },
  1134. "type": "library",
  1135. "autoload": {
  1136. "psr-4": {
  1137. "Cron\\": "src/Cron/"
  1138. }
  1139. },
  1140. "notification-url": "https://packagist.org/downloads/",
  1141. "license": [
  1142. "MIT"
  1143. ],
  1144. "authors": [
  1145. {
  1146. "name": "Chris Tankersley",
  1147. "email": "chris@ctankersley.com",
  1148. "homepage": "https://github.com/dragonmantank"
  1149. }
  1150. ],
  1151. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1152. "keywords": [
  1153. "cron",
  1154. "schedule"
  1155. ],
  1156. "support": {
  1157. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1158. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1159. },
  1160. "funding": [
  1161. {
  1162. "url": "https://github.com/dragonmantank",
  1163. "type": "github"
  1164. }
  1165. ],
  1166. "time": "2023-08-10T19:36:49+00:00"
  1167. },
  1168. {
  1169. "name": "egulias/email-validator",
  1170. "version": "4.0.1",
  1171. "source": {
  1172. "type": "git",
  1173. "url": "https://github.com/egulias/EmailValidator.git",
  1174. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
  1175. },
  1176. "dist": {
  1177. "type": "zip",
  1178. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1179. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1180. "shasum": ""
  1181. },
  1182. "require": {
  1183. "doctrine/lexer": "^2.0 || ^3.0",
  1184. "php": ">=8.1",
  1185. "symfony/polyfill-intl-idn": "^1.26"
  1186. },
  1187. "require-dev": {
  1188. "phpunit/phpunit": "^9.5.27",
  1189. "vimeo/psalm": "^4.30"
  1190. },
  1191. "suggest": {
  1192. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1193. },
  1194. "type": "library",
  1195. "extra": {
  1196. "branch-alias": {
  1197. "dev-master": "4.0.x-dev"
  1198. }
  1199. },
  1200. "autoload": {
  1201. "psr-4": {
  1202. "Egulias\\EmailValidator\\": "src"
  1203. }
  1204. },
  1205. "notification-url": "https://packagist.org/downloads/",
  1206. "license": [
  1207. "MIT"
  1208. ],
  1209. "authors": [
  1210. {
  1211. "name": "Eduardo Gulias Davis"
  1212. }
  1213. ],
  1214. "description": "A library for validating emails against several RFCs",
  1215. "homepage": "https://github.com/egulias/EmailValidator",
  1216. "keywords": [
  1217. "email",
  1218. "emailvalidation",
  1219. "emailvalidator",
  1220. "validation",
  1221. "validator"
  1222. ],
  1223. "support": {
  1224. "issues": "https://github.com/egulias/EmailValidator/issues",
  1225. "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
  1226. },
  1227. "funding": [
  1228. {
  1229. "url": "https://github.com/egulias",
  1230. "type": "github"
  1231. }
  1232. ],
  1233. "time": "2023-01-14T14:17:03+00:00"
  1234. },
  1235. {
  1236. "name": "filament/actions",
  1237. "version": "v3.0.67",
  1238. "source": {
  1239. "type": "git",
  1240. "url": "https://github.com/filamentphp/actions.git",
  1241. "reference": "97359ba89a106be3a6b52f3a115b1ae39405f522"
  1242. },
  1243. "dist": {
  1244. "type": "zip",
  1245. "url": "https://api.github.com/repos/filamentphp/actions/zipball/97359ba89a106be3a6b52f3a115b1ae39405f522",
  1246. "reference": "97359ba89a106be3a6b52f3a115b1ae39405f522",
  1247. "shasum": ""
  1248. },
  1249. "require": {
  1250. "filament/forms": "self.version",
  1251. "filament/infolists": "self.version",
  1252. "filament/notifications": "self.version",
  1253. "filament/support": "self.version",
  1254. "illuminate/contracts": "^10.0",
  1255. "illuminate/database": "^10.0",
  1256. "illuminate/support": "^10.0",
  1257. "php": "^8.1",
  1258. "spatie/laravel-package-tools": "^1.9"
  1259. },
  1260. "type": "library",
  1261. "extra": {
  1262. "laravel": {
  1263. "providers": [
  1264. "Filament\\Actions\\ActionsServiceProvider"
  1265. ]
  1266. }
  1267. },
  1268. "autoload": {
  1269. "psr-4": {
  1270. "Filament\\Actions\\": "src"
  1271. }
  1272. },
  1273. "notification-url": "https://packagist.org/downloads/",
  1274. "license": [
  1275. "MIT"
  1276. ],
  1277. "description": "Easily add beautiful action modals to any Livewire component.",
  1278. "homepage": "https://github.com/filamentphp/filament",
  1279. "support": {
  1280. "issues": "https://github.com/filamentphp/filament/issues",
  1281. "source": "https://github.com/filamentphp/filament"
  1282. },
  1283. "time": "2023-10-03T18:16:36+00:00"
  1284. },
  1285. {
  1286. "name": "filament/filament",
  1287. "version": "v3.0.67",
  1288. "source": {
  1289. "type": "git",
  1290. "url": "https://github.com/filamentphp/panels.git",
  1291. "reference": "e79851f80b3a77bddc9ae6bf12c1d5791912fded"
  1292. },
  1293. "dist": {
  1294. "type": "zip",
  1295. "url": "https://api.github.com/repos/filamentphp/panels/zipball/e79851f80b3a77bddc9ae6bf12c1d5791912fded",
  1296. "reference": "e79851f80b3a77bddc9ae6bf12c1d5791912fded",
  1297. "shasum": ""
  1298. },
  1299. "require": {
  1300. "danharrin/livewire-rate-limiting": "^0.3|^1.0",
  1301. "filament/actions": "self.version",
  1302. "filament/forms": "self.version",
  1303. "filament/infolists": "self.version",
  1304. "filament/notifications": "self.version",
  1305. "filament/support": "self.version",
  1306. "filament/tables": "self.version",
  1307. "filament/widgets": "self.version",
  1308. "illuminate/auth": "^10.0",
  1309. "illuminate/console": "^10.0",
  1310. "illuminate/contracts": "^10.0",
  1311. "illuminate/cookie": "^10.0",
  1312. "illuminate/database": "^10.0",
  1313. "illuminate/http": "^10.0",
  1314. "illuminate/routing": "^10.0",
  1315. "illuminate/session": "^10.0",
  1316. "illuminate/support": "^10.0",
  1317. "illuminate/view": "^10.0",
  1318. "php": "^8.1",
  1319. "spatie/laravel-package-tools": "^1.9"
  1320. },
  1321. "type": "library",
  1322. "extra": {
  1323. "laravel": {
  1324. "providers": [
  1325. "Filament\\FilamentServiceProvider"
  1326. ]
  1327. }
  1328. },
  1329. "autoload": {
  1330. "files": [
  1331. "src/global_helpers.php",
  1332. "src/helpers.php"
  1333. ],
  1334. "psr-4": {
  1335. "Filament\\": "src"
  1336. }
  1337. },
  1338. "notification-url": "https://packagist.org/downloads/",
  1339. "license": [
  1340. "MIT"
  1341. ],
  1342. "description": "A collection of full-stack components for accelerated Laravel app development.",
  1343. "homepage": "https://github.com/filamentphp/filament",
  1344. "support": {
  1345. "issues": "https://github.com/filamentphp/filament/issues",
  1346. "source": "https://github.com/filamentphp/filament"
  1347. },
  1348. "time": "2023-10-03T19:14:42+00:00"
  1349. },
  1350. {
  1351. "name": "filament/forms",
  1352. "version": "v3.0.67",
  1353. "source": {
  1354. "type": "git",
  1355. "url": "https://github.com/filamentphp/forms.git",
  1356. "reference": "240d67b1209cff088ae3f61a2a0feacce1bd723c"
  1357. },
  1358. "dist": {
  1359. "type": "zip",
  1360. "url": "https://api.github.com/repos/filamentphp/forms/zipball/240d67b1209cff088ae3f61a2a0feacce1bd723c",
  1361. "reference": "240d67b1209cff088ae3f61a2a0feacce1bd723c",
  1362. "shasum": ""
  1363. },
  1364. "require": {
  1365. "danharrin/date-format-converter": "^0.3",
  1366. "filament/actions": "self.version",
  1367. "filament/support": "self.version",
  1368. "illuminate/console": "^10.0",
  1369. "illuminate/contracts": "^10.0",
  1370. "illuminate/database": "^10.0",
  1371. "illuminate/filesystem": "^10.0",
  1372. "illuminate/support": "^10.0",
  1373. "illuminate/validation": "^10.0",
  1374. "illuminate/view": "^10.0",
  1375. "php": "^8.1",
  1376. "spatie/laravel-package-tools": "^1.9"
  1377. },
  1378. "type": "library",
  1379. "extra": {
  1380. "laravel": {
  1381. "providers": [
  1382. "Filament\\Forms\\FormsServiceProvider"
  1383. ]
  1384. }
  1385. },
  1386. "autoload": {
  1387. "files": [
  1388. "src/helpers.php"
  1389. ],
  1390. "psr-4": {
  1391. "Filament\\Forms\\": "src"
  1392. }
  1393. },
  1394. "notification-url": "https://packagist.org/downloads/",
  1395. "license": [
  1396. "MIT"
  1397. ],
  1398. "description": "Easily add beautiful forms to any Livewire component.",
  1399. "homepage": "https://github.com/filamentphp/filament",
  1400. "support": {
  1401. "issues": "https://github.com/filamentphp/filament/issues",
  1402. "source": "https://github.com/filamentphp/filament"
  1403. },
  1404. "time": "2023-10-03T18:49:57+00:00"
  1405. },
  1406. {
  1407. "name": "filament/infolists",
  1408. "version": "v3.0.67",
  1409. "source": {
  1410. "type": "git",
  1411. "url": "https://github.com/filamentphp/infolists.git",
  1412. "reference": "fce869f93bbfbcd927222a5cca468c9d943dadbc"
  1413. },
  1414. "dist": {
  1415. "type": "zip",
  1416. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/fce869f93bbfbcd927222a5cca468c9d943dadbc",
  1417. "reference": "fce869f93bbfbcd927222a5cca468c9d943dadbc",
  1418. "shasum": ""
  1419. },
  1420. "require": {
  1421. "filament/actions": "self.version",
  1422. "filament/support": "self.version",
  1423. "illuminate/console": "^10.0",
  1424. "illuminate/contracts": "^10.0",
  1425. "illuminate/database": "^10.0",
  1426. "illuminate/filesystem": "^10.0",
  1427. "illuminate/support": "^10.0",
  1428. "illuminate/view": "^10.0",
  1429. "php": "^8.1",
  1430. "spatie/laravel-package-tools": "^1.9"
  1431. },
  1432. "type": "library",
  1433. "extra": {
  1434. "laravel": {
  1435. "providers": [
  1436. "Filament\\Infolists\\InfolistsServiceProvider"
  1437. ]
  1438. }
  1439. },
  1440. "autoload": {
  1441. "psr-4": {
  1442. "Filament\\Infolists\\": "src"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "description": "Easily add beautiful read-only infolists to any Livewire component.",
  1450. "homepage": "https://github.com/filamentphp/filament",
  1451. "support": {
  1452. "issues": "https://github.com/filamentphp/filament/issues",
  1453. "source": "https://github.com/filamentphp/filament"
  1454. },
  1455. "time": "2023-09-25T19:23:47+00:00"
  1456. },
  1457. {
  1458. "name": "filament/notifications",
  1459. "version": "v3.0.67",
  1460. "source": {
  1461. "type": "git",
  1462. "url": "https://github.com/filamentphp/notifications.git",
  1463. "reference": "489d3caff1e5b2dae46bd1cb926e2fe7567d1e8b"
  1464. },
  1465. "dist": {
  1466. "type": "zip",
  1467. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/489d3caff1e5b2dae46bd1cb926e2fe7567d1e8b",
  1468. "reference": "489d3caff1e5b2dae46bd1cb926e2fe7567d1e8b",
  1469. "shasum": ""
  1470. },
  1471. "require": {
  1472. "filament/actions": "self.version",
  1473. "filament/support": "self.version",
  1474. "illuminate/contracts": "^10.0",
  1475. "illuminate/filesystem": "^10.0",
  1476. "illuminate/notifications": "^10.0",
  1477. "illuminate/support": "^10.0",
  1478. "php": "^8.1",
  1479. "spatie/laravel-package-tools": "^1.9"
  1480. },
  1481. "type": "library",
  1482. "extra": {
  1483. "laravel": {
  1484. "providers": [
  1485. "Filament\\Notifications\\NotificationsServiceProvider"
  1486. ]
  1487. }
  1488. },
  1489. "autoload": {
  1490. "files": [
  1491. "src/Testing/Autoload.php"
  1492. ],
  1493. "psr-4": {
  1494. "Filament\\Notifications\\": "src"
  1495. }
  1496. },
  1497. "notification-url": "https://packagist.org/downloads/",
  1498. "license": [
  1499. "MIT"
  1500. ],
  1501. "description": "Easily add beautiful notifications to any Livewire app.",
  1502. "homepage": "https://github.com/filamentphp/filament",
  1503. "support": {
  1504. "issues": "https://github.com/filamentphp/filament/issues",
  1505. "source": "https://github.com/filamentphp/filament"
  1506. },
  1507. "time": "2023-10-03T18:16:40+00:00"
  1508. },
  1509. {
  1510. "name": "filament/spatie-laravel-tags-plugin",
  1511. "version": "v3.0.67",
  1512. "source": {
  1513. "type": "git",
  1514. "url": "https://github.com/filamentphp/spatie-laravel-tags-plugin.git",
  1515. "reference": "31e837c013071868d7b677f6e49b8f28f8aac55b"
  1516. },
  1517. "dist": {
  1518. "type": "zip",
  1519. "url": "https://api.github.com/repos/filamentphp/spatie-laravel-tags-plugin/zipball/31e837c013071868d7b677f6e49b8f28f8aac55b",
  1520. "reference": "31e837c013071868d7b677f6e49b8f28f8aac55b",
  1521. "shasum": ""
  1522. },
  1523. "require": {
  1524. "illuminate/database": "^10.0",
  1525. "php": "^8.1",
  1526. "spatie/laravel-tags": "^4.0"
  1527. },
  1528. "type": "library",
  1529. "autoload": {
  1530. "psr-4": {
  1531. "Filament\\": "src"
  1532. }
  1533. },
  1534. "notification-url": "https://packagist.org/downloads/",
  1535. "license": [
  1536. "MIT"
  1537. ],
  1538. "description": "Filament support for `spatie/laravel-tags`.",
  1539. "homepage": "https://github.com/filamentphp/filament",
  1540. "support": {
  1541. "issues": "https://github.com/filamentphp/filament/issues",
  1542. "source": "https://github.com/filamentphp/filament"
  1543. },
  1544. "time": "2023-09-12T22:49:52+00:00"
  1545. },
  1546. {
  1547. "name": "filament/support",
  1548. "version": "v3.0.67",
  1549. "source": {
  1550. "type": "git",
  1551. "url": "https://github.com/filamentphp/support.git",
  1552. "reference": "f619cef19853da30ce36688d96b014ca7d966579"
  1553. },
  1554. "dist": {
  1555. "type": "zip",
  1556. "url": "https://api.github.com/repos/filamentphp/support/zipball/f619cef19853da30ce36688d96b014ca7d966579",
  1557. "reference": "f619cef19853da30ce36688d96b014ca7d966579",
  1558. "shasum": ""
  1559. },
  1560. "require": {
  1561. "blade-ui-kit/blade-heroicons": "^2.0",
  1562. "doctrine/dbal": "^3.2",
  1563. "ext-intl": "*",
  1564. "illuminate/contracts": "^10.0",
  1565. "illuminate/support": "^10.0",
  1566. "illuminate/view": "^10.0",
  1567. "livewire/livewire": "^3.0",
  1568. "php": "^8.1",
  1569. "ryangjchandler/blade-capture-directive": "^0.2|^0.3",
  1570. "spatie/color": "^1.5",
  1571. "spatie/invade": "^1.0",
  1572. "spatie/laravel-package-tools": "^1.9",
  1573. "symfony/html-sanitizer": "^6.1"
  1574. },
  1575. "type": "library",
  1576. "extra": {
  1577. "laravel": {
  1578. "providers": [
  1579. "Filament\\Support\\SupportServiceProvider"
  1580. ]
  1581. }
  1582. },
  1583. "autoload": {
  1584. "files": [
  1585. "src/helpers.php"
  1586. ],
  1587. "psr-4": {
  1588. "Filament\\Support\\": "src"
  1589. }
  1590. },
  1591. "notification-url": "https://packagist.org/downloads/",
  1592. "license": [
  1593. "MIT"
  1594. ],
  1595. "description": "Core helper methods and foundation code for all Filament packages.",
  1596. "homepage": "https://github.com/filamentphp/filament",
  1597. "support": {
  1598. "issues": "https://github.com/filamentphp/filament/issues",
  1599. "source": "https://github.com/filamentphp/filament"
  1600. },
  1601. "time": "2023-10-03T18:16:49+00:00"
  1602. },
  1603. {
  1604. "name": "filament/tables",
  1605. "version": "v3.0.67",
  1606. "source": {
  1607. "type": "git",
  1608. "url": "https://github.com/filamentphp/tables.git",
  1609. "reference": "f8a27a8278e5c165cc352ab776f46fab0f04e974"
  1610. },
  1611. "dist": {
  1612. "type": "zip",
  1613. "url": "https://api.github.com/repos/filamentphp/tables/zipball/f8a27a8278e5c165cc352ab776f46fab0f04e974",
  1614. "reference": "f8a27a8278e5c165cc352ab776f46fab0f04e974",
  1615. "shasum": ""
  1616. },
  1617. "require": {
  1618. "filament/actions": "self.version",
  1619. "filament/forms": "self.version",
  1620. "filament/support": "self.version",
  1621. "illuminate/console": "^10.0",
  1622. "illuminate/contracts": "^10.0",
  1623. "illuminate/database": "^10.0",
  1624. "illuminate/filesystem": "^10.0",
  1625. "illuminate/support": "^10.0",
  1626. "illuminate/view": "^10.0",
  1627. "kirschbaum-development/eloquent-power-joins": "^3.0",
  1628. "php": "^8.1",
  1629. "spatie/laravel-package-tools": "^1.9"
  1630. },
  1631. "type": "library",
  1632. "extra": {
  1633. "laravel": {
  1634. "providers": [
  1635. "Filament\\Tables\\TablesServiceProvider"
  1636. ]
  1637. }
  1638. },
  1639. "autoload": {
  1640. "psr-4": {
  1641. "Filament\\Tables\\": "src"
  1642. }
  1643. },
  1644. "notification-url": "https://packagist.org/downloads/",
  1645. "license": [
  1646. "MIT"
  1647. ],
  1648. "description": "Easily add beautiful tables to any Livewire component.",
  1649. "homepage": "https://github.com/filamentphp/filament",
  1650. "support": {
  1651. "issues": "https://github.com/filamentphp/filament/issues",
  1652. "source": "https://github.com/filamentphp/filament"
  1653. },
  1654. "time": "2023-10-03T18:50:12+00:00"
  1655. },
  1656. {
  1657. "name": "filament/widgets",
  1658. "version": "v3.0.67",
  1659. "source": {
  1660. "type": "git",
  1661. "url": "https://github.com/filamentphp/widgets.git",
  1662. "reference": "39ecca54898f10491330e239b5e56571d09eae99"
  1663. },
  1664. "dist": {
  1665. "type": "zip",
  1666. "url": "https://api.github.com/repos/filamentphp/widgets/zipball/39ecca54898f10491330e239b5e56571d09eae99",
  1667. "reference": "39ecca54898f10491330e239b5e56571d09eae99",
  1668. "shasum": ""
  1669. },
  1670. "require": {
  1671. "filament/support": "self.version",
  1672. "php": "^8.1",
  1673. "spatie/laravel-package-tools": "^1.9"
  1674. },
  1675. "type": "library",
  1676. "extra": {
  1677. "laravel": {
  1678. "providers": [
  1679. "Filament\\Widgets\\WidgetsServiceProvider"
  1680. ]
  1681. }
  1682. },
  1683. "autoload": {
  1684. "psr-4": {
  1685. "Filament\\Widgets\\": "src"
  1686. }
  1687. },
  1688. "notification-url": "https://packagist.org/downloads/",
  1689. "license": [
  1690. "MIT"
  1691. ],
  1692. "description": "Easily add beautiful dashboard widgets to any Livewire component.",
  1693. "homepage": "https://github.com/filamentphp/filament",
  1694. "support": {
  1695. "issues": "https://github.com/filamentphp/filament/issues",
  1696. "source": "https://github.com/filamentphp/filament"
  1697. },
  1698. "time": "2023-10-03T18:16:53+00:00"
  1699. },
  1700. {
  1701. "name": "fruitcake/php-cors",
  1702. "version": "v1.2.0",
  1703. "source": {
  1704. "type": "git",
  1705. "url": "https://github.com/fruitcake/php-cors.git",
  1706. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  1707. },
  1708. "dist": {
  1709. "type": "zip",
  1710. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1711. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1712. "shasum": ""
  1713. },
  1714. "require": {
  1715. "php": "^7.4|^8.0",
  1716. "symfony/http-foundation": "^4.4|^5.4|^6"
  1717. },
  1718. "require-dev": {
  1719. "phpstan/phpstan": "^1.4",
  1720. "phpunit/phpunit": "^9",
  1721. "squizlabs/php_codesniffer": "^3.5"
  1722. },
  1723. "type": "library",
  1724. "extra": {
  1725. "branch-alias": {
  1726. "dev-main": "1.1-dev"
  1727. }
  1728. },
  1729. "autoload": {
  1730. "psr-4": {
  1731. "Fruitcake\\Cors\\": "src/"
  1732. }
  1733. },
  1734. "notification-url": "https://packagist.org/downloads/",
  1735. "license": [
  1736. "MIT"
  1737. ],
  1738. "authors": [
  1739. {
  1740. "name": "Fruitcake",
  1741. "homepage": "https://fruitcake.nl"
  1742. },
  1743. {
  1744. "name": "Barryvdh",
  1745. "email": "barryvdh@gmail.com"
  1746. }
  1747. ],
  1748. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1749. "homepage": "https://github.com/fruitcake/php-cors",
  1750. "keywords": [
  1751. "cors",
  1752. "laravel",
  1753. "symfony"
  1754. ],
  1755. "support": {
  1756. "issues": "https://github.com/fruitcake/php-cors/issues",
  1757. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  1758. },
  1759. "funding": [
  1760. {
  1761. "url": "https://fruitcake.nl",
  1762. "type": "custom"
  1763. },
  1764. {
  1765. "url": "https://github.com/barryvdh",
  1766. "type": "github"
  1767. }
  1768. ],
  1769. "time": "2022-02-20T15:07:15+00:00"
  1770. },
  1771. {
  1772. "name": "graham-campbell/result-type",
  1773. "version": "v1.1.1",
  1774. "source": {
  1775. "type": "git",
  1776. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1777. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
  1778. },
  1779. "dist": {
  1780. "type": "zip",
  1781. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1782. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1783. "shasum": ""
  1784. },
  1785. "require": {
  1786. "php": "^7.2.5 || ^8.0",
  1787. "phpoption/phpoption": "^1.9.1"
  1788. },
  1789. "require-dev": {
  1790. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  1791. },
  1792. "type": "library",
  1793. "autoload": {
  1794. "psr-4": {
  1795. "GrahamCampbell\\ResultType\\": "src/"
  1796. }
  1797. },
  1798. "notification-url": "https://packagist.org/downloads/",
  1799. "license": [
  1800. "MIT"
  1801. ],
  1802. "authors": [
  1803. {
  1804. "name": "Graham Campbell",
  1805. "email": "hello@gjcampbell.co.uk",
  1806. "homepage": "https://github.com/GrahamCampbell"
  1807. }
  1808. ],
  1809. "description": "An Implementation Of The Result Type",
  1810. "keywords": [
  1811. "Graham Campbell",
  1812. "GrahamCampbell",
  1813. "Result Type",
  1814. "Result-Type",
  1815. "result"
  1816. ],
  1817. "support": {
  1818. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1819. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1"
  1820. },
  1821. "funding": [
  1822. {
  1823. "url": "https://github.com/GrahamCampbell",
  1824. "type": "github"
  1825. },
  1826. {
  1827. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1828. "type": "tidelift"
  1829. }
  1830. ],
  1831. "time": "2023-02-25T20:23:15+00:00"
  1832. },
  1833. {
  1834. "name": "guzzlehttp/guzzle",
  1835. "version": "7.8.0",
  1836. "source": {
  1837. "type": "git",
  1838. "url": "https://github.com/guzzle/guzzle.git",
  1839. "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9"
  1840. },
  1841. "dist": {
  1842. "type": "zip",
  1843. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1110f66a6530a40fe7aea0378fe608ee2b2248f9",
  1844. "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9",
  1845. "shasum": ""
  1846. },
  1847. "require": {
  1848. "ext-json": "*",
  1849. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  1850. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1851. "php": "^7.2.5 || ^8.0",
  1852. "psr/http-client": "^1.0",
  1853. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1854. },
  1855. "provide": {
  1856. "psr/http-client-implementation": "1.0"
  1857. },
  1858. "require-dev": {
  1859. "bamarni/composer-bin-plugin": "^1.8.1",
  1860. "ext-curl": "*",
  1861. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  1862. "php-http/message-factory": "^1.1",
  1863. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  1864. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1865. },
  1866. "suggest": {
  1867. "ext-curl": "Required for CURL handler support",
  1868. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1869. "psr/log": "Required for using the Log middleware"
  1870. },
  1871. "type": "library",
  1872. "extra": {
  1873. "bamarni-bin": {
  1874. "bin-links": true,
  1875. "forward-command": false
  1876. }
  1877. },
  1878. "autoload": {
  1879. "files": [
  1880. "src/functions_include.php"
  1881. ],
  1882. "psr-4": {
  1883. "GuzzleHttp\\": "src/"
  1884. }
  1885. },
  1886. "notification-url": "https://packagist.org/downloads/",
  1887. "license": [
  1888. "MIT"
  1889. ],
  1890. "authors": [
  1891. {
  1892. "name": "Graham Campbell",
  1893. "email": "hello@gjcampbell.co.uk",
  1894. "homepage": "https://github.com/GrahamCampbell"
  1895. },
  1896. {
  1897. "name": "Michael Dowling",
  1898. "email": "mtdowling@gmail.com",
  1899. "homepage": "https://github.com/mtdowling"
  1900. },
  1901. {
  1902. "name": "Jeremy Lindblom",
  1903. "email": "jeremeamia@gmail.com",
  1904. "homepage": "https://github.com/jeremeamia"
  1905. },
  1906. {
  1907. "name": "George Mponos",
  1908. "email": "gmponos@gmail.com",
  1909. "homepage": "https://github.com/gmponos"
  1910. },
  1911. {
  1912. "name": "Tobias Nyholm",
  1913. "email": "tobias.nyholm@gmail.com",
  1914. "homepage": "https://github.com/Nyholm"
  1915. },
  1916. {
  1917. "name": "Márk Sági-Kazár",
  1918. "email": "mark.sagikazar@gmail.com",
  1919. "homepage": "https://github.com/sagikazarmark"
  1920. },
  1921. {
  1922. "name": "Tobias Schultze",
  1923. "email": "webmaster@tubo-world.de",
  1924. "homepage": "https://github.com/Tobion"
  1925. }
  1926. ],
  1927. "description": "Guzzle is a PHP HTTP client library",
  1928. "keywords": [
  1929. "client",
  1930. "curl",
  1931. "framework",
  1932. "http",
  1933. "http client",
  1934. "psr-18",
  1935. "psr-7",
  1936. "rest",
  1937. "web service"
  1938. ],
  1939. "support": {
  1940. "issues": "https://github.com/guzzle/guzzle/issues",
  1941. "source": "https://github.com/guzzle/guzzle/tree/7.8.0"
  1942. },
  1943. "funding": [
  1944. {
  1945. "url": "https://github.com/GrahamCampbell",
  1946. "type": "github"
  1947. },
  1948. {
  1949. "url": "https://github.com/Nyholm",
  1950. "type": "github"
  1951. },
  1952. {
  1953. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1954. "type": "tidelift"
  1955. }
  1956. ],
  1957. "time": "2023-08-27T10:20:53+00:00"
  1958. },
  1959. {
  1960. "name": "guzzlehttp/promises",
  1961. "version": "2.0.1",
  1962. "source": {
  1963. "type": "git",
  1964. "url": "https://github.com/guzzle/promises.git",
  1965. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  1966. },
  1967. "dist": {
  1968. "type": "zip",
  1969. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  1970. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  1971. "shasum": ""
  1972. },
  1973. "require": {
  1974. "php": "^7.2.5 || ^8.0"
  1975. },
  1976. "require-dev": {
  1977. "bamarni/composer-bin-plugin": "^1.8.1",
  1978. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1979. },
  1980. "type": "library",
  1981. "extra": {
  1982. "bamarni-bin": {
  1983. "bin-links": true,
  1984. "forward-command": false
  1985. }
  1986. },
  1987. "autoload": {
  1988. "psr-4": {
  1989. "GuzzleHttp\\Promise\\": "src/"
  1990. }
  1991. },
  1992. "notification-url": "https://packagist.org/downloads/",
  1993. "license": [
  1994. "MIT"
  1995. ],
  1996. "authors": [
  1997. {
  1998. "name": "Graham Campbell",
  1999. "email": "hello@gjcampbell.co.uk",
  2000. "homepage": "https://github.com/GrahamCampbell"
  2001. },
  2002. {
  2003. "name": "Michael Dowling",
  2004. "email": "mtdowling@gmail.com",
  2005. "homepage": "https://github.com/mtdowling"
  2006. },
  2007. {
  2008. "name": "Tobias Nyholm",
  2009. "email": "tobias.nyholm@gmail.com",
  2010. "homepage": "https://github.com/Nyholm"
  2011. },
  2012. {
  2013. "name": "Tobias Schultze",
  2014. "email": "webmaster@tubo-world.de",
  2015. "homepage": "https://github.com/Tobion"
  2016. }
  2017. ],
  2018. "description": "Guzzle promises library",
  2019. "keywords": [
  2020. "promise"
  2021. ],
  2022. "support": {
  2023. "issues": "https://github.com/guzzle/promises/issues",
  2024. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  2025. },
  2026. "funding": [
  2027. {
  2028. "url": "https://github.com/GrahamCampbell",
  2029. "type": "github"
  2030. },
  2031. {
  2032. "url": "https://github.com/Nyholm",
  2033. "type": "github"
  2034. },
  2035. {
  2036. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2037. "type": "tidelift"
  2038. }
  2039. ],
  2040. "time": "2023-08-03T15:11:55+00:00"
  2041. },
  2042. {
  2043. "name": "guzzlehttp/psr7",
  2044. "version": "2.6.1",
  2045. "source": {
  2046. "type": "git",
  2047. "url": "https://github.com/guzzle/psr7.git",
  2048. "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727"
  2049. },
  2050. "dist": {
  2051. "type": "zip",
  2052. "url": "https://api.github.com/repos/guzzle/psr7/zipball/be45764272e8873c72dbe3d2edcfdfcc3bc9f727",
  2053. "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727",
  2054. "shasum": ""
  2055. },
  2056. "require": {
  2057. "php": "^7.2.5 || ^8.0",
  2058. "psr/http-factory": "^1.0",
  2059. "psr/http-message": "^1.1 || ^2.0",
  2060. "ralouphie/getallheaders": "^3.0"
  2061. },
  2062. "provide": {
  2063. "psr/http-factory-implementation": "1.0",
  2064. "psr/http-message-implementation": "1.0"
  2065. },
  2066. "require-dev": {
  2067. "bamarni/composer-bin-plugin": "^1.8.1",
  2068. "http-interop/http-factory-tests": "^0.9",
  2069. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  2070. },
  2071. "suggest": {
  2072. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2073. },
  2074. "type": "library",
  2075. "extra": {
  2076. "bamarni-bin": {
  2077. "bin-links": true,
  2078. "forward-command": false
  2079. }
  2080. },
  2081. "autoload": {
  2082. "psr-4": {
  2083. "GuzzleHttp\\Psr7\\": "src/"
  2084. }
  2085. },
  2086. "notification-url": "https://packagist.org/downloads/",
  2087. "license": [
  2088. "MIT"
  2089. ],
  2090. "authors": [
  2091. {
  2092. "name": "Graham Campbell",
  2093. "email": "hello@gjcampbell.co.uk",
  2094. "homepage": "https://github.com/GrahamCampbell"
  2095. },
  2096. {
  2097. "name": "Michael Dowling",
  2098. "email": "mtdowling@gmail.com",
  2099. "homepage": "https://github.com/mtdowling"
  2100. },
  2101. {
  2102. "name": "George Mponos",
  2103. "email": "gmponos@gmail.com",
  2104. "homepage": "https://github.com/gmponos"
  2105. },
  2106. {
  2107. "name": "Tobias Nyholm",
  2108. "email": "tobias.nyholm@gmail.com",
  2109. "homepage": "https://github.com/Nyholm"
  2110. },
  2111. {
  2112. "name": "Márk Sági-Kazár",
  2113. "email": "mark.sagikazar@gmail.com",
  2114. "homepage": "https://github.com/sagikazarmark"
  2115. },
  2116. {
  2117. "name": "Tobias Schultze",
  2118. "email": "webmaster@tubo-world.de",
  2119. "homepage": "https://github.com/Tobion"
  2120. },
  2121. {
  2122. "name": "Márk Sági-Kazár",
  2123. "email": "mark.sagikazar@gmail.com",
  2124. "homepage": "https://sagikazarmark.hu"
  2125. }
  2126. ],
  2127. "description": "PSR-7 message implementation that also provides common utility methods",
  2128. "keywords": [
  2129. "http",
  2130. "message",
  2131. "psr-7",
  2132. "request",
  2133. "response",
  2134. "stream",
  2135. "uri",
  2136. "url"
  2137. ],
  2138. "support": {
  2139. "issues": "https://github.com/guzzle/psr7/issues",
  2140. "source": "https://github.com/guzzle/psr7/tree/2.6.1"
  2141. },
  2142. "funding": [
  2143. {
  2144. "url": "https://github.com/GrahamCampbell",
  2145. "type": "github"
  2146. },
  2147. {
  2148. "url": "https://github.com/Nyholm",
  2149. "type": "github"
  2150. },
  2151. {
  2152. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2153. "type": "tidelift"
  2154. }
  2155. ],
  2156. "time": "2023-08-27T10:13:57+00:00"
  2157. },
  2158. {
  2159. "name": "guzzlehttp/uri-template",
  2160. "version": "v1.0.2",
  2161. "source": {
  2162. "type": "git",
  2163. "url": "https://github.com/guzzle/uri-template.git",
  2164. "reference": "61bf437fc2197f587f6857d3ff903a24f1731b5d"
  2165. },
  2166. "dist": {
  2167. "type": "zip",
  2168. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/61bf437fc2197f587f6857d3ff903a24f1731b5d",
  2169. "reference": "61bf437fc2197f587f6857d3ff903a24f1731b5d",
  2170. "shasum": ""
  2171. },
  2172. "require": {
  2173. "php": "^7.2.5 || ^8.0",
  2174. "symfony/polyfill-php80": "^1.17"
  2175. },
  2176. "require-dev": {
  2177. "bamarni/composer-bin-plugin": "^1.8.1",
  2178. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  2179. "uri-template/tests": "1.0.0"
  2180. },
  2181. "type": "library",
  2182. "autoload": {
  2183. "psr-4": {
  2184. "GuzzleHttp\\UriTemplate\\": "src"
  2185. }
  2186. },
  2187. "notification-url": "https://packagist.org/downloads/",
  2188. "license": [
  2189. "MIT"
  2190. ],
  2191. "authors": [
  2192. {
  2193. "name": "Graham Campbell",
  2194. "email": "hello@gjcampbell.co.uk",
  2195. "homepage": "https://github.com/GrahamCampbell"
  2196. },
  2197. {
  2198. "name": "Michael Dowling",
  2199. "email": "mtdowling@gmail.com",
  2200. "homepage": "https://github.com/mtdowling"
  2201. },
  2202. {
  2203. "name": "George Mponos",
  2204. "email": "gmponos@gmail.com",
  2205. "homepage": "https://github.com/gmponos"
  2206. },
  2207. {
  2208. "name": "Tobias Nyholm",
  2209. "email": "tobias.nyholm@gmail.com",
  2210. "homepage": "https://github.com/Nyholm"
  2211. }
  2212. ],
  2213. "description": "A polyfill class for uri_template of PHP",
  2214. "keywords": [
  2215. "guzzlehttp",
  2216. "uri-template"
  2217. ],
  2218. "support": {
  2219. "issues": "https://github.com/guzzle/uri-template/issues",
  2220. "source": "https://github.com/guzzle/uri-template/tree/v1.0.2"
  2221. },
  2222. "funding": [
  2223. {
  2224. "url": "https://github.com/GrahamCampbell",
  2225. "type": "github"
  2226. },
  2227. {
  2228. "url": "https://github.com/Nyholm",
  2229. "type": "github"
  2230. },
  2231. {
  2232. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2233. "type": "tidelift"
  2234. }
  2235. ],
  2236. "time": "2023-08-27T10:19:19+00:00"
  2237. },
  2238. {
  2239. "name": "kirschbaum-development/eloquent-power-joins",
  2240. "version": "3.2.4",
  2241. "source": {
  2242. "type": "git",
  2243. "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
  2244. "reference": "fadc20d436b0693a34c4b611d07954818e46eb4d"
  2245. },
  2246. "dist": {
  2247. "type": "zip",
  2248. "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/fadc20d436b0693a34c4b611d07954818e46eb4d",
  2249. "reference": "fadc20d436b0693a34c4b611d07954818e46eb4d",
  2250. "shasum": ""
  2251. },
  2252. "require": {
  2253. "illuminate/database": "^8.0|^9.0|^10.0",
  2254. "illuminate/support": "^8.0|^9.0|^10.0",
  2255. "php": "^8.0"
  2256. },
  2257. "require-dev": {
  2258. "laravel/legacy-factories": "^1.0@dev",
  2259. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
  2260. "phpunit/phpunit": "^8.0|^9.0"
  2261. },
  2262. "type": "library",
  2263. "extra": {
  2264. "laravel": {
  2265. "providers": [
  2266. "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider"
  2267. ]
  2268. }
  2269. },
  2270. "autoload": {
  2271. "psr-4": {
  2272. "Kirschbaum\\PowerJoins\\": "src"
  2273. }
  2274. },
  2275. "notification-url": "https://packagist.org/downloads/",
  2276. "license": [
  2277. "MIT"
  2278. ],
  2279. "authors": [
  2280. {
  2281. "name": "Luis Dalmolin",
  2282. "email": "luis.nh@gmail.com",
  2283. "role": "Developer"
  2284. }
  2285. ],
  2286. "description": "The Laravel magic applied to joins.",
  2287. "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins",
  2288. "keywords": [
  2289. "eloquent",
  2290. "join",
  2291. "laravel",
  2292. "mysql"
  2293. ],
  2294. "support": {
  2295. "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
  2296. "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/3.2.4"
  2297. },
  2298. "time": "2023-09-12T17:02:05+00:00"
  2299. },
  2300. {
  2301. "name": "laravel/framework",
  2302. "version": "v10.26.2",
  2303. "source": {
  2304. "type": "git",
  2305. "url": "https://github.com/laravel/framework.git",
  2306. "reference": "6e5440f7c518f26b4495e5d7e4796ec239e26df9"
  2307. },
  2308. "dist": {
  2309. "type": "zip",
  2310. "url": "https://api.github.com/repos/laravel/framework/zipball/6e5440f7c518f26b4495e5d7e4796ec239e26df9",
  2311. "reference": "6e5440f7c518f26b4495e5d7e4796ec239e26df9",
  2312. "shasum": ""
  2313. },
  2314. "require": {
  2315. "brick/math": "^0.9.3|^0.10.2|^0.11",
  2316. "composer-runtime-api": "^2.2",
  2317. "doctrine/inflector": "^2.0.5",
  2318. "dragonmantank/cron-expression": "^3.3.2",
  2319. "egulias/email-validator": "^3.2.1|^4.0",
  2320. "ext-ctype": "*",
  2321. "ext-filter": "*",
  2322. "ext-hash": "*",
  2323. "ext-mbstring": "*",
  2324. "ext-openssl": "*",
  2325. "ext-session": "*",
  2326. "ext-tokenizer": "*",
  2327. "fruitcake/php-cors": "^1.2",
  2328. "guzzlehttp/uri-template": "^1.0",
  2329. "laravel/prompts": "^0.1.9",
  2330. "laravel/serializable-closure": "^1.3",
  2331. "league/commonmark": "^2.2.1",
  2332. "league/flysystem": "^3.8.0",
  2333. "monolog/monolog": "^3.0",
  2334. "nesbot/carbon": "^2.67",
  2335. "nunomaduro/termwind": "^1.13",
  2336. "php": "^8.1",
  2337. "psr/container": "^1.1.1|^2.0.1",
  2338. "psr/log": "^1.0|^2.0|^3.0",
  2339. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2340. "ramsey/uuid": "^4.7",
  2341. "symfony/console": "^6.2",
  2342. "symfony/error-handler": "^6.2",
  2343. "symfony/finder": "^6.2",
  2344. "symfony/http-foundation": "^6.2",
  2345. "symfony/http-kernel": "^6.2",
  2346. "symfony/mailer": "^6.2",
  2347. "symfony/mime": "^6.2",
  2348. "symfony/process": "^6.2",
  2349. "symfony/routing": "^6.2",
  2350. "symfony/uid": "^6.2",
  2351. "symfony/var-dumper": "^6.2",
  2352. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  2353. "vlucas/phpdotenv": "^5.4.1",
  2354. "voku/portable-ascii": "^2.0"
  2355. },
  2356. "conflict": {
  2357. "tightenco/collect": "<5.5.33"
  2358. },
  2359. "provide": {
  2360. "psr/container-implementation": "1.1|2.0",
  2361. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2362. },
  2363. "replace": {
  2364. "illuminate/auth": "self.version",
  2365. "illuminate/broadcasting": "self.version",
  2366. "illuminate/bus": "self.version",
  2367. "illuminate/cache": "self.version",
  2368. "illuminate/collections": "self.version",
  2369. "illuminate/conditionable": "self.version",
  2370. "illuminate/config": "self.version",
  2371. "illuminate/console": "self.version",
  2372. "illuminate/container": "self.version",
  2373. "illuminate/contracts": "self.version",
  2374. "illuminate/cookie": "self.version",
  2375. "illuminate/database": "self.version",
  2376. "illuminate/encryption": "self.version",
  2377. "illuminate/events": "self.version",
  2378. "illuminate/filesystem": "self.version",
  2379. "illuminate/hashing": "self.version",
  2380. "illuminate/http": "self.version",
  2381. "illuminate/log": "self.version",
  2382. "illuminate/macroable": "self.version",
  2383. "illuminate/mail": "self.version",
  2384. "illuminate/notifications": "self.version",
  2385. "illuminate/pagination": "self.version",
  2386. "illuminate/pipeline": "self.version",
  2387. "illuminate/process": "self.version",
  2388. "illuminate/queue": "self.version",
  2389. "illuminate/redis": "self.version",
  2390. "illuminate/routing": "self.version",
  2391. "illuminate/session": "self.version",
  2392. "illuminate/support": "self.version",
  2393. "illuminate/testing": "self.version",
  2394. "illuminate/translation": "self.version",
  2395. "illuminate/validation": "self.version",
  2396. "illuminate/view": "self.version"
  2397. },
  2398. "require-dev": {
  2399. "ably/ably-php": "^1.0",
  2400. "aws/aws-sdk-php": "^3.235.5",
  2401. "doctrine/dbal": "^3.5.1",
  2402. "ext-gmp": "*",
  2403. "fakerphp/faker": "^1.21",
  2404. "guzzlehttp/guzzle": "^7.5",
  2405. "league/flysystem-aws-s3-v3": "^3.0",
  2406. "league/flysystem-ftp": "^3.0",
  2407. "league/flysystem-path-prefixing": "^3.3",
  2408. "league/flysystem-read-only": "^3.3",
  2409. "league/flysystem-sftp-v3": "^3.0",
  2410. "mockery/mockery": "^1.5.1",
  2411. "orchestra/testbench-core": "^8.12",
  2412. "pda/pheanstalk": "^4.0",
  2413. "phpstan/phpstan": "^1.4.7",
  2414. "phpunit/phpunit": "^10.0.7",
  2415. "predis/predis": "^2.0.2",
  2416. "symfony/cache": "^6.2",
  2417. "symfony/http-client": "^6.2.4"
  2418. },
  2419. "suggest": {
  2420. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2421. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  2422. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2423. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).",
  2424. "ext-apcu": "Required to use the APC cache driver.",
  2425. "ext-fileinfo": "Required to use the Filesystem class.",
  2426. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2427. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2428. "ext-memcached": "Required to use the memcache cache driver.",
  2429. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2430. "ext-pdo": "Required to use all database features.",
  2431. "ext-posix": "Required to use all features of the queue worker.",
  2432. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2433. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2434. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2435. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  2436. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2437. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  2438. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  2439. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  2440. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  2441. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  2442. "mockery/mockery": "Required to use mocking (^1.5.1).",
  2443. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2444. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2445. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).",
  2446. "predis/predis": "Required to use the predis connector (^2.0.2).",
  2447. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2448. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2449. "symfony/cache": "Required to PSR-6 cache bridge (^6.2).",
  2450. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).",
  2451. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.2).",
  2452. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).",
  2453. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2).",
  2454. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  2455. },
  2456. "type": "library",
  2457. "extra": {
  2458. "branch-alias": {
  2459. "dev-master": "10.x-dev"
  2460. }
  2461. },
  2462. "autoload": {
  2463. "files": [
  2464. "src/Illuminate/Collections/helpers.php",
  2465. "src/Illuminate/Events/functions.php",
  2466. "src/Illuminate/Foundation/helpers.php",
  2467. "src/Illuminate/Support/helpers.php"
  2468. ],
  2469. "psr-4": {
  2470. "Illuminate\\": "src/Illuminate/",
  2471. "Illuminate\\Support\\": [
  2472. "src/Illuminate/Macroable/",
  2473. "src/Illuminate/Collections/",
  2474. "src/Illuminate/Conditionable/"
  2475. ]
  2476. }
  2477. },
  2478. "notification-url": "https://packagist.org/downloads/",
  2479. "license": [
  2480. "MIT"
  2481. ],
  2482. "authors": [
  2483. {
  2484. "name": "Taylor Otwell",
  2485. "email": "taylor@laravel.com"
  2486. }
  2487. ],
  2488. "description": "The Laravel Framework.",
  2489. "homepage": "https://laravel.com",
  2490. "keywords": [
  2491. "framework",
  2492. "laravel"
  2493. ],
  2494. "support": {
  2495. "issues": "https://github.com/laravel/framework/issues",
  2496. "source": "https://github.com/laravel/framework"
  2497. },
  2498. "time": "2023-10-03T14:24:20+00:00"
  2499. },
  2500. {
  2501. "name": "laravel/prompts",
  2502. "version": "v0.1.11",
  2503. "source": {
  2504. "type": "git",
  2505. "url": "https://github.com/laravel/prompts.git",
  2506. "reference": "cce65a90e64712909ea1adc033e1d88de8455ffd"
  2507. },
  2508. "dist": {
  2509. "type": "zip",
  2510. "url": "https://api.github.com/repos/laravel/prompts/zipball/cce65a90e64712909ea1adc033e1d88de8455ffd",
  2511. "reference": "cce65a90e64712909ea1adc033e1d88de8455ffd",
  2512. "shasum": ""
  2513. },
  2514. "require": {
  2515. "ext-mbstring": "*",
  2516. "illuminate/collections": "^10.0|^11.0",
  2517. "php": "^8.1",
  2518. "symfony/console": "^6.2"
  2519. },
  2520. "conflict": {
  2521. "illuminate/console": ">=10.17.0 <10.25.0",
  2522. "laravel/framework": ">=10.17.0 <10.25.0"
  2523. },
  2524. "require-dev": {
  2525. "mockery/mockery": "^1.5",
  2526. "pestphp/pest": "^2.3",
  2527. "phpstan/phpstan": "^1.10",
  2528. "phpstan/phpstan-mockery": "^1.1"
  2529. },
  2530. "suggest": {
  2531. "ext-pcntl": "Required for the spinner to be animated."
  2532. },
  2533. "type": "library",
  2534. "extra": {
  2535. "branch-alias": {
  2536. "dev-main": "0.1.x-dev"
  2537. }
  2538. },
  2539. "autoload": {
  2540. "files": [
  2541. "src/helpers.php"
  2542. ],
  2543. "psr-4": {
  2544. "Laravel\\Prompts\\": "src/"
  2545. }
  2546. },
  2547. "notification-url": "https://packagist.org/downloads/",
  2548. "license": [
  2549. "MIT"
  2550. ],
  2551. "support": {
  2552. "issues": "https://github.com/laravel/prompts/issues",
  2553. "source": "https://github.com/laravel/prompts/tree/v0.1.11"
  2554. },
  2555. "time": "2023-10-03T01:07:35+00:00"
  2556. },
  2557. {
  2558. "name": "laravel/sanctum",
  2559. "version": "v3.3.1",
  2560. "source": {
  2561. "type": "git",
  2562. "url": "https://github.com/laravel/sanctum.git",
  2563. "reference": "338f633e6487e76b255470d3373fbc29228aa971"
  2564. },
  2565. "dist": {
  2566. "type": "zip",
  2567. "url": "https://api.github.com/repos/laravel/sanctum/zipball/338f633e6487e76b255470d3373fbc29228aa971",
  2568. "reference": "338f633e6487e76b255470d3373fbc29228aa971",
  2569. "shasum": ""
  2570. },
  2571. "require": {
  2572. "ext-json": "*",
  2573. "illuminate/console": "^9.21|^10.0",
  2574. "illuminate/contracts": "^9.21|^10.0",
  2575. "illuminate/database": "^9.21|^10.0",
  2576. "illuminate/support": "^9.21|^10.0",
  2577. "php": "^8.0.2"
  2578. },
  2579. "require-dev": {
  2580. "mockery/mockery": "^1.0",
  2581. "orchestra/testbench": "^7.28.2|^8.8.3",
  2582. "phpstan/phpstan": "^1.10",
  2583. "phpunit/phpunit": "^9.6"
  2584. },
  2585. "type": "library",
  2586. "extra": {
  2587. "branch-alias": {
  2588. "dev-master": "3.x-dev"
  2589. },
  2590. "laravel": {
  2591. "providers": [
  2592. "Laravel\\Sanctum\\SanctumServiceProvider"
  2593. ]
  2594. }
  2595. },
  2596. "autoload": {
  2597. "psr-4": {
  2598. "Laravel\\Sanctum\\": "src/"
  2599. }
  2600. },
  2601. "notification-url": "https://packagist.org/downloads/",
  2602. "license": [
  2603. "MIT"
  2604. ],
  2605. "authors": [
  2606. {
  2607. "name": "Taylor Otwell",
  2608. "email": "taylor@laravel.com"
  2609. }
  2610. ],
  2611. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2612. "keywords": [
  2613. "auth",
  2614. "laravel",
  2615. "sanctum"
  2616. ],
  2617. "support": {
  2618. "issues": "https://github.com/laravel/sanctum/issues",
  2619. "source": "https://github.com/laravel/sanctum"
  2620. },
  2621. "time": "2023-09-07T15:46:33+00:00"
  2622. },
  2623. {
  2624. "name": "laravel/serializable-closure",
  2625. "version": "v1.3.1",
  2626. "source": {
  2627. "type": "git",
  2628. "url": "https://github.com/laravel/serializable-closure.git",
  2629. "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902"
  2630. },
  2631. "dist": {
  2632. "type": "zip",
  2633. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/e5a3057a5591e1cfe8183034b0203921abe2c902",
  2634. "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902",
  2635. "shasum": ""
  2636. },
  2637. "require": {
  2638. "php": "^7.3|^8.0"
  2639. },
  2640. "require-dev": {
  2641. "nesbot/carbon": "^2.61",
  2642. "pestphp/pest": "^1.21.3",
  2643. "phpstan/phpstan": "^1.8.2",
  2644. "symfony/var-dumper": "^5.4.11"
  2645. },
  2646. "type": "library",
  2647. "extra": {
  2648. "branch-alias": {
  2649. "dev-master": "1.x-dev"
  2650. }
  2651. },
  2652. "autoload": {
  2653. "psr-4": {
  2654. "Laravel\\SerializableClosure\\": "src/"
  2655. }
  2656. },
  2657. "notification-url": "https://packagist.org/downloads/",
  2658. "license": [
  2659. "MIT"
  2660. ],
  2661. "authors": [
  2662. {
  2663. "name": "Taylor Otwell",
  2664. "email": "taylor@laravel.com"
  2665. },
  2666. {
  2667. "name": "Nuno Maduro",
  2668. "email": "nuno@laravel.com"
  2669. }
  2670. ],
  2671. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2672. "keywords": [
  2673. "closure",
  2674. "laravel",
  2675. "serializable"
  2676. ],
  2677. "support": {
  2678. "issues": "https://github.com/laravel/serializable-closure/issues",
  2679. "source": "https://github.com/laravel/serializable-closure"
  2680. },
  2681. "time": "2023-07-14T13:56:28+00:00"
  2682. },
  2683. {
  2684. "name": "laravel/socialite",
  2685. "version": "v5.9.1",
  2686. "source": {
  2687. "type": "git",
  2688. "url": "https://github.com/laravel/socialite.git",
  2689. "reference": "49ecc4c907ed88c1254bae991c6b2948945645c2"
  2690. },
  2691. "dist": {
  2692. "type": "zip",
  2693. "url": "https://api.github.com/repos/laravel/socialite/zipball/49ecc4c907ed88c1254bae991c6b2948945645c2",
  2694. "reference": "49ecc4c907ed88c1254bae991c6b2948945645c2",
  2695. "shasum": ""
  2696. },
  2697. "require": {
  2698. "ext-json": "*",
  2699. "guzzlehttp/guzzle": "^6.0|^7.0",
  2700. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2701. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2702. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2703. "league/oauth1-client": "^1.10.1",
  2704. "php": "^7.2|^8.0"
  2705. },
  2706. "require-dev": {
  2707. "mockery/mockery": "^1.0",
  2708. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
  2709. "phpstan/phpstan": "^1.10",
  2710. "phpunit/phpunit": "^8.0|^9.3"
  2711. },
  2712. "type": "library",
  2713. "extra": {
  2714. "branch-alias": {
  2715. "dev-master": "5.x-dev"
  2716. },
  2717. "laravel": {
  2718. "providers": [
  2719. "Laravel\\Socialite\\SocialiteServiceProvider"
  2720. ],
  2721. "aliases": {
  2722. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2723. }
  2724. }
  2725. },
  2726. "autoload": {
  2727. "psr-4": {
  2728. "Laravel\\Socialite\\": "src/"
  2729. }
  2730. },
  2731. "notification-url": "https://packagist.org/downloads/",
  2732. "license": [
  2733. "MIT"
  2734. ],
  2735. "authors": [
  2736. {
  2737. "name": "Taylor Otwell",
  2738. "email": "taylor@laravel.com"
  2739. }
  2740. ],
  2741. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2742. "homepage": "https://laravel.com",
  2743. "keywords": [
  2744. "laravel",
  2745. "oauth"
  2746. ],
  2747. "support": {
  2748. "issues": "https://github.com/laravel/socialite/issues",
  2749. "source": "https://github.com/laravel/socialite"
  2750. },
  2751. "time": "2023-09-07T16:13:53+00:00"
  2752. },
  2753. {
  2754. "name": "laravel/tinker",
  2755. "version": "v2.8.2",
  2756. "source": {
  2757. "type": "git",
  2758. "url": "https://github.com/laravel/tinker.git",
  2759. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3"
  2760. },
  2761. "dist": {
  2762. "type": "zip",
  2763. "url": "https://api.github.com/repos/laravel/tinker/zipball/b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  2764. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  2765. "shasum": ""
  2766. },
  2767. "require": {
  2768. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2769. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2770. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2771. "php": "^7.2.5|^8.0",
  2772. "psy/psysh": "^0.10.4|^0.11.1",
  2773. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2774. },
  2775. "require-dev": {
  2776. "mockery/mockery": "~1.3.3|^1.4.2",
  2777. "phpstan/phpstan": "^1.10",
  2778. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2779. },
  2780. "suggest": {
  2781. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  2782. },
  2783. "type": "library",
  2784. "extra": {
  2785. "branch-alias": {
  2786. "dev-master": "2.x-dev"
  2787. },
  2788. "laravel": {
  2789. "providers": [
  2790. "Laravel\\Tinker\\TinkerServiceProvider"
  2791. ]
  2792. }
  2793. },
  2794. "autoload": {
  2795. "psr-4": {
  2796. "Laravel\\Tinker\\": "src/"
  2797. }
  2798. },
  2799. "notification-url": "https://packagist.org/downloads/",
  2800. "license": [
  2801. "MIT"
  2802. ],
  2803. "authors": [
  2804. {
  2805. "name": "Taylor Otwell",
  2806. "email": "taylor@laravel.com"
  2807. }
  2808. ],
  2809. "description": "Powerful REPL for the Laravel framework.",
  2810. "keywords": [
  2811. "REPL",
  2812. "Tinker",
  2813. "laravel",
  2814. "psysh"
  2815. ],
  2816. "support": {
  2817. "issues": "https://github.com/laravel/tinker/issues",
  2818. "source": "https://github.com/laravel/tinker/tree/v2.8.2"
  2819. },
  2820. "time": "2023-08-15T14:27:00+00:00"
  2821. },
  2822. {
  2823. "name": "league/commonmark",
  2824. "version": "2.4.1",
  2825. "source": {
  2826. "type": "git",
  2827. "url": "https://github.com/thephpleague/commonmark.git",
  2828. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
  2829. },
  2830. "dist": {
  2831. "type": "zip",
  2832. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2833. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2834. "shasum": ""
  2835. },
  2836. "require": {
  2837. "ext-mbstring": "*",
  2838. "league/config": "^1.1.1",
  2839. "php": "^7.4 || ^8.0",
  2840. "psr/event-dispatcher": "^1.0",
  2841. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2842. "symfony/polyfill-php80": "^1.16"
  2843. },
  2844. "require-dev": {
  2845. "cebe/markdown": "^1.0",
  2846. "commonmark/cmark": "0.30.0",
  2847. "commonmark/commonmark.js": "0.30.0",
  2848. "composer/package-versions-deprecated": "^1.8",
  2849. "embed/embed": "^4.4",
  2850. "erusev/parsedown": "^1.0",
  2851. "ext-json": "*",
  2852. "github/gfm": "0.29.0",
  2853. "michelf/php-markdown": "^1.4 || ^2.0",
  2854. "nyholm/psr7": "^1.5",
  2855. "phpstan/phpstan": "^1.8.2",
  2856. "phpunit/phpunit": "^9.5.21",
  2857. "scrutinizer/ocular": "^1.8.1",
  2858. "symfony/finder": "^5.3 | ^6.0",
  2859. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2860. "unleashedtech/php-coding-standard": "^3.1.1",
  2861. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2862. },
  2863. "suggest": {
  2864. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2865. },
  2866. "type": "library",
  2867. "extra": {
  2868. "branch-alias": {
  2869. "dev-main": "2.5-dev"
  2870. }
  2871. },
  2872. "autoload": {
  2873. "psr-4": {
  2874. "League\\CommonMark\\": "src"
  2875. }
  2876. },
  2877. "notification-url": "https://packagist.org/downloads/",
  2878. "license": [
  2879. "BSD-3-Clause"
  2880. ],
  2881. "authors": [
  2882. {
  2883. "name": "Colin O'Dell",
  2884. "email": "colinodell@gmail.com",
  2885. "homepage": "https://www.colinodell.com",
  2886. "role": "Lead Developer"
  2887. }
  2888. ],
  2889. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2890. "homepage": "https://commonmark.thephpleague.com",
  2891. "keywords": [
  2892. "commonmark",
  2893. "flavored",
  2894. "gfm",
  2895. "github",
  2896. "github-flavored",
  2897. "markdown",
  2898. "md",
  2899. "parser"
  2900. ],
  2901. "support": {
  2902. "docs": "https://commonmark.thephpleague.com/",
  2903. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2904. "issues": "https://github.com/thephpleague/commonmark/issues",
  2905. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2906. "source": "https://github.com/thephpleague/commonmark"
  2907. },
  2908. "funding": [
  2909. {
  2910. "url": "https://www.colinodell.com/sponsor",
  2911. "type": "custom"
  2912. },
  2913. {
  2914. "url": "https://www.paypal.me/colinpodell/10.00",
  2915. "type": "custom"
  2916. },
  2917. {
  2918. "url": "https://github.com/colinodell",
  2919. "type": "github"
  2920. },
  2921. {
  2922. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2923. "type": "tidelift"
  2924. }
  2925. ],
  2926. "time": "2023-08-30T16:55:00+00:00"
  2927. },
  2928. {
  2929. "name": "league/config",
  2930. "version": "v1.2.0",
  2931. "source": {
  2932. "type": "git",
  2933. "url": "https://github.com/thephpleague/config.git",
  2934. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2935. },
  2936. "dist": {
  2937. "type": "zip",
  2938. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2939. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2940. "shasum": ""
  2941. },
  2942. "require": {
  2943. "dflydev/dot-access-data": "^3.0.1",
  2944. "nette/schema": "^1.2",
  2945. "php": "^7.4 || ^8.0"
  2946. },
  2947. "require-dev": {
  2948. "phpstan/phpstan": "^1.8.2",
  2949. "phpunit/phpunit": "^9.5.5",
  2950. "scrutinizer/ocular": "^1.8.1",
  2951. "unleashedtech/php-coding-standard": "^3.1",
  2952. "vimeo/psalm": "^4.7.3"
  2953. },
  2954. "type": "library",
  2955. "extra": {
  2956. "branch-alias": {
  2957. "dev-main": "1.2-dev"
  2958. }
  2959. },
  2960. "autoload": {
  2961. "psr-4": {
  2962. "League\\Config\\": "src"
  2963. }
  2964. },
  2965. "notification-url": "https://packagist.org/downloads/",
  2966. "license": [
  2967. "BSD-3-Clause"
  2968. ],
  2969. "authors": [
  2970. {
  2971. "name": "Colin O'Dell",
  2972. "email": "colinodell@gmail.com",
  2973. "homepage": "https://www.colinodell.com",
  2974. "role": "Lead Developer"
  2975. }
  2976. ],
  2977. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2978. "homepage": "https://config.thephpleague.com",
  2979. "keywords": [
  2980. "array",
  2981. "config",
  2982. "configuration",
  2983. "dot",
  2984. "dot-access",
  2985. "nested",
  2986. "schema"
  2987. ],
  2988. "support": {
  2989. "docs": "https://config.thephpleague.com/",
  2990. "issues": "https://github.com/thephpleague/config/issues",
  2991. "rss": "https://github.com/thephpleague/config/releases.atom",
  2992. "source": "https://github.com/thephpleague/config"
  2993. },
  2994. "funding": [
  2995. {
  2996. "url": "https://www.colinodell.com/sponsor",
  2997. "type": "custom"
  2998. },
  2999. {
  3000. "url": "https://www.paypal.me/colinpodell/10.00",
  3001. "type": "custom"
  3002. },
  3003. {
  3004. "url": "https://github.com/colinodell",
  3005. "type": "github"
  3006. }
  3007. ],
  3008. "time": "2022-12-11T20:36:23+00:00"
  3009. },
  3010. {
  3011. "name": "league/flysystem",
  3012. "version": "3.16.0",
  3013. "source": {
  3014. "type": "git",
  3015. "url": "https://github.com/thephpleague/flysystem.git",
  3016. "reference": "4fdf372ca6b63c6e281b1c01a624349ccb757729"
  3017. },
  3018. "dist": {
  3019. "type": "zip",
  3020. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/4fdf372ca6b63c6e281b1c01a624349ccb757729",
  3021. "reference": "4fdf372ca6b63c6e281b1c01a624349ccb757729",
  3022. "shasum": ""
  3023. },
  3024. "require": {
  3025. "league/flysystem-local": "^3.0.0",
  3026. "league/mime-type-detection": "^1.0.0",
  3027. "php": "^8.0.2"
  3028. },
  3029. "conflict": {
  3030. "async-aws/core": "<1.19.0",
  3031. "async-aws/s3": "<1.14.0",
  3032. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3033. "guzzlehttp/guzzle": "<7.0",
  3034. "guzzlehttp/ringphp": "<1.1.1",
  3035. "phpseclib/phpseclib": "3.0.15",
  3036. "symfony/http-client": "<5.2"
  3037. },
  3038. "require-dev": {
  3039. "async-aws/s3": "^1.5",
  3040. "async-aws/simple-s3": "^1.1",
  3041. "aws/aws-sdk-php": "^3.220.0",
  3042. "composer/semver": "^3.0",
  3043. "ext-fileinfo": "*",
  3044. "ext-ftp": "*",
  3045. "ext-zip": "*",
  3046. "friendsofphp/php-cs-fixer": "^3.5",
  3047. "google/cloud-storage": "^1.23",
  3048. "microsoft/azure-storage-blob": "^1.1",
  3049. "phpseclib/phpseclib": "^3.0.14",
  3050. "phpstan/phpstan": "^0.12.26",
  3051. "phpunit/phpunit": "^9.5.11|^10.0",
  3052. "sabre/dav": "^4.3.1"
  3053. },
  3054. "type": "library",
  3055. "autoload": {
  3056. "psr-4": {
  3057. "League\\Flysystem\\": "src"
  3058. }
  3059. },
  3060. "notification-url": "https://packagist.org/downloads/",
  3061. "license": [
  3062. "MIT"
  3063. ],
  3064. "authors": [
  3065. {
  3066. "name": "Frank de Jonge",
  3067. "email": "info@frankdejonge.nl"
  3068. }
  3069. ],
  3070. "description": "File storage abstraction for PHP",
  3071. "keywords": [
  3072. "WebDAV",
  3073. "aws",
  3074. "cloud",
  3075. "file",
  3076. "files",
  3077. "filesystem",
  3078. "filesystems",
  3079. "ftp",
  3080. "s3",
  3081. "sftp",
  3082. "storage"
  3083. ],
  3084. "support": {
  3085. "issues": "https://github.com/thephpleague/flysystem/issues",
  3086. "source": "https://github.com/thephpleague/flysystem/tree/3.16.0"
  3087. },
  3088. "funding": [
  3089. {
  3090. "url": "https://ecologi.com/frankdejonge",
  3091. "type": "custom"
  3092. },
  3093. {
  3094. "url": "https://github.com/frankdejonge",
  3095. "type": "github"
  3096. }
  3097. ],
  3098. "time": "2023-09-07T19:22:17+00:00"
  3099. },
  3100. {
  3101. "name": "league/flysystem-local",
  3102. "version": "3.16.0",
  3103. "source": {
  3104. "type": "git",
  3105. "url": "https://github.com/thephpleague/flysystem-local.git",
  3106. "reference": "ec7383f25642e6fd4bb0c9554fc2311245391781"
  3107. },
  3108. "dist": {
  3109. "type": "zip",
  3110. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/ec7383f25642e6fd4bb0c9554fc2311245391781",
  3111. "reference": "ec7383f25642e6fd4bb0c9554fc2311245391781",
  3112. "shasum": ""
  3113. },
  3114. "require": {
  3115. "ext-fileinfo": "*",
  3116. "league/flysystem": "^3.0.0",
  3117. "league/mime-type-detection": "^1.0.0",
  3118. "php": "^8.0.2"
  3119. },
  3120. "type": "library",
  3121. "autoload": {
  3122. "psr-4": {
  3123. "League\\Flysystem\\Local\\": ""
  3124. }
  3125. },
  3126. "notification-url": "https://packagist.org/downloads/",
  3127. "license": [
  3128. "MIT"
  3129. ],
  3130. "authors": [
  3131. {
  3132. "name": "Frank de Jonge",
  3133. "email": "info@frankdejonge.nl"
  3134. }
  3135. ],
  3136. "description": "Local filesystem adapter for Flysystem.",
  3137. "keywords": [
  3138. "Flysystem",
  3139. "file",
  3140. "files",
  3141. "filesystem",
  3142. "local"
  3143. ],
  3144. "support": {
  3145. "issues": "https://github.com/thephpleague/flysystem-local/issues",
  3146. "source": "https://github.com/thephpleague/flysystem-local/tree/3.16.0"
  3147. },
  3148. "funding": [
  3149. {
  3150. "url": "https://ecologi.com/frankdejonge",
  3151. "type": "custom"
  3152. },
  3153. {
  3154. "url": "https://github.com/frankdejonge",
  3155. "type": "github"
  3156. }
  3157. ],
  3158. "time": "2023-08-30T10:23:59+00:00"
  3159. },
  3160. {
  3161. "name": "league/mime-type-detection",
  3162. "version": "1.13.0",
  3163. "source": {
  3164. "type": "git",
  3165. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3166. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96"
  3167. },
  3168. "dist": {
  3169. "type": "zip",
  3170. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96",
  3171. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96",
  3172. "shasum": ""
  3173. },
  3174. "require": {
  3175. "ext-fileinfo": "*",
  3176. "php": "^7.4 || ^8.0"
  3177. },
  3178. "require-dev": {
  3179. "friendsofphp/php-cs-fixer": "^3.2",
  3180. "phpstan/phpstan": "^0.12.68",
  3181. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3182. },
  3183. "type": "library",
  3184. "autoload": {
  3185. "psr-4": {
  3186. "League\\MimeTypeDetection\\": "src"
  3187. }
  3188. },
  3189. "notification-url": "https://packagist.org/downloads/",
  3190. "license": [
  3191. "MIT"
  3192. ],
  3193. "authors": [
  3194. {
  3195. "name": "Frank de Jonge",
  3196. "email": "info@frankdejonge.nl"
  3197. }
  3198. ],
  3199. "description": "Mime-type detection for Flysystem",
  3200. "support": {
  3201. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3202. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0"
  3203. },
  3204. "funding": [
  3205. {
  3206. "url": "https://github.com/frankdejonge",
  3207. "type": "github"
  3208. },
  3209. {
  3210. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3211. "type": "tidelift"
  3212. }
  3213. ],
  3214. "time": "2023-08-05T12:09:49+00:00"
  3215. },
  3216. {
  3217. "name": "league/oauth1-client",
  3218. "version": "v1.10.1",
  3219. "source": {
  3220. "type": "git",
  3221. "url": "https://github.com/thephpleague/oauth1-client.git",
  3222. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  3223. },
  3224. "dist": {
  3225. "type": "zip",
  3226. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  3227. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  3228. "shasum": ""
  3229. },
  3230. "require": {
  3231. "ext-json": "*",
  3232. "ext-openssl": "*",
  3233. "guzzlehttp/guzzle": "^6.0|^7.0",
  3234. "guzzlehttp/psr7": "^1.7|^2.0",
  3235. "php": ">=7.1||>=8.0"
  3236. },
  3237. "require-dev": {
  3238. "ext-simplexml": "*",
  3239. "friendsofphp/php-cs-fixer": "^2.17",
  3240. "mockery/mockery": "^1.3.3",
  3241. "phpstan/phpstan": "^0.12.42",
  3242. "phpunit/phpunit": "^7.5||9.5"
  3243. },
  3244. "suggest": {
  3245. "ext-simplexml": "For decoding XML-based responses."
  3246. },
  3247. "type": "library",
  3248. "extra": {
  3249. "branch-alias": {
  3250. "dev-master": "1.0-dev",
  3251. "dev-develop": "2.0-dev"
  3252. }
  3253. },
  3254. "autoload": {
  3255. "psr-4": {
  3256. "League\\OAuth1\\Client\\": "src/"
  3257. }
  3258. },
  3259. "notification-url": "https://packagist.org/downloads/",
  3260. "license": [
  3261. "MIT"
  3262. ],
  3263. "authors": [
  3264. {
  3265. "name": "Ben Corlett",
  3266. "email": "bencorlett@me.com",
  3267. "homepage": "http://www.webcomm.com.au",
  3268. "role": "Developer"
  3269. }
  3270. ],
  3271. "description": "OAuth 1.0 Client Library",
  3272. "keywords": [
  3273. "Authentication",
  3274. "SSO",
  3275. "authorization",
  3276. "bitbucket",
  3277. "identity",
  3278. "idp",
  3279. "oauth",
  3280. "oauth1",
  3281. "single sign on",
  3282. "trello",
  3283. "tumblr",
  3284. "twitter"
  3285. ],
  3286. "support": {
  3287. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  3288. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  3289. },
  3290. "time": "2022-04-15T14:02:14+00:00"
  3291. },
  3292. {
  3293. "name": "league/uri",
  3294. "version": "7.3.0",
  3295. "source": {
  3296. "type": "git",
  3297. "url": "https://github.com/thephpleague/uri.git",
  3298. "reference": "36743c3961bb82bf93da91917b6bced0358a8d45"
  3299. },
  3300. "dist": {
  3301. "type": "zip",
  3302. "url": "https://api.github.com/repos/thephpleague/uri/zipball/36743c3961bb82bf93da91917b6bced0358a8d45",
  3303. "reference": "36743c3961bb82bf93da91917b6bced0358a8d45",
  3304. "shasum": ""
  3305. },
  3306. "require": {
  3307. "league/uri-interfaces": "^7.3",
  3308. "php": "^8.1"
  3309. },
  3310. "conflict": {
  3311. "league/uri-schemes": "^1.0"
  3312. },
  3313. "suggest": {
  3314. "ext-bcmath": "to improve IPV4 host parsing",
  3315. "ext-fileinfo": "to create Data URI from file contennts",
  3316. "ext-gmp": "to improve IPV4 host parsing",
  3317. "ext-intl": "to handle IDN host with the best performance",
  3318. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  3319. "league/uri-components": "Needed to easily manipulate URI objects components",
  3320. "php-64bit": "to improve IPV4 host parsing",
  3321. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  3322. },
  3323. "type": "library",
  3324. "extra": {
  3325. "branch-alias": {
  3326. "dev-master": "7.x-dev"
  3327. }
  3328. },
  3329. "autoload": {
  3330. "psr-4": {
  3331. "League\\Uri\\": ""
  3332. }
  3333. },
  3334. "notification-url": "https://packagist.org/downloads/",
  3335. "license": [
  3336. "MIT"
  3337. ],
  3338. "authors": [
  3339. {
  3340. "name": "Ignace Nyamagana Butera",
  3341. "email": "nyamsprod@gmail.com",
  3342. "homepage": "https://nyamsprod.com"
  3343. }
  3344. ],
  3345. "description": "URI manipulation library",
  3346. "homepage": "https://uri.thephpleague.com",
  3347. "keywords": [
  3348. "data-uri",
  3349. "file-uri",
  3350. "ftp",
  3351. "hostname",
  3352. "http",
  3353. "https",
  3354. "middleware",
  3355. "parse_str",
  3356. "parse_url",
  3357. "psr-7",
  3358. "query-string",
  3359. "querystring",
  3360. "rfc3986",
  3361. "rfc3987",
  3362. "rfc6570",
  3363. "uri",
  3364. "uri-template",
  3365. "url",
  3366. "ws"
  3367. ],
  3368. "support": {
  3369. "docs": "https://uri.thephpleague.com",
  3370. "forum": "https://thephpleague.slack.com",
  3371. "issues": "https://github.com/thephpleague/uri-src/issues",
  3372. "source": "https://github.com/thephpleague/uri/tree/7.3.0"
  3373. },
  3374. "funding": [
  3375. {
  3376. "url": "https://github.com/sponsors/nyamsprod",
  3377. "type": "github"
  3378. }
  3379. ],
  3380. "time": "2023-09-09T17:21:43+00:00"
  3381. },
  3382. {
  3383. "name": "league/uri-interfaces",
  3384. "version": "7.3.0",
  3385. "source": {
  3386. "type": "git",
  3387. "url": "https://github.com/thephpleague/uri-interfaces.git",
  3388. "reference": "c409b60ed2245ff94c965a8c798a60166db53361"
  3389. },
  3390. "dist": {
  3391. "type": "zip",
  3392. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/c409b60ed2245ff94c965a8c798a60166db53361",
  3393. "reference": "c409b60ed2245ff94c965a8c798a60166db53361",
  3394. "shasum": ""
  3395. },
  3396. "require": {
  3397. "ext-filter": "*",
  3398. "php": "^8.1",
  3399. "psr/http-factory": "^1",
  3400. "psr/http-message": "^1.1 || ^2.0"
  3401. },
  3402. "suggest": {
  3403. "ext-bcmath": "to improve IPV4 host parsing",
  3404. "ext-gmp": "to improve IPV4 host parsing",
  3405. "ext-intl": "to handle IDN host with the best performance",
  3406. "php-64bit": "to improve IPV4 host parsing",
  3407. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  3408. },
  3409. "type": "library",
  3410. "extra": {
  3411. "branch-alias": {
  3412. "dev-master": "7.x-dev"
  3413. }
  3414. },
  3415. "autoload": {
  3416. "psr-4": {
  3417. "League\\Uri\\": ""
  3418. }
  3419. },
  3420. "notification-url": "https://packagist.org/downloads/",
  3421. "license": [
  3422. "MIT"
  3423. ],
  3424. "authors": [
  3425. {
  3426. "name": "Ignace Nyamagana Butera",
  3427. "email": "nyamsprod@gmail.com",
  3428. "homepage": "https://nyamsprod.com"
  3429. }
  3430. ],
  3431. "description": "Common interfaces and classes for URI representation and interaction",
  3432. "homepage": "https://uri.thephpleague.com",
  3433. "keywords": [
  3434. "data-uri",
  3435. "file-uri",
  3436. "ftp",
  3437. "hostname",
  3438. "http",
  3439. "https",
  3440. "parse_str",
  3441. "parse_url",
  3442. "psr-7",
  3443. "query-string",
  3444. "querystring",
  3445. "rfc3986",
  3446. "rfc3987",
  3447. "rfc6570",
  3448. "uri",
  3449. "url",
  3450. "ws"
  3451. ],
  3452. "support": {
  3453. "docs": "https://uri.thephpleague.com",
  3454. "forum": "https://thephpleague.slack.com",
  3455. "issues": "https://github.com/thephpleague/uri-src/issues",
  3456. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.3.0"
  3457. },
  3458. "funding": [
  3459. {
  3460. "url": "https://github.com/sponsors/nyamsprod",
  3461. "type": "github"
  3462. }
  3463. ],
  3464. "time": "2023-09-09T17:21:43+00:00"
  3465. },
  3466. {
  3467. "name": "livewire/livewire",
  3468. "version": "v3.0.5",
  3469. "source": {
  3470. "type": "git",
  3471. "url": "https://github.com/livewire/livewire.git",
  3472. "reference": "37f11583c61a75d51b2146c2fe38f506ad36014b"
  3473. },
  3474. "dist": {
  3475. "type": "zip",
  3476. "url": "https://api.github.com/repos/livewire/livewire/zipball/37f11583c61a75d51b2146c2fe38f506ad36014b",
  3477. "reference": "37f11583c61a75d51b2146c2fe38f506ad36014b",
  3478. "shasum": ""
  3479. },
  3480. "require": {
  3481. "illuminate/database": "^10.0",
  3482. "illuminate/support": "^10.0",
  3483. "illuminate/validation": "^10.0",
  3484. "league/mime-type-detection": "^1.9",
  3485. "php": "^8.1",
  3486. "symfony/http-kernel": "^5.0|^6.0"
  3487. },
  3488. "require-dev": {
  3489. "calebporzio/sushi": "^2.1",
  3490. "laravel/framework": "^10.0",
  3491. "laravel/prompts": "^0.1.6",
  3492. "mockery/mockery": "^1.3.1",
  3493. "orchestra/testbench": "^7.0|^8.0",
  3494. "orchestra/testbench-dusk": "^7.0|^8.0",
  3495. "phpunit/phpunit": "^9.0",
  3496. "psy/psysh": "@stable"
  3497. },
  3498. "type": "library",
  3499. "extra": {
  3500. "laravel": {
  3501. "providers": [
  3502. "Livewire\\LivewireServiceProvider"
  3503. ],
  3504. "aliases": {
  3505. "Livewire": "Livewire\\Livewire"
  3506. }
  3507. }
  3508. },
  3509. "autoload": {
  3510. "files": [
  3511. "src/helpers.php"
  3512. ],
  3513. "psr-4": {
  3514. "Livewire\\": "src/"
  3515. }
  3516. },
  3517. "notification-url": "https://packagist.org/downloads/",
  3518. "license": [
  3519. "MIT"
  3520. ],
  3521. "authors": [
  3522. {
  3523. "name": "Caleb Porzio",
  3524. "email": "calebporzio@gmail.com"
  3525. }
  3526. ],
  3527. "description": "A front-end framework for Laravel.",
  3528. "support": {
  3529. "issues": "https://github.com/livewire/livewire/issues",
  3530. "source": "https://github.com/livewire/livewire/tree/v3.0.5"
  3531. },
  3532. "funding": [
  3533. {
  3534. "url": "https://github.com/livewire",
  3535. "type": "github"
  3536. }
  3537. ],
  3538. "time": "2023-09-16T11:51:32+00:00"
  3539. },
  3540. {
  3541. "name": "masterminds/html5",
  3542. "version": "2.8.1",
  3543. "source": {
  3544. "type": "git",
  3545. "url": "https://github.com/Masterminds/html5-php.git",
  3546. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  3547. },
  3548. "dist": {
  3549. "type": "zip",
  3550. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  3551. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  3552. "shasum": ""
  3553. },
  3554. "require": {
  3555. "ext-dom": "*",
  3556. "php": ">=5.3.0"
  3557. },
  3558. "require-dev": {
  3559. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  3560. },
  3561. "type": "library",
  3562. "extra": {
  3563. "branch-alias": {
  3564. "dev-master": "2.7-dev"
  3565. }
  3566. },
  3567. "autoload": {
  3568. "psr-4": {
  3569. "Masterminds\\": "src"
  3570. }
  3571. },
  3572. "notification-url": "https://packagist.org/downloads/",
  3573. "license": [
  3574. "MIT"
  3575. ],
  3576. "authors": [
  3577. {
  3578. "name": "Matt Butcher",
  3579. "email": "technosophos@gmail.com"
  3580. },
  3581. {
  3582. "name": "Matt Farina",
  3583. "email": "matt@mattfarina.com"
  3584. },
  3585. {
  3586. "name": "Asmir Mustafic",
  3587. "email": "goetas@gmail.com"
  3588. }
  3589. ],
  3590. "description": "An HTML5 parser and serializer.",
  3591. "homepage": "http://masterminds.github.io/html5-php",
  3592. "keywords": [
  3593. "HTML5",
  3594. "dom",
  3595. "html",
  3596. "parser",
  3597. "querypath",
  3598. "serializer",
  3599. "xml"
  3600. ],
  3601. "support": {
  3602. "issues": "https://github.com/Masterminds/html5-php/issues",
  3603. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  3604. },
  3605. "time": "2023-05-10T11:58:31+00:00"
  3606. },
  3607. {
  3608. "name": "matomo/device-detector",
  3609. "version": "6.1.6",
  3610. "source": {
  3611. "type": "git",
  3612. "url": "https://github.com/matomo-org/device-detector.git",
  3613. "reference": "5cbea85106e561c7138d03603eb6e05128480409"
  3614. },
  3615. "dist": {
  3616. "type": "zip",
  3617. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/5cbea85106e561c7138d03603eb6e05128480409",
  3618. "reference": "5cbea85106e561c7138d03603eb6e05128480409",
  3619. "shasum": ""
  3620. },
  3621. "require": {
  3622. "mustangostang/spyc": "*",
  3623. "php": "^7.2|^8.0"
  3624. },
  3625. "replace": {
  3626. "piwik/device-detector": "self.version"
  3627. },
  3628. "require-dev": {
  3629. "matthiasmullie/scrapbook": "^1.4.7",
  3630. "mayflower/mo4-coding-standard": "^v8.0.0",
  3631. "phpstan/phpstan": "^0.12.52",
  3632. "phpunit/phpunit": "^8.5.8",
  3633. "psr/cache": "^1.0.1",
  3634. "psr/simple-cache": "^1.0.1",
  3635. "symfony/yaml": "^5.1.7"
  3636. },
  3637. "suggest": {
  3638. "doctrine/cache": "Can directly be used for caching purpose",
  3639. "ext-yaml": "Necessary for using the Pecl YAML parser"
  3640. },
  3641. "type": "library",
  3642. "autoload": {
  3643. "psr-4": {
  3644. "DeviceDetector\\": ""
  3645. },
  3646. "exclude-from-classmap": [
  3647. "Tests/"
  3648. ]
  3649. },
  3650. "notification-url": "https://packagist.org/downloads/",
  3651. "license": [
  3652. "LGPL-3.0-or-later"
  3653. ],
  3654. "authors": [
  3655. {
  3656. "name": "The Matomo Team",
  3657. "email": "hello@matomo.org",
  3658. "homepage": "https://matomo.org/team/"
  3659. }
  3660. ],
  3661. "description": "The Universal Device Detection library, that parses User Agents and detects devices (desktop, tablet, mobile, tv, cars, console, etc.), clients (browsers, media players, mobile apps, feed readers, libraries, etc), operating systems, devices, brands and models.",
  3662. "homepage": "https://matomo.org",
  3663. "keywords": [
  3664. "devicedetection",
  3665. "parser",
  3666. "useragent"
  3667. ],
  3668. "support": {
  3669. "forum": "https://forum.matomo.org/",
  3670. "issues": "https://github.com/matomo-org/device-detector/issues",
  3671. "source": "https://github.com/matomo-org/matomo",
  3672. "wiki": "https://dev.matomo.org/"
  3673. },
  3674. "time": "2023-10-02T10:01:54+00:00"
  3675. },
  3676. {
  3677. "name": "monolog/monolog",
  3678. "version": "3.4.0",
  3679. "source": {
  3680. "type": "git",
  3681. "url": "https://github.com/Seldaek/monolog.git",
  3682. "reference": "e2392369686d420ca32df3803de28b5d6f76867d"
  3683. },
  3684. "dist": {
  3685. "type": "zip",
  3686. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e2392369686d420ca32df3803de28b5d6f76867d",
  3687. "reference": "e2392369686d420ca32df3803de28b5d6f76867d",
  3688. "shasum": ""
  3689. },
  3690. "require": {
  3691. "php": ">=8.1",
  3692. "psr/log": "^2.0 || ^3.0"
  3693. },
  3694. "provide": {
  3695. "psr/log-implementation": "3.0.0"
  3696. },
  3697. "require-dev": {
  3698. "aws/aws-sdk-php": "^3.0",
  3699. "doctrine/couchdb": "~1.0@dev",
  3700. "elasticsearch/elasticsearch": "^7 || ^8",
  3701. "ext-json": "*",
  3702. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  3703. "guzzlehttp/guzzle": "^7.4.5",
  3704. "guzzlehttp/psr7": "^2.2",
  3705. "mongodb/mongodb": "^1.8",
  3706. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3707. "phpstan/phpstan": "^1.9",
  3708. "phpstan/phpstan-deprecation-rules": "^1.0",
  3709. "phpstan/phpstan-strict-rules": "^1.4",
  3710. "phpunit/phpunit": "^10.1",
  3711. "predis/predis": "^1.1 || ^2",
  3712. "ruflin/elastica": "^7",
  3713. "symfony/mailer": "^5.4 || ^6",
  3714. "symfony/mime": "^5.4 || ^6"
  3715. },
  3716. "suggest": {
  3717. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3718. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3719. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3720. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3721. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3722. "ext-mbstring": "Allow to work properly with unicode symbols",
  3723. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3724. "ext-openssl": "Required to send log messages using SSL",
  3725. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3726. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3727. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3728. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3729. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3730. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3731. },
  3732. "type": "library",
  3733. "extra": {
  3734. "branch-alias": {
  3735. "dev-main": "3.x-dev"
  3736. }
  3737. },
  3738. "autoload": {
  3739. "psr-4": {
  3740. "Monolog\\": "src/Monolog"
  3741. }
  3742. },
  3743. "notification-url": "https://packagist.org/downloads/",
  3744. "license": [
  3745. "MIT"
  3746. ],
  3747. "authors": [
  3748. {
  3749. "name": "Jordi Boggiano",
  3750. "email": "j.boggiano@seld.be",
  3751. "homepage": "https://seld.be"
  3752. }
  3753. ],
  3754. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3755. "homepage": "https://github.com/Seldaek/monolog",
  3756. "keywords": [
  3757. "log",
  3758. "logging",
  3759. "psr-3"
  3760. ],
  3761. "support": {
  3762. "issues": "https://github.com/Seldaek/monolog/issues",
  3763. "source": "https://github.com/Seldaek/monolog/tree/3.4.0"
  3764. },
  3765. "funding": [
  3766. {
  3767. "url": "https://github.com/Seldaek",
  3768. "type": "github"
  3769. },
  3770. {
  3771. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3772. "type": "tidelift"
  3773. }
  3774. ],
  3775. "time": "2023-06-21T08:46:11+00:00"
  3776. },
  3777. {
  3778. "name": "mustangostang/spyc",
  3779. "version": "0.6.3",
  3780. "source": {
  3781. "type": "git",
  3782. "url": "git@github.com:mustangostang/spyc.git",
  3783. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  3784. },
  3785. "dist": {
  3786. "type": "zip",
  3787. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  3788. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  3789. "shasum": ""
  3790. },
  3791. "require": {
  3792. "php": ">=5.3.1"
  3793. },
  3794. "require-dev": {
  3795. "phpunit/phpunit": "4.3.*@dev"
  3796. },
  3797. "type": "library",
  3798. "extra": {
  3799. "branch-alias": {
  3800. "dev-master": "0.5.x-dev"
  3801. }
  3802. },
  3803. "autoload": {
  3804. "files": [
  3805. "Spyc.php"
  3806. ]
  3807. },
  3808. "notification-url": "https://packagist.org/downloads/",
  3809. "license": [
  3810. "MIT"
  3811. ],
  3812. "authors": [
  3813. {
  3814. "name": "mustangostang",
  3815. "email": "vlad.andersen@gmail.com"
  3816. }
  3817. ],
  3818. "description": "A simple YAML loader/dumper class for PHP",
  3819. "homepage": "https://github.com/mustangostang/spyc/",
  3820. "keywords": [
  3821. "spyc",
  3822. "yaml",
  3823. "yml"
  3824. ],
  3825. "time": "2019-09-10T13:16:29+00:00"
  3826. },
  3827. {
  3828. "name": "nesbot/carbon",
  3829. "version": "2.71.0",
  3830. "source": {
  3831. "type": "git",
  3832. "url": "https://github.com/briannesbitt/Carbon.git",
  3833. "reference": "98276233188583f2ff845a0f992a235472d9466a"
  3834. },
  3835. "dist": {
  3836. "type": "zip",
  3837. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/98276233188583f2ff845a0f992a235472d9466a",
  3838. "reference": "98276233188583f2ff845a0f992a235472d9466a",
  3839. "shasum": ""
  3840. },
  3841. "require": {
  3842. "ext-json": "*",
  3843. "php": "^7.1.8 || ^8.0",
  3844. "psr/clock": "^1.0",
  3845. "symfony/polyfill-mbstring": "^1.0",
  3846. "symfony/polyfill-php80": "^1.16",
  3847. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3848. },
  3849. "provide": {
  3850. "psr/clock-implementation": "1.0"
  3851. },
  3852. "require-dev": {
  3853. "doctrine/dbal": "^2.0 || ^3.1.4",
  3854. "doctrine/orm": "^2.7",
  3855. "friendsofphp/php-cs-fixer": "^3.0",
  3856. "kylekatarnls/multi-tester": "^2.0",
  3857. "ondrejmirtes/better-reflection": "*",
  3858. "phpmd/phpmd": "^2.9",
  3859. "phpstan/extension-installer": "^1.0",
  3860. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3861. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3862. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3863. "squizlabs/php_codesniffer": "^3.4"
  3864. },
  3865. "bin": [
  3866. "bin/carbon"
  3867. ],
  3868. "type": "library",
  3869. "extra": {
  3870. "branch-alias": {
  3871. "dev-3.x": "3.x-dev",
  3872. "dev-master": "2.x-dev"
  3873. },
  3874. "laravel": {
  3875. "providers": [
  3876. "Carbon\\Laravel\\ServiceProvider"
  3877. ]
  3878. },
  3879. "phpstan": {
  3880. "includes": [
  3881. "extension.neon"
  3882. ]
  3883. }
  3884. },
  3885. "autoload": {
  3886. "psr-4": {
  3887. "Carbon\\": "src/Carbon/"
  3888. }
  3889. },
  3890. "notification-url": "https://packagist.org/downloads/",
  3891. "license": [
  3892. "MIT"
  3893. ],
  3894. "authors": [
  3895. {
  3896. "name": "Brian Nesbitt",
  3897. "email": "brian@nesbot.com",
  3898. "homepage": "https://markido.com"
  3899. },
  3900. {
  3901. "name": "kylekatarnls",
  3902. "homepage": "https://github.com/kylekatarnls"
  3903. }
  3904. ],
  3905. "description": "An API extension for DateTime that supports 281 different languages.",
  3906. "homepage": "https://carbon.nesbot.com",
  3907. "keywords": [
  3908. "date",
  3909. "datetime",
  3910. "time"
  3911. ],
  3912. "support": {
  3913. "docs": "https://carbon.nesbot.com/docs",
  3914. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3915. "source": "https://github.com/briannesbitt/Carbon"
  3916. },
  3917. "funding": [
  3918. {
  3919. "url": "https://github.com/sponsors/kylekatarnls",
  3920. "type": "github"
  3921. },
  3922. {
  3923. "url": "https://opencollective.com/Carbon#sponsor",
  3924. "type": "opencollective"
  3925. },
  3926. {
  3927. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3928. "type": "tidelift"
  3929. }
  3930. ],
  3931. "time": "2023-09-25T11:31:05+00:00"
  3932. },
  3933. {
  3934. "name": "nette/schema",
  3935. "version": "v1.2.4",
  3936. "source": {
  3937. "type": "git",
  3938. "url": "https://github.com/nette/schema.git",
  3939. "reference": "c9ff517a53903b3d4e29ec547fb20feecb05b8ab"
  3940. },
  3941. "dist": {
  3942. "type": "zip",
  3943. "url": "https://api.github.com/repos/nette/schema/zipball/c9ff517a53903b3d4e29ec547fb20feecb05b8ab",
  3944. "reference": "c9ff517a53903b3d4e29ec547fb20feecb05b8ab",
  3945. "shasum": ""
  3946. },
  3947. "require": {
  3948. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3949. "php": "7.1 - 8.3"
  3950. },
  3951. "require-dev": {
  3952. "nette/tester": "^2.3 || ^2.4",
  3953. "phpstan/phpstan-nette": "^1.0",
  3954. "tracy/tracy": "^2.7"
  3955. },
  3956. "type": "library",
  3957. "extra": {
  3958. "branch-alias": {
  3959. "dev-master": "1.2-dev"
  3960. }
  3961. },
  3962. "autoload": {
  3963. "classmap": [
  3964. "src/"
  3965. ]
  3966. },
  3967. "notification-url": "https://packagist.org/downloads/",
  3968. "license": [
  3969. "BSD-3-Clause",
  3970. "GPL-2.0-only",
  3971. "GPL-3.0-only"
  3972. ],
  3973. "authors": [
  3974. {
  3975. "name": "David Grudl",
  3976. "homepage": "https://davidgrudl.com"
  3977. },
  3978. {
  3979. "name": "Nette Community",
  3980. "homepage": "https://nette.org/contributors"
  3981. }
  3982. ],
  3983. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3984. "homepage": "https://nette.org",
  3985. "keywords": [
  3986. "config",
  3987. "nette"
  3988. ],
  3989. "support": {
  3990. "issues": "https://github.com/nette/schema/issues",
  3991. "source": "https://github.com/nette/schema/tree/v1.2.4"
  3992. },
  3993. "time": "2023-08-05T18:56:25+00:00"
  3994. },
  3995. {
  3996. "name": "nette/utils",
  3997. "version": "v4.0.2",
  3998. "source": {
  3999. "type": "git",
  4000. "url": "https://github.com/nette/utils.git",
  4001. "reference": "cead6637226456b35e1175cc53797dd585d85545"
  4002. },
  4003. "dist": {
  4004. "type": "zip",
  4005. "url": "https://api.github.com/repos/nette/utils/zipball/cead6637226456b35e1175cc53797dd585d85545",
  4006. "reference": "cead6637226456b35e1175cc53797dd585d85545",
  4007. "shasum": ""
  4008. },
  4009. "require": {
  4010. "php": ">=8.0 <8.4"
  4011. },
  4012. "conflict": {
  4013. "nette/finder": "<3",
  4014. "nette/schema": "<1.2.2"
  4015. },
  4016. "require-dev": {
  4017. "jetbrains/phpstorm-attributes": "dev-master",
  4018. "nette/tester": "^2.5",
  4019. "phpstan/phpstan": "^1.0",
  4020. "tracy/tracy": "^2.9"
  4021. },
  4022. "suggest": {
  4023. "ext-gd": "to use Image",
  4024. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4025. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4026. "ext-json": "to use Nette\\Utils\\Json",
  4027. "ext-mbstring": "to use Strings::lower() etc...",
  4028. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  4029. },
  4030. "type": "library",
  4031. "extra": {
  4032. "branch-alias": {
  4033. "dev-master": "4.0-dev"
  4034. }
  4035. },
  4036. "autoload": {
  4037. "classmap": [
  4038. "src/"
  4039. ]
  4040. },
  4041. "notification-url": "https://packagist.org/downloads/",
  4042. "license": [
  4043. "BSD-3-Clause",
  4044. "GPL-2.0-only",
  4045. "GPL-3.0-only"
  4046. ],
  4047. "authors": [
  4048. {
  4049. "name": "David Grudl",
  4050. "homepage": "https://davidgrudl.com"
  4051. },
  4052. {
  4053. "name": "Nette Community",
  4054. "homepage": "https://nette.org/contributors"
  4055. }
  4056. ],
  4057. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4058. "homepage": "https://nette.org",
  4059. "keywords": [
  4060. "array",
  4061. "core",
  4062. "datetime",
  4063. "images",
  4064. "json",
  4065. "nette",
  4066. "paginator",
  4067. "password",
  4068. "slugify",
  4069. "string",
  4070. "unicode",
  4071. "utf-8",
  4072. "utility",
  4073. "validation"
  4074. ],
  4075. "support": {
  4076. "issues": "https://github.com/nette/utils/issues",
  4077. "source": "https://github.com/nette/utils/tree/v4.0.2"
  4078. },
  4079. "time": "2023-09-19T11:58:07+00:00"
  4080. },
  4081. {
  4082. "name": "nikic/php-parser",
  4083. "version": "v4.17.1",
  4084. "source": {
  4085. "type": "git",
  4086. "url": "https://github.com/nikic/PHP-Parser.git",
  4087. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d"
  4088. },
  4089. "dist": {
  4090. "type": "zip",
  4091. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  4092. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  4093. "shasum": ""
  4094. },
  4095. "require": {
  4096. "ext-tokenizer": "*",
  4097. "php": ">=7.0"
  4098. },
  4099. "require-dev": {
  4100. "ircmaxell/php-yacc": "^0.0.7",
  4101. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4102. },
  4103. "bin": [
  4104. "bin/php-parse"
  4105. ],
  4106. "type": "library",
  4107. "extra": {
  4108. "branch-alias": {
  4109. "dev-master": "4.9-dev"
  4110. }
  4111. },
  4112. "autoload": {
  4113. "psr-4": {
  4114. "PhpParser\\": "lib/PhpParser"
  4115. }
  4116. },
  4117. "notification-url": "https://packagist.org/downloads/",
  4118. "license": [
  4119. "BSD-3-Clause"
  4120. ],
  4121. "authors": [
  4122. {
  4123. "name": "Nikita Popov"
  4124. }
  4125. ],
  4126. "description": "A PHP parser written in PHP",
  4127. "keywords": [
  4128. "parser",
  4129. "php"
  4130. ],
  4131. "support": {
  4132. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4133. "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1"
  4134. },
  4135. "time": "2023-08-13T19:53:39+00:00"
  4136. },
  4137. {
  4138. "name": "nunomaduro/termwind",
  4139. "version": "v1.15.1",
  4140. "source": {
  4141. "type": "git",
  4142. "url": "https://github.com/nunomaduro/termwind.git",
  4143. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  4144. },
  4145. "dist": {
  4146. "type": "zip",
  4147. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  4148. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  4149. "shasum": ""
  4150. },
  4151. "require": {
  4152. "ext-mbstring": "*",
  4153. "php": "^8.0",
  4154. "symfony/console": "^5.3.0|^6.0.0"
  4155. },
  4156. "require-dev": {
  4157. "ergebnis/phpstan-rules": "^1.0.",
  4158. "illuminate/console": "^8.0|^9.0",
  4159. "illuminate/support": "^8.0|^9.0",
  4160. "laravel/pint": "^1.0.0",
  4161. "pestphp/pest": "^1.21.0",
  4162. "pestphp/pest-plugin-mock": "^1.0",
  4163. "phpstan/phpstan": "^1.4.6",
  4164. "phpstan/phpstan-strict-rules": "^1.1.0",
  4165. "symfony/var-dumper": "^5.2.7|^6.0.0",
  4166. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  4167. },
  4168. "type": "library",
  4169. "extra": {
  4170. "laravel": {
  4171. "providers": [
  4172. "Termwind\\Laravel\\TermwindServiceProvider"
  4173. ]
  4174. }
  4175. },
  4176. "autoload": {
  4177. "files": [
  4178. "src/Functions.php"
  4179. ],
  4180. "psr-4": {
  4181. "Termwind\\": "src/"
  4182. }
  4183. },
  4184. "notification-url": "https://packagist.org/downloads/",
  4185. "license": [
  4186. "MIT"
  4187. ],
  4188. "authors": [
  4189. {
  4190. "name": "Nuno Maduro",
  4191. "email": "enunomaduro@gmail.com"
  4192. }
  4193. ],
  4194. "description": "Its like Tailwind CSS, but for the console.",
  4195. "keywords": [
  4196. "cli",
  4197. "console",
  4198. "css",
  4199. "package",
  4200. "php",
  4201. "style"
  4202. ],
  4203. "support": {
  4204. "issues": "https://github.com/nunomaduro/termwind/issues",
  4205. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  4206. },
  4207. "funding": [
  4208. {
  4209. "url": "https://www.paypal.com/paypalme/enunomaduro",
  4210. "type": "custom"
  4211. },
  4212. {
  4213. "url": "https://github.com/nunomaduro",
  4214. "type": "github"
  4215. },
  4216. {
  4217. "url": "https://github.com/xiCO2k",
  4218. "type": "github"
  4219. }
  4220. ],
  4221. "time": "2023-02-08T01:06:31+00:00"
  4222. },
  4223. {
  4224. "name": "phpoption/phpoption",
  4225. "version": "1.9.1",
  4226. "source": {
  4227. "type": "git",
  4228. "url": "https://github.com/schmittjoh/php-option.git",
  4229. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  4230. },
  4231. "dist": {
  4232. "type": "zip",
  4233. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  4234. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  4235. "shasum": ""
  4236. },
  4237. "require": {
  4238. "php": "^7.2.5 || ^8.0"
  4239. },
  4240. "require-dev": {
  4241. "bamarni/composer-bin-plugin": "^1.8.2",
  4242. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  4243. },
  4244. "type": "library",
  4245. "extra": {
  4246. "bamarni-bin": {
  4247. "bin-links": true,
  4248. "forward-command": true
  4249. },
  4250. "branch-alias": {
  4251. "dev-master": "1.9-dev"
  4252. }
  4253. },
  4254. "autoload": {
  4255. "psr-4": {
  4256. "PhpOption\\": "src/PhpOption/"
  4257. }
  4258. },
  4259. "notification-url": "https://packagist.org/downloads/",
  4260. "license": [
  4261. "Apache-2.0"
  4262. ],
  4263. "authors": [
  4264. {
  4265. "name": "Johannes M. Schmitt",
  4266. "email": "schmittjoh@gmail.com",
  4267. "homepage": "https://github.com/schmittjoh"
  4268. },
  4269. {
  4270. "name": "Graham Campbell",
  4271. "email": "hello@gjcampbell.co.uk",
  4272. "homepage": "https://github.com/GrahamCampbell"
  4273. }
  4274. ],
  4275. "description": "Option Type for PHP",
  4276. "keywords": [
  4277. "language",
  4278. "option",
  4279. "php",
  4280. "type"
  4281. ],
  4282. "support": {
  4283. "issues": "https://github.com/schmittjoh/php-option/issues",
  4284. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  4285. },
  4286. "funding": [
  4287. {
  4288. "url": "https://github.com/GrahamCampbell",
  4289. "type": "github"
  4290. },
  4291. {
  4292. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4293. "type": "tidelift"
  4294. }
  4295. ],
  4296. "time": "2023-02-25T19:38:58+00:00"
  4297. },
  4298. {
  4299. "name": "psr/cache",
  4300. "version": "3.0.0",
  4301. "source": {
  4302. "type": "git",
  4303. "url": "https://github.com/php-fig/cache.git",
  4304. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4305. },
  4306. "dist": {
  4307. "type": "zip",
  4308. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4309. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4310. "shasum": ""
  4311. },
  4312. "require": {
  4313. "php": ">=8.0.0"
  4314. },
  4315. "type": "library",
  4316. "extra": {
  4317. "branch-alias": {
  4318. "dev-master": "1.0.x-dev"
  4319. }
  4320. },
  4321. "autoload": {
  4322. "psr-4": {
  4323. "Psr\\Cache\\": "src/"
  4324. }
  4325. },
  4326. "notification-url": "https://packagist.org/downloads/",
  4327. "license": [
  4328. "MIT"
  4329. ],
  4330. "authors": [
  4331. {
  4332. "name": "PHP-FIG",
  4333. "homepage": "https://www.php-fig.org/"
  4334. }
  4335. ],
  4336. "description": "Common interface for caching libraries",
  4337. "keywords": [
  4338. "cache",
  4339. "psr",
  4340. "psr-6"
  4341. ],
  4342. "support": {
  4343. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4344. },
  4345. "time": "2021-02-03T23:26:27+00:00"
  4346. },
  4347. {
  4348. "name": "psr/clock",
  4349. "version": "1.0.0",
  4350. "source": {
  4351. "type": "git",
  4352. "url": "https://github.com/php-fig/clock.git",
  4353. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4354. },
  4355. "dist": {
  4356. "type": "zip",
  4357. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4358. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4359. "shasum": ""
  4360. },
  4361. "require": {
  4362. "php": "^7.0 || ^8.0"
  4363. },
  4364. "type": "library",
  4365. "autoload": {
  4366. "psr-4": {
  4367. "Psr\\Clock\\": "src/"
  4368. }
  4369. },
  4370. "notification-url": "https://packagist.org/downloads/",
  4371. "license": [
  4372. "MIT"
  4373. ],
  4374. "authors": [
  4375. {
  4376. "name": "PHP-FIG",
  4377. "homepage": "https://www.php-fig.org/"
  4378. }
  4379. ],
  4380. "description": "Common interface for reading the clock.",
  4381. "homepage": "https://github.com/php-fig/clock",
  4382. "keywords": [
  4383. "clock",
  4384. "now",
  4385. "psr",
  4386. "psr-20",
  4387. "time"
  4388. ],
  4389. "support": {
  4390. "issues": "https://github.com/php-fig/clock/issues",
  4391. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4392. },
  4393. "time": "2022-11-25T14:36:26+00:00"
  4394. },
  4395. {
  4396. "name": "psr/container",
  4397. "version": "2.0.2",
  4398. "source": {
  4399. "type": "git",
  4400. "url": "https://github.com/php-fig/container.git",
  4401. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4402. },
  4403. "dist": {
  4404. "type": "zip",
  4405. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4406. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4407. "shasum": ""
  4408. },
  4409. "require": {
  4410. "php": ">=7.4.0"
  4411. },
  4412. "type": "library",
  4413. "extra": {
  4414. "branch-alias": {
  4415. "dev-master": "2.0.x-dev"
  4416. }
  4417. },
  4418. "autoload": {
  4419. "psr-4": {
  4420. "Psr\\Container\\": "src/"
  4421. }
  4422. },
  4423. "notification-url": "https://packagist.org/downloads/",
  4424. "license": [
  4425. "MIT"
  4426. ],
  4427. "authors": [
  4428. {
  4429. "name": "PHP-FIG",
  4430. "homepage": "https://www.php-fig.org/"
  4431. }
  4432. ],
  4433. "description": "Common Container Interface (PHP FIG PSR-11)",
  4434. "homepage": "https://github.com/php-fig/container",
  4435. "keywords": [
  4436. "PSR-11",
  4437. "container",
  4438. "container-interface",
  4439. "container-interop",
  4440. "psr"
  4441. ],
  4442. "support": {
  4443. "issues": "https://github.com/php-fig/container/issues",
  4444. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4445. },
  4446. "time": "2021-11-05T16:47:00+00:00"
  4447. },
  4448. {
  4449. "name": "psr/event-dispatcher",
  4450. "version": "1.0.0",
  4451. "source": {
  4452. "type": "git",
  4453. "url": "https://github.com/php-fig/event-dispatcher.git",
  4454. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4455. },
  4456. "dist": {
  4457. "type": "zip",
  4458. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4459. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4460. "shasum": ""
  4461. },
  4462. "require": {
  4463. "php": ">=7.2.0"
  4464. },
  4465. "type": "library",
  4466. "extra": {
  4467. "branch-alias": {
  4468. "dev-master": "1.0.x-dev"
  4469. }
  4470. },
  4471. "autoload": {
  4472. "psr-4": {
  4473. "Psr\\EventDispatcher\\": "src/"
  4474. }
  4475. },
  4476. "notification-url": "https://packagist.org/downloads/",
  4477. "license": [
  4478. "MIT"
  4479. ],
  4480. "authors": [
  4481. {
  4482. "name": "PHP-FIG",
  4483. "homepage": "http://www.php-fig.org/"
  4484. }
  4485. ],
  4486. "description": "Standard interfaces for event handling.",
  4487. "keywords": [
  4488. "events",
  4489. "psr",
  4490. "psr-14"
  4491. ],
  4492. "support": {
  4493. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4494. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4495. },
  4496. "time": "2019-01-08T18:20:26+00:00"
  4497. },
  4498. {
  4499. "name": "psr/http-client",
  4500. "version": "1.0.3",
  4501. "source": {
  4502. "type": "git",
  4503. "url": "https://github.com/php-fig/http-client.git",
  4504. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4505. },
  4506. "dist": {
  4507. "type": "zip",
  4508. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4509. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4510. "shasum": ""
  4511. },
  4512. "require": {
  4513. "php": "^7.0 || ^8.0",
  4514. "psr/http-message": "^1.0 || ^2.0"
  4515. },
  4516. "type": "library",
  4517. "extra": {
  4518. "branch-alias": {
  4519. "dev-master": "1.0.x-dev"
  4520. }
  4521. },
  4522. "autoload": {
  4523. "psr-4": {
  4524. "Psr\\Http\\Client\\": "src/"
  4525. }
  4526. },
  4527. "notification-url": "https://packagist.org/downloads/",
  4528. "license": [
  4529. "MIT"
  4530. ],
  4531. "authors": [
  4532. {
  4533. "name": "PHP-FIG",
  4534. "homepage": "https://www.php-fig.org/"
  4535. }
  4536. ],
  4537. "description": "Common interface for HTTP clients",
  4538. "homepage": "https://github.com/php-fig/http-client",
  4539. "keywords": [
  4540. "http",
  4541. "http-client",
  4542. "psr",
  4543. "psr-18"
  4544. ],
  4545. "support": {
  4546. "source": "https://github.com/php-fig/http-client"
  4547. },
  4548. "time": "2023-09-23T14:17:50+00:00"
  4549. },
  4550. {
  4551. "name": "psr/http-factory",
  4552. "version": "1.0.2",
  4553. "source": {
  4554. "type": "git",
  4555. "url": "https://github.com/php-fig/http-factory.git",
  4556. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4557. },
  4558. "dist": {
  4559. "type": "zip",
  4560. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4561. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4562. "shasum": ""
  4563. },
  4564. "require": {
  4565. "php": ">=7.0.0",
  4566. "psr/http-message": "^1.0 || ^2.0"
  4567. },
  4568. "type": "library",
  4569. "extra": {
  4570. "branch-alias": {
  4571. "dev-master": "1.0.x-dev"
  4572. }
  4573. },
  4574. "autoload": {
  4575. "psr-4": {
  4576. "Psr\\Http\\Message\\": "src/"
  4577. }
  4578. },
  4579. "notification-url": "https://packagist.org/downloads/",
  4580. "license": [
  4581. "MIT"
  4582. ],
  4583. "authors": [
  4584. {
  4585. "name": "PHP-FIG",
  4586. "homepage": "https://www.php-fig.org/"
  4587. }
  4588. ],
  4589. "description": "Common interfaces for PSR-7 HTTP message factories",
  4590. "keywords": [
  4591. "factory",
  4592. "http",
  4593. "message",
  4594. "psr",
  4595. "psr-17",
  4596. "psr-7",
  4597. "request",
  4598. "response"
  4599. ],
  4600. "support": {
  4601. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4602. },
  4603. "time": "2023-04-10T20:10:41+00:00"
  4604. },
  4605. {
  4606. "name": "psr/http-message",
  4607. "version": "2.0",
  4608. "source": {
  4609. "type": "git",
  4610. "url": "https://github.com/php-fig/http-message.git",
  4611. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4612. },
  4613. "dist": {
  4614. "type": "zip",
  4615. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4616. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4617. "shasum": ""
  4618. },
  4619. "require": {
  4620. "php": "^7.2 || ^8.0"
  4621. },
  4622. "type": "library",
  4623. "extra": {
  4624. "branch-alias": {
  4625. "dev-master": "2.0.x-dev"
  4626. }
  4627. },
  4628. "autoload": {
  4629. "psr-4": {
  4630. "Psr\\Http\\Message\\": "src/"
  4631. }
  4632. },
  4633. "notification-url": "https://packagist.org/downloads/",
  4634. "license": [
  4635. "MIT"
  4636. ],
  4637. "authors": [
  4638. {
  4639. "name": "PHP-FIG",
  4640. "homepage": "https://www.php-fig.org/"
  4641. }
  4642. ],
  4643. "description": "Common interface for HTTP messages",
  4644. "homepage": "https://github.com/php-fig/http-message",
  4645. "keywords": [
  4646. "http",
  4647. "http-message",
  4648. "psr",
  4649. "psr-7",
  4650. "request",
  4651. "response"
  4652. ],
  4653. "support": {
  4654. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4655. },
  4656. "time": "2023-04-04T09:54:51+00:00"
  4657. },
  4658. {
  4659. "name": "psr/log",
  4660. "version": "3.0.0",
  4661. "source": {
  4662. "type": "git",
  4663. "url": "https://github.com/php-fig/log.git",
  4664. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  4665. },
  4666. "dist": {
  4667. "type": "zip",
  4668. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4669. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4670. "shasum": ""
  4671. },
  4672. "require": {
  4673. "php": ">=8.0.0"
  4674. },
  4675. "type": "library",
  4676. "extra": {
  4677. "branch-alias": {
  4678. "dev-master": "3.x-dev"
  4679. }
  4680. },
  4681. "autoload": {
  4682. "psr-4": {
  4683. "Psr\\Log\\": "src"
  4684. }
  4685. },
  4686. "notification-url": "https://packagist.org/downloads/",
  4687. "license": [
  4688. "MIT"
  4689. ],
  4690. "authors": [
  4691. {
  4692. "name": "PHP-FIG",
  4693. "homepage": "https://www.php-fig.org/"
  4694. }
  4695. ],
  4696. "description": "Common interface for logging libraries",
  4697. "homepage": "https://github.com/php-fig/log",
  4698. "keywords": [
  4699. "log",
  4700. "psr",
  4701. "psr-3"
  4702. ],
  4703. "support": {
  4704. "source": "https://github.com/php-fig/log/tree/3.0.0"
  4705. },
  4706. "time": "2021-07-14T16:46:02+00:00"
  4707. },
  4708. {
  4709. "name": "psr/simple-cache",
  4710. "version": "3.0.0",
  4711. "source": {
  4712. "type": "git",
  4713. "url": "https://github.com/php-fig/simple-cache.git",
  4714. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4715. },
  4716. "dist": {
  4717. "type": "zip",
  4718. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4719. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4720. "shasum": ""
  4721. },
  4722. "require": {
  4723. "php": ">=8.0.0"
  4724. },
  4725. "type": "library",
  4726. "extra": {
  4727. "branch-alias": {
  4728. "dev-master": "3.0.x-dev"
  4729. }
  4730. },
  4731. "autoload": {
  4732. "psr-4": {
  4733. "Psr\\SimpleCache\\": "src/"
  4734. }
  4735. },
  4736. "notification-url": "https://packagist.org/downloads/",
  4737. "license": [
  4738. "MIT"
  4739. ],
  4740. "authors": [
  4741. {
  4742. "name": "PHP-FIG",
  4743. "homepage": "https://www.php-fig.org/"
  4744. }
  4745. ],
  4746. "description": "Common interfaces for simple caching",
  4747. "keywords": [
  4748. "cache",
  4749. "caching",
  4750. "psr",
  4751. "psr-16",
  4752. "simple-cache"
  4753. ],
  4754. "support": {
  4755. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4756. },
  4757. "time": "2021-10-29T13:26:27+00:00"
  4758. },
  4759. {
  4760. "name": "psy/psysh",
  4761. "version": "v0.11.21",
  4762. "source": {
  4763. "type": "git",
  4764. "url": "https://github.com/bobthecow/psysh.git",
  4765. "reference": "bcb22101107f3bf770523b65630c9d547f60c540"
  4766. },
  4767. "dist": {
  4768. "type": "zip",
  4769. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/bcb22101107f3bf770523b65630c9d547f60c540",
  4770. "reference": "bcb22101107f3bf770523b65630c9d547f60c540",
  4771. "shasum": ""
  4772. },
  4773. "require": {
  4774. "ext-json": "*",
  4775. "ext-tokenizer": "*",
  4776. "nikic/php-parser": "^4.0 || ^3.1",
  4777. "php": "^8.0 || ^7.0.8",
  4778. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4779. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4780. },
  4781. "conflict": {
  4782. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4783. },
  4784. "require-dev": {
  4785. "bamarni/composer-bin-plugin": "^1.2"
  4786. },
  4787. "suggest": {
  4788. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4789. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4790. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4791. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4792. },
  4793. "bin": [
  4794. "bin/psysh"
  4795. ],
  4796. "type": "library",
  4797. "extra": {
  4798. "branch-alias": {
  4799. "dev-main": "0.11.x-dev"
  4800. },
  4801. "bamarni-bin": {
  4802. "bin-links": false,
  4803. "forward-command": false
  4804. }
  4805. },
  4806. "autoload": {
  4807. "files": [
  4808. "src/functions.php"
  4809. ],
  4810. "psr-4": {
  4811. "Psy\\": "src/"
  4812. }
  4813. },
  4814. "notification-url": "https://packagist.org/downloads/",
  4815. "license": [
  4816. "MIT"
  4817. ],
  4818. "authors": [
  4819. {
  4820. "name": "Justin Hileman",
  4821. "email": "justin@justinhileman.info",
  4822. "homepage": "http://justinhileman.com"
  4823. }
  4824. ],
  4825. "description": "An interactive shell for modern PHP.",
  4826. "homepage": "http://psysh.org",
  4827. "keywords": [
  4828. "REPL",
  4829. "console",
  4830. "interactive",
  4831. "shell"
  4832. ],
  4833. "support": {
  4834. "issues": "https://github.com/bobthecow/psysh/issues",
  4835. "source": "https://github.com/bobthecow/psysh/tree/v0.11.21"
  4836. },
  4837. "time": "2023-09-17T21:15:54+00:00"
  4838. },
  4839. {
  4840. "name": "ralouphie/getallheaders",
  4841. "version": "3.0.3",
  4842. "source": {
  4843. "type": "git",
  4844. "url": "https://github.com/ralouphie/getallheaders.git",
  4845. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4846. },
  4847. "dist": {
  4848. "type": "zip",
  4849. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4850. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4851. "shasum": ""
  4852. },
  4853. "require": {
  4854. "php": ">=5.6"
  4855. },
  4856. "require-dev": {
  4857. "php-coveralls/php-coveralls": "^2.1",
  4858. "phpunit/phpunit": "^5 || ^6.5"
  4859. },
  4860. "type": "library",
  4861. "autoload": {
  4862. "files": [
  4863. "src/getallheaders.php"
  4864. ]
  4865. },
  4866. "notification-url": "https://packagist.org/downloads/",
  4867. "license": [
  4868. "MIT"
  4869. ],
  4870. "authors": [
  4871. {
  4872. "name": "Ralph Khattar",
  4873. "email": "ralph.khattar@gmail.com"
  4874. }
  4875. ],
  4876. "description": "A polyfill for getallheaders.",
  4877. "support": {
  4878. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4879. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4880. },
  4881. "time": "2019-03-08T08:55:37+00:00"
  4882. },
  4883. {
  4884. "name": "ramsey/collection",
  4885. "version": "2.0.0",
  4886. "source": {
  4887. "type": "git",
  4888. "url": "https://github.com/ramsey/collection.git",
  4889. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4890. },
  4891. "dist": {
  4892. "type": "zip",
  4893. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4894. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4895. "shasum": ""
  4896. },
  4897. "require": {
  4898. "php": "^8.1"
  4899. },
  4900. "require-dev": {
  4901. "captainhook/plugin-composer": "^5.3",
  4902. "ergebnis/composer-normalize": "^2.28.3",
  4903. "fakerphp/faker": "^1.21",
  4904. "hamcrest/hamcrest-php": "^2.0",
  4905. "jangregor/phpstan-prophecy": "^1.0",
  4906. "mockery/mockery": "^1.5",
  4907. "php-parallel-lint/php-console-highlighter": "^1.0",
  4908. "php-parallel-lint/php-parallel-lint": "^1.3",
  4909. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4910. "phpspec/prophecy-phpunit": "^2.0",
  4911. "phpstan/extension-installer": "^1.2",
  4912. "phpstan/phpstan": "^1.9",
  4913. "phpstan/phpstan-mockery": "^1.1",
  4914. "phpstan/phpstan-phpunit": "^1.3",
  4915. "phpunit/phpunit": "^9.5",
  4916. "psalm/plugin-mockery": "^1.1",
  4917. "psalm/plugin-phpunit": "^0.18.4",
  4918. "ramsey/coding-standard": "^2.0.3",
  4919. "ramsey/conventional-commits": "^1.3",
  4920. "vimeo/psalm": "^5.4"
  4921. },
  4922. "type": "library",
  4923. "extra": {
  4924. "captainhook": {
  4925. "force-install": true
  4926. },
  4927. "ramsey/conventional-commits": {
  4928. "configFile": "conventional-commits.json"
  4929. }
  4930. },
  4931. "autoload": {
  4932. "psr-4": {
  4933. "Ramsey\\Collection\\": "src/"
  4934. }
  4935. },
  4936. "notification-url": "https://packagist.org/downloads/",
  4937. "license": [
  4938. "MIT"
  4939. ],
  4940. "authors": [
  4941. {
  4942. "name": "Ben Ramsey",
  4943. "email": "ben@benramsey.com",
  4944. "homepage": "https://benramsey.com"
  4945. }
  4946. ],
  4947. "description": "A PHP library for representing and manipulating collections.",
  4948. "keywords": [
  4949. "array",
  4950. "collection",
  4951. "hash",
  4952. "map",
  4953. "queue",
  4954. "set"
  4955. ],
  4956. "support": {
  4957. "issues": "https://github.com/ramsey/collection/issues",
  4958. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4959. },
  4960. "funding": [
  4961. {
  4962. "url": "https://github.com/ramsey",
  4963. "type": "github"
  4964. },
  4965. {
  4966. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4967. "type": "tidelift"
  4968. }
  4969. ],
  4970. "time": "2022-12-31T21:50:55+00:00"
  4971. },
  4972. {
  4973. "name": "ramsey/uuid",
  4974. "version": "4.7.4",
  4975. "source": {
  4976. "type": "git",
  4977. "url": "https://github.com/ramsey/uuid.git",
  4978. "reference": "60a4c63ab724854332900504274f6150ff26d286"
  4979. },
  4980. "dist": {
  4981. "type": "zip",
  4982. "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
  4983. "reference": "60a4c63ab724854332900504274f6150ff26d286",
  4984. "shasum": ""
  4985. },
  4986. "require": {
  4987. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  4988. "ext-json": "*",
  4989. "php": "^8.0",
  4990. "ramsey/collection": "^1.2 || ^2.0"
  4991. },
  4992. "replace": {
  4993. "rhumsaa/uuid": "self.version"
  4994. },
  4995. "require-dev": {
  4996. "captainhook/captainhook": "^5.10",
  4997. "captainhook/plugin-composer": "^5.3",
  4998. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4999. "doctrine/annotations": "^1.8",
  5000. "ergebnis/composer-normalize": "^2.15",
  5001. "mockery/mockery": "^1.3",
  5002. "paragonie/random-lib": "^2",
  5003. "php-mock/php-mock": "^2.2",
  5004. "php-mock/php-mock-mockery": "^1.3",
  5005. "php-parallel-lint/php-parallel-lint": "^1.1",
  5006. "phpbench/phpbench": "^1.0",
  5007. "phpstan/extension-installer": "^1.1",
  5008. "phpstan/phpstan": "^1.8",
  5009. "phpstan/phpstan-mockery": "^1.1",
  5010. "phpstan/phpstan-phpunit": "^1.1",
  5011. "phpunit/phpunit": "^8.5 || ^9",
  5012. "ramsey/composer-repl": "^1.4",
  5013. "slevomat/coding-standard": "^8.4",
  5014. "squizlabs/php_codesniffer": "^3.5",
  5015. "vimeo/psalm": "^4.9"
  5016. },
  5017. "suggest": {
  5018. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5019. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5020. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5021. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5022. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5023. },
  5024. "type": "library",
  5025. "extra": {
  5026. "captainhook": {
  5027. "force-install": true
  5028. }
  5029. },
  5030. "autoload": {
  5031. "files": [
  5032. "src/functions.php"
  5033. ],
  5034. "psr-4": {
  5035. "Ramsey\\Uuid\\": "src/"
  5036. }
  5037. },
  5038. "notification-url": "https://packagist.org/downloads/",
  5039. "license": [
  5040. "MIT"
  5041. ],
  5042. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5043. "keywords": [
  5044. "guid",
  5045. "identifier",
  5046. "uuid"
  5047. ],
  5048. "support": {
  5049. "issues": "https://github.com/ramsey/uuid/issues",
  5050. "source": "https://github.com/ramsey/uuid/tree/4.7.4"
  5051. },
  5052. "funding": [
  5053. {
  5054. "url": "https://github.com/ramsey",
  5055. "type": "github"
  5056. },
  5057. {
  5058. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  5059. "type": "tidelift"
  5060. }
  5061. ],
  5062. "time": "2023-04-15T23:01:58+00:00"
  5063. },
  5064. {
  5065. "name": "ryangjchandler/blade-capture-directive",
  5066. "version": "v0.3.0",
  5067. "source": {
  5068. "type": "git",
  5069. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  5070. "reference": "62fd2ecb50b938a46025093bcb64fcaddd531f89"
  5071. },
  5072. "dist": {
  5073. "type": "zip",
  5074. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/62fd2ecb50b938a46025093bcb64fcaddd531f89",
  5075. "reference": "62fd2ecb50b938a46025093bcb64fcaddd531f89",
  5076. "shasum": ""
  5077. },
  5078. "require": {
  5079. "illuminate/contracts": "^9.0|^10.0",
  5080. "php": "^8.0",
  5081. "spatie/laravel-package-tools": "^1.9.2"
  5082. },
  5083. "require-dev": {
  5084. "nunomaduro/collision": "^6.0|^7.0",
  5085. "nunomaduro/larastan": "^2.0",
  5086. "orchestra/testbench": "^7.22|^8.0",
  5087. "pestphp/pest": "^1.21",
  5088. "pestphp/pest-plugin-laravel": "^1.1",
  5089. "phpstan/extension-installer": "^1.1",
  5090. "phpstan/phpstan-deprecation-rules": "^1.0",
  5091. "phpstan/phpstan-phpunit": "^1.0",
  5092. "phpunit/phpunit": "^9.5",
  5093. "spatie/laravel-ray": "^1.26"
  5094. },
  5095. "type": "library",
  5096. "extra": {
  5097. "laravel": {
  5098. "providers": [
  5099. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  5100. ],
  5101. "aliases": {
  5102. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  5103. }
  5104. }
  5105. },
  5106. "autoload": {
  5107. "psr-4": {
  5108. "RyanChandler\\BladeCaptureDirective\\": "src",
  5109. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  5110. }
  5111. },
  5112. "notification-url": "https://packagist.org/downloads/",
  5113. "license": [
  5114. "MIT"
  5115. ],
  5116. "authors": [
  5117. {
  5118. "name": "Ryan Chandler",
  5119. "email": "support@ryangjchandler.co.uk",
  5120. "role": "Developer"
  5121. }
  5122. ],
  5123. "description": "Create inline partials in your Blade templates with ease.",
  5124. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  5125. "keywords": [
  5126. "blade-capture-directive",
  5127. "laravel",
  5128. "ryangjchandler"
  5129. ],
  5130. "support": {
  5131. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  5132. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v0.3.0"
  5133. },
  5134. "funding": [
  5135. {
  5136. "url": "https://github.com/ryangjchandler",
  5137. "type": "github"
  5138. }
  5139. ],
  5140. "time": "2023-02-14T16:54:54+00:00"
  5141. },
  5142. {
  5143. "name": "spatie/color",
  5144. "version": "1.5.3",
  5145. "source": {
  5146. "type": "git",
  5147. "url": "https://github.com/spatie/color.git",
  5148. "reference": "49739265900cabce4640cd26c3266fd8d2cca390"
  5149. },
  5150. "dist": {
  5151. "type": "zip",
  5152. "url": "https://api.github.com/repos/spatie/color/zipball/49739265900cabce4640cd26c3266fd8d2cca390",
  5153. "reference": "49739265900cabce4640cd26c3266fd8d2cca390",
  5154. "shasum": ""
  5155. },
  5156. "require": {
  5157. "php": "^7.3|^8.0"
  5158. },
  5159. "require-dev": {
  5160. "pestphp/pest": "^1.22",
  5161. "phpunit/phpunit": "^6.5||^9.0"
  5162. },
  5163. "type": "library",
  5164. "autoload": {
  5165. "psr-4": {
  5166. "Spatie\\Color\\": "src"
  5167. }
  5168. },
  5169. "notification-url": "https://packagist.org/downloads/",
  5170. "license": [
  5171. "MIT"
  5172. ],
  5173. "authors": [
  5174. {
  5175. "name": "Sebastian De Deyne",
  5176. "email": "sebastian@spatie.be",
  5177. "homepage": "https://spatie.be",
  5178. "role": "Developer"
  5179. }
  5180. ],
  5181. "description": "A little library to handle color conversions",
  5182. "homepage": "https://github.com/spatie/color",
  5183. "keywords": [
  5184. "color",
  5185. "conversion",
  5186. "rgb",
  5187. "spatie"
  5188. ],
  5189. "support": {
  5190. "issues": "https://github.com/spatie/color/issues",
  5191. "source": "https://github.com/spatie/color/tree/1.5.3"
  5192. },
  5193. "funding": [
  5194. {
  5195. "url": "https://github.com/spatie",
  5196. "type": "github"
  5197. }
  5198. ],
  5199. "time": "2022-12-18T12:58:32+00:00"
  5200. },
  5201. {
  5202. "name": "spatie/eloquent-sortable",
  5203. "version": "4.0.2",
  5204. "source": {
  5205. "type": "git",
  5206. "url": "https://github.com/spatie/eloquent-sortable.git",
  5207. "reference": "74994d10a17d15d2cdb319d6b2ad7cb6fa067c0a"
  5208. },
  5209. "dist": {
  5210. "type": "zip",
  5211. "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/74994d10a17d15d2cdb319d6b2ad7cb6fa067c0a",
  5212. "reference": "74994d10a17d15d2cdb319d6b2ad7cb6fa067c0a",
  5213. "shasum": ""
  5214. },
  5215. "require": {
  5216. "illuminate/database": "^9.0|^10.0",
  5217. "illuminate/support": "^9.0|^10.0",
  5218. "nesbot/carbon": "^2.63",
  5219. "php": "^8.1",
  5220. "spatie/laravel-package-tools": "^1.9"
  5221. },
  5222. "require-dev": {
  5223. "orchestra/testbench": "^7.0|^8.0",
  5224. "phpunit/phpunit": "^9.5"
  5225. },
  5226. "type": "library",
  5227. "extra": {
  5228. "laravel": {
  5229. "providers": [
  5230. "Spatie\\EloquentSortable\\EloquentSortableServiceProvider"
  5231. ]
  5232. }
  5233. },
  5234. "autoload": {
  5235. "psr-4": {
  5236. "Spatie\\EloquentSortable\\": "src/"
  5237. }
  5238. },
  5239. "notification-url": "https://packagist.org/downloads/",
  5240. "license": [
  5241. "MIT"
  5242. ],
  5243. "authors": [
  5244. {
  5245. "name": "Freek Van der Herten",
  5246. "email": "freek@spatie.be"
  5247. }
  5248. ],
  5249. "description": "Sortable behaviour for eloquent models",
  5250. "homepage": "https://github.com/spatie/eloquent-sortable",
  5251. "keywords": [
  5252. "behaviour",
  5253. "eloquent",
  5254. "laravel",
  5255. "model",
  5256. "sort",
  5257. "sortable"
  5258. ],
  5259. "support": {
  5260. "issues": "https://github.com/spatie/eloquent-sortable/issues",
  5261. "source": "https://github.com/spatie/eloquent-sortable/tree/4.0.2"
  5262. },
  5263. "funding": [
  5264. {
  5265. "url": "https://spatie.be/open-source/support-us",
  5266. "type": "custom"
  5267. },
  5268. {
  5269. "url": "https://github.com/spatie",
  5270. "type": "github"
  5271. }
  5272. ],
  5273. "time": "2023-01-23T08:34:14+00:00"
  5274. },
  5275. {
  5276. "name": "spatie/invade",
  5277. "version": "1.1.1",
  5278. "source": {
  5279. "type": "git",
  5280. "url": "https://github.com/spatie/invade.git",
  5281. "reference": "d0a9c895a96152549d478a7e3420e19039eef038"
  5282. },
  5283. "dist": {
  5284. "type": "zip",
  5285. "url": "https://api.github.com/repos/spatie/invade/zipball/d0a9c895a96152549d478a7e3420e19039eef038",
  5286. "reference": "d0a9c895a96152549d478a7e3420e19039eef038",
  5287. "shasum": ""
  5288. },
  5289. "require": {
  5290. "php": "^8.0"
  5291. },
  5292. "require-dev": {
  5293. "pestphp/pest": "^1.20",
  5294. "phpstan/phpstan": "^1.4",
  5295. "spatie/ray": "^1.28"
  5296. },
  5297. "type": "library",
  5298. "extra": {
  5299. "phpstan": {
  5300. "includes": [
  5301. "phpstan-extension.neon"
  5302. ]
  5303. }
  5304. },
  5305. "autoload": {
  5306. "files": [
  5307. "src/functions.php"
  5308. ],
  5309. "psr-4": {
  5310. "Spatie\\Invade\\": "src"
  5311. }
  5312. },
  5313. "notification-url": "https://packagist.org/downloads/",
  5314. "license": [
  5315. "MIT"
  5316. ],
  5317. "authors": [
  5318. {
  5319. "name": "Freek Van der Herten",
  5320. "email": "freek@spatie.be",
  5321. "role": "Developer"
  5322. }
  5323. ],
  5324. "description": "A PHP function to work with private properties and methods",
  5325. "homepage": "https://github.com/spatie/invade",
  5326. "keywords": [
  5327. "invade",
  5328. "spatie"
  5329. ],
  5330. "support": {
  5331. "source": "https://github.com/spatie/invade/tree/1.1.1"
  5332. },
  5333. "funding": [
  5334. {
  5335. "url": "https://github.com/spatie",
  5336. "type": "github"
  5337. }
  5338. ],
  5339. "time": "2022-07-05T09:31:00+00:00"
  5340. },
  5341. {
  5342. "name": "spatie/laravel-package-tools",
  5343. "version": "1.16.1",
  5344. "source": {
  5345. "type": "git",
  5346. "url": "https://github.com/spatie/laravel-package-tools.git",
  5347. "reference": "cc7c991555a37f9fa6b814aa03af73f88026a83d"
  5348. },
  5349. "dist": {
  5350. "type": "zip",
  5351. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/cc7c991555a37f9fa6b814aa03af73f88026a83d",
  5352. "reference": "cc7c991555a37f9fa6b814aa03af73f88026a83d",
  5353. "shasum": ""
  5354. },
  5355. "require": {
  5356. "illuminate/contracts": "^9.28|^10.0",
  5357. "php": "^8.0"
  5358. },
  5359. "require-dev": {
  5360. "mockery/mockery": "^1.5",
  5361. "orchestra/testbench": "^7.7|^8.0",
  5362. "pestphp/pest": "^1.22",
  5363. "phpunit/phpunit": "^9.5.24",
  5364. "spatie/pest-plugin-test-time": "^1.1"
  5365. },
  5366. "type": "library",
  5367. "autoload": {
  5368. "psr-4": {
  5369. "Spatie\\LaravelPackageTools\\": "src"
  5370. }
  5371. },
  5372. "notification-url": "https://packagist.org/downloads/",
  5373. "license": [
  5374. "MIT"
  5375. ],
  5376. "authors": [
  5377. {
  5378. "name": "Freek Van der Herten",
  5379. "email": "freek@spatie.be",
  5380. "role": "Developer"
  5381. }
  5382. ],
  5383. "description": "Tools for creating Laravel packages",
  5384. "homepage": "https://github.com/spatie/laravel-package-tools",
  5385. "keywords": [
  5386. "laravel-package-tools",
  5387. "spatie"
  5388. ],
  5389. "support": {
  5390. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  5391. "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.1"
  5392. },
  5393. "funding": [
  5394. {
  5395. "url": "https://github.com/spatie",
  5396. "type": "github"
  5397. }
  5398. ],
  5399. "time": "2023-08-23T09:04:39+00:00"
  5400. },
  5401. {
  5402. "name": "spatie/laravel-tags",
  5403. "version": "4.5.1",
  5404. "source": {
  5405. "type": "git",
  5406. "url": "https://github.com/spatie/laravel-tags.git",
  5407. "reference": "fcc6c532fa0ce0d1eefe886fd44dcedcca3173aa"
  5408. },
  5409. "dist": {
  5410. "type": "zip",
  5411. "url": "https://api.github.com/repos/spatie/laravel-tags/zipball/fcc6c532fa0ce0d1eefe886fd44dcedcca3173aa",
  5412. "reference": "fcc6c532fa0ce0d1eefe886fd44dcedcca3173aa",
  5413. "shasum": ""
  5414. },
  5415. "require": {
  5416. "laravel/framework": "^8.67|^9.0|^10.0",
  5417. "nesbot/carbon": "^2.63",
  5418. "php": "^8.0",
  5419. "spatie/eloquent-sortable": "^3.10|^4.0",
  5420. "spatie/laravel-package-tools": "^1.4",
  5421. "spatie/laravel-translatable": "^4.6|^5.0|^6.0"
  5422. },
  5423. "require-dev": {
  5424. "orchestra/testbench": "^6.13|^7.0|^8.0",
  5425. "pestphp/pest": "^1.22",
  5426. "phpunit/phpunit": "^9.5.2"
  5427. },
  5428. "type": "library",
  5429. "extra": {
  5430. "laravel": {
  5431. "providers": [
  5432. "Spatie\\Tags\\TagsServiceProvider"
  5433. ]
  5434. }
  5435. },
  5436. "autoload": {
  5437. "psr-4": {
  5438. "Spatie\\Tags\\": "src"
  5439. }
  5440. },
  5441. "notification-url": "https://packagist.org/downloads/",
  5442. "license": [
  5443. "MIT"
  5444. ],
  5445. "authors": [
  5446. {
  5447. "name": "Freek Van der Herten",
  5448. "email": "freek@spatie.be",
  5449. "homepage": "https://spatie.be",
  5450. "role": "Developer"
  5451. }
  5452. ],
  5453. "description": "Add tags and taggable behaviour to your Laravel app",
  5454. "homepage": "https://github.com/spatie/laravel-tags",
  5455. "keywords": [
  5456. "laravel-tags",
  5457. "spatie"
  5458. ],
  5459. "support": {
  5460. "issues": "https://github.com/spatie/laravel-tags/issues",
  5461. "source": "https://github.com/spatie/laravel-tags/tree/4.5.1"
  5462. },
  5463. "funding": [
  5464. {
  5465. "url": "https://github.com/spatie",
  5466. "type": "github"
  5467. }
  5468. ],
  5469. "time": "2023-07-31T08:43:55+00:00"
  5470. },
  5471. {
  5472. "name": "spatie/laravel-translatable",
  5473. "version": "6.5.3",
  5474. "source": {
  5475. "type": "git",
  5476. "url": "https://github.com/spatie/laravel-translatable.git",
  5477. "reference": "1906a3f1492c4b4b99d9f150b67cca4b697d85d7"
  5478. },
  5479. "dist": {
  5480. "type": "zip",
  5481. "url": "https://api.github.com/repos/spatie/laravel-translatable/zipball/1906a3f1492c4b4b99d9f150b67cca4b697d85d7",
  5482. "reference": "1906a3f1492c4b4b99d9f150b67cca4b697d85d7",
  5483. "shasum": ""
  5484. },
  5485. "require": {
  5486. "illuminate/database": "^9.0|^10.0",
  5487. "illuminate/support": "^9.0|^10.0",
  5488. "php": "^8.0",
  5489. "spatie/laravel-package-tools": "^1.11"
  5490. },
  5491. "require-dev": {
  5492. "mockery/mockery": "^1.4",
  5493. "orchestra/testbench": "^7.0|^8.0",
  5494. "pestphp/pest": "^1.20"
  5495. },
  5496. "type": "library",
  5497. "extra": {
  5498. "laravel": {
  5499. "providers": [
  5500. "Spatie\\Translatable\\TranslatableServiceProvider"
  5501. ]
  5502. },
  5503. "aliases": {
  5504. "Translatable": "Spatie\\Translatable\\Facades\\Translatable"
  5505. }
  5506. },
  5507. "autoload": {
  5508. "psr-4": {
  5509. "Spatie\\Translatable\\": "src"
  5510. }
  5511. },
  5512. "notification-url": "https://packagist.org/downloads/",
  5513. "license": [
  5514. "MIT"
  5515. ],
  5516. "authors": [
  5517. {
  5518. "name": "Freek Van der Herten",
  5519. "email": "freek@spatie.be",
  5520. "homepage": "https://spatie.be",
  5521. "role": "Developer"
  5522. },
  5523. {
  5524. "name": "Sebastian De Deyne",
  5525. "email": "sebastian@spatie.be",
  5526. "homepage": "https://spatie.be",
  5527. "role": "Developer"
  5528. }
  5529. ],
  5530. "description": "A trait to make an Eloquent model hold translations",
  5531. "homepage": "https://github.com/spatie/laravel-translatable",
  5532. "keywords": [
  5533. "eloquent",
  5534. "i8n",
  5535. "laravel-translatable",
  5536. "model",
  5537. "multilingual",
  5538. "spatie",
  5539. "translate"
  5540. ],
  5541. "support": {
  5542. "issues": "https://github.com/spatie/laravel-translatable/issues",
  5543. "source": "https://github.com/spatie/laravel-translatable/tree/6.5.3"
  5544. },
  5545. "funding": [
  5546. {
  5547. "url": "https://github.com/spatie",
  5548. "type": "github"
  5549. }
  5550. ],
  5551. "time": "2023-07-19T19:21:38+00:00"
  5552. },
  5553. {
  5554. "name": "squirephp/model",
  5555. "version": "v3.4.2",
  5556. "source": {
  5557. "type": "git",
  5558. "url": "https://github.com/squirephp/model.git",
  5559. "reference": "dbd3cd2fb74c36f6aabd9294de40a8f64c82518d"
  5560. },
  5561. "dist": {
  5562. "type": "zip",
  5563. "url": "https://api.github.com/repos/squirephp/model/zipball/dbd3cd2fb74c36f6aabd9294de40a8f64c82518d",
  5564. "reference": "dbd3cd2fb74c36f6aabd9294de40a8f64c82518d",
  5565. "shasum": ""
  5566. },
  5567. "require": {
  5568. "ext-pdo_sqlite": "*",
  5569. "illuminate/database": "^8.40|^9.0|^10.0",
  5570. "illuminate/support": "^8.0|^9.0|^10.0",
  5571. "php": "^8.0"
  5572. },
  5573. "type": "library",
  5574. "extra": {
  5575. "laravel": {
  5576. "providers": [
  5577. "Squire\\ModelServiceProvider"
  5578. ]
  5579. }
  5580. },
  5581. "autoload": {
  5582. "psr-4": {
  5583. "Squire\\": "src"
  5584. }
  5585. },
  5586. "notification-url": "https://packagist.org/downloads/",
  5587. "license": [
  5588. "MIT"
  5589. ],
  5590. "authors": [
  5591. {
  5592. "name": "Dan Harrin",
  5593. "email": "dan@danharrin.com"
  5594. }
  5595. ],
  5596. "description": "A library containing the base Squire model class.",
  5597. "homepage": "https://github.com/squirephp",
  5598. "keywords": [
  5599. "squire"
  5600. ],
  5601. "support": {
  5602. "issues": "https://github.com/squirephp/squire/issues",
  5603. "source": "https://github.com/squirephp/squire"
  5604. },
  5605. "time": "2023-02-18T12:44:15+00:00"
  5606. },
  5607. {
  5608. "name": "squirephp/repository",
  5609. "version": "v3.4.2",
  5610. "source": {
  5611. "type": "git",
  5612. "url": "https://github.com/squirephp/repository.git",
  5613. "reference": "dffe543ee093cdad29c776ae901eb5aa43ac371a"
  5614. },
  5615. "dist": {
  5616. "type": "zip",
  5617. "url": "https://api.github.com/repos/squirephp/repository/zipball/dffe543ee093cdad29c776ae901eb5aa43ac371a",
  5618. "reference": "dffe543ee093cdad29c776ae901eb5aa43ac371a",
  5619. "shasum": ""
  5620. },
  5621. "require": {
  5622. "illuminate/support": "^8.0|^9.0|^10.0",
  5623. "php": "^8.0"
  5624. },
  5625. "type": "library",
  5626. "extra": {
  5627. "laravel": {
  5628. "providers": [
  5629. "Squire\\RepositoryServiceProvider"
  5630. ],
  5631. "aliases": {
  5632. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  5633. }
  5634. }
  5635. },
  5636. "autoload": {
  5637. "psr-4": {
  5638. "Squire\\": "src"
  5639. }
  5640. },
  5641. "notification-url": "https://packagist.org/downloads/",
  5642. "license": [
  5643. "MIT"
  5644. ],
  5645. "authors": [
  5646. {
  5647. "name": "Dan Harrin",
  5648. "email": "dan@danharrin.com"
  5649. }
  5650. ],
  5651. "description": "A library containing the Squire repository.",
  5652. "homepage": "https://github.com/squirephp",
  5653. "keywords": [
  5654. "squire"
  5655. ],
  5656. "support": {
  5657. "issues": "https://github.com/squirephp/squire/issues",
  5658. "source": "https://github.com/squirephp/squire"
  5659. },
  5660. "time": "2023-02-18T12:44:39+00:00"
  5661. },
  5662. {
  5663. "name": "symfony/console",
  5664. "version": "v6.3.4",
  5665. "source": {
  5666. "type": "git",
  5667. "url": "https://github.com/symfony/console.git",
  5668. "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6"
  5669. },
  5670. "dist": {
  5671. "type": "zip",
  5672. "url": "https://api.github.com/repos/symfony/console/zipball/eca495f2ee845130855ddf1cf18460c38966c8b6",
  5673. "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6",
  5674. "shasum": ""
  5675. },
  5676. "require": {
  5677. "php": ">=8.1",
  5678. "symfony/deprecation-contracts": "^2.5|^3",
  5679. "symfony/polyfill-mbstring": "~1.0",
  5680. "symfony/service-contracts": "^2.5|^3",
  5681. "symfony/string": "^5.4|^6.0"
  5682. },
  5683. "conflict": {
  5684. "symfony/dependency-injection": "<5.4",
  5685. "symfony/dotenv": "<5.4",
  5686. "symfony/event-dispatcher": "<5.4",
  5687. "symfony/lock": "<5.4",
  5688. "symfony/process": "<5.4"
  5689. },
  5690. "provide": {
  5691. "psr/log-implementation": "1.0|2.0|3.0"
  5692. },
  5693. "require-dev": {
  5694. "psr/log": "^1|^2|^3",
  5695. "symfony/config": "^5.4|^6.0",
  5696. "symfony/dependency-injection": "^5.4|^6.0",
  5697. "symfony/event-dispatcher": "^5.4|^6.0",
  5698. "symfony/lock": "^5.4|^6.0",
  5699. "symfony/process": "^5.4|^6.0",
  5700. "symfony/var-dumper": "^5.4|^6.0"
  5701. },
  5702. "type": "library",
  5703. "autoload": {
  5704. "psr-4": {
  5705. "Symfony\\Component\\Console\\": ""
  5706. },
  5707. "exclude-from-classmap": [
  5708. "/Tests/"
  5709. ]
  5710. },
  5711. "notification-url": "https://packagist.org/downloads/",
  5712. "license": [
  5713. "MIT"
  5714. ],
  5715. "authors": [
  5716. {
  5717. "name": "Fabien Potencier",
  5718. "email": "fabien@symfony.com"
  5719. },
  5720. {
  5721. "name": "Symfony Community",
  5722. "homepage": "https://symfony.com/contributors"
  5723. }
  5724. ],
  5725. "description": "Eases the creation of beautiful and testable command line interfaces",
  5726. "homepage": "https://symfony.com",
  5727. "keywords": [
  5728. "cli",
  5729. "command-line",
  5730. "console",
  5731. "terminal"
  5732. ],
  5733. "support": {
  5734. "source": "https://github.com/symfony/console/tree/v6.3.4"
  5735. },
  5736. "funding": [
  5737. {
  5738. "url": "https://symfony.com/sponsor",
  5739. "type": "custom"
  5740. },
  5741. {
  5742. "url": "https://github.com/fabpot",
  5743. "type": "github"
  5744. },
  5745. {
  5746. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5747. "type": "tidelift"
  5748. }
  5749. ],
  5750. "time": "2023-08-16T10:10:12+00:00"
  5751. },
  5752. {
  5753. "name": "symfony/css-selector",
  5754. "version": "v6.3.2",
  5755. "source": {
  5756. "type": "git",
  5757. "url": "https://github.com/symfony/css-selector.git",
  5758. "reference": "883d961421ab1709877c10ac99451632a3d6fa57"
  5759. },
  5760. "dist": {
  5761. "type": "zip",
  5762. "url": "https://api.github.com/repos/symfony/css-selector/zipball/883d961421ab1709877c10ac99451632a3d6fa57",
  5763. "reference": "883d961421ab1709877c10ac99451632a3d6fa57",
  5764. "shasum": ""
  5765. },
  5766. "require": {
  5767. "php": ">=8.1"
  5768. },
  5769. "type": "library",
  5770. "autoload": {
  5771. "psr-4": {
  5772. "Symfony\\Component\\CssSelector\\": ""
  5773. },
  5774. "exclude-from-classmap": [
  5775. "/Tests/"
  5776. ]
  5777. },
  5778. "notification-url": "https://packagist.org/downloads/",
  5779. "license": [
  5780. "MIT"
  5781. ],
  5782. "authors": [
  5783. {
  5784. "name": "Fabien Potencier",
  5785. "email": "fabien@symfony.com"
  5786. },
  5787. {
  5788. "name": "Jean-François Simon",
  5789. "email": "jeanfrancois.simon@sensiolabs.com"
  5790. },
  5791. {
  5792. "name": "Symfony Community",
  5793. "homepage": "https://symfony.com/contributors"
  5794. }
  5795. ],
  5796. "description": "Converts CSS selectors to XPath expressions",
  5797. "homepage": "https://symfony.com",
  5798. "support": {
  5799. "source": "https://github.com/symfony/css-selector/tree/v6.3.2"
  5800. },
  5801. "funding": [
  5802. {
  5803. "url": "https://symfony.com/sponsor",
  5804. "type": "custom"
  5805. },
  5806. {
  5807. "url": "https://github.com/fabpot",
  5808. "type": "github"
  5809. },
  5810. {
  5811. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5812. "type": "tidelift"
  5813. }
  5814. ],
  5815. "time": "2023-07-12T16:00:22+00:00"
  5816. },
  5817. {
  5818. "name": "symfony/deprecation-contracts",
  5819. "version": "v3.3.0",
  5820. "source": {
  5821. "type": "git",
  5822. "url": "https://github.com/symfony/deprecation-contracts.git",
  5823. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  5824. },
  5825. "dist": {
  5826. "type": "zip",
  5827. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  5828. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  5829. "shasum": ""
  5830. },
  5831. "require": {
  5832. "php": ">=8.1"
  5833. },
  5834. "type": "library",
  5835. "extra": {
  5836. "branch-alias": {
  5837. "dev-main": "3.4-dev"
  5838. },
  5839. "thanks": {
  5840. "name": "symfony/contracts",
  5841. "url": "https://github.com/symfony/contracts"
  5842. }
  5843. },
  5844. "autoload": {
  5845. "files": [
  5846. "function.php"
  5847. ]
  5848. },
  5849. "notification-url": "https://packagist.org/downloads/",
  5850. "license": [
  5851. "MIT"
  5852. ],
  5853. "authors": [
  5854. {
  5855. "name": "Nicolas Grekas",
  5856. "email": "p@tchwork.com"
  5857. },
  5858. {
  5859. "name": "Symfony Community",
  5860. "homepage": "https://symfony.com/contributors"
  5861. }
  5862. ],
  5863. "description": "A generic function and convention to trigger deprecation notices",
  5864. "homepage": "https://symfony.com",
  5865. "support": {
  5866. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  5867. },
  5868. "funding": [
  5869. {
  5870. "url": "https://symfony.com/sponsor",
  5871. "type": "custom"
  5872. },
  5873. {
  5874. "url": "https://github.com/fabpot",
  5875. "type": "github"
  5876. },
  5877. {
  5878. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5879. "type": "tidelift"
  5880. }
  5881. ],
  5882. "time": "2023-05-23T14:45:45+00:00"
  5883. },
  5884. {
  5885. "name": "symfony/error-handler",
  5886. "version": "v6.3.5",
  5887. "source": {
  5888. "type": "git",
  5889. "url": "https://github.com/symfony/error-handler.git",
  5890. "reference": "1f69476b64fb47105c06beef757766c376b548c4"
  5891. },
  5892. "dist": {
  5893. "type": "zip",
  5894. "url": "https://api.github.com/repos/symfony/error-handler/zipball/1f69476b64fb47105c06beef757766c376b548c4",
  5895. "reference": "1f69476b64fb47105c06beef757766c376b548c4",
  5896. "shasum": ""
  5897. },
  5898. "require": {
  5899. "php": ">=8.1",
  5900. "psr/log": "^1|^2|^3",
  5901. "symfony/var-dumper": "^5.4|^6.0"
  5902. },
  5903. "conflict": {
  5904. "symfony/deprecation-contracts": "<2.5"
  5905. },
  5906. "require-dev": {
  5907. "symfony/deprecation-contracts": "^2.5|^3",
  5908. "symfony/http-kernel": "^5.4|^6.0",
  5909. "symfony/serializer": "^5.4|^6.0"
  5910. },
  5911. "bin": [
  5912. "Resources/bin/patch-type-declarations"
  5913. ],
  5914. "type": "library",
  5915. "autoload": {
  5916. "psr-4": {
  5917. "Symfony\\Component\\ErrorHandler\\": ""
  5918. },
  5919. "exclude-from-classmap": [
  5920. "/Tests/"
  5921. ]
  5922. },
  5923. "notification-url": "https://packagist.org/downloads/",
  5924. "license": [
  5925. "MIT"
  5926. ],
  5927. "authors": [
  5928. {
  5929. "name": "Fabien Potencier",
  5930. "email": "fabien@symfony.com"
  5931. },
  5932. {
  5933. "name": "Symfony Community",
  5934. "homepage": "https://symfony.com/contributors"
  5935. }
  5936. ],
  5937. "description": "Provides tools to manage errors and ease debugging PHP code",
  5938. "homepage": "https://symfony.com",
  5939. "support": {
  5940. "source": "https://github.com/symfony/error-handler/tree/v6.3.5"
  5941. },
  5942. "funding": [
  5943. {
  5944. "url": "https://symfony.com/sponsor",
  5945. "type": "custom"
  5946. },
  5947. {
  5948. "url": "https://github.com/fabpot",
  5949. "type": "github"
  5950. },
  5951. {
  5952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5953. "type": "tidelift"
  5954. }
  5955. ],
  5956. "time": "2023-09-12T06:57:20+00:00"
  5957. },
  5958. {
  5959. "name": "symfony/event-dispatcher",
  5960. "version": "v6.3.2",
  5961. "source": {
  5962. "type": "git",
  5963. "url": "https://github.com/symfony/event-dispatcher.git",
  5964. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e"
  5965. },
  5966. "dist": {
  5967. "type": "zip",
  5968. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  5969. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  5970. "shasum": ""
  5971. },
  5972. "require": {
  5973. "php": ">=8.1",
  5974. "symfony/event-dispatcher-contracts": "^2.5|^3"
  5975. },
  5976. "conflict": {
  5977. "symfony/dependency-injection": "<5.4",
  5978. "symfony/service-contracts": "<2.5"
  5979. },
  5980. "provide": {
  5981. "psr/event-dispatcher-implementation": "1.0",
  5982. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5983. },
  5984. "require-dev": {
  5985. "psr/log": "^1|^2|^3",
  5986. "symfony/config": "^5.4|^6.0",
  5987. "symfony/dependency-injection": "^5.4|^6.0",
  5988. "symfony/error-handler": "^5.4|^6.0",
  5989. "symfony/expression-language": "^5.4|^6.0",
  5990. "symfony/http-foundation": "^5.4|^6.0",
  5991. "symfony/service-contracts": "^2.5|^3",
  5992. "symfony/stopwatch": "^5.4|^6.0"
  5993. },
  5994. "type": "library",
  5995. "autoload": {
  5996. "psr-4": {
  5997. "Symfony\\Component\\EventDispatcher\\": ""
  5998. },
  5999. "exclude-from-classmap": [
  6000. "/Tests/"
  6001. ]
  6002. },
  6003. "notification-url": "https://packagist.org/downloads/",
  6004. "license": [
  6005. "MIT"
  6006. ],
  6007. "authors": [
  6008. {
  6009. "name": "Fabien Potencier",
  6010. "email": "fabien@symfony.com"
  6011. },
  6012. {
  6013. "name": "Symfony Community",
  6014. "homepage": "https://symfony.com/contributors"
  6015. }
  6016. ],
  6017. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6018. "homepage": "https://symfony.com",
  6019. "support": {
  6020. "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2"
  6021. },
  6022. "funding": [
  6023. {
  6024. "url": "https://symfony.com/sponsor",
  6025. "type": "custom"
  6026. },
  6027. {
  6028. "url": "https://github.com/fabpot",
  6029. "type": "github"
  6030. },
  6031. {
  6032. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6033. "type": "tidelift"
  6034. }
  6035. ],
  6036. "time": "2023-07-06T06:56:43+00:00"
  6037. },
  6038. {
  6039. "name": "symfony/event-dispatcher-contracts",
  6040. "version": "v3.3.0",
  6041. "source": {
  6042. "type": "git",
  6043. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6044. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  6045. },
  6046. "dist": {
  6047. "type": "zip",
  6048. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  6049. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  6050. "shasum": ""
  6051. },
  6052. "require": {
  6053. "php": ">=8.1",
  6054. "psr/event-dispatcher": "^1"
  6055. },
  6056. "type": "library",
  6057. "extra": {
  6058. "branch-alias": {
  6059. "dev-main": "3.4-dev"
  6060. },
  6061. "thanks": {
  6062. "name": "symfony/contracts",
  6063. "url": "https://github.com/symfony/contracts"
  6064. }
  6065. },
  6066. "autoload": {
  6067. "psr-4": {
  6068. "Symfony\\Contracts\\EventDispatcher\\": ""
  6069. }
  6070. },
  6071. "notification-url": "https://packagist.org/downloads/",
  6072. "license": [
  6073. "MIT"
  6074. ],
  6075. "authors": [
  6076. {
  6077. "name": "Nicolas Grekas",
  6078. "email": "p@tchwork.com"
  6079. },
  6080. {
  6081. "name": "Symfony Community",
  6082. "homepage": "https://symfony.com/contributors"
  6083. }
  6084. ],
  6085. "description": "Generic abstractions related to dispatching event",
  6086. "homepage": "https://symfony.com",
  6087. "keywords": [
  6088. "abstractions",
  6089. "contracts",
  6090. "decoupling",
  6091. "interfaces",
  6092. "interoperability",
  6093. "standards"
  6094. ],
  6095. "support": {
  6096. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
  6097. },
  6098. "funding": [
  6099. {
  6100. "url": "https://symfony.com/sponsor",
  6101. "type": "custom"
  6102. },
  6103. {
  6104. "url": "https://github.com/fabpot",
  6105. "type": "github"
  6106. },
  6107. {
  6108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6109. "type": "tidelift"
  6110. }
  6111. ],
  6112. "time": "2023-05-23T14:45:45+00:00"
  6113. },
  6114. {
  6115. "name": "symfony/finder",
  6116. "version": "v6.3.5",
  6117. "source": {
  6118. "type": "git",
  6119. "url": "https://github.com/symfony/finder.git",
  6120. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4"
  6121. },
  6122. "dist": {
  6123. "type": "zip",
  6124. "url": "https://api.github.com/repos/symfony/finder/zipball/a1b31d88c0e998168ca7792f222cbecee47428c4",
  6125. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4",
  6126. "shasum": ""
  6127. },
  6128. "require": {
  6129. "php": ">=8.1"
  6130. },
  6131. "require-dev": {
  6132. "symfony/filesystem": "^6.0"
  6133. },
  6134. "type": "library",
  6135. "autoload": {
  6136. "psr-4": {
  6137. "Symfony\\Component\\Finder\\": ""
  6138. },
  6139. "exclude-from-classmap": [
  6140. "/Tests/"
  6141. ]
  6142. },
  6143. "notification-url": "https://packagist.org/downloads/",
  6144. "license": [
  6145. "MIT"
  6146. ],
  6147. "authors": [
  6148. {
  6149. "name": "Fabien Potencier",
  6150. "email": "fabien@symfony.com"
  6151. },
  6152. {
  6153. "name": "Symfony Community",
  6154. "homepage": "https://symfony.com/contributors"
  6155. }
  6156. ],
  6157. "description": "Finds files and directories via an intuitive fluent interface",
  6158. "homepage": "https://symfony.com",
  6159. "support": {
  6160. "source": "https://github.com/symfony/finder/tree/v6.3.5"
  6161. },
  6162. "funding": [
  6163. {
  6164. "url": "https://symfony.com/sponsor",
  6165. "type": "custom"
  6166. },
  6167. {
  6168. "url": "https://github.com/fabpot",
  6169. "type": "github"
  6170. },
  6171. {
  6172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6173. "type": "tidelift"
  6174. }
  6175. ],
  6176. "time": "2023-09-26T12:56:25+00:00"
  6177. },
  6178. {
  6179. "name": "symfony/html-sanitizer",
  6180. "version": "v6.3.4",
  6181. "source": {
  6182. "type": "git",
  6183. "url": "https://github.com/symfony/html-sanitizer.git",
  6184. "reference": "947492c7351d6b01a7b38e515c98fb1107dc357d"
  6185. },
  6186. "dist": {
  6187. "type": "zip",
  6188. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/947492c7351d6b01a7b38e515c98fb1107dc357d",
  6189. "reference": "947492c7351d6b01a7b38e515c98fb1107dc357d",
  6190. "shasum": ""
  6191. },
  6192. "require": {
  6193. "ext-dom": "*",
  6194. "league/uri": "^6.5|^7.0",
  6195. "masterminds/html5": "^2.7.2",
  6196. "php": ">=8.1"
  6197. },
  6198. "type": "library",
  6199. "autoload": {
  6200. "psr-4": {
  6201. "Symfony\\Component\\HtmlSanitizer\\": ""
  6202. },
  6203. "exclude-from-classmap": [
  6204. "/Tests/"
  6205. ]
  6206. },
  6207. "notification-url": "https://packagist.org/downloads/",
  6208. "license": [
  6209. "MIT"
  6210. ],
  6211. "authors": [
  6212. {
  6213. "name": "Titouan Galopin",
  6214. "email": "galopintitouan@gmail.com"
  6215. },
  6216. {
  6217. "name": "Symfony Community",
  6218. "homepage": "https://symfony.com/contributors"
  6219. }
  6220. ],
  6221. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  6222. "homepage": "https://symfony.com",
  6223. "keywords": [
  6224. "Purifier",
  6225. "html",
  6226. "sanitizer"
  6227. ],
  6228. "support": {
  6229. "source": "https://github.com/symfony/html-sanitizer/tree/v6.3.4"
  6230. },
  6231. "funding": [
  6232. {
  6233. "url": "https://symfony.com/sponsor",
  6234. "type": "custom"
  6235. },
  6236. {
  6237. "url": "https://github.com/fabpot",
  6238. "type": "github"
  6239. },
  6240. {
  6241. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6242. "type": "tidelift"
  6243. }
  6244. ],
  6245. "time": "2023-08-23T13:34:34+00:00"
  6246. },
  6247. {
  6248. "name": "symfony/http-foundation",
  6249. "version": "v6.3.5",
  6250. "source": {
  6251. "type": "git",
  6252. "url": "https://github.com/symfony/http-foundation.git",
  6253. "reference": "b50f5e281d722cb0f4c296f908bacc3e2b721957"
  6254. },
  6255. "dist": {
  6256. "type": "zip",
  6257. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b50f5e281d722cb0f4c296f908bacc3e2b721957",
  6258. "reference": "b50f5e281d722cb0f4c296f908bacc3e2b721957",
  6259. "shasum": ""
  6260. },
  6261. "require": {
  6262. "php": ">=8.1",
  6263. "symfony/deprecation-contracts": "^2.5|^3",
  6264. "symfony/polyfill-mbstring": "~1.1",
  6265. "symfony/polyfill-php83": "^1.27"
  6266. },
  6267. "conflict": {
  6268. "symfony/cache": "<6.2"
  6269. },
  6270. "require-dev": {
  6271. "doctrine/dbal": "^2.13.1|^3.0",
  6272. "predis/predis": "^1.1|^2.0",
  6273. "symfony/cache": "^5.4|^6.0",
  6274. "symfony/dependency-injection": "^5.4|^6.0",
  6275. "symfony/expression-language": "^5.4|^6.0",
  6276. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6277. "symfony/mime": "^5.4|^6.0",
  6278. "symfony/rate-limiter": "^5.2|^6.0"
  6279. },
  6280. "type": "library",
  6281. "autoload": {
  6282. "psr-4": {
  6283. "Symfony\\Component\\HttpFoundation\\": ""
  6284. },
  6285. "exclude-from-classmap": [
  6286. "/Tests/"
  6287. ]
  6288. },
  6289. "notification-url": "https://packagist.org/downloads/",
  6290. "license": [
  6291. "MIT"
  6292. ],
  6293. "authors": [
  6294. {
  6295. "name": "Fabien Potencier",
  6296. "email": "fabien@symfony.com"
  6297. },
  6298. {
  6299. "name": "Symfony Community",
  6300. "homepage": "https://symfony.com/contributors"
  6301. }
  6302. ],
  6303. "description": "Defines an object-oriented layer for the HTTP specification",
  6304. "homepage": "https://symfony.com",
  6305. "support": {
  6306. "source": "https://github.com/symfony/http-foundation/tree/v6.3.5"
  6307. },
  6308. "funding": [
  6309. {
  6310. "url": "https://symfony.com/sponsor",
  6311. "type": "custom"
  6312. },
  6313. {
  6314. "url": "https://github.com/fabpot",
  6315. "type": "github"
  6316. },
  6317. {
  6318. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6319. "type": "tidelift"
  6320. }
  6321. ],
  6322. "time": "2023-09-04T21:33:54+00:00"
  6323. },
  6324. {
  6325. "name": "symfony/http-kernel",
  6326. "version": "v6.3.5",
  6327. "source": {
  6328. "type": "git",
  6329. "url": "https://github.com/symfony/http-kernel.git",
  6330. "reference": "9f991a964368bee8d883e8d57ced4fe9fff04dfc"
  6331. },
  6332. "dist": {
  6333. "type": "zip",
  6334. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9f991a964368bee8d883e8d57ced4fe9fff04dfc",
  6335. "reference": "9f991a964368bee8d883e8d57ced4fe9fff04dfc",
  6336. "shasum": ""
  6337. },
  6338. "require": {
  6339. "php": ">=8.1",
  6340. "psr/log": "^1|^2|^3",
  6341. "symfony/deprecation-contracts": "^2.5|^3",
  6342. "symfony/error-handler": "^6.3",
  6343. "symfony/event-dispatcher": "^5.4|^6.0",
  6344. "symfony/http-foundation": "^6.3.4",
  6345. "symfony/polyfill-ctype": "^1.8"
  6346. },
  6347. "conflict": {
  6348. "symfony/browser-kit": "<5.4",
  6349. "symfony/cache": "<5.4",
  6350. "symfony/config": "<6.1",
  6351. "symfony/console": "<5.4",
  6352. "symfony/dependency-injection": "<6.3.4",
  6353. "symfony/doctrine-bridge": "<5.4",
  6354. "symfony/form": "<5.4",
  6355. "symfony/http-client": "<5.4",
  6356. "symfony/http-client-contracts": "<2.5",
  6357. "symfony/mailer": "<5.4",
  6358. "symfony/messenger": "<5.4",
  6359. "symfony/translation": "<5.4",
  6360. "symfony/translation-contracts": "<2.5",
  6361. "symfony/twig-bridge": "<5.4",
  6362. "symfony/validator": "<5.4",
  6363. "symfony/var-dumper": "<6.3",
  6364. "twig/twig": "<2.13"
  6365. },
  6366. "provide": {
  6367. "psr/log-implementation": "1.0|2.0|3.0"
  6368. },
  6369. "require-dev": {
  6370. "psr/cache": "^1.0|^2.0|^3.0",
  6371. "symfony/browser-kit": "^5.4|^6.0",
  6372. "symfony/clock": "^6.2",
  6373. "symfony/config": "^6.1",
  6374. "symfony/console": "^5.4|^6.0",
  6375. "symfony/css-selector": "^5.4|^6.0",
  6376. "symfony/dependency-injection": "^6.3.4",
  6377. "symfony/dom-crawler": "^5.4|^6.0",
  6378. "symfony/expression-language": "^5.4|^6.0",
  6379. "symfony/finder": "^5.4|^6.0",
  6380. "symfony/http-client-contracts": "^2.5|^3",
  6381. "symfony/process": "^5.4|^6.0",
  6382. "symfony/property-access": "^5.4.5|^6.0.5",
  6383. "symfony/routing": "^5.4|^6.0",
  6384. "symfony/serializer": "^6.3",
  6385. "symfony/stopwatch": "^5.4|^6.0",
  6386. "symfony/translation": "^5.4|^6.0",
  6387. "symfony/translation-contracts": "^2.5|^3",
  6388. "symfony/uid": "^5.4|^6.0",
  6389. "symfony/validator": "^6.3",
  6390. "symfony/var-exporter": "^6.2",
  6391. "twig/twig": "^2.13|^3.0.4"
  6392. },
  6393. "type": "library",
  6394. "autoload": {
  6395. "psr-4": {
  6396. "Symfony\\Component\\HttpKernel\\": ""
  6397. },
  6398. "exclude-from-classmap": [
  6399. "/Tests/"
  6400. ]
  6401. },
  6402. "notification-url": "https://packagist.org/downloads/",
  6403. "license": [
  6404. "MIT"
  6405. ],
  6406. "authors": [
  6407. {
  6408. "name": "Fabien Potencier",
  6409. "email": "fabien@symfony.com"
  6410. },
  6411. {
  6412. "name": "Symfony Community",
  6413. "homepage": "https://symfony.com/contributors"
  6414. }
  6415. ],
  6416. "description": "Provides a structured process for converting a Request into a Response",
  6417. "homepage": "https://symfony.com",
  6418. "support": {
  6419. "source": "https://github.com/symfony/http-kernel/tree/v6.3.5"
  6420. },
  6421. "funding": [
  6422. {
  6423. "url": "https://symfony.com/sponsor",
  6424. "type": "custom"
  6425. },
  6426. {
  6427. "url": "https://github.com/fabpot",
  6428. "type": "github"
  6429. },
  6430. {
  6431. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6432. "type": "tidelift"
  6433. }
  6434. ],
  6435. "time": "2023-09-30T06:37:04+00:00"
  6436. },
  6437. {
  6438. "name": "symfony/mailer",
  6439. "version": "v6.3.5",
  6440. "source": {
  6441. "type": "git",
  6442. "url": "https://github.com/symfony/mailer.git",
  6443. "reference": "d89611a7830d51b5e118bca38e390dea92f9ea06"
  6444. },
  6445. "dist": {
  6446. "type": "zip",
  6447. "url": "https://api.github.com/repos/symfony/mailer/zipball/d89611a7830d51b5e118bca38e390dea92f9ea06",
  6448. "reference": "d89611a7830d51b5e118bca38e390dea92f9ea06",
  6449. "shasum": ""
  6450. },
  6451. "require": {
  6452. "egulias/email-validator": "^2.1.10|^3|^4",
  6453. "php": ">=8.1",
  6454. "psr/event-dispatcher": "^1",
  6455. "psr/log": "^1|^2|^3",
  6456. "symfony/event-dispatcher": "^5.4|^6.0",
  6457. "symfony/mime": "^6.2",
  6458. "symfony/service-contracts": "^2.5|^3"
  6459. },
  6460. "conflict": {
  6461. "symfony/http-client-contracts": "<2.5",
  6462. "symfony/http-kernel": "<5.4",
  6463. "symfony/messenger": "<6.2",
  6464. "symfony/mime": "<6.2",
  6465. "symfony/twig-bridge": "<6.2.1"
  6466. },
  6467. "require-dev": {
  6468. "symfony/console": "^5.4|^6.0",
  6469. "symfony/http-client": "^5.4|^6.0",
  6470. "symfony/messenger": "^6.2",
  6471. "symfony/twig-bridge": "^6.2"
  6472. },
  6473. "type": "library",
  6474. "autoload": {
  6475. "psr-4": {
  6476. "Symfony\\Component\\Mailer\\": ""
  6477. },
  6478. "exclude-from-classmap": [
  6479. "/Tests/"
  6480. ]
  6481. },
  6482. "notification-url": "https://packagist.org/downloads/",
  6483. "license": [
  6484. "MIT"
  6485. ],
  6486. "authors": [
  6487. {
  6488. "name": "Fabien Potencier",
  6489. "email": "fabien@symfony.com"
  6490. },
  6491. {
  6492. "name": "Symfony Community",
  6493. "homepage": "https://symfony.com/contributors"
  6494. }
  6495. ],
  6496. "description": "Helps sending emails",
  6497. "homepage": "https://symfony.com",
  6498. "support": {
  6499. "source": "https://github.com/symfony/mailer/tree/v6.3.5"
  6500. },
  6501. "funding": [
  6502. {
  6503. "url": "https://symfony.com/sponsor",
  6504. "type": "custom"
  6505. },
  6506. {
  6507. "url": "https://github.com/fabpot",
  6508. "type": "github"
  6509. },
  6510. {
  6511. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6512. "type": "tidelift"
  6513. }
  6514. ],
  6515. "time": "2023-09-06T09:47:15+00:00"
  6516. },
  6517. {
  6518. "name": "symfony/mime",
  6519. "version": "v6.3.5",
  6520. "source": {
  6521. "type": "git",
  6522. "url": "https://github.com/symfony/mime.git",
  6523. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e"
  6524. },
  6525. "dist": {
  6526. "type": "zip",
  6527. "url": "https://api.github.com/repos/symfony/mime/zipball/d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  6528. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  6529. "shasum": ""
  6530. },
  6531. "require": {
  6532. "php": ">=8.1",
  6533. "symfony/deprecation-contracts": "^2.5|^3",
  6534. "symfony/polyfill-intl-idn": "^1.10",
  6535. "symfony/polyfill-mbstring": "^1.0"
  6536. },
  6537. "conflict": {
  6538. "egulias/email-validator": "~3.0.0",
  6539. "phpdocumentor/reflection-docblock": "<3.2.2",
  6540. "phpdocumentor/type-resolver": "<1.4.0",
  6541. "symfony/mailer": "<5.4",
  6542. "symfony/serializer": "<6.2.13|>=6.3,<6.3.2"
  6543. },
  6544. "require-dev": {
  6545. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6546. "league/html-to-markdown": "^5.0",
  6547. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6548. "symfony/dependency-injection": "^5.4|^6.0",
  6549. "symfony/property-access": "^5.4|^6.0",
  6550. "symfony/property-info": "^5.4|^6.0",
  6551. "symfony/serializer": "~6.2.13|^6.3.2"
  6552. },
  6553. "type": "library",
  6554. "autoload": {
  6555. "psr-4": {
  6556. "Symfony\\Component\\Mime\\": ""
  6557. },
  6558. "exclude-from-classmap": [
  6559. "/Tests/"
  6560. ]
  6561. },
  6562. "notification-url": "https://packagist.org/downloads/",
  6563. "license": [
  6564. "MIT"
  6565. ],
  6566. "authors": [
  6567. {
  6568. "name": "Fabien Potencier",
  6569. "email": "fabien@symfony.com"
  6570. },
  6571. {
  6572. "name": "Symfony Community",
  6573. "homepage": "https://symfony.com/contributors"
  6574. }
  6575. ],
  6576. "description": "Allows manipulating MIME messages",
  6577. "homepage": "https://symfony.com",
  6578. "keywords": [
  6579. "mime",
  6580. "mime-type"
  6581. ],
  6582. "support": {
  6583. "source": "https://github.com/symfony/mime/tree/v6.3.5"
  6584. },
  6585. "funding": [
  6586. {
  6587. "url": "https://symfony.com/sponsor",
  6588. "type": "custom"
  6589. },
  6590. {
  6591. "url": "https://github.com/fabpot",
  6592. "type": "github"
  6593. },
  6594. {
  6595. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6596. "type": "tidelift"
  6597. }
  6598. ],
  6599. "time": "2023-09-29T06:59:36+00:00"
  6600. },
  6601. {
  6602. "name": "symfony/polyfill-ctype",
  6603. "version": "v1.28.0",
  6604. "source": {
  6605. "type": "git",
  6606. "url": "https://github.com/symfony/polyfill-ctype.git",
  6607. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  6608. },
  6609. "dist": {
  6610. "type": "zip",
  6611. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6612. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6613. "shasum": ""
  6614. },
  6615. "require": {
  6616. "php": ">=7.1"
  6617. },
  6618. "provide": {
  6619. "ext-ctype": "*"
  6620. },
  6621. "suggest": {
  6622. "ext-ctype": "For best performance"
  6623. },
  6624. "type": "library",
  6625. "extra": {
  6626. "branch-alias": {
  6627. "dev-main": "1.28-dev"
  6628. },
  6629. "thanks": {
  6630. "name": "symfony/polyfill",
  6631. "url": "https://github.com/symfony/polyfill"
  6632. }
  6633. },
  6634. "autoload": {
  6635. "files": [
  6636. "bootstrap.php"
  6637. ],
  6638. "psr-4": {
  6639. "Symfony\\Polyfill\\Ctype\\": ""
  6640. }
  6641. },
  6642. "notification-url": "https://packagist.org/downloads/",
  6643. "license": [
  6644. "MIT"
  6645. ],
  6646. "authors": [
  6647. {
  6648. "name": "Gert de Pagter",
  6649. "email": "BackEndTea@gmail.com"
  6650. },
  6651. {
  6652. "name": "Symfony Community",
  6653. "homepage": "https://symfony.com/contributors"
  6654. }
  6655. ],
  6656. "description": "Symfony polyfill for ctype functions",
  6657. "homepage": "https://symfony.com",
  6658. "keywords": [
  6659. "compatibility",
  6660. "ctype",
  6661. "polyfill",
  6662. "portable"
  6663. ],
  6664. "support": {
  6665. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  6666. },
  6667. "funding": [
  6668. {
  6669. "url": "https://symfony.com/sponsor",
  6670. "type": "custom"
  6671. },
  6672. {
  6673. "url": "https://github.com/fabpot",
  6674. "type": "github"
  6675. },
  6676. {
  6677. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6678. "type": "tidelift"
  6679. }
  6680. ],
  6681. "time": "2023-01-26T09:26:14+00:00"
  6682. },
  6683. {
  6684. "name": "symfony/polyfill-intl-grapheme",
  6685. "version": "v1.28.0",
  6686. "source": {
  6687. "type": "git",
  6688. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6689. "reference": "875e90aeea2777b6f135677f618529449334a612"
  6690. },
  6691. "dist": {
  6692. "type": "zip",
  6693. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  6694. "reference": "875e90aeea2777b6f135677f618529449334a612",
  6695. "shasum": ""
  6696. },
  6697. "require": {
  6698. "php": ">=7.1"
  6699. },
  6700. "suggest": {
  6701. "ext-intl": "For best performance"
  6702. },
  6703. "type": "library",
  6704. "extra": {
  6705. "branch-alias": {
  6706. "dev-main": "1.28-dev"
  6707. },
  6708. "thanks": {
  6709. "name": "symfony/polyfill",
  6710. "url": "https://github.com/symfony/polyfill"
  6711. }
  6712. },
  6713. "autoload": {
  6714. "files": [
  6715. "bootstrap.php"
  6716. ],
  6717. "psr-4": {
  6718. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6719. }
  6720. },
  6721. "notification-url": "https://packagist.org/downloads/",
  6722. "license": [
  6723. "MIT"
  6724. ],
  6725. "authors": [
  6726. {
  6727. "name": "Nicolas Grekas",
  6728. "email": "p@tchwork.com"
  6729. },
  6730. {
  6731. "name": "Symfony Community",
  6732. "homepage": "https://symfony.com/contributors"
  6733. }
  6734. ],
  6735. "description": "Symfony polyfill for intl's grapheme_* functions",
  6736. "homepage": "https://symfony.com",
  6737. "keywords": [
  6738. "compatibility",
  6739. "grapheme",
  6740. "intl",
  6741. "polyfill",
  6742. "portable",
  6743. "shim"
  6744. ],
  6745. "support": {
  6746. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  6747. },
  6748. "funding": [
  6749. {
  6750. "url": "https://symfony.com/sponsor",
  6751. "type": "custom"
  6752. },
  6753. {
  6754. "url": "https://github.com/fabpot",
  6755. "type": "github"
  6756. },
  6757. {
  6758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6759. "type": "tidelift"
  6760. }
  6761. ],
  6762. "time": "2023-01-26T09:26:14+00:00"
  6763. },
  6764. {
  6765. "name": "symfony/polyfill-intl-idn",
  6766. "version": "v1.28.0",
  6767. "source": {
  6768. "type": "git",
  6769. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6770. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  6771. },
  6772. "dist": {
  6773. "type": "zip",
  6774. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  6775. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  6776. "shasum": ""
  6777. },
  6778. "require": {
  6779. "php": ">=7.1",
  6780. "symfony/polyfill-intl-normalizer": "^1.10",
  6781. "symfony/polyfill-php72": "^1.10"
  6782. },
  6783. "suggest": {
  6784. "ext-intl": "For best performance"
  6785. },
  6786. "type": "library",
  6787. "extra": {
  6788. "branch-alias": {
  6789. "dev-main": "1.28-dev"
  6790. },
  6791. "thanks": {
  6792. "name": "symfony/polyfill",
  6793. "url": "https://github.com/symfony/polyfill"
  6794. }
  6795. },
  6796. "autoload": {
  6797. "files": [
  6798. "bootstrap.php"
  6799. ],
  6800. "psr-4": {
  6801. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6802. }
  6803. },
  6804. "notification-url": "https://packagist.org/downloads/",
  6805. "license": [
  6806. "MIT"
  6807. ],
  6808. "authors": [
  6809. {
  6810. "name": "Laurent Bassin",
  6811. "email": "laurent@bassin.info"
  6812. },
  6813. {
  6814. "name": "Trevor Rowbotham",
  6815. "email": "trevor.rowbotham@pm.me"
  6816. },
  6817. {
  6818. "name": "Symfony Community",
  6819. "homepage": "https://symfony.com/contributors"
  6820. }
  6821. ],
  6822. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6823. "homepage": "https://symfony.com",
  6824. "keywords": [
  6825. "compatibility",
  6826. "idn",
  6827. "intl",
  6828. "polyfill",
  6829. "portable",
  6830. "shim"
  6831. ],
  6832. "support": {
  6833. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  6834. },
  6835. "funding": [
  6836. {
  6837. "url": "https://symfony.com/sponsor",
  6838. "type": "custom"
  6839. },
  6840. {
  6841. "url": "https://github.com/fabpot",
  6842. "type": "github"
  6843. },
  6844. {
  6845. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6846. "type": "tidelift"
  6847. }
  6848. ],
  6849. "time": "2023-01-26T09:30:37+00:00"
  6850. },
  6851. {
  6852. "name": "symfony/polyfill-intl-normalizer",
  6853. "version": "v1.28.0",
  6854. "source": {
  6855. "type": "git",
  6856. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6857. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  6858. },
  6859. "dist": {
  6860. "type": "zip",
  6861. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  6862. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  6863. "shasum": ""
  6864. },
  6865. "require": {
  6866. "php": ">=7.1"
  6867. },
  6868. "suggest": {
  6869. "ext-intl": "For best performance"
  6870. },
  6871. "type": "library",
  6872. "extra": {
  6873. "branch-alias": {
  6874. "dev-main": "1.28-dev"
  6875. },
  6876. "thanks": {
  6877. "name": "symfony/polyfill",
  6878. "url": "https://github.com/symfony/polyfill"
  6879. }
  6880. },
  6881. "autoload": {
  6882. "files": [
  6883. "bootstrap.php"
  6884. ],
  6885. "psr-4": {
  6886. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6887. },
  6888. "classmap": [
  6889. "Resources/stubs"
  6890. ]
  6891. },
  6892. "notification-url": "https://packagist.org/downloads/",
  6893. "license": [
  6894. "MIT"
  6895. ],
  6896. "authors": [
  6897. {
  6898. "name": "Nicolas Grekas",
  6899. "email": "p@tchwork.com"
  6900. },
  6901. {
  6902. "name": "Symfony Community",
  6903. "homepage": "https://symfony.com/contributors"
  6904. }
  6905. ],
  6906. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6907. "homepage": "https://symfony.com",
  6908. "keywords": [
  6909. "compatibility",
  6910. "intl",
  6911. "normalizer",
  6912. "polyfill",
  6913. "portable",
  6914. "shim"
  6915. ],
  6916. "support": {
  6917. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  6918. },
  6919. "funding": [
  6920. {
  6921. "url": "https://symfony.com/sponsor",
  6922. "type": "custom"
  6923. },
  6924. {
  6925. "url": "https://github.com/fabpot",
  6926. "type": "github"
  6927. },
  6928. {
  6929. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6930. "type": "tidelift"
  6931. }
  6932. ],
  6933. "time": "2023-01-26T09:26:14+00:00"
  6934. },
  6935. {
  6936. "name": "symfony/polyfill-mbstring",
  6937. "version": "v1.28.0",
  6938. "source": {
  6939. "type": "git",
  6940. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6941. "reference": "42292d99c55abe617799667f454222c54c60e229"
  6942. },
  6943. "dist": {
  6944. "type": "zip",
  6945. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  6946. "reference": "42292d99c55abe617799667f454222c54c60e229",
  6947. "shasum": ""
  6948. },
  6949. "require": {
  6950. "php": ">=7.1"
  6951. },
  6952. "provide": {
  6953. "ext-mbstring": "*"
  6954. },
  6955. "suggest": {
  6956. "ext-mbstring": "For best performance"
  6957. },
  6958. "type": "library",
  6959. "extra": {
  6960. "branch-alias": {
  6961. "dev-main": "1.28-dev"
  6962. },
  6963. "thanks": {
  6964. "name": "symfony/polyfill",
  6965. "url": "https://github.com/symfony/polyfill"
  6966. }
  6967. },
  6968. "autoload": {
  6969. "files": [
  6970. "bootstrap.php"
  6971. ],
  6972. "psr-4": {
  6973. "Symfony\\Polyfill\\Mbstring\\": ""
  6974. }
  6975. },
  6976. "notification-url": "https://packagist.org/downloads/",
  6977. "license": [
  6978. "MIT"
  6979. ],
  6980. "authors": [
  6981. {
  6982. "name": "Nicolas Grekas",
  6983. "email": "p@tchwork.com"
  6984. },
  6985. {
  6986. "name": "Symfony Community",
  6987. "homepage": "https://symfony.com/contributors"
  6988. }
  6989. ],
  6990. "description": "Symfony polyfill for the Mbstring extension",
  6991. "homepage": "https://symfony.com",
  6992. "keywords": [
  6993. "compatibility",
  6994. "mbstring",
  6995. "polyfill",
  6996. "portable",
  6997. "shim"
  6998. ],
  6999. "support": {
  7000. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  7001. },
  7002. "funding": [
  7003. {
  7004. "url": "https://symfony.com/sponsor",
  7005. "type": "custom"
  7006. },
  7007. {
  7008. "url": "https://github.com/fabpot",
  7009. "type": "github"
  7010. },
  7011. {
  7012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7013. "type": "tidelift"
  7014. }
  7015. ],
  7016. "time": "2023-07-28T09:04:16+00:00"
  7017. },
  7018. {
  7019. "name": "symfony/polyfill-php72",
  7020. "version": "v1.28.0",
  7021. "source": {
  7022. "type": "git",
  7023. "url": "https://github.com/symfony/polyfill-php72.git",
  7024. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  7025. },
  7026. "dist": {
  7027. "type": "zip",
  7028. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  7029. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  7030. "shasum": ""
  7031. },
  7032. "require": {
  7033. "php": ">=7.1"
  7034. },
  7035. "type": "library",
  7036. "extra": {
  7037. "branch-alias": {
  7038. "dev-main": "1.28-dev"
  7039. },
  7040. "thanks": {
  7041. "name": "symfony/polyfill",
  7042. "url": "https://github.com/symfony/polyfill"
  7043. }
  7044. },
  7045. "autoload": {
  7046. "files": [
  7047. "bootstrap.php"
  7048. ],
  7049. "psr-4": {
  7050. "Symfony\\Polyfill\\Php72\\": ""
  7051. }
  7052. },
  7053. "notification-url": "https://packagist.org/downloads/",
  7054. "license": [
  7055. "MIT"
  7056. ],
  7057. "authors": [
  7058. {
  7059. "name": "Nicolas Grekas",
  7060. "email": "p@tchwork.com"
  7061. },
  7062. {
  7063. "name": "Symfony Community",
  7064. "homepage": "https://symfony.com/contributors"
  7065. }
  7066. ],
  7067. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7068. "homepage": "https://symfony.com",
  7069. "keywords": [
  7070. "compatibility",
  7071. "polyfill",
  7072. "portable",
  7073. "shim"
  7074. ],
  7075. "support": {
  7076. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  7077. },
  7078. "funding": [
  7079. {
  7080. "url": "https://symfony.com/sponsor",
  7081. "type": "custom"
  7082. },
  7083. {
  7084. "url": "https://github.com/fabpot",
  7085. "type": "github"
  7086. },
  7087. {
  7088. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7089. "type": "tidelift"
  7090. }
  7091. ],
  7092. "time": "2023-01-26T09:26:14+00:00"
  7093. },
  7094. {
  7095. "name": "symfony/polyfill-php80",
  7096. "version": "v1.28.0",
  7097. "source": {
  7098. "type": "git",
  7099. "url": "https://github.com/symfony/polyfill-php80.git",
  7100. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  7101. },
  7102. "dist": {
  7103. "type": "zip",
  7104. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  7105. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  7106. "shasum": ""
  7107. },
  7108. "require": {
  7109. "php": ">=7.1"
  7110. },
  7111. "type": "library",
  7112. "extra": {
  7113. "branch-alias": {
  7114. "dev-main": "1.28-dev"
  7115. },
  7116. "thanks": {
  7117. "name": "symfony/polyfill",
  7118. "url": "https://github.com/symfony/polyfill"
  7119. }
  7120. },
  7121. "autoload": {
  7122. "files": [
  7123. "bootstrap.php"
  7124. ],
  7125. "psr-4": {
  7126. "Symfony\\Polyfill\\Php80\\": ""
  7127. },
  7128. "classmap": [
  7129. "Resources/stubs"
  7130. ]
  7131. },
  7132. "notification-url": "https://packagist.org/downloads/",
  7133. "license": [
  7134. "MIT"
  7135. ],
  7136. "authors": [
  7137. {
  7138. "name": "Ion Bazan",
  7139. "email": "ion.bazan@gmail.com"
  7140. },
  7141. {
  7142. "name": "Nicolas Grekas",
  7143. "email": "p@tchwork.com"
  7144. },
  7145. {
  7146. "name": "Symfony Community",
  7147. "homepage": "https://symfony.com/contributors"
  7148. }
  7149. ],
  7150. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7151. "homepage": "https://symfony.com",
  7152. "keywords": [
  7153. "compatibility",
  7154. "polyfill",
  7155. "portable",
  7156. "shim"
  7157. ],
  7158. "support": {
  7159. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  7160. },
  7161. "funding": [
  7162. {
  7163. "url": "https://symfony.com/sponsor",
  7164. "type": "custom"
  7165. },
  7166. {
  7167. "url": "https://github.com/fabpot",
  7168. "type": "github"
  7169. },
  7170. {
  7171. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7172. "type": "tidelift"
  7173. }
  7174. ],
  7175. "time": "2023-01-26T09:26:14+00:00"
  7176. },
  7177. {
  7178. "name": "symfony/polyfill-php83",
  7179. "version": "v1.28.0",
  7180. "source": {
  7181. "type": "git",
  7182. "url": "https://github.com/symfony/polyfill-php83.git",
  7183. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11"
  7184. },
  7185. "dist": {
  7186. "type": "zip",
  7187. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  7188. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  7189. "shasum": ""
  7190. },
  7191. "require": {
  7192. "php": ">=7.1",
  7193. "symfony/polyfill-php80": "^1.14"
  7194. },
  7195. "type": "library",
  7196. "extra": {
  7197. "branch-alias": {
  7198. "dev-main": "1.28-dev"
  7199. },
  7200. "thanks": {
  7201. "name": "symfony/polyfill",
  7202. "url": "https://github.com/symfony/polyfill"
  7203. }
  7204. },
  7205. "autoload": {
  7206. "files": [
  7207. "bootstrap.php"
  7208. ],
  7209. "psr-4": {
  7210. "Symfony\\Polyfill\\Php83\\": ""
  7211. },
  7212. "classmap": [
  7213. "Resources/stubs"
  7214. ]
  7215. },
  7216. "notification-url": "https://packagist.org/downloads/",
  7217. "license": [
  7218. "MIT"
  7219. ],
  7220. "authors": [
  7221. {
  7222. "name": "Nicolas Grekas",
  7223. "email": "p@tchwork.com"
  7224. },
  7225. {
  7226. "name": "Symfony Community",
  7227. "homepage": "https://symfony.com/contributors"
  7228. }
  7229. ],
  7230. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  7231. "homepage": "https://symfony.com",
  7232. "keywords": [
  7233. "compatibility",
  7234. "polyfill",
  7235. "portable",
  7236. "shim"
  7237. ],
  7238. "support": {
  7239. "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0"
  7240. },
  7241. "funding": [
  7242. {
  7243. "url": "https://symfony.com/sponsor",
  7244. "type": "custom"
  7245. },
  7246. {
  7247. "url": "https://github.com/fabpot",
  7248. "type": "github"
  7249. },
  7250. {
  7251. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7252. "type": "tidelift"
  7253. }
  7254. ],
  7255. "time": "2023-08-16T06:22:46+00:00"
  7256. },
  7257. {
  7258. "name": "symfony/polyfill-uuid",
  7259. "version": "v1.28.0",
  7260. "source": {
  7261. "type": "git",
  7262. "url": "https://github.com/symfony/polyfill-uuid.git",
  7263. "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e"
  7264. },
  7265. "dist": {
  7266. "type": "zip",
  7267. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/9c44518a5aff8da565c8a55dbe85d2769e6f630e",
  7268. "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e",
  7269. "shasum": ""
  7270. },
  7271. "require": {
  7272. "php": ">=7.1"
  7273. },
  7274. "provide": {
  7275. "ext-uuid": "*"
  7276. },
  7277. "suggest": {
  7278. "ext-uuid": "For best performance"
  7279. },
  7280. "type": "library",
  7281. "extra": {
  7282. "branch-alias": {
  7283. "dev-main": "1.28-dev"
  7284. },
  7285. "thanks": {
  7286. "name": "symfony/polyfill",
  7287. "url": "https://github.com/symfony/polyfill"
  7288. }
  7289. },
  7290. "autoload": {
  7291. "files": [
  7292. "bootstrap.php"
  7293. ],
  7294. "psr-4": {
  7295. "Symfony\\Polyfill\\Uuid\\": ""
  7296. }
  7297. },
  7298. "notification-url": "https://packagist.org/downloads/",
  7299. "license": [
  7300. "MIT"
  7301. ],
  7302. "authors": [
  7303. {
  7304. "name": "Grégoire Pineau",
  7305. "email": "lyrixx@lyrixx.info"
  7306. },
  7307. {
  7308. "name": "Symfony Community",
  7309. "homepage": "https://symfony.com/contributors"
  7310. }
  7311. ],
  7312. "description": "Symfony polyfill for uuid functions",
  7313. "homepage": "https://symfony.com",
  7314. "keywords": [
  7315. "compatibility",
  7316. "polyfill",
  7317. "portable",
  7318. "uuid"
  7319. ],
  7320. "support": {
  7321. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.28.0"
  7322. },
  7323. "funding": [
  7324. {
  7325. "url": "https://symfony.com/sponsor",
  7326. "type": "custom"
  7327. },
  7328. {
  7329. "url": "https://github.com/fabpot",
  7330. "type": "github"
  7331. },
  7332. {
  7333. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7334. "type": "tidelift"
  7335. }
  7336. ],
  7337. "time": "2023-01-26T09:26:14+00:00"
  7338. },
  7339. {
  7340. "name": "symfony/process",
  7341. "version": "v6.3.4",
  7342. "source": {
  7343. "type": "git",
  7344. "url": "https://github.com/symfony/process.git",
  7345. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54"
  7346. },
  7347. "dist": {
  7348. "type": "zip",
  7349. "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54",
  7350. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54",
  7351. "shasum": ""
  7352. },
  7353. "require": {
  7354. "php": ">=8.1"
  7355. },
  7356. "type": "library",
  7357. "autoload": {
  7358. "psr-4": {
  7359. "Symfony\\Component\\Process\\": ""
  7360. },
  7361. "exclude-from-classmap": [
  7362. "/Tests/"
  7363. ]
  7364. },
  7365. "notification-url": "https://packagist.org/downloads/",
  7366. "license": [
  7367. "MIT"
  7368. ],
  7369. "authors": [
  7370. {
  7371. "name": "Fabien Potencier",
  7372. "email": "fabien@symfony.com"
  7373. },
  7374. {
  7375. "name": "Symfony Community",
  7376. "homepage": "https://symfony.com/contributors"
  7377. }
  7378. ],
  7379. "description": "Executes commands in sub-processes",
  7380. "homepage": "https://symfony.com",
  7381. "support": {
  7382. "source": "https://github.com/symfony/process/tree/v6.3.4"
  7383. },
  7384. "funding": [
  7385. {
  7386. "url": "https://symfony.com/sponsor",
  7387. "type": "custom"
  7388. },
  7389. {
  7390. "url": "https://github.com/fabpot",
  7391. "type": "github"
  7392. },
  7393. {
  7394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7395. "type": "tidelift"
  7396. }
  7397. ],
  7398. "time": "2023-08-07T10:39:22+00:00"
  7399. },
  7400. {
  7401. "name": "symfony/routing",
  7402. "version": "v6.3.5",
  7403. "source": {
  7404. "type": "git",
  7405. "url": "https://github.com/symfony/routing.git",
  7406. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31"
  7407. },
  7408. "dist": {
  7409. "type": "zip",
  7410. "url": "https://api.github.com/repos/symfony/routing/zipball/82616e59acd3e3d9c916bba798326cb7796d7d31",
  7411. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31",
  7412. "shasum": ""
  7413. },
  7414. "require": {
  7415. "php": ">=8.1",
  7416. "symfony/deprecation-contracts": "^2.5|^3"
  7417. },
  7418. "conflict": {
  7419. "doctrine/annotations": "<1.12",
  7420. "symfony/config": "<6.2",
  7421. "symfony/dependency-injection": "<5.4",
  7422. "symfony/yaml": "<5.4"
  7423. },
  7424. "require-dev": {
  7425. "doctrine/annotations": "^1.12|^2",
  7426. "psr/log": "^1|^2|^3",
  7427. "symfony/config": "^6.2",
  7428. "symfony/dependency-injection": "^5.4|^6.0",
  7429. "symfony/expression-language": "^5.4|^6.0",
  7430. "symfony/http-foundation": "^5.4|^6.0",
  7431. "symfony/yaml": "^5.4|^6.0"
  7432. },
  7433. "type": "library",
  7434. "autoload": {
  7435. "psr-4": {
  7436. "Symfony\\Component\\Routing\\": ""
  7437. },
  7438. "exclude-from-classmap": [
  7439. "/Tests/"
  7440. ]
  7441. },
  7442. "notification-url": "https://packagist.org/downloads/",
  7443. "license": [
  7444. "MIT"
  7445. ],
  7446. "authors": [
  7447. {
  7448. "name": "Fabien Potencier",
  7449. "email": "fabien@symfony.com"
  7450. },
  7451. {
  7452. "name": "Symfony Community",
  7453. "homepage": "https://symfony.com/contributors"
  7454. }
  7455. ],
  7456. "description": "Maps an HTTP request to a set of configuration variables",
  7457. "homepage": "https://symfony.com",
  7458. "keywords": [
  7459. "router",
  7460. "routing",
  7461. "uri",
  7462. "url"
  7463. ],
  7464. "support": {
  7465. "source": "https://github.com/symfony/routing/tree/v6.3.5"
  7466. },
  7467. "funding": [
  7468. {
  7469. "url": "https://symfony.com/sponsor",
  7470. "type": "custom"
  7471. },
  7472. {
  7473. "url": "https://github.com/fabpot",
  7474. "type": "github"
  7475. },
  7476. {
  7477. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7478. "type": "tidelift"
  7479. }
  7480. ],
  7481. "time": "2023-09-20T16:05:51+00:00"
  7482. },
  7483. {
  7484. "name": "symfony/service-contracts",
  7485. "version": "v3.3.0",
  7486. "source": {
  7487. "type": "git",
  7488. "url": "https://github.com/symfony/service-contracts.git",
  7489. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  7490. },
  7491. "dist": {
  7492. "type": "zip",
  7493. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  7494. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  7495. "shasum": ""
  7496. },
  7497. "require": {
  7498. "php": ">=8.1",
  7499. "psr/container": "^2.0"
  7500. },
  7501. "conflict": {
  7502. "ext-psr": "<1.1|>=2"
  7503. },
  7504. "type": "library",
  7505. "extra": {
  7506. "branch-alias": {
  7507. "dev-main": "3.4-dev"
  7508. },
  7509. "thanks": {
  7510. "name": "symfony/contracts",
  7511. "url": "https://github.com/symfony/contracts"
  7512. }
  7513. },
  7514. "autoload": {
  7515. "psr-4": {
  7516. "Symfony\\Contracts\\Service\\": ""
  7517. },
  7518. "exclude-from-classmap": [
  7519. "/Test/"
  7520. ]
  7521. },
  7522. "notification-url": "https://packagist.org/downloads/",
  7523. "license": [
  7524. "MIT"
  7525. ],
  7526. "authors": [
  7527. {
  7528. "name": "Nicolas Grekas",
  7529. "email": "p@tchwork.com"
  7530. },
  7531. {
  7532. "name": "Symfony Community",
  7533. "homepage": "https://symfony.com/contributors"
  7534. }
  7535. ],
  7536. "description": "Generic abstractions related to writing services",
  7537. "homepage": "https://symfony.com",
  7538. "keywords": [
  7539. "abstractions",
  7540. "contracts",
  7541. "decoupling",
  7542. "interfaces",
  7543. "interoperability",
  7544. "standards"
  7545. ],
  7546. "support": {
  7547. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  7548. },
  7549. "funding": [
  7550. {
  7551. "url": "https://symfony.com/sponsor",
  7552. "type": "custom"
  7553. },
  7554. {
  7555. "url": "https://github.com/fabpot",
  7556. "type": "github"
  7557. },
  7558. {
  7559. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7560. "type": "tidelift"
  7561. }
  7562. ],
  7563. "time": "2023-05-23T14:45:45+00:00"
  7564. },
  7565. {
  7566. "name": "symfony/string",
  7567. "version": "v6.3.5",
  7568. "source": {
  7569. "type": "git",
  7570. "url": "https://github.com/symfony/string.git",
  7571. "reference": "13d76d0fb049051ed12a04bef4f9de8715bea339"
  7572. },
  7573. "dist": {
  7574. "type": "zip",
  7575. "url": "https://api.github.com/repos/symfony/string/zipball/13d76d0fb049051ed12a04bef4f9de8715bea339",
  7576. "reference": "13d76d0fb049051ed12a04bef4f9de8715bea339",
  7577. "shasum": ""
  7578. },
  7579. "require": {
  7580. "php": ">=8.1",
  7581. "symfony/polyfill-ctype": "~1.8",
  7582. "symfony/polyfill-intl-grapheme": "~1.0",
  7583. "symfony/polyfill-intl-normalizer": "~1.0",
  7584. "symfony/polyfill-mbstring": "~1.0"
  7585. },
  7586. "conflict": {
  7587. "symfony/translation-contracts": "<2.5"
  7588. },
  7589. "require-dev": {
  7590. "symfony/error-handler": "^5.4|^6.0",
  7591. "symfony/http-client": "^5.4|^6.0",
  7592. "symfony/intl": "^6.2",
  7593. "symfony/translation-contracts": "^2.5|^3.0",
  7594. "symfony/var-exporter": "^5.4|^6.0"
  7595. },
  7596. "type": "library",
  7597. "autoload": {
  7598. "files": [
  7599. "Resources/functions.php"
  7600. ],
  7601. "psr-4": {
  7602. "Symfony\\Component\\String\\": ""
  7603. },
  7604. "exclude-from-classmap": [
  7605. "/Tests/"
  7606. ]
  7607. },
  7608. "notification-url": "https://packagist.org/downloads/",
  7609. "license": [
  7610. "MIT"
  7611. ],
  7612. "authors": [
  7613. {
  7614. "name": "Nicolas Grekas",
  7615. "email": "p@tchwork.com"
  7616. },
  7617. {
  7618. "name": "Symfony Community",
  7619. "homepage": "https://symfony.com/contributors"
  7620. }
  7621. ],
  7622. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7623. "homepage": "https://symfony.com",
  7624. "keywords": [
  7625. "grapheme",
  7626. "i18n",
  7627. "string",
  7628. "unicode",
  7629. "utf-8",
  7630. "utf8"
  7631. ],
  7632. "support": {
  7633. "source": "https://github.com/symfony/string/tree/v6.3.5"
  7634. },
  7635. "funding": [
  7636. {
  7637. "url": "https://symfony.com/sponsor",
  7638. "type": "custom"
  7639. },
  7640. {
  7641. "url": "https://github.com/fabpot",
  7642. "type": "github"
  7643. },
  7644. {
  7645. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7646. "type": "tidelift"
  7647. }
  7648. ],
  7649. "time": "2023-09-18T10:38:32+00:00"
  7650. },
  7651. {
  7652. "name": "symfony/translation",
  7653. "version": "v6.3.3",
  7654. "source": {
  7655. "type": "git",
  7656. "url": "https://github.com/symfony/translation.git",
  7657. "reference": "3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd"
  7658. },
  7659. "dist": {
  7660. "type": "zip",
  7661. "url": "https://api.github.com/repos/symfony/translation/zipball/3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd",
  7662. "reference": "3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd",
  7663. "shasum": ""
  7664. },
  7665. "require": {
  7666. "php": ">=8.1",
  7667. "symfony/deprecation-contracts": "^2.5|^3",
  7668. "symfony/polyfill-mbstring": "~1.0",
  7669. "symfony/translation-contracts": "^2.5|^3.0"
  7670. },
  7671. "conflict": {
  7672. "symfony/config": "<5.4",
  7673. "symfony/console": "<5.4",
  7674. "symfony/dependency-injection": "<5.4",
  7675. "symfony/http-client-contracts": "<2.5",
  7676. "symfony/http-kernel": "<5.4",
  7677. "symfony/service-contracts": "<2.5",
  7678. "symfony/twig-bundle": "<5.4",
  7679. "symfony/yaml": "<5.4"
  7680. },
  7681. "provide": {
  7682. "symfony/translation-implementation": "2.3|3.0"
  7683. },
  7684. "require-dev": {
  7685. "nikic/php-parser": "^4.13",
  7686. "psr/log": "^1|^2|^3",
  7687. "symfony/config": "^5.4|^6.0",
  7688. "symfony/console": "^5.4|^6.0",
  7689. "symfony/dependency-injection": "^5.4|^6.0",
  7690. "symfony/finder": "^5.4|^6.0",
  7691. "symfony/http-client-contracts": "^2.5|^3.0",
  7692. "symfony/http-kernel": "^5.4|^6.0",
  7693. "symfony/intl": "^5.4|^6.0",
  7694. "symfony/polyfill-intl-icu": "^1.21",
  7695. "symfony/routing": "^5.4|^6.0",
  7696. "symfony/service-contracts": "^2.5|^3",
  7697. "symfony/yaml": "^5.4|^6.0"
  7698. },
  7699. "type": "library",
  7700. "autoload": {
  7701. "files": [
  7702. "Resources/functions.php"
  7703. ],
  7704. "psr-4": {
  7705. "Symfony\\Component\\Translation\\": ""
  7706. },
  7707. "exclude-from-classmap": [
  7708. "/Tests/"
  7709. ]
  7710. },
  7711. "notification-url": "https://packagist.org/downloads/",
  7712. "license": [
  7713. "MIT"
  7714. ],
  7715. "authors": [
  7716. {
  7717. "name": "Fabien Potencier",
  7718. "email": "fabien@symfony.com"
  7719. },
  7720. {
  7721. "name": "Symfony Community",
  7722. "homepage": "https://symfony.com/contributors"
  7723. }
  7724. ],
  7725. "description": "Provides tools to internationalize your application",
  7726. "homepage": "https://symfony.com",
  7727. "support": {
  7728. "source": "https://github.com/symfony/translation/tree/v6.3.3"
  7729. },
  7730. "funding": [
  7731. {
  7732. "url": "https://symfony.com/sponsor",
  7733. "type": "custom"
  7734. },
  7735. {
  7736. "url": "https://github.com/fabpot",
  7737. "type": "github"
  7738. },
  7739. {
  7740. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7741. "type": "tidelift"
  7742. }
  7743. ],
  7744. "time": "2023-07-31T07:08:24+00:00"
  7745. },
  7746. {
  7747. "name": "symfony/translation-contracts",
  7748. "version": "v3.3.0",
  7749. "source": {
  7750. "type": "git",
  7751. "url": "https://github.com/symfony/translation-contracts.git",
  7752. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
  7753. },
  7754. "dist": {
  7755. "type": "zip",
  7756. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
  7757. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
  7758. "shasum": ""
  7759. },
  7760. "require": {
  7761. "php": ">=8.1"
  7762. },
  7763. "type": "library",
  7764. "extra": {
  7765. "branch-alias": {
  7766. "dev-main": "3.4-dev"
  7767. },
  7768. "thanks": {
  7769. "name": "symfony/contracts",
  7770. "url": "https://github.com/symfony/contracts"
  7771. }
  7772. },
  7773. "autoload": {
  7774. "psr-4": {
  7775. "Symfony\\Contracts\\Translation\\": ""
  7776. },
  7777. "exclude-from-classmap": [
  7778. "/Test/"
  7779. ]
  7780. },
  7781. "notification-url": "https://packagist.org/downloads/",
  7782. "license": [
  7783. "MIT"
  7784. ],
  7785. "authors": [
  7786. {
  7787. "name": "Nicolas Grekas",
  7788. "email": "p@tchwork.com"
  7789. },
  7790. {
  7791. "name": "Symfony Community",
  7792. "homepage": "https://symfony.com/contributors"
  7793. }
  7794. ],
  7795. "description": "Generic abstractions related to translation",
  7796. "homepage": "https://symfony.com",
  7797. "keywords": [
  7798. "abstractions",
  7799. "contracts",
  7800. "decoupling",
  7801. "interfaces",
  7802. "interoperability",
  7803. "standards"
  7804. ],
  7805. "support": {
  7806. "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
  7807. },
  7808. "funding": [
  7809. {
  7810. "url": "https://symfony.com/sponsor",
  7811. "type": "custom"
  7812. },
  7813. {
  7814. "url": "https://github.com/fabpot",
  7815. "type": "github"
  7816. },
  7817. {
  7818. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7819. "type": "tidelift"
  7820. }
  7821. ],
  7822. "time": "2023-05-30T17:17:10+00:00"
  7823. },
  7824. {
  7825. "name": "symfony/uid",
  7826. "version": "v6.3.0",
  7827. "source": {
  7828. "type": "git",
  7829. "url": "https://github.com/symfony/uid.git",
  7830. "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384"
  7831. },
  7832. "dist": {
  7833. "type": "zip",
  7834. "url": "https://api.github.com/repos/symfony/uid/zipball/01b0f20b1351d997711c56f1638f7a8c3061e384",
  7835. "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384",
  7836. "shasum": ""
  7837. },
  7838. "require": {
  7839. "php": ">=8.1",
  7840. "symfony/polyfill-uuid": "^1.15"
  7841. },
  7842. "require-dev": {
  7843. "symfony/console": "^5.4|^6.0"
  7844. },
  7845. "type": "library",
  7846. "autoload": {
  7847. "psr-4": {
  7848. "Symfony\\Component\\Uid\\": ""
  7849. },
  7850. "exclude-from-classmap": [
  7851. "/Tests/"
  7852. ]
  7853. },
  7854. "notification-url": "https://packagist.org/downloads/",
  7855. "license": [
  7856. "MIT"
  7857. ],
  7858. "authors": [
  7859. {
  7860. "name": "Grégoire Pineau",
  7861. "email": "lyrixx@lyrixx.info"
  7862. },
  7863. {
  7864. "name": "Nicolas Grekas",
  7865. "email": "p@tchwork.com"
  7866. },
  7867. {
  7868. "name": "Symfony Community",
  7869. "homepage": "https://symfony.com/contributors"
  7870. }
  7871. ],
  7872. "description": "Provides an object-oriented API to generate and represent UIDs",
  7873. "homepage": "https://symfony.com",
  7874. "keywords": [
  7875. "UID",
  7876. "ulid",
  7877. "uuid"
  7878. ],
  7879. "support": {
  7880. "source": "https://github.com/symfony/uid/tree/v6.3.0"
  7881. },
  7882. "funding": [
  7883. {
  7884. "url": "https://symfony.com/sponsor",
  7885. "type": "custom"
  7886. },
  7887. {
  7888. "url": "https://github.com/fabpot",
  7889. "type": "github"
  7890. },
  7891. {
  7892. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7893. "type": "tidelift"
  7894. }
  7895. ],
  7896. "time": "2023-04-08T07:25:02+00:00"
  7897. },
  7898. {
  7899. "name": "symfony/var-dumper",
  7900. "version": "v6.3.5",
  7901. "source": {
  7902. "type": "git",
  7903. "url": "https://github.com/symfony/var-dumper.git",
  7904. "reference": "3d9999376be5fea8de47752837a3e1d1c5f69ef5"
  7905. },
  7906. "dist": {
  7907. "type": "zip",
  7908. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/3d9999376be5fea8de47752837a3e1d1c5f69ef5",
  7909. "reference": "3d9999376be5fea8de47752837a3e1d1c5f69ef5",
  7910. "shasum": ""
  7911. },
  7912. "require": {
  7913. "php": ">=8.1",
  7914. "symfony/deprecation-contracts": "^2.5|^3",
  7915. "symfony/polyfill-mbstring": "~1.0"
  7916. },
  7917. "conflict": {
  7918. "symfony/console": "<5.4"
  7919. },
  7920. "require-dev": {
  7921. "ext-iconv": "*",
  7922. "symfony/console": "^5.4|^6.0",
  7923. "symfony/http-kernel": "^5.4|^6.0",
  7924. "symfony/process": "^5.4|^6.0",
  7925. "symfony/uid": "^5.4|^6.0",
  7926. "twig/twig": "^2.13|^3.0.4"
  7927. },
  7928. "bin": [
  7929. "Resources/bin/var-dump-server"
  7930. ],
  7931. "type": "library",
  7932. "autoload": {
  7933. "files": [
  7934. "Resources/functions/dump.php"
  7935. ],
  7936. "psr-4": {
  7937. "Symfony\\Component\\VarDumper\\": ""
  7938. },
  7939. "exclude-from-classmap": [
  7940. "/Tests/"
  7941. ]
  7942. },
  7943. "notification-url": "https://packagist.org/downloads/",
  7944. "license": [
  7945. "MIT"
  7946. ],
  7947. "authors": [
  7948. {
  7949. "name": "Nicolas Grekas",
  7950. "email": "p@tchwork.com"
  7951. },
  7952. {
  7953. "name": "Symfony Community",
  7954. "homepage": "https://symfony.com/contributors"
  7955. }
  7956. ],
  7957. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7958. "homepage": "https://symfony.com",
  7959. "keywords": [
  7960. "debug",
  7961. "dump"
  7962. ],
  7963. "support": {
  7964. "source": "https://github.com/symfony/var-dumper/tree/v6.3.5"
  7965. },
  7966. "funding": [
  7967. {
  7968. "url": "https://symfony.com/sponsor",
  7969. "type": "custom"
  7970. },
  7971. {
  7972. "url": "https://github.com/fabpot",
  7973. "type": "github"
  7974. },
  7975. {
  7976. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7977. "type": "tidelift"
  7978. }
  7979. ],
  7980. "time": "2023-09-12T10:11:35+00:00"
  7981. },
  7982. {
  7983. "name": "tijsverkoyen/css-to-inline-styles",
  7984. "version": "2.2.6",
  7985. "source": {
  7986. "type": "git",
  7987. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7988. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  7989. },
  7990. "dist": {
  7991. "type": "zip",
  7992. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7993. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7994. "shasum": ""
  7995. },
  7996. "require": {
  7997. "ext-dom": "*",
  7998. "ext-libxml": "*",
  7999. "php": "^5.5 || ^7.0 || ^8.0",
  8000. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  8001. },
  8002. "require-dev": {
  8003. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8004. },
  8005. "type": "library",
  8006. "extra": {
  8007. "branch-alias": {
  8008. "dev-master": "2.2.x-dev"
  8009. }
  8010. },
  8011. "autoload": {
  8012. "psr-4": {
  8013. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8014. }
  8015. },
  8016. "notification-url": "https://packagist.org/downloads/",
  8017. "license": [
  8018. "BSD-3-Clause"
  8019. ],
  8020. "authors": [
  8021. {
  8022. "name": "Tijs Verkoyen",
  8023. "email": "css_to_inline_styles@verkoyen.eu",
  8024. "role": "Developer"
  8025. }
  8026. ],
  8027. "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.",
  8028. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8029. "support": {
  8030. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8031. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  8032. },
  8033. "time": "2023-01-03T09:29:04+00:00"
  8034. },
  8035. {
  8036. "name": "vlucas/phpdotenv",
  8037. "version": "v5.5.0",
  8038. "source": {
  8039. "type": "git",
  8040. "url": "https://github.com/vlucas/phpdotenv.git",
  8041. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  8042. },
  8043. "dist": {
  8044. "type": "zip",
  8045. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8046. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8047. "shasum": ""
  8048. },
  8049. "require": {
  8050. "ext-pcre": "*",
  8051. "graham-campbell/result-type": "^1.0.2",
  8052. "php": "^7.1.3 || ^8.0",
  8053. "phpoption/phpoption": "^1.8",
  8054. "symfony/polyfill-ctype": "^1.23",
  8055. "symfony/polyfill-mbstring": "^1.23.1",
  8056. "symfony/polyfill-php80": "^1.23.1"
  8057. },
  8058. "require-dev": {
  8059. "bamarni/composer-bin-plugin": "^1.4.1",
  8060. "ext-filter": "*",
  8061. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  8062. },
  8063. "suggest": {
  8064. "ext-filter": "Required to use the boolean validator."
  8065. },
  8066. "type": "library",
  8067. "extra": {
  8068. "bamarni-bin": {
  8069. "bin-links": true,
  8070. "forward-command": true
  8071. },
  8072. "branch-alias": {
  8073. "dev-master": "5.5-dev"
  8074. }
  8075. },
  8076. "autoload": {
  8077. "psr-4": {
  8078. "Dotenv\\": "src/"
  8079. }
  8080. },
  8081. "notification-url": "https://packagist.org/downloads/",
  8082. "license": [
  8083. "BSD-3-Clause"
  8084. ],
  8085. "authors": [
  8086. {
  8087. "name": "Graham Campbell",
  8088. "email": "hello@gjcampbell.co.uk",
  8089. "homepage": "https://github.com/GrahamCampbell"
  8090. },
  8091. {
  8092. "name": "Vance Lucas",
  8093. "email": "vance@vancelucas.com",
  8094. "homepage": "https://github.com/vlucas"
  8095. }
  8096. ],
  8097. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8098. "keywords": [
  8099. "dotenv",
  8100. "env",
  8101. "environment"
  8102. ],
  8103. "support": {
  8104. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8105. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  8106. },
  8107. "funding": [
  8108. {
  8109. "url": "https://github.com/GrahamCampbell",
  8110. "type": "github"
  8111. },
  8112. {
  8113. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8114. "type": "tidelift"
  8115. }
  8116. ],
  8117. "time": "2022-10-16T01:01:54+00:00"
  8118. },
  8119. {
  8120. "name": "voku/portable-ascii",
  8121. "version": "2.0.1",
  8122. "source": {
  8123. "type": "git",
  8124. "url": "https://github.com/voku/portable-ascii.git",
  8125. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  8126. },
  8127. "dist": {
  8128. "type": "zip",
  8129. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  8130. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  8131. "shasum": ""
  8132. },
  8133. "require": {
  8134. "php": ">=7.0.0"
  8135. },
  8136. "require-dev": {
  8137. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8138. },
  8139. "suggest": {
  8140. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8141. },
  8142. "type": "library",
  8143. "autoload": {
  8144. "psr-4": {
  8145. "voku\\": "src/voku/"
  8146. }
  8147. },
  8148. "notification-url": "https://packagist.org/downloads/",
  8149. "license": [
  8150. "MIT"
  8151. ],
  8152. "authors": [
  8153. {
  8154. "name": "Lars Moelleken",
  8155. "homepage": "http://www.moelleken.org/"
  8156. }
  8157. ],
  8158. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8159. "homepage": "https://github.com/voku/portable-ascii",
  8160. "keywords": [
  8161. "ascii",
  8162. "clean",
  8163. "php"
  8164. ],
  8165. "support": {
  8166. "issues": "https://github.com/voku/portable-ascii/issues",
  8167. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  8168. },
  8169. "funding": [
  8170. {
  8171. "url": "https://www.paypal.me/moelleken",
  8172. "type": "custom"
  8173. },
  8174. {
  8175. "url": "https://github.com/voku",
  8176. "type": "github"
  8177. },
  8178. {
  8179. "url": "https://opencollective.com/portable-ascii",
  8180. "type": "open_collective"
  8181. },
  8182. {
  8183. "url": "https://www.patreon.com/voku",
  8184. "type": "patreon"
  8185. },
  8186. {
  8187. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8188. "type": "tidelift"
  8189. }
  8190. ],
  8191. "time": "2022-03-08T17:03:00+00:00"
  8192. },
  8193. {
  8194. "name": "webmozart/assert",
  8195. "version": "1.11.0",
  8196. "source": {
  8197. "type": "git",
  8198. "url": "https://github.com/webmozarts/assert.git",
  8199. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8200. },
  8201. "dist": {
  8202. "type": "zip",
  8203. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8204. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8205. "shasum": ""
  8206. },
  8207. "require": {
  8208. "ext-ctype": "*",
  8209. "php": "^7.2 || ^8.0"
  8210. },
  8211. "conflict": {
  8212. "phpstan/phpstan": "<0.12.20",
  8213. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8214. },
  8215. "require-dev": {
  8216. "phpunit/phpunit": "^8.5.13"
  8217. },
  8218. "type": "library",
  8219. "extra": {
  8220. "branch-alias": {
  8221. "dev-master": "1.10-dev"
  8222. }
  8223. },
  8224. "autoload": {
  8225. "psr-4": {
  8226. "Webmozart\\Assert\\": "src/"
  8227. }
  8228. },
  8229. "notification-url": "https://packagist.org/downloads/",
  8230. "license": [
  8231. "MIT"
  8232. ],
  8233. "authors": [
  8234. {
  8235. "name": "Bernhard Schussek",
  8236. "email": "bschussek@gmail.com"
  8237. }
  8238. ],
  8239. "description": "Assertions to validate method input/output with nice error messages.",
  8240. "keywords": [
  8241. "assert",
  8242. "check",
  8243. "validate"
  8244. ],
  8245. "support": {
  8246. "issues": "https://github.com/webmozarts/assert/issues",
  8247. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8248. },
  8249. "time": "2022-06-03T18:03:27+00:00"
  8250. }
  8251. ],
  8252. "packages-dev": [
  8253. {
  8254. "name": "fakerphp/faker",
  8255. "version": "v1.23.0",
  8256. "source": {
  8257. "type": "git",
  8258. "url": "https://github.com/FakerPHP/Faker.git",
  8259. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  8260. },
  8261. "dist": {
  8262. "type": "zip",
  8263. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8264. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8265. "shasum": ""
  8266. },
  8267. "require": {
  8268. "php": "^7.4 || ^8.0",
  8269. "psr/container": "^1.0 || ^2.0",
  8270. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8271. },
  8272. "conflict": {
  8273. "fzaninotto/faker": "*"
  8274. },
  8275. "require-dev": {
  8276. "bamarni/composer-bin-plugin": "^1.4.1",
  8277. "doctrine/persistence": "^1.3 || ^2.0",
  8278. "ext-intl": "*",
  8279. "phpunit/phpunit": "^9.5.26",
  8280. "symfony/phpunit-bridge": "^5.4.16"
  8281. },
  8282. "suggest": {
  8283. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8284. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8285. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8286. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8287. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8288. },
  8289. "type": "library",
  8290. "extra": {
  8291. "branch-alias": {
  8292. "dev-main": "v1.21-dev"
  8293. }
  8294. },
  8295. "autoload": {
  8296. "psr-4": {
  8297. "Faker\\": "src/Faker/"
  8298. }
  8299. },
  8300. "notification-url": "https://packagist.org/downloads/",
  8301. "license": [
  8302. "MIT"
  8303. ],
  8304. "authors": [
  8305. {
  8306. "name": "François Zaninotto"
  8307. }
  8308. ],
  8309. "description": "Faker is a PHP library that generates fake data for you.",
  8310. "keywords": [
  8311. "data",
  8312. "faker",
  8313. "fixtures"
  8314. ],
  8315. "support": {
  8316. "issues": "https://github.com/FakerPHP/Faker/issues",
  8317. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  8318. },
  8319. "time": "2023-06-12T08:44:38+00:00"
  8320. },
  8321. {
  8322. "name": "filp/whoops",
  8323. "version": "2.15.3",
  8324. "source": {
  8325. "type": "git",
  8326. "url": "https://github.com/filp/whoops.git",
  8327. "reference": "c83e88a30524f9360b11f585f71e6b17313b7187"
  8328. },
  8329. "dist": {
  8330. "type": "zip",
  8331. "url": "https://api.github.com/repos/filp/whoops/zipball/c83e88a30524f9360b11f585f71e6b17313b7187",
  8332. "reference": "c83e88a30524f9360b11f585f71e6b17313b7187",
  8333. "shasum": ""
  8334. },
  8335. "require": {
  8336. "php": "^5.5.9 || ^7.0 || ^8.0",
  8337. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8338. },
  8339. "require-dev": {
  8340. "mockery/mockery": "^0.9 || ^1.0",
  8341. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8342. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8343. },
  8344. "suggest": {
  8345. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8346. "whoops/soap": "Formats errors as SOAP responses"
  8347. },
  8348. "type": "library",
  8349. "extra": {
  8350. "branch-alias": {
  8351. "dev-master": "2.7-dev"
  8352. }
  8353. },
  8354. "autoload": {
  8355. "psr-4": {
  8356. "Whoops\\": "src/Whoops/"
  8357. }
  8358. },
  8359. "notification-url": "https://packagist.org/downloads/",
  8360. "license": [
  8361. "MIT"
  8362. ],
  8363. "authors": [
  8364. {
  8365. "name": "Filipe Dobreira",
  8366. "homepage": "https://github.com/filp",
  8367. "role": "Developer"
  8368. }
  8369. ],
  8370. "description": "php error handling for cool kids",
  8371. "homepage": "https://filp.github.io/whoops/",
  8372. "keywords": [
  8373. "error",
  8374. "exception",
  8375. "handling",
  8376. "library",
  8377. "throwable",
  8378. "whoops"
  8379. ],
  8380. "support": {
  8381. "issues": "https://github.com/filp/whoops/issues",
  8382. "source": "https://github.com/filp/whoops/tree/2.15.3"
  8383. },
  8384. "funding": [
  8385. {
  8386. "url": "https://github.com/denis-sokolov",
  8387. "type": "github"
  8388. }
  8389. ],
  8390. "time": "2023-07-13T12:00:00+00:00"
  8391. },
  8392. {
  8393. "name": "hamcrest/hamcrest-php",
  8394. "version": "v2.0.1",
  8395. "source": {
  8396. "type": "git",
  8397. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8398. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8399. },
  8400. "dist": {
  8401. "type": "zip",
  8402. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8403. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8404. "shasum": ""
  8405. },
  8406. "require": {
  8407. "php": "^5.3|^7.0|^8.0"
  8408. },
  8409. "replace": {
  8410. "cordoval/hamcrest-php": "*",
  8411. "davedevelopment/hamcrest-php": "*",
  8412. "kodova/hamcrest-php": "*"
  8413. },
  8414. "require-dev": {
  8415. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8416. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8417. },
  8418. "type": "library",
  8419. "extra": {
  8420. "branch-alias": {
  8421. "dev-master": "2.1-dev"
  8422. }
  8423. },
  8424. "autoload": {
  8425. "classmap": [
  8426. "hamcrest"
  8427. ]
  8428. },
  8429. "notification-url": "https://packagist.org/downloads/",
  8430. "license": [
  8431. "BSD-3-Clause"
  8432. ],
  8433. "description": "This is the PHP port of Hamcrest Matchers",
  8434. "keywords": [
  8435. "test"
  8436. ],
  8437. "support": {
  8438. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8439. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8440. },
  8441. "time": "2020-07-09T08:09:16+00:00"
  8442. },
  8443. {
  8444. "name": "laravel/pint",
  8445. "version": "v1.13.2",
  8446. "source": {
  8447. "type": "git",
  8448. "url": "https://github.com/laravel/pint.git",
  8449. "reference": "bbb13460d7f8c5c0cd9a58109beedd79cd7331ff"
  8450. },
  8451. "dist": {
  8452. "type": "zip",
  8453. "url": "https://api.github.com/repos/laravel/pint/zipball/bbb13460d7f8c5c0cd9a58109beedd79cd7331ff",
  8454. "reference": "bbb13460d7f8c5c0cd9a58109beedd79cd7331ff",
  8455. "shasum": ""
  8456. },
  8457. "require": {
  8458. "ext-json": "*",
  8459. "ext-mbstring": "*",
  8460. "ext-tokenizer": "*",
  8461. "ext-xml": "*",
  8462. "php": "^8.1.0"
  8463. },
  8464. "require-dev": {
  8465. "friendsofphp/php-cs-fixer": "^3.26.1",
  8466. "illuminate/view": "^10.23.1",
  8467. "laravel-zero/framework": "^10.1.2",
  8468. "mockery/mockery": "^1.6.6",
  8469. "nunomaduro/larastan": "^2.6.4",
  8470. "nunomaduro/termwind": "^1.15.1",
  8471. "pestphp/pest": "^2.18.2"
  8472. },
  8473. "bin": [
  8474. "builds/pint"
  8475. ],
  8476. "type": "project",
  8477. "autoload": {
  8478. "psr-4": {
  8479. "App\\": "app/",
  8480. "Database\\Seeders\\": "database/seeders/",
  8481. "Database\\Factories\\": "database/factories/"
  8482. }
  8483. },
  8484. "notification-url": "https://packagist.org/downloads/",
  8485. "license": [
  8486. "MIT"
  8487. ],
  8488. "authors": [
  8489. {
  8490. "name": "Nuno Maduro",
  8491. "email": "enunomaduro@gmail.com"
  8492. }
  8493. ],
  8494. "description": "An opinionated code formatter for PHP.",
  8495. "homepage": "https://laravel.com",
  8496. "keywords": [
  8497. "format",
  8498. "formatter",
  8499. "lint",
  8500. "linter",
  8501. "php"
  8502. ],
  8503. "support": {
  8504. "issues": "https://github.com/laravel/pint/issues",
  8505. "source": "https://github.com/laravel/pint"
  8506. },
  8507. "time": "2023-09-19T15:55:02+00:00"
  8508. },
  8509. {
  8510. "name": "laravel/sail",
  8511. "version": "v1.25.0",
  8512. "source": {
  8513. "type": "git",
  8514. "url": "https://github.com/laravel/sail.git",
  8515. "reference": "e81a7bd7ac1a745ccb25572830fecf74a89bb48a"
  8516. },
  8517. "dist": {
  8518. "type": "zip",
  8519. "url": "https://api.github.com/repos/laravel/sail/zipball/e81a7bd7ac1a745ccb25572830fecf74a89bb48a",
  8520. "reference": "e81a7bd7ac1a745ccb25572830fecf74a89bb48a",
  8521. "shasum": ""
  8522. },
  8523. "require": {
  8524. "illuminate/console": "^8.0|^9.0|^10.0",
  8525. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8526. "illuminate/support": "^8.0|^9.0|^10.0",
  8527. "php": "^8.0",
  8528. "symfony/yaml": "^6.0"
  8529. },
  8530. "require-dev": {
  8531. "orchestra/testbench": "^6.0|^7.0|^8.0",
  8532. "phpstan/phpstan": "^1.10"
  8533. },
  8534. "bin": [
  8535. "bin/sail"
  8536. ],
  8537. "type": "library",
  8538. "extra": {
  8539. "branch-alias": {
  8540. "dev-master": "1.x-dev"
  8541. },
  8542. "laravel": {
  8543. "providers": [
  8544. "Laravel\\Sail\\SailServiceProvider"
  8545. ]
  8546. }
  8547. },
  8548. "autoload": {
  8549. "psr-4": {
  8550. "Laravel\\Sail\\": "src/"
  8551. }
  8552. },
  8553. "notification-url": "https://packagist.org/downloads/",
  8554. "license": [
  8555. "MIT"
  8556. ],
  8557. "authors": [
  8558. {
  8559. "name": "Taylor Otwell",
  8560. "email": "taylor@laravel.com"
  8561. }
  8562. ],
  8563. "description": "Docker files for running a basic Laravel application.",
  8564. "keywords": [
  8565. "docker",
  8566. "laravel"
  8567. ],
  8568. "support": {
  8569. "issues": "https://github.com/laravel/sail/issues",
  8570. "source": "https://github.com/laravel/sail"
  8571. },
  8572. "time": "2023-09-11T17:37:09+00:00"
  8573. },
  8574. {
  8575. "name": "mockery/mockery",
  8576. "version": "1.6.6",
  8577. "source": {
  8578. "type": "git",
  8579. "url": "https://github.com/mockery/mockery.git",
  8580. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e"
  8581. },
  8582. "dist": {
  8583. "type": "zip",
  8584. "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e",
  8585. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e",
  8586. "shasum": ""
  8587. },
  8588. "require": {
  8589. "hamcrest/hamcrest-php": "^2.0.1",
  8590. "lib-pcre": ">=7.0",
  8591. "php": ">=7.3"
  8592. },
  8593. "conflict": {
  8594. "phpunit/phpunit": "<8.0"
  8595. },
  8596. "require-dev": {
  8597. "phpunit/phpunit": "^8.5 || ^9.6.10",
  8598. "psalm/plugin-phpunit": "^0.18.4",
  8599. "symplify/easy-coding-standard": "^11.5.0",
  8600. "vimeo/psalm": "^4.30"
  8601. },
  8602. "type": "library",
  8603. "autoload": {
  8604. "files": [
  8605. "library/helpers.php",
  8606. "library/Mockery.php"
  8607. ],
  8608. "psr-4": {
  8609. "Mockery\\": "library/Mockery"
  8610. }
  8611. },
  8612. "notification-url": "https://packagist.org/downloads/",
  8613. "license": [
  8614. "BSD-3-Clause"
  8615. ],
  8616. "authors": [
  8617. {
  8618. "name": "Pádraic Brady",
  8619. "email": "padraic.brady@gmail.com",
  8620. "homepage": "https://github.com/padraic",
  8621. "role": "Author"
  8622. },
  8623. {
  8624. "name": "Dave Marshall",
  8625. "email": "dave.marshall@atstsolutions.co.uk",
  8626. "homepage": "https://davedevelopment.co.uk",
  8627. "role": "Developer"
  8628. },
  8629. {
  8630. "name": "Nathanael Esayeas",
  8631. "email": "nathanael.esayeas@protonmail.com",
  8632. "homepage": "https://github.com/ghostwriter",
  8633. "role": "Lead Developer"
  8634. }
  8635. ],
  8636. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8637. "homepage": "https://github.com/mockery/mockery",
  8638. "keywords": [
  8639. "BDD",
  8640. "TDD",
  8641. "library",
  8642. "mock",
  8643. "mock objects",
  8644. "mockery",
  8645. "stub",
  8646. "test",
  8647. "test double",
  8648. "testing"
  8649. ],
  8650. "support": {
  8651. "docs": "https://docs.mockery.io/",
  8652. "issues": "https://github.com/mockery/mockery/issues",
  8653. "rss": "https://github.com/mockery/mockery/releases.atom",
  8654. "security": "https://github.com/mockery/mockery/security/advisories",
  8655. "source": "https://github.com/mockery/mockery"
  8656. },
  8657. "time": "2023-08-09T00:03:52+00:00"
  8658. },
  8659. {
  8660. "name": "myclabs/deep-copy",
  8661. "version": "1.11.1",
  8662. "source": {
  8663. "type": "git",
  8664. "url": "https://github.com/myclabs/DeepCopy.git",
  8665. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8666. },
  8667. "dist": {
  8668. "type": "zip",
  8669. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8670. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8671. "shasum": ""
  8672. },
  8673. "require": {
  8674. "php": "^7.1 || ^8.0"
  8675. },
  8676. "conflict": {
  8677. "doctrine/collections": "<1.6.8",
  8678. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8679. },
  8680. "require-dev": {
  8681. "doctrine/collections": "^1.6.8",
  8682. "doctrine/common": "^2.13.3 || ^3.2.2",
  8683. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8684. },
  8685. "type": "library",
  8686. "autoload": {
  8687. "files": [
  8688. "src/DeepCopy/deep_copy.php"
  8689. ],
  8690. "psr-4": {
  8691. "DeepCopy\\": "src/DeepCopy/"
  8692. }
  8693. },
  8694. "notification-url": "https://packagist.org/downloads/",
  8695. "license": [
  8696. "MIT"
  8697. ],
  8698. "description": "Create deep copies (clones) of your objects",
  8699. "keywords": [
  8700. "clone",
  8701. "copy",
  8702. "duplicate",
  8703. "object",
  8704. "object graph"
  8705. ],
  8706. "support": {
  8707. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8708. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8709. },
  8710. "funding": [
  8711. {
  8712. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8713. "type": "tidelift"
  8714. }
  8715. ],
  8716. "time": "2023-03-08T13:26:56+00:00"
  8717. },
  8718. {
  8719. "name": "nunomaduro/collision",
  8720. "version": "v7.9.0",
  8721. "source": {
  8722. "type": "git",
  8723. "url": "https://github.com/nunomaduro/collision.git",
  8724. "reference": "296d0cf9fe462837ac0da8a568b56fc026b132da"
  8725. },
  8726. "dist": {
  8727. "type": "zip",
  8728. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/296d0cf9fe462837ac0da8a568b56fc026b132da",
  8729. "reference": "296d0cf9fe462837ac0da8a568b56fc026b132da",
  8730. "shasum": ""
  8731. },
  8732. "require": {
  8733. "filp/whoops": "^2.15.3",
  8734. "nunomaduro/termwind": "^1.15.1",
  8735. "php": "^8.1.0",
  8736. "symfony/console": "^6.3.4"
  8737. },
  8738. "require-dev": {
  8739. "brianium/paratest": "^7.2.7",
  8740. "laravel/framework": "^10.23.1",
  8741. "laravel/pint": "^1.13.1",
  8742. "laravel/sail": "^1.25.0",
  8743. "laravel/sanctum": "^3.3.1",
  8744. "laravel/tinker": "^2.8.2",
  8745. "nunomaduro/larastan": "^2.6.4",
  8746. "orchestra/testbench-core": "^8.11.0",
  8747. "pestphp/pest": "^2.19.1",
  8748. "phpunit/phpunit": "^10.3.5",
  8749. "sebastian/environment": "^6.0.1",
  8750. "spatie/laravel-ignition": "^2.3.0"
  8751. },
  8752. "type": "library",
  8753. "extra": {
  8754. "laravel": {
  8755. "providers": [
  8756. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8757. ]
  8758. }
  8759. },
  8760. "autoload": {
  8761. "files": [
  8762. "./src/Adapters/Phpunit/Autoload.php"
  8763. ],
  8764. "psr-4": {
  8765. "NunoMaduro\\Collision\\": "src/"
  8766. }
  8767. },
  8768. "notification-url": "https://packagist.org/downloads/",
  8769. "license": [
  8770. "MIT"
  8771. ],
  8772. "authors": [
  8773. {
  8774. "name": "Nuno Maduro",
  8775. "email": "enunomaduro@gmail.com"
  8776. }
  8777. ],
  8778. "description": "Cli error handling for console/command-line PHP applications.",
  8779. "keywords": [
  8780. "artisan",
  8781. "cli",
  8782. "command-line",
  8783. "console",
  8784. "error",
  8785. "handling",
  8786. "laravel",
  8787. "laravel-zero",
  8788. "php",
  8789. "symfony"
  8790. ],
  8791. "support": {
  8792. "issues": "https://github.com/nunomaduro/collision/issues",
  8793. "source": "https://github.com/nunomaduro/collision"
  8794. },
  8795. "funding": [
  8796. {
  8797. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8798. "type": "custom"
  8799. },
  8800. {
  8801. "url": "https://github.com/nunomaduro",
  8802. "type": "github"
  8803. },
  8804. {
  8805. "url": "https://www.patreon.com/nunomaduro",
  8806. "type": "patreon"
  8807. }
  8808. ],
  8809. "time": "2023-09-19T10:45:09+00:00"
  8810. },
  8811. {
  8812. "name": "phar-io/manifest",
  8813. "version": "2.0.3",
  8814. "source": {
  8815. "type": "git",
  8816. "url": "https://github.com/phar-io/manifest.git",
  8817. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8818. },
  8819. "dist": {
  8820. "type": "zip",
  8821. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8822. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8823. "shasum": ""
  8824. },
  8825. "require": {
  8826. "ext-dom": "*",
  8827. "ext-phar": "*",
  8828. "ext-xmlwriter": "*",
  8829. "phar-io/version": "^3.0.1",
  8830. "php": "^7.2 || ^8.0"
  8831. },
  8832. "type": "library",
  8833. "extra": {
  8834. "branch-alias": {
  8835. "dev-master": "2.0.x-dev"
  8836. }
  8837. },
  8838. "autoload": {
  8839. "classmap": [
  8840. "src/"
  8841. ]
  8842. },
  8843. "notification-url": "https://packagist.org/downloads/",
  8844. "license": [
  8845. "BSD-3-Clause"
  8846. ],
  8847. "authors": [
  8848. {
  8849. "name": "Arne Blankerts",
  8850. "email": "arne@blankerts.de",
  8851. "role": "Developer"
  8852. },
  8853. {
  8854. "name": "Sebastian Heuer",
  8855. "email": "sebastian@phpeople.de",
  8856. "role": "Developer"
  8857. },
  8858. {
  8859. "name": "Sebastian Bergmann",
  8860. "email": "sebastian@phpunit.de",
  8861. "role": "Developer"
  8862. }
  8863. ],
  8864. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8865. "support": {
  8866. "issues": "https://github.com/phar-io/manifest/issues",
  8867. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8868. },
  8869. "time": "2021-07-20T11:28:43+00:00"
  8870. },
  8871. {
  8872. "name": "phar-io/version",
  8873. "version": "3.2.1",
  8874. "source": {
  8875. "type": "git",
  8876. "url": "https://github.com/phar-io/version.git",
  8877. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8878. },
  8879. "dist": {
  8880. "type": "zip",
  8881. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8882. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8883. "shasum": ""
  8884. },
  8885. "require": {
  8886. "php": "^7.2 || ^8.0"
  8887. },
  8888. "type": "library",
  8889. "autoload": {
  8890. "classmap": [
  8891. "src/"
  8892. ]
  8893. },
  8894. "notification-url": "https://packagist.org/downloads/",
  8895. "license": [
  8896. "BSD-3-Clause"
  8897. ],
  8898. "authors": [
  8899. {
  8900. "name": "Arne Blankerts",
  8901. "email": "arne@blankerts.de",
  8902. "role": "Developer"
  8903. },
  8904. {
  8905. "name": "Sebastian Heuer",
  8906. "email": "sebastian@phpeople.de",
  8907. "role": "Developer"
  8908. },
  8909. {
  8910. "name": "Sebastian Bergmann",
  8911. "email": "sebastian@phpunit.de",
  8912. "role": "Developer"
  8913. }
  8914. ],
  8915. "description": "Library for handling version information and constraints",
  8916. "support": {
  8917. "issues": "https://github.com/phar-io/version/issues",
  8918. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8919. },
  8920. "time": "2022-02-21T01:04:05+00:00"
  8921. },
  8922. {
  8923. "name": "phpunit/php-code-coverage",
  8924. "version": "10.1.7",
  8925. "source": {
  8926. "type": "git",
  8927. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8928. "reference": "355324ca4980b8916c18b9db29f3ef484078f26e"
  8929. },
  8930. "dist": {
  8931. "type": "zip",
  8932. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/355324ca4980b8916c18b9db29f3ef484078f26e",
  8933. "reference": "355324ca4980b8916c18b9db29f3ef484078f26e",
  8934. "shasum": ""
  8935. },
  8936. "require": {
  8937. "ext-dom": "*",
  8938. "ext-libxml": "*",
  8939. "ext-xmlwriter": "*",
  8940. "nikic/php-parser": "^4.15",
  8941. "php": ">=8.1",
  8942. "phpunit/php-file-iterator": "^4.0",
  8943. "phpunit/php-text-template": "^3.0",
  8944. "sebastian/code-unit-reverse-lookup": "^3.0",
  8945. "sebastian/complexity": "^3.0",
  8946. "sebastian/environment": "^6.0",
  8947. "sebastian/lines-of-code": "^2.0",
  8948. "sebastian/version": "^4.0",
  8949. "theseer/tokenizer": "^1.2.0"
  8950. },
  8951. "require-dev": {
  8952. "phpunit/phpunit": "^10.1"
  8953. },
  8954. "suggest": {
  8955. "ext-pcov": "PHP extension that provides line coverage",
  8956. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8957. },
  8958. "type": "library",
  8959. "extra": {
  8960. "branch-alias": {
  8961. "dev-main": "10.1-dev"
  8962. }
  8963. },
  8964. "autoload": {
  8965. "classmap": [
  8966. "src/"
  8967. ]
  8968. },
  8969. "notification-url": "https://packagist.org/downloads/",
  8970. "license": [
  8971. "BSD-3-Clause"
  8972. ],
  8973. "authors": [
  8974. {
  8975. "name": "Sebastian Bergmann",
  8976. "email": "sebastian@phpunit.de",
  8977. "role": "lead"
  8978. }
  8979. ],
  8980. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8981. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8982. "keywords": [
  8983. "coverage",
  8984. "testing",
  8985. "xunit"
  8986. ],
  8987. "support": {
  8988. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8989. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8990. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.7"
  8991. },
  8992. "funding": [
  8993. {
  8994. "url": "https://github.com/sebastianbergmann",
  8995. "type": "github"
  8996. }
  8997. ],
  8998. "time": "2023-10-04T15:34:17+00:00"
  8999. },
  9000. {
  9001. "name": "phpunit/php-file-iterator",
  9002. "version": "4.1.0",
  9003. "source": {
  9004. "type": "git",
  9005. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9006. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9007. },
  9008. "dist": {
  9009. "type": "zip",
  9010. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9011. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9012. "shasum": ""
  9013. },
  9014. "require": {
  9015. "php": ">=8.1"
  9016. },
  9017. "require-dev": {
  9018. "phpunit/phpunit": "^10.0"
  9019. },
  9020. "type": "library",
  9021. "extra": {
  9022. "branch-alias": {
  9023. "dev-main": "4.0-dev"
  9024. }
  9025. },
  9026. "autoload": {
  9027. "classmap": [
  9028. "src/"
  9029. ]
  9030. },
  9031. "notification-url": "https://packagist.org/downloads/",
  9032. "license": [
  9033. "BSD-3-Clause"
  9034. ],
  9035. "authors": [
  9036. {
  9037. "name": "Sebastian Bergmann",
  9038. "email": "sebastian@phpunit.de",
  9039. "role": "lead"
  9040. }
  9041. ],
  9042. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9043. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9044. "keywords": [
  9045. "filesystem",
  9046. "iterator"
  9047. ],
  9048. "support": {
  9049. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9050. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9051. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9052. },
  9053. "funding": [
  9054. {
  9055. "url": "https://github.com/sebastianbergmann",
  9056. "type": "github"
  9057. }
  9058. ],
  9059. "time": "2023-08-31T06:24:48+00:00"
  9060. },
  9061. {
  9062. "name": "phpunit/php-invoker",
  9063. "version": "4.0.0",
  9064. "source": {
  9065. "type": "git",
  9066. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9067. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9068. },
  9069. "dist": {
  9070. "type": "zip",
  9071. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9072. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9073. "shasum": ""
  9074. },
  9075. "require": {
  9076. "php": ">=8.1"
  9077. },
  9078. "require-dev": {
  9079. "ext-pcntl": "*",
  9080. "phpunit/phpunit": "^10.0"
  9081. },
  9082. "suggest": {
  9083. "ext-pcntl": "*"
  9084. },
  9085. "type": "library",
  9086. "extra": {
  9087. "branch-alias": {
  9088. "dev-main": "4.0-dev"
  9089. }
  9090. },
  9091. "autoload": {
  9092. "classmap": [
  9093. "src/"
  9094. ]
  9095. },
  9096. "notification-url": "https://packagist.org/downloads/",
  9097. "license": [
  9098. "BSD-3-Clause"
  9099. ],
  9100. "authors": [
  9101. {
  9102. "name": "Sebastian Bergmann",
  9103. "email": "sebastian@phpunit.de",
  9104. "role": "lead"
  9105. }
  9106. ],
  9107. "description": "Invoke callables with a timeout",
  9108. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9109. "keywords": [
  9110. "process"
  9111. ],
  9112. "support": {
  9113. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9114. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9115. },
  9116. "funding": [
  9117. {
  9118. "url": "https://github.com/sebastianbergmann",
  9119. "type": "github"
  9120. }
  9121. ],
  9122. "time": "2023-02-03T06:56:09+00:00"
  9123. },
  9124. {
  9125. "name": "phpunit/php-text-template",
  9126. "version": "3.0.1",
  9127. "source": {
  9128. "type": "git",
  9129. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9130. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9131. },
  9132. "dist": {
  9133. "type": "zip",
  9134. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9135. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9136. "shasum": ""
  9137. },
  9138. "require": {
  9139. "php": ">=8.1"
  9140. },
  9141. "require-dev": {
  9142. "phpunit/phpunit": "^10.0"
  9143. },
  9144. "type": "library",
  9145. "extra": {
  9146. "branch-alias": {
  9147. "dev-main": "3.0-dev"
  9148. }
  9149. },
  9150. "autoload": {
  9151. "classmap": [
  9152. "src/"
  9153. ]
  9154. },
  9155. "notification-url": "https://packagist.org/downloads/",
  9156. "license": [
  9157. "BSD-3-Clause"
  9158. ],
  9159. "authors": [
  9160. {
  9161. "name": "Sebastian Bergmann",
  9162. "email": "sebastian@phpunit.de",
  9163. "role": "lead"
  9164. }
  9165. ],
  9166. "description": "Simple template engine.",
  9167. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9168. "keywords": [
  9169. "template"
  9170. ],
  9171. "support": {
  9172. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9173. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9174. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9175. },
  9176. "funding": [
  9177. {
  9178. "url": "https://github.com/sebastianbergmann",
  9179. "type": "github"
  9180. }
  9181. ],
  9182. "time": "2023-08-31T14:07:24+00:00"
  9183. },
  9184. {
  9185. "name": "phpunit/php-timer",
  9186. "version": "6.0.0",
  9187. "source": {
  9188. "type": "git",
  9189. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9190. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9191. },
  9192. "dist": {
  9193. "type": "zip",
  9194. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9195. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9196. "shasum": ""
  9197. },
  9198. "require": {
  9199. "php": ">=8.1"
  9200. },
  9201. "require-dev": {
  9202. "phpunit/phpunit": "^10.0"
  9203. },
  9204. "type": "library",
  9205. "extra": {
  9206. "branch-alias": {
  9207. "dev-main": "6.0-dev"
  9208. }
  9209. },
  9210. "autoload": {
  9211. "classmap": [
  9212. "src/"
  9213. ]
  9214. },
  9215. "notification-url": "https://packagist.org/downloads/",
  9216. "license": [
  9217. "BSD-3-Clause"
  9218. ],
  9219. "authors": [
  9220. {
  9221. "name": "Sebastian Bergmann",
  9222. "email": "sebastian@phpunit.de",
  9223. "role": "lead"
  9224. }
  9225. ],
  9226. "description": "Utility class for timing",
  9227. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9228. "keywords": [
  9229. "timer"
  9230. ],
  9231. "support": {
  9232. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9233. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9234. },
  9235. "funding": [
  9236. {
  9237. "url": "https://github.com/sebastianbergmann",
  9238. "type": "github"
  9239. }
  9240. ],
  9241. "time": "2023-02-03T06:57:52+00:00"
  9242. },
  9243. {
  9244. "name": "phpunit/phpunit",
  9245. "version": "10.3.5",
  9246. "source": {
  9247. "type": "git",
  9248. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9249. "reference": "747c3b2038f1139e3dcd9886a3f5a948648b7503"
  9250. },
  9251. "dist": {
  9252. "type": "zip",
  9253. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/747c3b2038f1139e3dcd9886a3f5a948648b7503",
  9254. "reference": "747c3b2038f1139e3dcd9886a3f5a948648b7503",
  9255. "shasum": ""
  9256. },
  9257. "require": {
  9258. "ext-dom": "*",
  9259. "ext-json": "*",
  9260. "ext-libxml": "*",
  9261. "ext-mbstring": "*",
  9262. "ext-xml": "*",
  9263. "ext-xmlwriter": "*",
  9264. "myclabs/deep-copy": "^1.10.1",
  9265. "phar-io/manifest": "^2.0.3",
  9266. "phar-io/version": "^3.0.2",
  9267. "php": ">=8.1",
  9268. "phpunit/php-code-coverage": "^10.1.5",
  9269. "phpunit/php-file-iterator": "^4.0",
  9270. "phpunit/php-invoker": "^4.0",
  9271. "phpunit/php-text-template": "^3.0",
  9272. "phpunit/php-timer": "^6.0",
  9273. "sebastian/cli-parser": "^2.0",
  9274. "sebastian/code-unit": "^2.0",
  9275. "sebastian/comparator": "^5.0",
  9276. "sebastian/diff": "^5.0",
  9277. "sebastian/environment": "^6.0",
  9278. "sebastian/exporter": "^5.1",
  9279. "sebastian/global-state": "^6.0.1",
  9280. "sebastian/object-enumerator": "^5.0",
  9281. "sebastian/recursion-context": "^5.0",
  9282. "sebastian/type": "^4.0",
  9283. "sebastian/version": "^4.0"
  9284. },
  9285. "suggest": {
  9286. "ext-soap": "To be able to generate mocks based on WSDL files"
  9287. },
  9288. "bin": [
  9289. "phpunit"
  9290. ],
  9291. "type": "library",
  9292. "extra": {
  9293. "branch-alias": {
  9294. "dev-main": "10.3-dev"
  9295. }
  9296. },
  9297. "autoload": {
  9298. "files": [
  9299. "src/Framework/Assert/Functions.php"
  9300. ],
  9301. "classmap": [
  9302. "src/"
  9303. ]
  9304. },
  9305. "notification-url": "https://packagist.org/downloads/",
  9306. "license": [
  9307. "BSD-3-Clause"
  9308. ],
  9309. "authors": [
  9310. {
  9311. "name": "Sebastian Bergmann",
  9312. "email": "sebastian@phpunit.de",
  9313. "role": "lead"
  9314. }
  9315. ],
  9316. "description": "The PHP Unit Testing framework.",
  9317. "homepage": "https://phpunit.de/",
  9318. "keywords": [
  9319. "phpunit",
  9320. "testing",
  9321. "xunit"
  9322. ],
  9323. "support": {
  9324. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9325. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9326. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.3.5"
  9327. },
  9328. "funding": [
  9329. {
  9330. "url": "https://phpunit.de/sponsors.html",
  9331. "type": "custom"
  9332. },
  9333. {
  9334. "url": "https://github.com/sebastianbergmann",
  9335. "type": "github"
  9336. },
  9337. {
  9338. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9339. "type": "tidelift"
  9340. }
  9341. ],
  9342. "time": "2023-09-19T05:42:37+00:00"
  9343. },
  9344. {
  9345. "name": "sebastian/cli-parser",
  9346. "version": "2.0.0",
  9347. "source": {
  9348. "type": "git",
  9349. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9350. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae"
  9351. },
  9352. "dist": {
  9353. "type": "zip",
  9354. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/efdc130dbbbb8ef0b545a994fd811725c5282cae",
  9355. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae",
  9356. "shasum": ""
  9357. },
  9358. "require": {
  9359. "php": ">=8.1"
  9360. },
  9361. "require-dev": {
  9362. "phpunit/phpunit": "^10.0"
  9363. },
  9364. "type": "library",
  9365. "extra": {
  9366. "branch-alias": {
  9367. "dev-main": "2.0-dev"
  9368. }
  9369. },
  9370. "autoload": {
  9371. "classmap": [
  9372. "src/"
  9373. ]
  9374. },
  9375. "notification-url": "https://packagist.org/downloads/",
  9376. "license": [
  9377. "BSD-3-Clause"
  9378. ],
  9379. "authors": [
  9380. {
  9381. "name": "Sebastian Bergmann",
  9382. "email": "sebastian@phpunit.de",
  9383. "role": "lead"
  9384. }
  9385. ],
  9386. "description": "Library for parsing CLI options",
  9387. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9388. "support": {
  9389. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9390. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.0"
  9391. },
  9392. "funding": [
  9393. {
  9394. "url": "https://github.com/sebastianbergmann",
  9395. "type": "github"
  9396. }
  9397. ],
  9398. "time": "2023-02-03T06:58:15+00:00"
  9399. },
  9400. {
  9401. "name": "sebastian/code-unit",
  9402. "version": "2.0.0",
  9403. "source": {
  9404. "type": "git",
  9405. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9406. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9407. },
  9408. "dist": {
  9409. "type": "zip",
  9410. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9411. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9412. "shasum": ""
  9413. },
  9414. "require": {
  9415. "php": ">=8.1"
  9416. },
  9417. "require-dev": {
  9418. "phpunit/phpunit": "^10.0"
  9419. },
  9420. "type": "library",
  9421. "extra": {
  9422. "branch-alias": {
  9423. "dev-main": "2.0-dev"
  9424. }
  9425. },
  9426. "autoload": {
  9427. "classmap": [
  9428. "src/"
  9429. ]
  9430. },
  9431. "notification-url": "https://packagist.org/downloads/",
  9432. "license": [
  9433. "BSD-3-Clause"
  9434. ],
  9435. "authors": [
  9436. {
  9437. "name": "Sebastian Bergmann",
  9438. "email": "sebastian@phpunit.de",
  9439. "role": "lead"
  9440. }
  9441. ],
  9442. "description": "Collection of value objects that represent the PHP code units",
  9443. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9444. "support": {
  9445. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9446. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9447. },
  9448. "funding": [
  9449. {
  9450. "url": "https://github.com/sebastianbergmann",
  9451. "type": "github"
  9452. }
  9453. ],
  9454. "time": "2023-02-03T06:58:43+00:00"
  9455. },
  9456. {
  9457. "name": "sebastian/code-unit-reverse-lookup",
  9458. "version": "3.0.0",
  9459. "source": {
  9460. "type": "git",
  9461. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9462. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9463. },
  9464. "dist": {
  9465. "type": "zip",
  9466. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9467. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9468. "shasum": ""
  9469. },
  9470. "require": {
  9471. "php": ">=8.1"
  9472. },
  9473. "require-dev": {
  9474. "phpunit/phpunit": "^10.0"
  9475. },
  9476. "type": "library",
  9477. "extra": {
  9478. "branch-alias": {
  9479. "dev-main": "3.0-dev"
  9480. }
  9481. },
  9482. "autoload": {
  9483. "classmap": [
  9484. "src/"
  9485. ]
  9486. },
  9487. "notification-url": "https://packagist.org/downloads/",
  9488. "license": [
  9489. "BSD-3-Clause"
  9490. ],
  9491. "authors": [
  9492. {
  9493. "name": "Sebastian Bergmann",
  9494. "email": "sebastian@phpunit.de"
  9495. }
  9496. ],
  9497. "description": "Looks up which function or method a line of code belongs to",
  9498. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9499. "support": {
  9500. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9501. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9502. },
  9503. "funding": [
  9504. {
  9505. "url": "https://github.com/sebastianbergmann",
  9506. "type": "github"
  9507. }
  9508. ],
  9509. "time": "2023-02-03T06:59:15+00:00"
  9510. },
  9511. {
  9512. "name": "sebastian/comparator",
  9513. "version": "5.0.1",
  9514. "source": {
  9515. "type": "git",
  9516. "url": "https://github.com/sebastianbergmann/comparator.git",
  9517. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  9518. },
  9519. "dist": {
  9520. "type": "zip",
  9521. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  9522. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  9523. "shasum": ""
  9524. },
  9525. "require": {
  9526. "ext-dom": "*",
  9527. "ext-mbstring": "*",
  9528. "php": ">=8.1",
  9529. "sebastian/diff": "^5.0",
  9530. "sebastian/exporter": "^5.0"
  9531. },
  9532. "require-dev": {
  9533. "phpunit/phpunit": "^10.3"
  9534. },
  9535. "type": "library",
  9536. "extra": {
  9537. "branch-alias": {
  9538. "dev-main": "5.0-dev"
  9539. }
  9540. },
  9541. "autoload": {
  9542. "classmap": [
  9543. "src/"
  9544. ]
  9545. },
  9546. "notification-url": "https://packagist.org/downloads/",
  9547. "license": [
  9548. "BSD-3-Clause"
  9549. ],
  9550. "authors": [
  9551. {
  9552. "name": "Sebastian Bergmann",
  9553. "email": "sebastian@phpunit.de"
  9554. },
  9555. {
  9556. "name": "Jeff Welch",
  9557. "email": "whatthejeff@gmail.com"
  9558. },
  9559. {
  9560. "name": "Volker Dusch",
  9561. "email": "github@wallbash.com"
  9562. },
  9563. {
  9564. "name": "Bernhard Schussek",
  9565. "email": "bschussek@2bepublished.at"
  9566. }
  9567. ],
  9568. "description": "Provides the functionality to compare PHP values for equality",
  9569. "homepage": "https://github.com/sebastianbergmann/comparator",
  9570. "keywords": [
  9571. "comparator",
  9572. "compare",
  9573. "equality"
  9574. ],
  9575. "support": {
  9576. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9577. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9578. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  9579. },
  9580. "funding": [
  9581. {
  9582. "url": "https://github.com/sebastianbergmann",
  9583. "type": "github"
  9584. }
  9585. ],
  9586. "time": "2023-08-14T13:18:12+00:00"
  9587. },
  9588. {
  9589. "name": "sebastian/complexity",
  9590. "version": "3.1.0",
  9591. "source": {
  9592. "type": "git",
  9593. "url": "https://github.com/sebastianbergmann/complexity.git",
  9594. "reference": "68cfb347a44871f01e33ab0ef8215966432f6957"
  9595. },
  9596. "dist": {
  9597. "type": "zip",
  9598. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68cfb347a44871f01e33ab0ef8215966432f6957",
  9599. "reference": "68cfb347a44871f01e33ab0ef8215966432f6957",
  9600. "shasum": ""
  9601. },
  9602. "require": {
  9603. "nikic/php-parser": "^4.10",
  9604. "php": ">=8.1"
  9605. },
  9606. "require-dev": {
  9607. "phpunit/phpunit": "^10.0"
  9608. },
  9609. "type": "library",
  9610. "extra": {
  9611. "branch-alias": {
  9612. "dev-main": "3.1-dev"
  9613. }
  9614. },
  9615. "autoload": {
  9616. "classmap": [
  9617. "src/"
  9618. ]
  9619. },
  9620. "notification-url": "https://packagist.org/downloads/",
  9621. "license": [
  9622. "BSD-3-Clause"
  9623. ],
  9624. "authors": [
  9625. {
  9626. "name": "Sebastian Bergmann",
  9627. "email": "sebastian@phpunit.de",
  9628. "role": "lead"
  9629. }
  9630. ],
  9631. "description": "Library for calculating the complexity of PHP code units",
  9632. "homepage": "https://github.com/sebastianbergmann/complexity",
  9633. "support": {
  9634. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9635. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9636. "source": "https://github.com/sebastianbergmann/complexity/tree/3.1.0"
  9637. },
  9638. "funding": [
  9639. {
  9640. "url": "https://github.com/sebastianbergmann",
  9641. "type": "github"
  9642. }
  9643. ],
  9644. "time": "2023-09-28T11:50:59+00:00"
  9645. },
  9646. {
  9647. "name": "sebastian/diff",
  9648. "version": "5.0.3",
  9649. "source": {
  9650. "type": "git",
  9651. "url": "https://github.com/sebastianbergmann/diff.git",
  9652. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b"
  9653. },
  9654. "dist": {
  9655. "type": "zip",
  9656. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  9657. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  9658. "shasum": ""
  9659. },
  9660. "require": {
  9661. "php": ">=8.1"
  9662. },
  9663. "require-dev": {
  9664. "phpunit/phpunit": "^10.0",
  9665. "symfony/process": "^4.2 || ^5"
  9666. },
  9667. "type": "library",
  9668. "extra": {
  9669. "branch-alias": {
  9670. "dev-main": "5.0-dev"
  9671. }
  9672. },
  9673. "autoload": {
  9674. "classmap": [
  9675. "src/"
  9676. ]
  9677. },
  9678. "notification-url": "https://packagist.org/downloads/",
  9679. "license": [
  9680. "BSD-3-Clause"
  9681. ],
  9682. "authors": [
  9683. {
  9684. "name": "Sebastian Bergmann",
  9685. "email": "sebastian@phpunit.de"
  9686. },
  9687. {
  9688. "name": "Kore Nordmann",
  9689. "email": "mail@kore-nordmann.de"
  9690. }
  9691. ],
  9692. "description": "Diff implementation",
  9693. "homepage": "https://github.com/sebastianbergmann/diff",
  9694. "keywords": [
  9695. "diff",
  9696. "udiff",
  9697. "unidiff",
  9698. "unified diff"
  9699. ],
  9700. "support": {
  9701. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9702. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9703. "source": "https://github.com/sebastianbergmann/diff/tree/5.0.3"
  9704. },
  9705. "funding": [
  9706. {
  9707. "url": "https://github.com/sebastianbergmann",
  9708. "type": "github"
  9709. }
  9710. ],
  9711. "time": "2023-05-01T07:48:21+00:00"
  9712. },
  9713. {
  9714. "name": "sebastian/environment",
  9715. "version": "6.0.1",
  9716. "source": {
  9717. "type": "git",
  9718. "url": "https://github.com/sebastianbergmann/environment.git",
  9719. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951"
  9720. },
  9721. "dist": {
  9722. "type": "zip",
  9723. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951",
  9724. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951",
  9725. "shasum": ""
  9726. },
  9727. "require": {
  9728. "php": ">=8.1"
  9729. },
  9730. "require-dev": {
  9731. "phpunit/phpunit": "^10.0"
  9732. },
  9733. "suggest": {
  9734. "ext-posix": "*"
  9735. },
  9736. "type": "library",
  9737. "extra": {
  9738. "branch-alias": {
  9739. "dev-main": "6.0-dev"
  9740. }
  9741. },
  9742. "autoload": {
  9743. "classmap": [
  9744. "src/"
  9745. ]
  9746. },
  9747. "notification-url": "https://packagist.org/downloads/",
  9748. "license": [
  9749. "BSD-3-Clause"
  9750. ],
  9751. "authors": [
  9752. {
  9753. "name": "Sebastian Bergmann",
  9754. "email": "sebastian@phpunit.de"
  9755. }
  9756. ],
  9757. "description": "Provides functionality to handle HHVM/PHP environments",
  9758. "homepage": "https://github.com/sebastianbergmann/environment",
  9759. "keywords": [
  9760. "Xdebug",
  9761. "environment",
  9762. "hhvm"
  9763. ],
  9764. "support": {
  9765. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9766. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9767. "source": "https://github.com/sebastianbergmann/environment/tree/6.0.1"
  9768. },
  9769. "funding": [
  9770. {
  9771. "url": "https://github.com/sebastianbergmann",
  9772. "type": "github"
  9773. }
  9774. ],
  9775. "time": "2023-04-11T05:39:26+00:00"
  9776. },
  9777. {
  9778. "name": "sebastian/exporter",
  9779. "version": "5.1.1",
  9780. "source": {
  9781. "type": "git",
  9782. "url": "https://github.com/sebastianbergmann/exporter.git",
  9783. "reference": "64f51654862e0f5e318db7e9dcc2292c63cdbddc"
  9784. },
  9785. "dist": {
  9786. "type": "zip",
  9787. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/64f51654862e0f5e318db7e9dcc2292c63cdbddc",
  9788. "reference": "64f51654862e0f5e318db7e9dcc2292c63cdbddc",
  9789. "shasum": ""
  9790. },
  9791. "require": {
  9792. "ext-mbstring": "*",
  9793. "php": ">=8.1",
  9794. "sebastian/recursion-context": "^5.0"
  9795. },
  9796. "require-dev": {
  9797. "phpunit/phpunit": "^10.0"
  9798. },
  9799. "type": "library",
  9800. "extra": {
  9801. "branch-alias": {
  9802. "dev-main": "5.1-dev"
  9803. }
  9804. },
  9805. "autoload": {
  9806. "classmap": [
  9807. "src/"
  9808. ]
  9809. },
  9810. "notification-url": "https://packagist.org/downloads/",
  9811. "license": [
  9812. "BSD-3-Clause"
  9813. ],
  9814. "authors": [
  9815. {
  9816. "name": "Sebastian Bergmann",
  9817. "email": "sebastian@phpunit.de"
  9818. },
  9819. {
  9820. "name": "Jeff Welch",
  9821. "email": "whatthejeff@gmail.com"
  9822. },
  9823. {
  9824. "name": "Volker Dusch",
  9825. "email": "github@wallbash.com"
  9826. },
  9827. {
  9828. "name": "Adam Harvey",
  9829. "email": "aharvey@php.net"
  9830. },
  9831. {
  9832. "name": "Bernhard Schussek",
  9833. "email": "bschussek@gmail.com"
  9834. }
  9835. ],
  9836. "description": "Provides the functionality to export PHP variables for visualization",
  9837. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9838. "keywords": [
  9839. "export",
  9840. "exporter"
  9841. ],
  9842. "support": {
  9843. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9844. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9845. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.1"
  9846. },
  9847. "funding": [
  9848. {
  9849. "url": "https://github.com/sebastianbergmann",
  9850. "type": "github"
  9851. }
  9852. ],
  9853. "time": "2023-09-24T13:22:09+00:00"
  9854. },
  9855. {
  9856. "name": "sebastian/global-state",
  9857. "version": "6.0.1",
  9858. "source": {
  9859. "type": "git",
  9860. "url": "https://github.com/sebastianbergmann/global-state.git",
  9861. "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4"
  9862. },
  9863. "dist": {
  9864. "type": "zip",
  9865. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/7ea9ead78f6d380d2a667864c132c2f7b83055e4",
  9866. "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4",
  9867. "shasum": ""
  9868. },
  9869. "require": {
  9870. "php": ">=8.1",
  9871. "sebastian/object-reflector": "^3.0",
  9872. "sebastian/recursion-context": "^5.0"
  9873. },
  9874. "require-dev": {
  9875. "ext-dom": "*",
  9876. "phpunit/phpunit": "^10.0"
  9877. },
  9878. "type": "library",
  9879. "extra": {
  9880. "branch-alias": {
  9881. "dev-main": "6.0-dev"
  9882. }
  9883. },
  9884. "autoload": {
  9885. "classmap": [
  9886. "src/"
  9887. ]
  9888. },
  9889. "notification-url": "https://packagist.org/downloads/",
  9890. "license": [
  9891. "BSD-3-Clause"
  9892. ],
  9893. "authors": [
  9894. {
  9895. "name": "Sebastian Bergmann",
  9896. "email": "sebastian@phpunit.de"
  9897. }
  9898. ],
  9899. "description": "Snapshotting of global state",
  9900. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9901. "keywords": [
  9902. "global state"
  9903. ],
  9904. "support": {
  9905. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9906. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9907. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.1"
  9908. },
  9909. "funding": [
  9910. {
  9911. "url": "https://github.com/sebastianbergmann",
  9912. "type": "github"
  9913. }
  9914. ],
  9915. "time": "2023-07-19T07:19:23+00:00"
  9916. },
  9917. {
  9918. "name": "sebastian/lines-of-code",
  9919. "version": "2.0.1",
  9920. "source": {
  9921. "type": "git",
  9922. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9923. "reference": "649e40d279e243d985aa8fb6e74dd5bb28dc185d"
  9924. },
  9925. "dist": {
  9926. "type": "zip",
  9927. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/649e40d279e243d985aa8fb6e74dd5bb28dc185d",
  9928. "reference": "649e40d279e243d985aa8fb6e74dd5bb28dc185d",
  9929. "shasum": ""
  9930. },
  9931. "require": {
  9932. "nikic/php-parser": "^4.10",
  9933. "php": ">=8.1"
  9934. },
  9935. "require-dev": {
  9936. "phpunit/phpunit": "^10.0"
  9937. },
  9938. "type": "library",
  9939. "extra": {
  9940. "branch-alias": {
  9941. "dev-main": "2.0-dev"
  9942. }
  9943. },
  9944. "autoload": {
  9945. "classmap": [
  9946. "src/"
  9947. ]
  9948. },
  9949. "notification-url": "https://packagist.org/downloads/",
  9950. "license": [
  9951. "BSD-3-Clause"
  9952. ],
  9953. "authors": [
  9954. {
  9955. "name": "Sebastian Bergmann",
  9956. "email": "sebastian@phpunit.de",
  9957. "role": "lead"
  9958. }
  9959. ],
  9960. "description": "Library for counting the lines of code in PHP source code",
  9961. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9962. "support": {
  9963. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9964. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9965. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.1"
  9966. },
  9967. "funding": [
  9968. {
  9969. "url": "https://github.com/sebastianbergmann",
  9970. "type": "github"
  9971. }
  9972. ],
  9973. "time": "2023-08-31T09:25:50+00:00"
  9974. },
  9975. {
  9976. "name": "sebastian/object-enumerator",
  9977. "version": "5.0.0",
  9978. "source": {
  9979. "type": "git",
  9980. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9981. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9982. },
  9983. "dist": {
  9984. "type": "zip",
  9985. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9986. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9987. "shasum": ""
  9988. },
  9989. "require": {
  9990. "php": ">=8.1",
  9991. "sebastian/object-reflector": "^3.0",
  9992. "sebastian/recursion-context": "^5.0"
  9993. },
  9994. "require-dev": {
  9995. "phpunit/phpunit": "^10.0"
  9996. },
  9997. "type": "library",
  9998. "extra": {
  9999. "branch-alias": {
  10000. "dev-main": "5.0-dev"
  10001. }
  10002. },
  10003. "autoload": {
  10004. "classmap": [
  10005. "src/"
  10006. ]
  10007. },
  10008. "notification-url": "https://packagist.org/downloads/",
  10009. "license": [
  10010. "BSD-3-Clause"
  10011. ],
  10012. "authors": [
  10013. {
  10014. "name": "Sebastian Bergmann",
  10015. "email": "sebastian@phpunit.de"
  10016. }
  10017. ],
  10018. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10019. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10020. "support": {
  10021. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10022. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10023. },
  10024. "funding": [
  10025. {
  10026. "url": "https://github.com/sebastianbergmann",
  10027. "type": "github"
  10028. }
  10029. ],
  10030. "time": "2023-02-03T07:08:32+00:00"
  10031. },
  10032. {
  10033. "name": "sebastian/object-reflector",
  10034. "version": "3.0.0",
  10035. "source": {
  10036. "type": "git",
  10037. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10038. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10039. },
  10040. "dist": {
  10041. "type": "zip",
  10042. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10043. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10044. "shasum": ""
  10045. },
  10046. "require": {
  10047. "php": ">=8.1"
  10048. },
  10049. "require-dev": {
  10050. "phpunit/phpunit": "^10.0"
  10051. },
  10052. "type": "library",
  10053. "extra": {
  10054. "branch-alias": {
  10055. "dev-main": "3.0-dev"
  10056. }
  10057. },
  10058. "autoload": {
  10059. "classmap": [
  10060. "src/"
  10061. ]
  10062. },
  10063. "notification-url": "https://packagist.org/downloads/",
  10064. "license": [
  10065. "BSD-3-Clause"
  10066. ],
  10067. "authors": [
  10068. {
  10069. "name": "Sebastian Bergmann",
  10070. "email": "sebastian@phpunit.de"
  10071. }
  10072. ],
  10073. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10074. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10075. "support": {
  10076. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10077. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10078. },
  10079. "funding": [
  10080. {
  10081. "url": "https://github.com/sebastianbergmann",
  10082. "type": "github"
  10083. }
  10084. ],
  10085. "time": "2023-02-03T07:06:18+00:00"
  10086. },
  10087. {
  10088. "name": "sebastian/recursion-context",
  10089. "version": "5.0.0",
  10090. "source": {
  10091. "type": "git",
  10092. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10093. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10094. },
  10095. "dist": {
  10096. "type": "zip",
  10097. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10098. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10099. "shasum": ""
  10100. },
  10101. "require": {
  10102. "php": ">=8.1"
  10103. },
  10104. "require-dev": {
  10105. "phpunit/phpunit": "^10.0"
  10106. },
  10107. "type": "library",
  10108. "extra": {
  10109. "branch-alias": {
  10110. "dev-main": "5.0-dev"
  10111. }
  10112. },
  10113. "autoload": {
  10114. "classmap": [
  10115. "src/"
  10116. ]
  10117. },
  10118. "notification-url": "https://packagist.org/downloads/",
  10119. "license": [
  10120. "BSD-3-Clause"
  10121. ],
  10122. "authors": [
  10123. {
  10124. "name": "Sebastian Bergmann",
  10125. "email": "sebastian@phpunit.de"
  10126. },
  10127. {
  10128. "name": "Jeff Welch",
  10129. "email": "whatthejeff@gmail.com"
  10130. },
  10131. {
  10132. "name": "Adam Harvey",
  10133. "email": "aharvey@php.net"
  10134. }
  10135. ],
  10136. "description": "Provides functionality to recursively process PHP variables",
  10137. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10138. "support": {
  10139. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10140. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10141. },
  10142. "funding": [
  10143. {
  10144. "url": "https://github.com/sebastianbergmann",
  10145. "type": "github"
  10146. }
  10147. ],
  10148. "time": "2023-02-03T07:05:40+00:00"
  10149. },
  10150. {
  10151. "name": "sebastian/type",
  10152. "version": "4.0.0",
  10153. "source": {
  10154. "type": "git",
  10155. "url": "https://github.com/sebastianbergmann/type.git",
  10156. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10157. },
  10158. "dist": {
  10159. "type": "zip",
  10160. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10161. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10162. "shasum": ""
  10163. },
  10164. "require": {
  10165. "php": ">=8.1"
  10166. },
  10167. "require-dev": {
  10168. "phpunit/phpunit": "^10.0"
  10169. },
  10170. "type": "library",
  10171. "extra": {
  10172. "branch-alias": {
  10173. "dev-main": "4.0-dev"
  10174. }
  10175. },
  10176. "autoload": {
  10177. "classmap": [
  10178. "src/"
  10179. ]
  10180. },
  10181. "notification-url": "https://packagist.org/downloads/",
  10182. "license": [
  10183. "BSD-3-Clause"
  10184. ],
  10185. "authors": [
  10186. {
  10187. "name": "Sebastian Bergmann",
  10188. "email": "sebastian@phpunit.de",
  10189. "role": "lead"
  10190. }
  10191. ],
  10192. "description": "Collection of value objects that represent the types of the PHP type system",
  10193. "homepage": "https://github.com/sebastianbergmann/type",
  10194. "support": {
  10195. "issues": "https://github.com/sebastianbergmann/type/issues",
  10196. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10197. },
  10198. "funding": [
  10199. {
  10200. "url": "https://github.com/sebastianbergmann",
  10201. "type": "github"
  10202. }
  10203. ],
  10204. "time": "2023-02-03T07:10:45+00:00"
  10205. },
  10206. {
  10207. "name": "sebastian/version",
  10208. "version": "4.0.1",
  10209. "source": {
  10210. "type": "git",
  10211. "url": "https://github.com/sebastianbergmann/version.git",
  10212. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10213. },
  10214. "dist": {
  10215. "type": "zip",
  10216. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10217. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10218. "shasum": ""
  10219. },
  10220. "require": {
  10221. "php": ">=8.1"
  10222. },
  10223. "type": "library",
  10224. "extra": {
  10225. "branch-alias": {
  10226. "dev-main": "4.0-dev"
  10227. }
  10228. },
  10229. "autoload": {
  10230. "classmap": [
  10231. "src/"
  10232. ]
  10233. },
  10234. "notification-url": "https://packagist.org/downloads/",
  10235. "license": [
  10236. "BSD-3-Clause"
  10237. ],
  10238. "authors": [
  10239. {
  10240. "name": "Sebastian Bergmann",
  10241. "email": "sebastian@phpunit.de",
  10242. "role": "lead"
  10243. }
  10244. ],
  10245. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10246. "homepage": "https://github.com/sebastianbergmann/version",
  10247. "support": {
  10248. "issues": "https://github.com/sebastianbergmann/version/issues",
  10249. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10250. },
  10251. "funding": [
  10252. {
  10253. "url": "https://github.com/sebastianbergmann",
  10254. "type": "github"
  10255. }
  10256. ],
  10257. "time": "2023-02-07T11:34:05+00:00"
  10258. },
  10259. {
  10260. "name": "spatie/backtrace",
  10261. "version": "1.5.3",
  10262. "source": {
  10263. "type": "git",
  10264. "url": "https://github.com/spatie/backtrace.git",
  10265. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab"
  10266. },
  10267. "dist": {
  10268. "type": "zip",
  10269. "url": "https://api.github.com/repos/spatie/backtrace/zipball/483f76a82964a0431aa836b6ed0edde0c248e3ab",
  10270. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab",
  10271. "shasum": ""
  10272. },
  10273. "require": {
  10274. "php": "^7.3|^8.0"
  10275. },
  10276. "require-dev": {
  10277. "ext-json": "*",
  10278. "phpunit/phpunit": "^9.3",
  10279. "spatie/phpunit-snapshot-assertions": "^4.2",
  10280. "symfony/var-dumper": "^5.1"
  10281. },
  10282. "type": "library",
  10283. "autoload": {
  10284. "psr-4": {
  10285. "Spatie\\Backtrace\\": "src"
  10286. }
  10287. },
  10288. "notification-url": "https://packagist.org/downloads/",
  10289. "license": [
  10290. "MIT"
  10291. ],
  10292. "authors": [
  10293. {
  10294. "name": "Freek Van de Herten",
  10295. "email": "freek@spatie.be",
  10296. "homepage": "https://spatie.be",
  10297. "role": "Developer"
  10298. }
  10299. ],
  10300. "description": "A better backtrace",
  10301. "homepage": "https://github.com/spatie/backtrace",
  10302. "keywords": [
  10303. "Backtrace",
  10304. "spatie"
  10305. ],
  10306. "support": {
  10307. "source": "https://github.com/spatie/backtrace/tree/1.5.3"
  10308. },
  10309. "funding": [
  10310. {
  10311. "url": "https://github.com/sponsors/spatie",
  10312. "type": "github"
  10313. },
  10314. {
  10315. "url": "https://spatie.be/open-source/support-us",
  10316. "type": "other"
  10317. }
  10318. ],
  10319. "time": "2023-06-28T12:59:17+00:00"
  10320. },
  10321. {
  10322. "name": "spatie/flare-client-php",
  10323. "version": "1.4.2",
  10324. "source": {
  10325. "type": "git",
  10326. "url": "https://github.com/spatie/flare-client-php.git",
  10327. "reference": "5f2c6a7a0d2c1d90c12559dc7828fd942911a544"
  10328. },
  10329. "dist": {
  10330. "type": "zip",
  10331. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/5f2c6a7a0d2c1d90c12559dc7828fd942911a544",
  10332. "reference": "5f2c6a7a0d2c1d90c12559dc7828fd942911a544",
  10333. "shasum": ""
  10334. },
  10335. "require": {
  10336. "illuminate/pipeline": "^8.0|^9.0|^10.0",
  10337. "nesbot/carbon": "^2.62.1",
  10338. "php": "^8.0",
  10339. "spatie/backtrace": "^1.5.2",
  10340. "symfony/http-foundation": "^5.0|^6.0",
  10341. "symfony/mime": "^5.2|^6.0",
  10342. "symfony/process": "^5.2|^6.0",
  10343. "symfony/var-dumper": "^5.2|^6.0"
  10344. },
  10345. "require-dev": {
  10346. "dms/phpunit-arraysubset-asserts": "^0.3.0",
  10347. "pestphp/pest": "^1.20",
  10348. "phpstan/extension-installer": "^1.1",
  10349. "phpstan/phpstan-deprecation-rules": "^1.0",
  10350. "phpstan/phpstan-phpunit": "^1.0",
  10351. "spatie/phpunit-snapshot-assertions": "^4.0"
  10352. },
  10353. "type": "library",
  10354. "extra": {
  10355. "branch-alias": {
  10356. "dev-main": "1.3.x-dev"
  10357. }
  10358. },
  10359. "autoload": {
  10360. "files": [
  10361. "src/helpers.php"
  10362. ],
  10363. "psr-4": {
  10364. "Spatie\\FlareClient\\": "src"
  10365. }
  10366. },
  10367. "notification-url": "https://packagist.org/downloads/",
  10368. "license": [
  10369. "MIT"
  10370. ],
  10371. "description": "Send PHP errors to Flare",
  10372. "homepage": "https://github.com/spatie/flare-client-php",
  10373. "keywords": [
  10374. "exception",
  10375. "flare",
  10376. "reporting",
  10377. "spatie"
  10378. ],
  10379. "support": {
  10380. "issues": "https://github.com/spatie/flare-client-php/issues",
  10381. "source": "https://github.com/spatie/flare-client-php/tree/1.4.2"
  10382. },
  10383. "funding": [
  10384. {
  10385. "url": "https://github.com/spatie",
  10386. "type": "github"
  10387. }
  10388. ],
  10389. "time": "2023-07-28T08:07:24+00:00"
  10390. },
  10391. {
  10392. "name": "spatie/ignition",
  10393. "version": "1.11.2",
  10394. "source": {
  10395. "type": "git",
  10396. "url": "https://github.com/spatie/ignition.git",
  10397. "reference": "48b23411ca4bfbc75c75dfc638b6b36159c375aa"
  10398. },
  10399. "dist": {
  10400. "type": "zip",
  10401. "url": "https://api.github.com/repos/spatie/ignition/zipball/48b23411ca4bfbc75c75dfc638b6b36159c375aa",
  10402. "reference": "48b23411ca4bfbc75c75dfc638b6b36159c375aa",
  10403. "shasum": ""
  10404. },
  10405. "require": {
  10406. "ext-json": "*",
  10407. "ext-mbstring": "*",
  10408. "php": "^8.0",
  10409. "spatie/backtrace": "^1.5.3",
  10410. "spatie/flare-client-php": "^1.4.0",
  10411. "symfony/console": "^5.4|^6.0",
  10412. "symfony/var-dumper": "^5.4|^6.0"
  10413. },
  10414. "require-dev": {
  10415. "illuminate/cache": "^9.52",
  10416. "mockery/mockery": "^1.4",
  10417. "pestphp/pest": "^1.20",
  10418. "phpstan/extension-installer": "^1.1",
  10419. "phpstan/phpstan-deprecation-rules": "^1.0",
  10420. "phpstan/phpstan-phpunit": "^1.0",
  10421. "psr/simple-cache-implementation": "*",
  10422. "symfony/cache": "^6.0",
  10423. "symfony/process": "^5.4|^6.0",
  10424. "vlucas/phpdotenv": "^5.5"
  10425. },
  10426. "suggest": {
  10427. "openai-php/client": "Require get solutions from OpenAI",
  10428. "simple-cache-implementation": "To cache solutions from OpenAI"
  10429. },
  10430. "type": "library",
  10431. "extra": {
  10432. "branch-alias": {
  10433. "dev-main": "1.5.x-dev"
  10434. }
  10435. },
  10436. "autoload": {
  10437. "psr-4": {
  10438. "Spatie\\Ignition\\": "src"
  10439. }
  10440. },
  10441. "notification-url": "https://packagist.org/downloads/",
  10442. "license": [
  10443. "MIT"
  10444. ],
  10445. "authors": [
  10446. {
  10447. "name": "Spatie",
  10448. "email": "info@spatie.be",
  10449. "role": "Developer"
  10450. }
  10451. ],
  10452. "description": "A beautiful error page for PHP applications.",
  10453. "homepage": "https://flareapp.io/ignition",
  10454. "keywords": [
  10455. "error",
  10456. "flare",
  10457. "laravel",
  10458. "page"
  10459. ],
  10460. "support": {
  10461. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10462. "forum": "https://twitter.com/flareappio",
  10463. "issues": "https://github.com/spatie/ignition/issues",
  10464. "source": "https://github.com/spatie/ignition"
  10465. },
  10466. "funding": [
  10467. {
  10468. "url": "https://github.com/spatie",
  10469. "type": "github"
  10470. }
  10471. ],
  10472. "time": "2023-09-19T15:29:52+00:00"
  10473. },
  10474. {
  10475. "name": "spatie/laravel-ignition",
  10476. "version": "2.3.0",
  10477. "source": {
  10478. "type": "git",
  10479. "url": "https://github.com/spatie/laravel-ignition.git",
  10480. "reference": "4ed813d16edb5a1ab0d7f4b1d116c37ee8cdf3c0"
  10481. },
  10482. "dist": {
  10483. "type": "zip",
  10484. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/4ed813d16edb5a1ab0d7f4b1d116c37ee8cdf3c0",
  10485. "reference": "4ed813d16edb5a1ab0d7f4b1d116c37ee8cdf3c0",
  10486. "shasum": ""
  10487. },
  10488. "require": {
  10489. "ext-curl": "*",
  10490. "ext-json": "*",
  10491. "ext-mbstring": "*",
  10492. "illuminate/support": "^10.0",
  10493. "php": "^8.1",
  10494. "spatie/flare-client-php": "^1.3.5",
  10495. "spatie/ignition": "^1.9",
  10496. "symfony/console": "^6.2.3",
  10497. "symfony/var-dumper": "^6.2.3"
  10498. },
  10499. "require-dev": {
  10500. "livewire/livewire": "^2.11",
  10501. "mockery/mockery": "^1.5.1",
  10502. "openai-php/client": "^0.3.4",
  10503. "orchestra/testbench": "^8.0",
  10504. "pestphp/pest": "^1.22.3",
  10505. "phpstan/extension-installer": "^1.2",
  10506. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  10507. "phpstan/phpstan-phpunit": "^1.3.3",
  10508. "vlucas/phpdotenv": "^5.5"
  10509. },
  10510. "suggest": {
  10511. "openai-php/client": "Require get solutions from OpenAI",
  10512. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  10513. },
  10514. "type": "library",
  10515. "extra": {
  10516. "laravel": {
  10517. "providers": [
  10518. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  10519. ],
  10520. "aliases": {
  10521. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  10522. }
  10523. }
  10524. },
  10525. "autoload": {
  10526. "files": [
  10527. "src/helpers.php"
  10528. ],
  10529. "psr-4": {
  10530. "Spatie\\LaravelIgnition\\": "src"
  10531. }
  10532. },
  10533. "notification-url": "https://packagist.org/downloads/",
  10534. "license": [
  10535. "MIT"
  10536. ],
  10537. "authors": [
  10538. {
  10539. "name": "Spatie",
  10540. "email": "info@spatie.be",
  10541. "role": "Developer"
  10542. }
  10543. ],
  10544. "description": "A beautiful error page for Laravel applications.",
  10545. "homepage": "https://flareapp.io/ignition",
  10546. "keywords": [
  10547. "error",
  10548. "flare",
  10549. "laravel",
  10550. "page"
  10551. ],
  10552. "support": {
  10553. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10554. "forum": "https://twitter.com/flareappio",
  10555. "issues": "https://github.com/spatie/laravel-ignition/issues",
  10556. "source": "https://github.com/spatie/laravel-ignition"
  10557. },
  10558. "funding": [
  10559. {
  10560. "url": "https://github.com/spatie",
  10561. "type": "github"
  10562. }
  10563. ],
  10564. "time": "2023-08-23T06:24:34+00:00"
  10565. },
  10566. {
  10567. "name": "symfony/yaml",
  10568. "version": "v6.3.3",
  10569. "source": {
  10570. "type": "git",
  10571. "url": "https://github.com/symfony/yaml.git",
  10572. "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add"
  10573. },
  10574. "dist": {
  10575. "type": "zip",
  10576. "url": "https://api.github.com/repos/symfony/yaml/zipball/e23292e8c07c85b971b44c1c4b87af52133e2add",
  10577. "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add",
  10578. "shasum": ""
  10579. },
  10580. "require": {
  10581. "php": ">=8.1",
  10582. "symfony/deprecation-contracts": "^2.5|^3",
  10583. "symfony/polyfill-ctype": "^1.8"
  10584. },
  10585. "conflict": {
  10586. "symfony/console": "<5.4"
  10587. },
  10588. "require-dev": {
  10589. "symfony/console": "^5.4|^6.0"
  10590. },
  10591. "bin": [
  10592. "Resources/bin/yaml-lint"
  10593. ],
  10594. "type": "library",
  10595. "autoload": {
  10596. "psr-4": {
  10597. "Symfony\\Component\\Yaml\\": ""
  10598. },
  10599. "exclude-from-classmap": [
  10600. "/Tests/"
  10601. ]
  10602. },
  10603. "notification-url": "https://packagist.org/downloads/",
  10604. "license": [
  10605. "MIT"
  10606. ],
  10607. "authors": [
  10608. {
  10609. "name": "Fabien Potencier",
  10610. "email": "fabien@symfony.com"
  10611. },
  10612. {
  10613. "name": "Symfony Community",
  10614. "homepage": "https://symfony.com/contributors"
  10615. }
  10616. ],
  10617. "description": "Loads and dumps YAML files",
  10618. "homepage": "https://symfony.com",
  10619. "support": {
  10620. "source": "https://github.com/symfony/yaml/tree/v6.3.3"
  10621. },
  10622. "funding": [
  10623. {
  10624. "url": "https://symfony.com/sponsor",
  10625. "type": "custom"
  10626. },
  10627. {
  10628. "url": "https://github.com/fabpot",
  10629. "type": "github"
  10630. },
  10631. {
  10632. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10633. "type": "tidelift"
  10634. }
  10635. ],
  10636. "time": "2023-07-31T07:08:24+00:00"
  10637. },
  10638. {
  10639. "name": "theseer/tokenizer",
  10640. "version": "1.2.1",
  10641. "source": {
  10642. "type": "git",
  10643. "url": "https://github.com/theseer/tokenizer.git",
  10644. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10645. },
  10646. "dist": {
  10647. "type": "zip",
  10648. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10649. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10650. "shasum": ""
  10651. },
  10652. "require": {
  10653. "ext-dom": "*",
  10654. "ext-tokenizer": "*",
  10655. "ext-xmlwriter": "*",
  10656. "php": "^7.2 || ^8.0"
  10657. },
  10658. "type": "library",
  10659. "autoload": {
  10660. "classmap": [
  10661. "src/"
  10662. ]
  10663. },
  10664. "notification-url": "https://packagist.org/downloads/",
  10665. "license": [
  10666. "BSD-3-Clause"
  10667. ],
  10668. "authors": [
  10669. {
  10670. "name": "Arne Blankerts",
  10671. "email": "arne@blankerts.de",
  10672. "role": "Developer"
  10673. }
  10674. ],
  10675. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10676. "support": {
  10677. "issues": "https://github.com/theseer/tokenizer/issues",
  10678. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10679. },
  10680. "funding": [
  10681. {
  10682. "url": "https://github.com/theseer",
  10683. "type": "github"
  10684. }
  10685. ],
  10686. "time": "2021-07-28T10:34:58+00:00"
  10687. }
  10688. ],
  10689. "aliases": [],
  10690. "minimum-stability": "stable",
  10691. "stability-flags": [],
  10692. "prefer-stable": true,
  10693. "prefer-lowest": false,
  10694. "platform": {
  10695. "php": "^8.2"
  10696. },
  10697. "platform-dev": [],
  10698. "plugin-api-version": "2.3.0"
  10699. }