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.

composer.lock 363KB

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