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 390KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873
  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": "d9558eae94b68c63e3c8ab4bce5a0702",
  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.5",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "db86f672656c1e6b1d6cbe2ea6ffe3055d4fbcce"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/db86f672656c1e6b1d6cbe2ea6ffe3055d4fbcce",
  89. "reference": "db86f672656c1e6b1d6cbe2ea6ffe3055d4fbcce",
  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.5"
  148. },
  149. "time": "2023-06-28T03:17:01+00:00"
  150. },
  151. {
  152. "name": "andrewdwallo/filament-selectify",
  153. "version": "v1.0.0",
  154. "source": {
  155. "type": "git",
  156. "url": "https://github.com/andrewdwallo/filament-selectify.git",
  157. "reference": "48156f6b0313c3fd96bf0594fe3cd564c8b8181c"
  158. },
  159. "dist": {
  160. "type": "zip",
  161. "url": "https://api.github.com/repos/andrewdwallo/filament-selectify/zipball/48156f6b0313c3fd96bf0594fe3cd564c8b8181c",
  162. "reference": "48156f6b0313c3fd96bf0594fe3cd564c8b8181c",
  163. "shasum": ""
  164. },
  165. "require": {
  166. "filament/forms": "^2.0",
  167. "illuminate/contracts": "^8.6|^9.0|^10.0",
  168. "php": "^8.0",
  169. "spatie/laravel-package-tools": "^1.14.0"
  170. },
  171. "require-dev": {
  172. "laravel/pint": "^1.0",
  173. "nunomaduro/collision": "^7.9",
  174. "orchestra/testbench": "^8.0",
  175. "pestphp/pest": "^2.0",
  176. "pestphp/pest-plugin-arch": "^2.0",
  177. "pestphp/pest-plugin-laravel": "^2.0"
  178. },
  179. "type": "library",
  180. "extra": {
  181. "laravel": {
  182. "providers": [
  183. "Wallo\\FilamentSelectify\\FilamentSelectifyServiceProvider"
  184. ]
  185. }
  186. },
  187. "autoload": {
  188. "psr-4": {
  189. "Wallo\\FilamentSelectify\\": "src/"
  190. }
  191. },
  192. "notification-url": "https://packagist.org/downloads/",
  193. "license": [
  194. "MIT"
  195. ],
  196. "authors": [
  197. {
  198. "name": "Andrew Wallo",
  199. "email": "andrewdwallo@gmail.com",
  200. "role": "Developer"
  201. }
  202. ],
  203. "description": "This is my package filament-selectify",
  204. "homepage": "https://github.com/andrewdwallo/filament-selectify",
  205. "keywords": [
  206. "andrewdwallo",
  207. "filament-selectify",
  208. "laravel"
  209. ],
  210. "support": {
  211. "issues": "https://github.com/andrewdwallo/filament-selectify/issues",
  212. "source": "https://github.com/andrewdwallo/filament-selectify/tree/v1.0.0"
  213. },
  214. "time": "2023-07-01T03:00:10+00:00"
  215. },
  216. {
  217. "name": "bacon/bacon-qr-code",
  218. "version": "2.0.8",
  219. "source": {
  220. "type": "git",
  221. "url": "https://github.com/Bacon/BaconQrCode.git",
  222. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  223. },
  224. "dist": {
  225. "type": "zip",
  226. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  227. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  228. "shasum": ""
  229. },
  230. "require": {
  231. "dasprid/enum": "^1.0.3",
  232. "ext-iconv": "*",
  233. "php": "^7.1 || ^8.0"
  234. },
  235. "require-dev": {
  236. "phly/keep-a-changelog": "^2.1",
  237. "phpunit/phpunit": "^7 | ^8 | ^9",
  238. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  239. "squizlabs/php_codesniffer": "^3.4"
  240. },
  241. "suggest": {
  242. "ext-imagick": "to generate QR code images"
  243. },
  244. "type": "library",
  245. "autoload": {
  246. "psr-4": {
  247. "BaconQrCode\\": "src/"
  248. }
  249. },
  250. "notification-url": "https://packagist.org/downloads/",
  251. "license": [
  252. "BSD-2-Clause"
  253. ],
  254. "authors": [
  255. {
  256. "name": "Ben Scholzen 'DASPRiD'",
  257. "email": "mail@dasprids.de",
  258. "homepage": "https://dasprids.de/",
  259. "role": "Developer"
  260. }
  261. ],
  262. "description": "BaconQrCode is a QR code generator for PHP.",
  263. "homepage": "https://github.com/Bacon/BaconQrCode",
  264. "support": {
  265. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  266. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  267. },
  268. "time": "2022-12-07T17:46:57+00:00"
  269. },
  270. {
  271. "name": "blade-ui-kit/blade-heroicons",
  272. "version": "1.4.0",
  273. "source": {
  274. "type": "git",
  275. "url": "https://github.com/blade-ui-kit/blade-heroicons.git",
  276. "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b"
  277. },
  278. "dist": {
  279. "type": "zip",
  280. "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/dea08e8308d9bad9ebff1bc482d5985dbaacc91b",
  281. "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b",
  282. "shasum": ""
  283. },
  284. "require": {
  285. "blade-ui-kit/blade-icons": "^1.1",
  286. "illuminate/support": "^8.0|^9.0|^10.0",
  287. "php": "^7.4|^8.0"
  288. },
  289. "require-dev": {
  290. "orchestra/testbench": "^6.0|^7.0|^8.0",
  291. "phpunit/phpunit": "^9.0"
  292. },
  293. "type": "library",
  294. "extra": {
  295. "laravel": {
  296. "providers": [
  297. "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
  298. ]
  299. }
  300. },
  301. "autoload": {
  302. "psr-4": {
  303. "BladeUI\\Heroicons\\": "src"
  304. }
  305. },
  306. "notification-url": "https://packagist.org/downloads/",
  307. "license": [
  308. "MIT"
  309. ],
  310. "authors": [
  311. {
  312. "name": "Dries Vints",
  313. "homepage": "https://driesvints.com"
  314. }
  315. ],
  316. "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
  317. "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
  318. "keywords": [
  319. "Heroicons",
  320. "blade",
  321. "laravel"
  322. ],
  323. "support": {
  324. "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues",
  325. "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/1.4.0"
  326. },
  327. "funding": [
  328. {
  329. "url": "https://github.com/caneco",
  330. "type": "github"
  331. },
  332. {
  333. "url": "https://github.com/driesvints",
  334. "type": "github"
  335. }
  336. ],
  337. "time": "2023-01-25T17:57:58+00:00"
  338. },
  339. {
  340. "name": "blade-ui-kit/blade-icons",
  341. "version": "1.5.2",
  342. "source": {
  343. "type": "git",
  344. "url": "https://github.com/blade-ui-kit/blade-icons.git",
  345. "reference": "4d6b6b2548b1994a777211a985e18691701891e4"
  346. },
  347. "dist": {
  348. "type": "zip",
  349. "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/4d6b6b2548b1994a777211a985e18691701891e4",
  350. "reference": "4d6b6b2548b1994a777211a985e18691701891e4",
  351. "shasum": ""
  352. },
  353. "require": {
  354. "illuminate/contracts": "^8.0|^9.0|^10.0",
  355. "illuminate/filesystem": "^8.0|^9.0|^10.0",
  356. "illuminate/support": "^8.0|^9.0|^10.0",
  357. "illuminate/view": "^8.0|^9.0|^10.0",
  358. "php": "^7.4|^8.0",
  359. "symfony/console": "^5.3|^6.0",
  360. "symfony/finder": "^5.3|^6.0"
  361. },
  362. "require-dev": {
  363. "mockery/mockery": "^1.3",
  364. "orchestra/testbench": "^6.0|^7.0|^8.0",
  365. "phpunit/phpunit": "^9.0"
  366. },
  367. "bin": [
  368. "bin/blade-icons-generate"
  369. ],
  370. "type": "library",
  371. "extra": {
  372. "laravel": {
  373. "providers": [
  374. "BladeUI\\Icons\\BladeIconsServiceProvider"
  375. ]
  376. }
  377. },
  378. "autoload": {
  379. "files": [
  380. "src/helpers.php"
  381. ],
  382. "psr-4": {
  383. "BladeUI\\Icons\\": "src"
  384. }
  385. },
  386. "notification-url": "https://packagist.org/downloads/",
  387. "license": [
  388. "MIT"
  389. ],
  390. "authors": [
  391. {
  392. "name": "Dries Vints",
  393. "homepage": "https://driesvints.com"
  394. }
  395. ],
  396. "description": "A package to easily make use of icons in your Laravel Blade views.",
  397. "homepage": "https://github.com/blade-ui-kit/blade-icons",
  398. "keywords": [
  399. "blade",
  400. "icons",
  401. "laravel",
  402. "svg"
  403. ],
  404. "support": {
  405. "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
  406. "source": "https://github.com/blade-ui-kit/blade-icons"
  407. },
  408. "funding": [
  409. {
  410. "url": "https://github.com/sponsors/driesvints",
  411. "type": "github"
  412. }
  413. ],
  414. "time": "2023-06-09T15:47:26+00:00"
  415. },
  416. {
  417. "name": "brick/math",
  418. "version": "0.11.0",
  419. "source": {
  420. "type": "git",
  421. "url": "https://github.com/brick/math.git",
  422. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  423. },
  424. "dist": {
  425. "type": "zip",
  426. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  427. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  428. "shasum": ""
  429. },
  430. "require": {
  431. "php": "^8.0"
  432. },
  433. "require-dev": {
  434. "php-coveralls/php-coveralls": "^2.2",
  435. "phpunit/phpunit": "^9.0",
  436. "vimeo/psalm": "5.0.0"
  437. },
  438. "type": "library",
  439. "autoload": {
  440. "psr-4": {
  441. "Brick\\Math\\": "src/"
  442. }
  443. },
  444. "notification-url": "https://packagist.org/downloads/",
  445. "license": [
  446. "MIT"
  447. ],
  448. "description": "Arbitrary-precision arithmetic library",
  449. "keywords": [
  450. "Arbitrary-precision",
  451. "BigInteger",
  452. "BigRational",
  453. "arithmetic",
  454. "bigdecimal",
  455. "bignum",
  456. "brick",
  457. "math"
  458. ],
  459. "support": {
  460. "issues": "https://github.com/brick/math/issues",
  461. "source": "https://github.com/brick/math/tree/0.11.0"
  462. },
  463. "funding": [
  464. {
  465. "url": "https://github.com/BenMorel",
  466. "type": "github"
  467. }
  468. ],
  469. "time": "2023-01-15T23:15:59+00:00"
  470. },
  471. {
  472. "name": "danharrin/date-format-converter",
  473. "version": "v0.3.0",
  474. "source": {
  475. "type": "git",
  476. "url": "https://github.com/danharrin/date-format-converter.git",
  477. "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2"
  478. },
  479. "dist": {
  480. "type": "zip",
  481. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/42b6ddc52059d4ba228a67c15adaaa0c039e75f2",
  482. "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2",
  483. "shasum": ""
  484. },
  485. "require": {
  486. "php": "^7.2|^8.0"
  487. },
  488. "type": "library",
  489. "autoload": {
  490. "files": [
  491. "src/helpers.php",
  492. "src/standards.php"
  493. ],
  494. "psr-4": {
  495. "DanHarrin\\DateFormatConverter\\": "src/"
  496. }
  497. },
  498. "notification-url": "https://packagist.org/downloads/",
  499. "license": [
  500. "MIT"
  501. ],
  502. "authors": [
  503. {
  504. "name": "Dan Harrin",
  505. "email": "dan@danharrin.com"
  506. }
  507. ],
  508. "description": "Convert token-based date formats between standards.",
  509. "homepage": "https://github.com/danharrin/date-format-converter",
  510. "support": {
  511. "issues": "https://github.com/danharrin/date-format-converter/issues",
  512. "source": "https://github.com/danharrin/date-format-converter"
  513. },
  514. "funding": [
  515. {
  516. "url": "https://github.com/danharrin",
  517. "type": "github"
  518. }
  519. ],
  520. "time": "2022-09-29T07:48:20+00:00"
  521. },
  522. {
  523. "name": "danharrin/livewire-rate-limiting",
  524. "version": "v1.1.0",
  525. "source": {
  526. "type": "git",
  527. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  528. "reference": "a55996683cabf2e93893280d602191243b3b80b8"
  529. },
  530. "dist": {
  531. "type": "zip",
  532. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/a55996683cabf2e93893280d602191243b3b80b8",
  533. "reference": "a55996683cabf2e93893280d602191243b3b80b8",
  534. "shasum": ""
  535. },
  536. "require": {
  537. "illuminate/support": "^9.0|^10.0",
  538. "php": "^8.0"
  539. },
  540. "require-dev": {
  541. "livewire/livewire": "^2.3",
  542. "orchestra/testbench": "^7.0|^8.0",
  543. "phpunit/phpunit": "^9.0|^10.0"
  544. },
  545. "type": "library",
  546. "autoload": {
  547. "psr-4": {
  548. "DanHarrin\\LivewireRateLimiting\\": "src"
  549. }
  550. },
  551. "notification-url": "https://packagist.org/downloads/",
  552. "license": [
  553. "MIT"
  554. ],
  555. "authors": [
  556. {
  557. "name": "Dan Harrin",
  558. "email": "dan@danharrin.com"
  559. }
  560. ],
  561. "description": "Apply rate limiters to Laravel Livewire actions.",
  562. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  563. "support": {
  564. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  565. "source": "https://github.com/danharrin/livewire-rate-limiting"
  566. },
  567. "funding": [
  568. {
  569. "url": "https://github.com/danharrin",
  570. "type": "github"
  571. }
  572. ],
  573. "time": "2023-03-12T12:17:29+00:00"
  574. },
  575. {
  576. "name": "dasprid/enum",
  577. "version": "1.0.4",
  578. "source": {
  579. "type": "git",
  580. "url": "https://github.com/DASPRiD/Enum.git",
  581. "reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f"
  582. },
  583. "dist": {
  584. "type": "zip",
  585. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8e6b6ea76eabbf19ea2bf5b67b98e1860474012f",
  586. "reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f",
  587. "shasum": ""
  588. },
  589. "require": {
  590. "php": ">=7.1 <9.0"
  591. },
  592. "require-dev": {
  593. "phpunit/phpunit": "^7 | ^8 | ^9",
  594. "squizlabs/php_codesniffer": "*"
  595. },
  596. "type": "library",
  597. "autoload": {
  598. "psr-4": {
  599. "DASPRiD\\Enum\\": "src/"
  600. }
  601. },
  602. "notification-url": "https://packagist.org/downloads/",
  603. "license": [
  604. "BSD-2-Clause"
  605. ],
  606. "authors": [
  607. {
  608. "name": "Ben Scholzen 'DASPRiD'",
  609. "email": "mail@dasprids.de",
  610. "homepage": "https://dasprids.de/",
  611. "role": "Developer"
  612. }
  613. ],
  614. "description": "PHP 7.1 enum implementation",
  615. "keywords": [
  616. "enum",
  617. "map"
  618. ],
  619. "support": {
  620. "issues": "https://github.com/DASPRiD/Enum/issues",
  621. "source": "https://github.com/DASPRiD/Enum/tree/1.0.4"
  622. },
  623. "time": "2023-03-01T18:44:03+00:00"
  624. },
  625. {
  626. "name": "dflydev/dot-access-data",
  627. "version": "v3.0.2",
  628. "source": {
  629. "type": "git",
  630. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  631. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  632. },
  633. "dist": {
  634. "type": "zip",
  635. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  636. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  637. "shasum": ""
  638. },
  639. "require": {
  640. "php": "^7.1 || ^8.0"
  641. },
  642. "require-dev": {
  643. "phpstan/phpstan": "^0.12.42",
  644. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  645. "scrutinizer/ocular": "1.6.0",
  646. "squizlabs/php_codesniffer": "^3.5",
  647. "vimeo/psalm": "^4.0.0"
  648. },
  649. "type": "library",
  650. "extra": {
  651. "branch-alias": {
  652. "dev-main": "3.x-dev"
  653. }
  654. },
  655. "autoload": {
  656. "psr-4": {
  657. "Dflydev\\DotAccessData\\": "src/"
  658. }
  659. },
  660. "notification-url": "https://packagist.org/downloads/",
  661. "license": [
  662. "MIT"
  663. ],
  664. "authors": [
  665. {
  666. "name": "Dragonfly Development Inc.",
  667. "email": "info@dflydev.com",
  668. "homepage": "http://dflydev.com"
  669. },
  670. {
  671. "name": "Beau Simensen",
  672. "email": "beau@dflydev.com",
  673. "homepage": "http://beausimensen.com"
  674. },
  675. {
  676. "name": "Carlos Frutos",
  677. "email": "carlos@kiwing.it",
  678. "homepage": "https://github.com/cfrutos"
  679. },
  680. {
  681. "name": "Colin O'Dell",
  682. "email": "colinodell@gmail.com",
  683. "homepage": "https://www.colinodell.com"
  684. }
  685. ],
  686. "description": "Given a deep data structure, access data by dot notation.",
  687. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  688. "keywords": [
  689. "access",
  690. "data",
  691. "dot",
  692. "notation"
  693. ],
  694. "support": {
  695. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  696. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  697. },
  698. "time": "2022-10-27T11:44:00+00:00"
  699. },
  700. {
  701. "name": "doctrine/inflector",
  702. "version": "2.0.8",
  703. "source": {
  704. "type": "git",
  705. "url": "https://github.com/doctrine/inflector.git",
  706. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  707. },
  708. "dist": {
  709. "type": "zip",
  710. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  711. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  712. "shasum": ""
  713. },
  714. "require": {
  715. "php": "^7.2 || ^8.0"
  716. },
  717. "require-dev": {
  718. "doctrine/coding-standard": "^11.0",
  719. "phpstan/phpstan": "^1.8",
  720. "phpstan/phpstan-phpunit": "^1.1",
  721. "phpstan/phpstan-strict-rules": "^1.3",
  722. "phpunit/phpunit": "^8.5 || ^9.5",
  723. "vimeo/psalm": "^4.25 || ^5.4"
  724. },
  725. "type": "library",
  726. "autoload": {
  727. "psr-4": {
  728. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  729. }
  730. },
  731. "notification-url": "https://packagist.org/downloads/",
  732. "license": [
  733. "MIT"
  734. ],
  735. "authors": [
  736. {
  737. "name": "Guilherme Blanco",
  738. "email": "guilhermeblanco@gmail.com"
  739. },
  740. {
  741. "name": "Roman Borschel",
  742. "email": "roman@code-factory.org"
  743. },
  744. {
  745. "name": "Benjamin Eberlei",
  746. "email": "kontakt@beberlei.de"
  747. },
  748. {
  749. "name": "Jonathan Wage",
  750. "email": "jonwage@gmail.com"
  751. },
  752. {
  753. "name": "Johannes Schmitt",
  754. "email": "schmittjoh@gmail.com"
  755. }
  756. ],
  757. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  758. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  759. "keywords": [
  760. "inflection",
  761. "inflector",
  762. "lowercase",
  763. "manipulation",
  764. "php",
  765. "plural",
  766. "singular",
  767. "strings",
  768. "uppercase",
  769. "words"
  770. ],
  771. "support": {
  772. "issues": "https://github.com/doctrine/inflector/issues",
  773. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  774. },
  775. "funding": [
  776. {
  777. "url": "https://www.doctrine-project.org/sponsorship.html",
  778. "type": "custom"
  779. },
  780. {
  781. "url": "https://www.patreon.com/phpdoctrine",
  782. "type": "patreon"
  783. },
  784. {
  785. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  786. "type": "tidelift"
  787. }
  788. ],
  789. "time": "2023-06-16T13:40:37+00:00"
  790. },
  791. {
  792. "name": "doctrine/lexer",
  793. "version": "3.0.0",
  794. "source": {
  795. "type": "git",
  796. "url": "https://github.com/doctrine/lexer.git",
  797. "reference": "84a527db05647743d50373e0ec53a152f2cde568"
  798. },
  799. "dist": {
  800. "type": "zip",
  801. "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568",
  802. "reference": "84a527db05647743d50373e0ec53a152f2cde568",
  803. "shasum": ""
  804. },
  805. "require": {
  806. "php": "^8.1"
  807. },
  808. "require-dev": {
  809. "doctrine/coding-standard": "^10",
  810. "phpstan/phpstan": "^1.9",
  811. "phpunit/phpunit": "^9.5",
  812. "psalm/plugin-phpunit": "^0.18.3",
  813. "vimeo/psalm": "^5.0"
  814. },
  815. "type": "library",
  816. "autoload": {
  817. "psr-4": {
  818. "Doctrine\\Common\\Lexer\\": "src"
  819. }
  820. },
  821. "notification-url": "https://packagist.org/downloads/",
  822. "license": [
  823. "MIT"
  824. ],
  825. "authors": [
  826. {
  827. "name": "Guilherme Blanco",
  828. "email": "guilhermeblanco@gmail.com"
  829. },
  830. {
  831. "name": "Roman Borschel",
  832. "email": "roman@code-factory.org"
  833. },
  834. {
  835. "name": "Johannes Schmitt",
  836. "email": "schmittjoh@gmail.com"
  837. }
  838. ],
  839. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  840. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  841. "keywords": [
  842. "annotations",
  843. "docblock",
  844. "lexer",
  845. "parser",
  846. "php"
  847. ],
  848. "support": {
  849. "issues": "https://github.com/doctrine/lexer/issues",
  850. "source": "https://github.com/doctrine/lexer/tree/3.0.0"
  851. },
  852. "funding": [
  853. {
  854. "url": "https://www.doctrine-project.org/sponsorship.html",
  855. "type": "custom"
  856. },
  857. {
  858. "url": "https://www.patreon.com/phpdoctrine",
  859. "type": "patreon"
  860. },
  861. {
  862. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  863. "type": "tidelift"
  864. }
  865. ],
  866. "time": "2022-12-15T16:57:16+00:00"
  867. },
  868. {
  869. "name": "dragonmantank/cron-expression",
  870. "version": "v3.3.2",
  871. "source": {
  872. "type": "git",
  873. "url": "https://github.com/dragonmantank/cron-expression.git",
  874. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8"
  875. },
  876. "dist": {
  877. "type": "zip",
  878. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8",
  879. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8",
  880. "shasum": ""
  881. },
  882. "require": {
  883. "php": "^7.2|^8.0",
  884. "webmozart/assert": "^1.0"
  885. },
  886. "replace": {
  887. "mtdowling/cron-expression": "^1.0"
  888. },
  889. "require-dev": {
  890. "phpstan/extension-installer": "^1.0",
  891. "phpstan/phpstan": "^1.0",
  892. "phpstan/phpstan-webmozart-assert": "^1.0",
  893. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  894. },
  895. "type": "library",
  896. "autoload": {
  897. "psr-4": {
  898. "Cron\\": "src/Cron/"
  899. }
  900. },
  901. "notification-url": "https://packagist.org/downloads/",
  902. "license": [
  903. "MIT"
  904. ],
  905. "authors": [
  906. {
  907. "name": "Chris Tankersley",
  908. "email": "chris@ctankersley.com",
  909. "homepage": "https://github.com/dragonmantank"
  910. }
  911. ],
  912. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  913. "keywords": [
  914. "cron",
  915. "schedule"
  916. ],
  917. "support": {
  918. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  919. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2"
  920. },
  921. "funding": [
  922. {
  923. "url": "https://github.com/dragonmantank",
  924. "type": "github"
  925. }
  926. ],
  927. "time": "2022-09-10T18:51:20+00:00"
  928. },
  929. {
  930. "name": "egulias/email-validator",
  931. "version": "4.0.1",
  932. "source": {
  933. "type": "git",
  934. "url": "https://github.com/egulias/EmailValidator.git",
  935. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
  936. },
  937. "dist": {
  938. "type": "zip",
  939. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  940. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  941. "shasum": ""
  942. },
  943. "require": {
  944. "doctrine/lexer": "^2.0 || ^3.0",
  945. "php": ">=8.1",
  946. "symfony/polyfill-intl-idn": "^1.26"
  947. },
  948. "require-dev": {
  949. "phpunit/phpunit": "^9.5.27",
  950. "vimeo/psalm": "^4.30"
  951. },
  952. "suggest": {
  953. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  954. },
  955. "type": "library",
  956. "extra": {
  957. "branch-alias": {
  958. "dev-master": "4.0.x-dev"
  959. }
  960. },
  961. "autoload": {
  962. "psr-4": {
  963. "Egulias\\EmailValidator\\": "src"
  964. }
  965. },
  966. "notification-url": "https://packagist.org/downloads/",
  967. "license": [
  968. "MIT"
  969. ],
  970. "authors": [
  971. {
  972. "name": "Eduardo Gulias Davis"
  973. }
  974. ],
  975. "description": "A library for validating emails against several RFCs",
  976. "homepage": "https://github.com/egulias/EmailValidator",
  977. "keywords": [
  978. "email",
  979. "emailvalidation",
  980. "emailvalidator",
  981. "validation",
  982. "validator"
  983. ],
  984. "support": {
  985. "issues": "https://github.com/egulias/EmailValidator/issues",
  986. "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
  987. },
  988. "funding": [
  989. {
  990. "url": "https://github.com/egulias",
  991. "type": "github"
  992. }
  993. ],
  994. "time": "2023-01-14T14:17:03+00:00"
  995. },
  996. {
  997. "name": "filament/filament",
  998. "version": "v2.17.50",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/filamentphp/panels.git",
  1002. "reference": "90514ebb0dcb6d2c9fe5608410bdb727ae272aed"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/filamentphp/panels/zipball/90514ebb0dcb6d2c9fe5608410bdb727ae272aed",
  1007. "reference": "90514ebb0dcb6d2c9fe5608410bdb727ae272aed",
  1008. "shasum": ""
  1009. },
  1010. "require": {
  1011. "danharrin/livewire-rate-limiting": "^0.3|^1.0",
  1012. "filament/forms": "self.version",
  1013. "filament/notifications": "self.version",
  1014. "filament/support": "self.version",
  1015. "filament/tables": "self.version",
  1016. "illuminate/auth": "^8.6|^9.0|^10.0",
  1017. "illuminate/console": "^8.6|^9.0|^10.0",
  1018. "illuminate/contracts": "^8.6|^9.0|^10.0",
  1019. "illuminate/cookie": "^8.6|^9.0|^10.0",
  1020. "illuminate/database": "^8.6|^9.0|^10.0",
  1021. "illuminate/http": "^8.6|^9.0|^10.0",
  1022. "illuminate/routing": "^8.6|^9.0|^10.0",
  1023. "illuminate/session": "^8.6|^9.0|^10.0",
  1024. "illuminate/support": "^8.6|^9.0|^10.0",
  1025. "illuminate/view": "^8.6|^9.0|^10.0",
  1026. "livewire/livewire": "^2.10.7",
  1027. "php": "^8.0",
  1028. "spatie/laravel-package-tools": "^1.9"
  1029. },
  1030. "type": "library",
  1031. "extra": {
  1032. "laravel": {
  1033. "providers": [
  1034. "Filament\\FilamentServiceProvider"
  1035. ]
  1036. }
  1037. },
  1038. "autoload": {
  1039. "files": [
  1040. "src/helpers.php"
  1041. ],
  1042. "psr-4": {
  1043. "Filament\\": "src"
  1044. }
  1045. },
  1046. "notification-url": "https://packagist.org/downloads/",
  1047. "license": [
  1048. "MIT"
  1049. ],
  1050. "description": "Effortlessly build TALL-powered admin panels.",
  1051. "homepage": "https://github.com/filamentphp/filament",
  1052. "support": {
  1053. "issues": "https://github.com/filamentphp/filament/issues",
  1054. "source": "https://github.com/filamentphp/filament"
  1055. },
  1056. "time": "2023-07-03T09:23:07+00:00"
  1057. },
  1058. {
  1059. "name": "filament/forms",
  1060. "version": "v2.17.50",
  1061. "source": {
  1062. "type": "git",
  1063. "url": "https://github.com/filamentphp/forms.git",
  1064. "reference": "02a22e34909dbc93ebfe8a79499c1695727be68c"
  1065. },
  1066. "dist": {
  1067. "type": "zip",
  1068. "url": "https://api.github.com/repos/filamentphp/forms/zipball/02a22e34909dbc93ebfe8a79499c1695727be68c",
  1069. "reference": "02a22e34909dbc93ebfe8a79499c1695727be68c",
  1070. "shasum": ""
  1071. },
  1072. "require": {
  1073. "blade-ui-kit/blade-heroicons": "^1.2",
  1074. "danharrin/date-format-converter": "^0.3",
  1075. "filament/notifications": "self.version",
  1076. "filament/support": "self.version",
  1077. "illuminate/console": "^8.6|^9.0|^10.0",
  1078. "illuminate/contracts": "^8.6|^9.0|^10.0",
  1079. "illuminate/database": "^8.6|^9.0|^10.0",
  1080. "illuminate/filesystem": "^8.6|^9.0|^10.0",
  1081. "illuminate/support": "^8.6|^9.0|^10.0",
  1082. "illuminate/validation": "^8.6|^9.0|^10.0",
  1083. "illuminate/view": "^8.6|^9.0|^10.0",
  1084. "livewire/livewire": "^2.10.7",
  1085. "php": "^8.0",
  1086. "spatie/laravel-package-tools": "^1.9"
  1087. },
  1088. "type": "library",
  1089. "extra": {
  1090. "laravel": {
  1091. "providers": [
  1092. "Filament\\Forms\\FormsServiceProvider"
  1093. ]
  1094. }
  1095. },
  1096. "autoload": {
  1097. "files": [
  1098. "src/helpers.php"
  1099. ],
  1100. "psr-4": {
  1101. "Filament\\Forms\\": "src"
  1102. }
  1103. },
  1104. "notification-url": "https://packagist.org/downloads/",
  1105. "license": [
  1106. "MIT"
  1107. ],
  1108. "description": "Effortlessly build TALL-powered forms.",
  1109. "homepage": "https://github.com/filamentphp/filament",
  1110. "support": {
  1111. "issues": "https://github.com/filamentphp/filament/issues",
  1112. "source": "https://github.com/filamentphp/filament"
  1113. },
  1114. "time": "2023-07-03T09:23:02+00:00"
  1115. },
  1116. {
  1117. "name": "filament/notifications",
  1118. "version": "v2.17.50",
  1119. "source": {
  1120. "type": "git",
  1121. "url": "https://github.com/filamentphp/notifications.git",
  1122. "reference": "d28fd12dbb4602f24f94d88730128d28f0f565db"
  1123. },
  1124. "dist": {
  1125. "type": "zip",
  1126. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/d28fd12dbb4602f24f94d88730128d28f0f565db",
  1127. "reference": "d28fd12dbb4602f24f94d88730128d28f0f565db",
  1128. "shasum": ""
  1129. },
  1130. "require": {
  1131. "blade-ui-kit/blade-heroicons": "^1.2",
  1132. "filament/support": "self.version",
  1133. "illuminate/contracts": "^8.6|^9.0|^10.0",
  1134. "illuminate/filesystem": "^8.6|^9.0|^10.0",
  1135. "illuminate/notifications": "^8.6|^9.0|^10.0",
  1136. "illuminate/support": "^8.6|^9.0|^10.0",
  1137. "livewire/livewire": "^2.10.7",
  1138. "php": "^8.0",
  1139. "spatie/laravel-package-tools": "^1.9"
  1140. },
  1141. "type": "library",
  1142. "extra": {
  1143. "laravel": {
  1144. "providers": [
  1145. "Filament\\Notifications\\NotificationsServiceProvider"
  1146. ]
  1147. }
  1148. },
  1149. "autoload": {
  1150. "files": [
  1151. "src/Testing/Autoload.php"
  1152. ],
  1153. "psr-4": {
  1154. "Filament\\Notifications\\": "src"
  1155. }
  1156. },
  1157. "notification-url": "https://packagist.org/downloads/",
  1158. "license": [
  1159. "MIT"
  1160. ],
  1161. "description": "Effortlessly build TALL-powered notifications.",
  1162. "homepage": "https://github.com/filamentphp/filament",
  1163. "support": {
  1164. "issues": "https://github.com/filamentphp/filament/issues",
  1165. "source": "https://github.com/filamentphp/filament"
  1166. },
  1167. "time": "2023-07-03T09:23:01+00:00"
  1168. },
  1169. {
  1170. "name": "filament/spatie-laravel-tags-plugin",
  1171. "version": "v2.17.50",
  1172. "source": {
  1173. "type": "git",
  1174. "url": "https://github.com/filamentphp/spatie-laravel-tags-plugin.git",
  1175. "reference": "70ed1268cdd3b631e90b8326c20882962674f57f"
  1176. },
  1177. "dist": {
  1178. "type": "zip",
  1179. "url": "https://api.github.com/repos/filamentphp/spatie-laravel-tags-plugin/zipball/70ed1268cdd3b631e90b8326c20882962674f57f",
  1180. "reference": "70ed1268cdd3b631e90b8326c20882962674f57f",
  1181. "shasum": ""
  1182. },
  1183. "require": {
  1184. "illuminate/database": "^8.6|^9.0|^10.0",
  1185. "php": "^8.0",
  1186. "spatie/laravel-tags": "^4.0"
  1187. },
  1188. "type": "library",
  1189. "autoload": {
  1190. "psr-4": {
  1191. "Filament\\": "src"
  1192. }
  1193. },
  1194. "notification-url": "https://packagist.org/downloads/",
  1195. "license": [
  1196. "MIT"
  1197. ],
  1198. "description": "Filament support for `spatie/laravel-tags`.",
  1199. "homepage": "https://github.com/filamentphp/filament",
  1200. "support": {
  1201. "issues": "https://github.com/filamentphp/filament/issues",
  1202. "source": "https://github.com/filamentphp/filament"
  1203. },
  1204. "time": "2023-05-20T17:45:48+00:00"
  1205. },
  1206. {
  1207. "name": "filament/support",
  1208. "version": "v2.17.50",
  1209. "source": {
  1210. "type": "git",
  1211. "url": "https://github.com/filamentphp/support.git",
  1212. "reference": "9982a88704efc58b710c4e6b5000d85a6f4daf56"
  1213. },
  1214. "dist": {
  1215. "type": "zip",
  1216. "url": "https://api.github.com/repos/filamentphp/support/zipball/9982a88704efc58b710c4e6b5000d85a6f4daf56",
  1217. "reference": "9982a88704efc58b710c4e6b5000d85a6f4daf56",
  1218. "shasum": ""
  1219. },
  1220. "require": {
  1221. "illuminate/contracts": "^8.6|^9.0|^10.0",
  1222. "illuminate/support": "^8.6|^9.0|^10.0",
  1223. "illuminate/view": "^8.6|^9.0|^10.0",
  1224. "php": "^8.0",
  1225. "ryangjchandler/blade-capture-directive": "^0.2|^0.3",
  1226. "spatie/laravel-package-tools": "^1.9",
  1227. "tgalopin/html-sanitizer": "^1.5"
  1228. },
  1229. "type": "library",
  1230. "extra": {
  1231. "laravel": {
  1232. "providers": [
  1233. "Filament\\Support\\SupportServiceProvider"
  1234. ]
  1235. }
  1236. },
  1237. "autoload": {
  1238. "files": [
  1239. "src/helpers.php"
  1240. ],
  1241. "psr-4": {
  1242. "Filament\\Support\\": "src"
  1243. }
  1244. },
  1245. "notification-url": "https://packagist.org/downloads/",
  1246. "license": [
  1247. "MIT"
  1248. ],
  1249. "description": "Associated helper methods and foundation code for Filament packages.",
  1250. "homepage": "https://github.com/filamentphp/filament",
  1251. "support": {
  1252. "issues": "https://github.com/filamentphp/filament/issues",
  1253. "source": "https://github.com/filamentphp/filament"
  1254. },
  1255. "time": "2023-07-03T09:23:04+00:00"
  1256. },
  1257. {
  1258. "name": "filament/tables",
  1259. "version": "v2.17.50",
  1260. "source": {
  1261. "type": "git",
  1262. "url": "https://github.com/filamentphp/tables.git",
  1263. "reference": "1395ddf6c1e356f7e427e9cb20f6bbb9bf6803e0"
  1264. },
  1265. "dist": {
  1266. "type": "zip",
  1267. "url": "https://api.github.com/repos/filamentphp/tables/zipball/1395ddf6c1e356f7e427e9cb20f6bbb9bf6803e0",
  1268. "reference": "1395ddf6c1e356f7e427e9cb20f6bbb9bf6803e0",
  1269. "shasum": ""
  1270. },
  1271. "require": {
  1272. "akaunting/laravel-money": "^1.2|^2.0|^3.0|^4.0",
  1273. "blade-ui-kit/blade-heroicons": "^1.2",
  1274. "filament/forms": "self.version",
  1275. "filament/notifications": "self.version",
  1276. "filament/support": "self.version",
  1277. "illuminate/console": "^8.6|^9.0|^10.0",
  1278. "illuminate/contracts": "^8.6|^9.0|^10.0",
  1279. "illuminate/database": "^8.6|^9.0|^10.0",
  1280. "illuminate/filesystem": "^8.6|^9.0|^10.0",
  1281. "illuminate/support": "^8.6|^9.0|^10.0",
  1282. "illuminate/view": "^8.6|^9.0|^10.0",
  1283. "livewire/livewire": "^2.10.7",
  1284. "php": "^8.0",
  1285. "spatie/invade": "^1.0",
  1286. "spatie/laravel-package-tools": "^1.9"
  1287. },
  1288. "type": "library",
  1289. "extra": {
  1290. "laravel": {
  1291. "providers": [
  1292. "Filament\\Tables\\TablesServiceProvider"
  1293. ]
  1294. }
  1295. },
  1296. "autoload": {
  1297. "psr-4": {
  1298. "Filament\\Tables\\": "src"
  1299. }
  1300. },
  1301. "notification-url": "https://packagist.org/downloads/",
  1302. "license": [
  1303. "MIT"
  1304. ],
  1305. "description": "Effortlessly build TALL-powered tables.",
  1306. "homepage": "https://github.com/filamentphp/filament",
  1307. "support": {
  1308. "issues": "https://github.com/filamentphp/filament/issues",
  1309. "source": "https://github.com/filamentphp/filament"
  1310. },
  1311. "time": "2023-07-03T09:23:02+00:00"
  1312. },
  1313. {
  1314. "name": "flowframe/laravel-trend",
  1315. "version": "v0.1.5",
  1316. "source": {
  1317. "type": "git",
  1318. "url": "https://github.com/Flowframe/laravel-trend.git",
  1319. "reference": "bc43bf7840ff60aca39e856ad96f5e990fac83d7"
  1320. },
  1321. "dist": {
  1322. "type": "zip",
  1323. "url": "https://api.github.com/repos/Flowframe/laravel-trend/zipball/bc43bf7840ff60aca39e856ad96f5e990fac83d7",
  1324. "reference": "bc43bf7840ff60aca39e856ad96f5e990fac83d7",
  1325. "shasum": ""
  1326. },
  1327. "require": {
  1328. "illuminate/contracts": "^8.37|^9|^10.0",
  1329. "php": "^8.0",
  1330. "spatie/laravel-package-tools": "^1.4.3"
  1331. },
  1332. "require-dev": {
  1333. "nunomaduro/collision": "^5.3|^6.1",
  1334. "orchestra/testbench": "^6.15|^7.0|^8.0",
  1335. "pestphp/pest": "^1.18",
  1336. "pestphp/pest-plugin-laravel": "^1.1",
  1337. "spatie/laravel-ray": "^1.23",
  1338. "vimeo/psalm": "^4.8|^5.6"
  1339. },
  1340. "type": "library",
  1341. "extra": {
  1342. "laravel": {
  1343. "providers": [
  1344. "Flowframe\\Trend\\TrendServiceProvider"
  1345. ],
  1346. "aliases": {
  1347. "Trend": "Flowframe\\Trend\\TrendFacade"
  1348. }
  1349. }
  1350. },
  1351. "autoload": {
  1352. "psr-4": {
  1353. "Flowframe\\Trend\\": "src",
  1354. "Flowframe\\Trend\\Database\\Factories\\": "database/factories"
  1355. }
  1356. },
  1357. "notification-url": "https://packagist.org/downloads/",
  1358. "license": [
  1359. "MIT"
  1360. ],
  1361. "authors": [
  1362. {
  1363. "name": "Lars Klopstra",
  1364. "email": "lars@flowframe.nl",
  1365. "role": "Developer"
  1366. }
  1367. ],
  1368. "description": "Easily generate model trends",
  1369. "homepage": "https://github.com/flowframe/laravel-trend",
  1370. "keywords": [
  1371. "Flowframe",
  1372. "laravel",
  1373. "laravel-trend"
  1374. ],
  1375. "support": {
  1376. "issues": "https://github.com/Flowframe/laravel-trend/issues",
  1377. "source": "https://github.com/Flowframe/laravel-trend/tree/v0.1.5"
  1378. },
  1379. "funding": [
  1380. {
  1381. "url": "https://github.com/larsklopstra",
  1382. "type": "github"
  1383. }
  1384. ],
  1385. "time": "2023-03-22T20:51:43+00:00"
  1386. },
  1387. {
  1388. "name": "fruitcake/php-cors",
  1389. "version": "v1.2.0",
  1390. "source": {
  1391. "type": "git",
  1392. "url": "https://github.com/fruitcake/php-cors.git",
  1393. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  1394. },
  1395. "dist": {
  1396. "type": "zip",
  1397. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1398. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1399. "shasum": ""
  1400. },
  1401. "require": {
  1402. "php": "^7.4|^8.0",
  1403. "symfony/http-foundation": "^4.4|^5.4|^6"
  1404. },
  1405. "require-dev": {
  1406. "phpstan/phpstan": "^1.4",
  1407. "phpunit/phpunit": "^9",
  1408. "squizlabs/php_codesniffer": "^3.5"
  1409. },
  1410. "type": "library",
  1411. "extra": {
  1412. "branch-alias": {
  1413. "dev-main": "1.1-dev"
  1414. }
  1415. },
  1416. "autoload": {
  1417. "psr-4": {
  1418. "Fruitcake\\Cors\\": "src/"
  1419. }
  1420. },
  1421. "notification-url": "https://packagist.org/downloads/",
  1422. "license": [
  1423. "MIT"
  1424. ],
  1425. "authors": [
  1426. {
  1427. "name": "Fruitcake",
  1428. "homepage": "https://fruitcake.nl"
  1429. },
  1430. {
  1431. "name": "Barryvdh",
  1432. "email": "barryvdh@gmail.com"
  1433. }
  1434. ],
  1435. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1436. "homepage": "https://github.com/fruitcake/php-cors",
  1437. "keywords": [
  1438. "cors",
  1439. "laravel",
  1440. "symfony"
  1441. ],
  1442. "support": {
  1443. "issues": "https://github.com/fruitcake/php-cors/issues",
  1444. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  1445. },
  1446. "funding": [
  1447. {
  1448. "url": "https://fruitcake.nl",
  1449. "type": "custom"
  1450. },
  1451. {
  1452. "url": "https://github.com/barryvdh",
  1453. "type": "github"
  1454. }
  1455. ],
  1456. "time": "2022-02-20T15:07:15+00:00"
  1457. },
  1458. {
  1459. "name": "graham-campbell/result-type",
  1460. "version": "v1.1.1",
  1461. "source": {
  1462. "type": "git",
  1463. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1464. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
  1465. },
  1466. "dist": {
  1467. "type": "zip",
  1468. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1469. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1470. "shasum": ""
  1471. },
  1472. "require": {
  1473. "php": "^7.2.5 || ^8.0",
  1474. "phpoption/phpoption": "^1.9.1"
  1475. },
  1476. "require-dev": {
  1477. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  1478. },
  1479. "type": "library",
  1480. "autoload": {
  1481. "psr-4": {
  1482. "GrahamCampbell\\ResultType\\": "src/"
  1483. }
  1484. },
  1485. "notification-url": "https://packagist.org/downloads/",
  1486. "license": [
  1487. "MIT"
  1488. ],
  1489. "authors": [
  1490. {
  1491. "name": "Graham Campbell",
  1492. "email": "hello@gjcampbell.co.uk",
  1493. "homepage": "https://github.com/GrahamCampbell"
  1494. }
  1495. ],
  1496. "description": "An Implementation Of The Result Type",
  1497. "keywords": [
  1498. "Graham Campbell",
  1499. "GrahamCampbell",
  1500. "Result Type",
  1501. "Result-Type",
  1502. "result"
  1503. ],
  1504. "support": {
  1505. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1506. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1"
  1507. },
  1508. "funding": [
  1509. {
  1510. "url": "https://github.com/GrahamCampbell",
  1511. "type": "github"
  1512. },
  1513. {
  1514. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1515. "type": "tidelift"
  1516. }
  1517. ],
  1518. "time": "2023-02-25T20:23:15+00:00"
  1519. },
  1520. {
  1521. "name": "guzzlehttp/guzzle",
  1522. "version": "7.7.0",
  1523. "source": {
  1524. "type": "git",
  1525. "url": "https://github.com/guzzle/guzzle.git",
  1526. "reference": "fb7566caccf22d74d1ab270de3551f72a58399f5"
  1527. },
  1528. "dist": {
  1529. "type": "zip",
  1530. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/fb7566caccf22d74d1ab270de3551f72a58399f5",
  1531. "reference": "fb7566caccf22d74d1ab270de3551f72a58399f5",
  1532. "shasum": ""
  1533. },
  1534. "require": {
  1535. "ext-json": "*",
  1536. "guzzlehttp/promises": "^1.5.3 || ^2.0",
  1537. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  1538. "php": "^7.2.5 || ^8.0",
  1539. "psr/http-client": "^1.0",
  1540. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1541. },
  1542. "provide": {
  1543. "psr/http-client-implementation": "1.0"
  1544. },
  1545. "require-dev": {
  1546. "bamarni/composer-bin-plugin": "^1.8.1",
  1547. "ext-curl": "*",
  1548. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  1549. "php-http/message-factory": "^1.1",
  1550. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  1551. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1552. },
  1553. "suggest": {
  1554. "ext-curl": "Required for CURL handler support",
  1555. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1556. "psr/log": "Required for using the Log middleware"
  1557. },
  1558. "type": "library",
  1559. "extra": {
  1560. "bamarni-bin": {
  1561. "bin-links": true,
  1562. "forward-command": false
  1563. }
  1564. },
  1565. "autoload": {
  1566. "files": [
  1567. "src/functions_include.php"
  1568. ],
  1569. "psr-4": {
  1570. "GuzzleHttp\\": "src/"
  1571. }
  1572. },
  1573. "notification-url": "https://packagist.org/downloads/",
  1574. "license": [
  1575. "MIT"
  1576. ],
  1577. "authors": [
  1578. {
  1579. "name": "Graham Campbell",
  1580. "email": "hello@gjcampbell.co.uk",
  1581. "homepage": "https://github.com/GrahamCampbell"
  1582. },
  1583. {
  1584. "name": "Michael Dowling",
  1585. "email": "mtdowling@gmail.com",
  1586. "homepage": "https://github.com/mtdowling"
  1587. },
  1588. {
  1589. "name": "Jeremy Lindblom",
  1590. "email": "jeremeamia@gmail.com",
  1591. "homepage": "https://github.com/jeremeamia"
  1592. },
  1593. {
  1594. "name": "George Mponos",
  1595. "email": "gmponos@gmail.com",
  1596. "homepage": "https://github.com/gmponos"
  1597. },
  1598. {
  1599. "name": "Tobias Nyholm",
  1600. "email": "tobias.nyholm@gmail.com",
  1601. "homepage": "https://github.com/Nyholm"
  1602. },
  1603. {
  1604. "name": "Márk Sági-Kazár",
  1605. "email": "mark.sagikazar@gmail.com",
  1606. "homepage": "https://github.com/sagikazarmark"
  1607. },
  1608. {
  1609. "name": "Tobias Schultze",
  1610. "email": "webmaster@tubo-world.de",
  1611. "homepage": "https://github.com/Tobion"
  1612. }
  1613. ],
  1614. "description": "Guzzle is a PHP HTTP client library",
  1615. "keywords": [
  1616. "client",
  1617. "curl",
  1618. "framework",
  1619. "http",
  1620. "http client",
  1621. "psr-18",
  1622. "psr-7",
  1623. "rest",
  1624. "web service"
  1625. ],
  1626. "support": {
  1627. "issues": "https://github.com/guzzle/guzzle/issues",
  1628. "source": "https://github.com/guzzle/guzzle/tree/7.7.0"
  1629. },
  1630. "funding": [
  1631. {
  1632. "url": "https://github.com/GrahamCampbell",
  1633. "type": "github"
  1634. },
  1635. {
  1636. "url": "https://github.com/Nyholm",
  1637. "type": "github"
  1638. },
  1639. {
  1640. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1641. "type": "tidelift"
  1642. }
  1643. ],
  1644. "time": "2023-05-21T14:04:53+00:00"
  1645. },
  1646. {
  1647. "name": "guzzlehttp/promises",
  1648. "version": "2.0.0",
  1649. "source": {
  1650. "type": "git",
  1651. "url": "https://github.com/guzzle/promises.git",
  1652. "reference": "3a494dc7dc1d7d12e511890177ae2d0e6c107da6"
  1653. },
  1654. "dist": {
  1655. "type": "zip",
  1656. "url": "https://api.github.com/repos/guzzle/promises/zipball/3a494dc7dc1d7d12e511890177ae2d0e6c107da6",
  1657. "reference": "3a494dc7dc1d7d12e511890177ae2d0e6c107da6",
  1658. "shasum": ""
  1659. },
  1660. "require": {
  1661. "php": "^7.2.5 || ^8.0"
  1662. },
  1663. "require-dev": {
  1664. "bamarni/composer-bin-plugin": "^1.8.1",
  1665. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1666. },
  1667. "type": "library",
  1668. "extra": {
  1669. "bamarni-bin": {
  1670. "bin-links": true,
  1671. "forward-command": false
  1672. }
  1673. },
  1674. "autoload": {
  1675. "psr-4": {
  1676. "GuzzleHttp\\Promise\\": "src/"
  1677. }
  1678. },
  1679. "notification-url": "https://packagist.org/downloads/",
  1680. "license": [
  1681. "MIT"
  1682. ],
  1683. "authors": [
  1684. {
  1685. "name": "Graham Campbell",
  1686. "email": "hello@gjcampbell.co.uk",
  1687. "homepage": "https://github.com/GrahamCampbell"
  1688. },
  1689. {
  1690. "name": "Michael Dowling",
  1691. "email": "mtdowling@gmail.com",
  1692. "homepage": "https://github.com/mtdowling"
  1693. },
  1694. {
  1695. "name": "Tobias Nyholm",
  1696. "email": "tobias.nyholm@gmail.com",
  1697. "homepage": "https://github.com/Nyholm"
  1698. },
  1699. {
  1700. "name": "Tobias Schultze",
  1701. "email": "webmaster@tubo-world.de",
  1702. "homepage": "https://github.com/Tobion"
  1703. }
  1704. ],
  1705. "description": "Guzzle promises library",
  1706. "keywords": [
  1707. "promise"
  1708. ],
  1709. "support": {
  1710. "issues": "https://github.com/guzzle/promises/issues",
  1711. "source": "https://github.com/guzzle/promises/tree/2.0.0"
  1712. },
  1713. "funding": [
  1714. {
  1715. "url": "https://github.com/GrahamCampbell",
  1716. "type": "github"
  1717. },
  1718. {
  1719. "url": "https://github.com/Nyholm",
  1720. "type": "github"
  1721. },
  1722. {
  1723. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1724. "type": "tidelift"
  1725. }
  1726. ],
  1727. "time": "2023-05-21T13:50:22+00:00"
  1728. },
  1729. {
  1730. "name": "guzzlehttp/psr7",
  1731. "version": "2.5.0",
  1732. "source": {
  1733. "type": "git",
  1734. "url": "https://github.com/guzzle/psr7.git",
  1735. "reference": "b635f279edd83fc275f822a1188157ffea568ff6"
  1736. },
  1737. "dist": {
  1738. "type": "zip",
  1739. "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6",
  1740. "reference": "b635f279edd83fc275f822a1188157ffea568ff6",
  1741. "shasum": ""
  1742. },
  1743. "require": {
  1744. "php": "^7.2.5 || ^8.0",
  1745. "psr/http-factory": "^1.0",
  1746. "psr/http-message": "^1.1 || ^2.0",
  1747. "ralouphie/getallheaders": "^3.0"
  1748. },
  1749. "provide": {
  1750. "psr/http-factory-implementation": "1.0",
  1751. "psr/http-message-implementation": "1.0"
  1752. },
  1753. "require-dev": {
  1754. "bamarni/composer-bin-plugin": "^1.8.1",
  1755. "http-interop/http-factory-tests": "^0.9",
  1756. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1757. },
  1758. "suggest": {
  1759. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1760. },
  1761. "type": "library",
  1762. "extra": {
  1763. "bamarni-bin": {
  1764. "bin-links": true,
  1765. "forward-command": false
  1766. }
  1767. },
  1768. "autoload": {
  1769. "psr-4": {
  1770. "GuzzleHttp\\Psr7\\": "src/"
  1771. }
  1772. },
  1773. "notification-url": "https://packagist.org/downloads/",
  1774. "license": [
  1775. "MIT"
  1776. ],
  1777. "authors": [
  1778. {
  1779. "name": "Graham Campbell",
  1780. "email": "hello@gjcampbell.co.uk",
  1781. "homepage": "https://github.com/GrahamCampbell"
  1782. },
  1783. {
  1784. "name": "Michael Dowling",
  1785. "email": "mtdowling@gmail.com",
  1786. "homepage": "https://github.com/mtdowling"
  1787. },
  1788. {
  1789. "name": "George Mponos",
  1790. "email": "gmponos@gmail.com",
  1791. "homepage": "https://github.com/gmponos"
  1792. },
  1793. {
  1794. "name": "Tobias Nyholm",
  1795. "email": "tobias.nyholm@gmail.com",
  1796. "homepage": "https://github.com/Nyholm"
  1797. },
  1798. {
  1799. "name": "Márk Sági-Kazár",
  1800. "email": "mark.sagikazar@gmail.com",
  1801. "homepage": "https://github.com/sagikazarmark"
  1802. },
  1803. {
  1804. "name": "Tobias Schultze",
  1805. "email": "webmaster@tubo-world.de",
  1806. "homepage": "https://github.com/Tobion"
  1807. },
  1808. {
  1809. "name": "Márk Sági-Kazár",
  1810. "email": "mark.sagikazar@gmail.com",
  1811. "homepage": "https://sagikazarmark.hu"
  1812. }
  1813. ],
  1814. "description": "PSR-7 message implementation that also provides common utility methods",
  1815. "keywords": [
  1816. "http",
  1817. "message",
  1818. "psr-7",
  1819. "request",
  1820. "response",
  1821. "stream",
  1822. "uri",
  1823. "url"
  1824. ],
  1825. "support": {
  1826. "issues": "https://github.com/guzzle/psr7/issues",
  1827. "source": "https://github.com/guzzle/psr7/tree/2.5.0"
  1828. },
  1829. "funding": [
  1830. {
  1831. "url": "https://github.com/GrahamCampbell",
  1832. "type": "github"
  1833. },
  1834. {
  1835. "url": "https://github.com/Nyholm",
  1836. "type": "github"
  1837. },
  1838. {
  1839. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1840. "type": "tidelift"
  1841. }
  1842. ],
  1843. "time": "2023-04-17T16:11:26+00:00"
  1844. },
  1845. {
  1846. "name": "guzzlehttp/uri-template",
  1847. "version": "v1.0.1",
  1848. "source": {
  1849. "type": "git",
  1850. "url": "https://github.com/guzzle/uri-template.git",
  1851. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2"
  1852. },
  1853. "dist": {
  1854. "type": "zip",
  1855. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2",
  1856. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2",
  1857. "shasum": ""
  1858. },
  1859. "require": {
  1860. "php": "^7.2.5 || ^8.0",
  1861. "symfony/polyfill-php80": "^1.17"
  1862. },
  1863. "require-dev": {
  1864. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  1865. "uri-template/tests": "1.0.0"
  1866. },
  1867. "type": "library",
  1868. "extra": {
  1869. "branch-alias": {
  1870. "dev-master": "1.0-dev"
  1871. }
  1872. },
  1873. "autoload": {
  1874. "psr-4": {
  1875. "GuzzleHttp\\UriTemplate\\": "src"
  1876. }
  1877. },
  1878. "notification-url": "https://packagist.org/downloads/",
  1879. "license": [
  1880. "MIT"
  1881. ],
  1882. "authors": [
  1883. {
  1884. "name": "Graham Campbell",
  1885. "email": "hello@gjcampbell.co.uk",
  1886. "homepage": "https://github.com/GrahamCampbell"
  1887. },
  1888. {
  1889. "name": "Michael Dowling",
  1890. "email": "mtdowling@gmail.com",
  1891. "homepage": "https://github.com/mtdowling"
  1892. },
  1893. {
  1894. "name": "George Mponos",
  1895. "email": "gmponos@gmail.com",
  1896. "homepage": "https://github.com/gmponos"
  1897. },
  1898. {
  1899. "name": "Tobias Nyholm",
  1900. "email": "tobias.nyholm@gmail.com",
  1901. "homepage": "https://github.com/Nyholm"
  1902. }
  1903. ],
  1904. "description": "A polyfill class for uri_template of PHP",
  1905. "keywords": [
  1906. "guzzlehttp",
  1907. "uri-template"
  1908. ],
  1909. "support": {
  1910. "issues": "https://github.com/guzzle/uri-template/issues",
  1911. "source": "https://github.com/guzzle/uri-template/tree/v1.0.1"
  1912. },
  1913. "funding": [
  1914. {
  1915. "url": "https://github.com/GrahamCampbell",
  1916. "type": "github"
  1917. },
  1918. {
  1919. "url": "https://github.com/Nyholm",
  1920. "type": "github"
  1921. },
  1922. {
  1923. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1924. "type": "tidelift"
  1925. }
  1926. ],
  1927. "time": "2021-10-07T12:57:01+00:00"
  1928. },
  1929. {
  1930. "name": "laravel/fortify",
  1931. "version": "v1.17.4",
  1932. "source": {
  1933. "type": "git",
  1934. "url": "https://github.com/laravel/fortify.git",
  1935. "reference": "110dd0d09b70461d651218240120e24ba8d8cbe1"
  1936. },
  1937. "dist": {
  1938. "type": "zip",
  1939. "url": "https://api.github.com/repos/laravel/fortify/zipball/110dd0d09b70461d651218240120e24ba8d8cbe1",
  1940. "reference": "110dd0d09b70461d651218240120e24ba8d8cbe1",
  1941. "shasum": ""
  1942. },
  1943. "require": {
  1944. "bacon/bacon-qr-code": "^2.0",
  1945. "ext-json": "*",
  1946. "illuminate/support": "^8.82|^9.0|^10.0",
  1947. "php": "^7.3|^8.0",
  1948. "pragmarx/google2fa": "^7.0|^8.0"
  1949. },
  1950. "require-dev": {
  1951. "mockery/mockery": "^1.0",
  1952. "orchestra/testbench": "^6.0|^7.0|^8.0",
  1953. "phpstan/phpstan": "^1.10",
  1954. "phpunit/phpunit": "^9.3"
  1955. },
  1956. "type": "library",
  1957. "extra": {
  1958. "branch-alias": {
  1959. "dev-master": "1.x-dev"
  1960. },
  1961. "laravel": {
  1962. "providers": [
  1963. "Laravel\\Fortify\\FortifyServiceProvider"
  1964. ]
  1965. }
  1966. },
  1967. "autoload": {
  1968. "psr-4": {
  1969. "Laravel\\Fortify\\": "src/"
  1970. }
  1971. },
  1972. "notification-url": "https://packagist.org/downloads/",
  1973. "license": [
  1974. "MIT"
  1975. ],
  1976. "authors": [
  1977. {
  1978. "name": "Taylor Otwell",
  1979. "email": "taylor@laravel.com"
  1980. }
  1981. ],
  1982. "description": "Backend controllers and scaffolding for Laravel authentication.",
  1983. "keywords": [
  1984. "auth",
  1985. "laravel"
  1986. ],
  1987. "support": {
  1988. "issues": "https://github.com/laravel/fortify/issues",
  1989. "source": "https://github.com/laravel/fortify"
  1990. },
  1991. "time": "2023-06-18T09:17:00+00:00"
  1992. },
  1993. {
  1994. "name": "laravel/framework",
  1995. "version": "v10.14.1",
  1996. "source": {
  1997. "type": "git",
  1998. "url": "https://github.com/laravel/framework.git",
  1999. "reference": "6f89a2b74b232d8bf2e1d9ed87e311841263dfcb"
  2000. },
  2001. "dist": {
  2002. "type": "zip",
  2003. "url": "https://api.github.com/repos/laravel/framework/zipball/6f89a2b74b232d8bf2e1d9ed87e311841263dfcb",
  2004. "reference": "6f89a2b74b232d8bf2e1d9ed87e311841263dfcb",
  2005. "shasum": ""
  2006. },
  2007. "require": {
  2008. "brick/math": "^0.9.3|^0.10.2|^0.11",
  2009. "composer-runtime-api": "^2.2",
  2010. "doctrine/inflector": "^2.0.5",
  2011. "dragonmantank/cron-expression": "^3.3.2",
  2012. "egulias/email-validator": "^3.2.1|^4.0",
  2013. "ext-ctype": "*",
  2014. "ext-filter": "*",
  2015. "ext-hash": "*",
  2016. "ext-mbstring": "*",
  2017. "ext-openssl": "*",
  2018. "ext-session": "*",
  2019. "ext-tokenizer": "*",
  2020. "fruitcake/php-cors": "^1.2",
  2021. "guzzlehttp/uri-template": "^1.0",
  2022. "laravel/serializable-closure": "^1.3",
  2023. "league/commonmark": "^2.2.1",
  2024. "league/flysystem": "^3.8.0",
  2025. "monolog/monolog": "^3.0",
  2026. "nesbot/carbon": "^2.62.1",
  2027. "nunomaduro/termwind": "^1.13",
  2028. "php": "^8.1",
  2029. "psr/container": "^1.1.1|^2.0.1",
  2030. "psr/log": "^1.0|^2.0|^3.0",
  2031. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2032. "ramsey/uuid": "^4.7",
  2033. "symfony/console": "^6.2",
  2034. "symfony/error-handler": "^6.2",
  2035. "symfony/finder": "^6.2",
  2036. "symfony/http-foundation": "^6.2",
  2037. "symfony/http-kernel": "^6.2",
  2038. "symfony/mailer": "^6.2",
  2039. "symfony/mime": "^6.2",
  2040. "symfony/process": "^6.2",
  2041. "symfony/routing": "^6.2",
  2042. "symfony/uid": "^6.2",
  2043. "symfony/var-dumper": "^6.2",
  2044. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  2045. "vlucas/phpdotenv": "^5.4.1",
  2046. "voku/portable-ascii": "^2.0"
  2047. },
  2048. "conflict": {
  2049. "tightenco/collect": "<5.5.33"
  2050. },
  2051. "provide": {
  2052. "psr/container-implementation": "1.1|2.0",
  2053. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2054. },
  2055. "replace": {
  2056. "illuminate/auth": "self.version",
  2057. "illuminate/broadcasting": "self.version",
  2058. "illuminate/bus": "self.version",
  2059. "illuminate/cache": "self.version",
  2060. "illuminate/collections": "self.version",
  2061. "illuminate/conditionable": "self.version",
  2062. "illuminate/config": "self.version",
  2063. "illuminate/console": "self.version",
  2064. "illuminate/container": "self.version",
  2065. "illuminate/contracts": "self.version",
  2066. "illuminate/cookie": "self.version",
  2067. "illuminate/database": "self.version",
  2068. "illuminate/encryption": "self.version",
  2069. "illuminate/events": "self.version",
  2070. "illuminate/filesystem": "self.version",
  2071. "illuminate/hashing": "self.version",
  2072. "illuminate/http": "self.version",
  2073. "illuminate/log": "self.version",
  2074. "illuminate/macroable": "self.version",
  2075. "illuminate/mail": "self.version",
  2076. "illuminate/notifications": "self.version",
  2077. "illuminate/pagination": "self.version",
  2078. "illuminate/pipeline": "self.version",
  2079. "illuminate/process": "self.version",
  2080. "illuminate/queue": "self.version",
  2081. "illuminate/redis": "self.version",
  2082. "illuminate/routing": "self.version",
  2083. "illuminate/session": "self.version",
  2084. "illuminate/support": "self.version",
  2085. "illuminate/testing": "self.version",
  2086. "illuminate/translation": "self.version",
  2087. "illuminate/validation": "self.version",
  2088. "illuminate/view": "self.version"
  2089. },
  2090. "require-dev": {
  2091. "ably/ably-php": "^1.0",
  2092. "aws/aws-sdk-php": "^3.235.5",
  2093. "doctrine/dbal": "^3.5.1",
  2094. "ext-gmp": "*",
  2095. "fakerphp/faker": "^1.21",
  2096. "guzzlehttp/guzzle": "^7.5",
  2097. "league/flysystem-aws-s3-v3": "^3.0",
  2098. "league/flysystem-ftp": "^3.0",
  2099. "league/flysystem-path-prefixing": "^3.3",
  2100. "league/flysystem-read-only": "^3.3",
  2101. "league/flysystem-sftp-v3": "^3.0",
  2102. "mockery/mockery": "^1.5.1",
  2103. "orchestra/testbench-core": "^8.4",
  2104. "pda/pheanstalk": "^4.0",
  2105. "phpstan/phpdoc-parser": "^1.15",
  2106. "phpstan/phpstan": "^1.4.7",
  2107. "phpunit/phpunit": "^10.0.7",
  2108. "predis/predis": "^2.0.2",
  2109. "symfony/cache": "^6.2",
  2110. "symfony/http-client": "^6.2.4"
  2111. },
  2112. "suggest": {
  2113. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2114. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  2115. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2116. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).",
  2117. "ext-apcu": "Required to use the APC cache driver.",
  2118. "ext-fileinfo": "Required to use the Filesystem class.",
  2119. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2120. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2121. "ext-memcached": "Required to use the memcache cache driver.",
  2122. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2123. "ext-pdo": "Required to use all database features.",
  2124. "ext-posix": "Required to use all features of the queue worker.",
  2125. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2126. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2127. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2128. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  2129. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2130. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  2131. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  2132. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  2133. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  2134. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  2135. "mockery/mockery": "Required to use mocking (^1.5.1).",
  2136. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2137. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2138. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).",
  2139. "predis/predis": "Required to use the predis connector (^2.0.2).",
  2140. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2141. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2142. "symfony/cache": "Required to PSR-6 cache bridge (^6.2).",
  2143. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).",
  2144. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.2).",
  2145. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).",
  2146. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2).",
  2147. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  2148. },
  2149. "type": "library",
  2150. "extra": {
  2151. "branch-alias": {
  2152. "dev-master": "10.x-dev"
  2153. }
  2154. },
  2155. "autoload": {
  2156. "files": [
  2157. "src/Illuminate/Collections/helpers.php",
  2158. "src/Illuminate/Events/functions.php",
  2159. "src/Illuminate/Foundation/helpers.php",
  2160. "src/Illuminate/Support/helpers.php"
  2161. ],
  2162. "psr-4": {
  2163. "Illuminate\\": "src/Illuminate/",
  2164. "Illuminate\\Support\\": [
  2165. "src/Illuminate/Macroable/",
  2166. "src/Illuminate/Collections/",
  2167. "src/Illuminate/Conditionable/"
  2168. ]
  2169. }
  2170. },
  2171. "notification-url": "https://packagist.org/downloads/",
  2172. "license": [
  2173. "MIT"
  2174. ],
  2175. "authors": [
  2176. {
  2177. "name": "Taylor Otwell",
  2178. "email": "taylor@laravel.com"
  2179. }
  2180. ],
  2181. "description": "The Laravel Framework.",
  2182. "homepage": "https://laravel.com",
  2183. "keywords": [
  2184. "framework",
  2185. "laravel"
  2186. ],
  2187. "support": {
  2188. "issues": "https://github.com/laravel/framework/issues",
  2189. "source": "https://github.com/laravel/framework"
  2190. },
  2191. "time": "2023-06-28T14:25:16+00:00"
  2192. },
  2193. {
  2194. "name": "laravel/sanctum",
  2195. "version": "v3.2.5",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://github.com/laravel/sanctum.git",
  2199. "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://api.github.com/repos/laravel/sanctum/zipball/8ebda85d59d3c414863a7f4d816ef8302faad876",
  2204. "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876",
  2205. "shasum": ""
  2206. },
  2207. "require": {
  2208. "ext-json": "*",
  2209. "illuminate/console": "^9.21|^10.0",
  2210. "illuminate/contracts": "^9.21|^10.0",
  2211. "illuminate/database": "^9.21|^10.0",
  2212. "illuminate/support": "^9.21|^10.0",
  2213. "php": "^8.0.2"
  2214. },
  2215. "require-dev": {
  2216. "mockery/mockery": "^1.0",
  2217. "orchestra/testbench": "^7.0|^8.0",
  2218. "phpstan/phpstan": "^1.10",
  2219. "phpunit/phpunit": "^9.3"
  2220. },
  2221. "type": "library",
  2222. "extra": {
  2223. "branch-alias": {
  2224. "dev-master": "3.x-dev"
  2225. },
  2226. "laravel": {
  2227. "providers": [
  2228. "Laravel\\Sanctum\\SanctumServiceProvider"
  2229. ]
  2230. }
  2231. },
  2232. "autoload": {
  2233. "psr-4": {
  2234. "Laravel\\Sanctum\\": "src/"
  2235. }
  2236. },
  2237. "notification-url": "https://packagist.org/downloads/",
  2238. "license": [
  2239. "MIT"
  2240. ],
  2241. "authors": [
  2242. {
  2243. "name": "Taylor Otwell",
  2244. "email": "taylor@laravel.com"
  2245. }
  2246. ],
  2247. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2248. "keywords": [
  2249. "auth",
  2250. "laravel",
  2251. "sanctum"
  2252. ],
  2253. "support": {
  2254. "issues": "https://github.com/laravel/sanctum/issues",
  2255. "source": "https://github.com/laravel/sanctum"
  2256. },
  2257. "time": "2023-05-01T19:39:51+00:00"
  2258. },
  2259. {
  2260. "name": "laravel/serializable-closure",
  2261. "version": "v1.3.0",
  2262. "source": {
  2263. "type": "git",
  2264. "url": "https://github.com/laravel/serializable-closure.git",
  2265. "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37"
  2266. },
  2267. "dist": {
  2268. "type": "zip",
  2269. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
  2270. "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
  2271. "shasum": ""
  2272. },
  2273. "require": {
  2274. "php": "^7.3|^8.0"
  2275. },
  2276. "require-dev": {
  2277. "nesbot/carbon": "^2.61",
  2278. "pestphp/pest": "^1.21.3",
  2279. "phpstan/phpstan": "^1.8.2",
  2280. "symfony/var-dumper": "^5.4.11"
  2281. },
  2282. "type": "library",
  2283. "extra": {
  2284. "branch-alias": {
  2285. "dev-master": "1.x-dev"
  2286. }
  2287. },
  2288. "autoload": {
  2289. "psr-4": {
  2290. "Laravel\\SerializableClosure\\": "src/"
  2291. }
  2292. },
  2293. "notification-url": "https://packagist.org/downloads/",
  2294. "license": [
  2295. "MIT"
  2296. ],
  2297. "authors": [
  2298. {
  2299. "name": "Taylor Otwell",
  2300. "email": "taylor@laravel.com"
  2301. },
  2302. {
  2303. "name": "Nuno Maduro",
  2304. "email": "nuno@laravel.com"
  2305. }
  2306. ],
  2307. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2308. "keywords": [
  2309. "closure",
  2310. "laravel",
  2311. "serializable"
  2312. ],
  2313. "support": {
  2314. "issues": "https://github.com/laravel/serializable-closure/issues",
  2315. "source": "https://github.com/laravel/serializable-closure"
  2316. },
  2317. "time": "2023-01-30T18:31:20+00:00"
  2318. },
  2319. {
  2320. "name": "laravel/socialite",
  2321. "version": "v5.6.3",
  2322. "source": {
  2323. "type": "git",
  2324. "url": "https://github.com/laravel/socialite.git",
  2325. "reference": "00ea7f8630673ea49304fc8a9fca5a64eb838c7e"
  2326. },
  2327. "dist": {
  2328. "type": "zip",
  2329. "url": "https://api.github.com/repos/laravel/socialite/zipball/00ea7f8630673ea49304fc8a9fca5a64eb838c7e",
  2330. "reference": "00ea7f8630673ea49304fc8a9fca5a64eb838c7e",
  2331. "shasum": ""
  2332. },
  2333. "require": {
  2334. "ext-json": "*",
  2335. "guzzlehttp/guzzle": "^6.0|^7.0",
  2336. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2337. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2338. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2339. "league/oauth1-client": "^1.10.1",
  2340. "php": "^7.2|^8.0"
  2341. },
  2342. "require-dev": {
  2343. "mockery/mockery": "^1.0",
  2344. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
  2345. "phpstan/phpstan": "^1.10",
  2346. "phpunit/phpunit": "^8.0|^9.3"
  2347. },
  2348. "type": "library",
  2349. "extra": {
  2350. "branch-alias": {
  2351. "dev-master": "5.x-dev"
  2352. },
  2353. "laravel": {
  2354. "providers": [
  2355. "Laravel\\Socialite\\SocialiteServiceProvider"
  2356. ],
  2357. "aliases": {
  2358. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2359. }
  2360. }
  2361. },
  2362. "autoload": {
  2363. "psr-4": {
  2364. "Laravel\\Socialite\\": "src/"
  2365. }
  2366. },
  2367. "notification-url": "https://packagist.org/downloads/",
  2368. "license": [
  2369. "MIT"
  2370. ],
  2371. "authors": [
  2372. {
  2373. "name": "Taylor Otwell",
  2374. "email": "taylor@laravel.com"
  2375. }
  2376. ],
  2377. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2378. "homepage": "https://laravel.com",
  2379. "keywords": [
  2380. "laravel",
  2381. "oauth"
  2382. ],
  2383. "support": {
  2384. "issues": "https://github.com/laravel/socialite/issues",
  2385. "source": "https://github.com/laravel/socialite"
  2386. },
  2387. "time": "2023-06-06T13:42:43+00:00"
  2388. },
  2389. {
  2390. "name": "laravel/tinker",
  2391. "version": "v2.8.1",
  2392. "source": {
  2393. "type": "git",
  2394. "url": "https://github.com/laravel/tinker.git",
  2395. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10"
  2396. },
  2397. "dist": {
  2398. "type": "zip",
  2399. "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2400. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2401. "shasum": ""
  2402. },
  2403. "require": {
  2404. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2405. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2406. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2407. "php": "^7.2.5|^8.0",
  2408. "psy/psysh": "^0.10.4|^0.11.1",
  2409. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2410. },
  2411. "require-dev": {
  2412. "mockery/mockery": "~1.3.3|^1.4.2",
  2413. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2414. },
  2415. "suggest": {
  2416. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  2417. },
  2418. "type": "library",
  2419. "extra": {
  2420. "branch-alias": {
  2421. "dev-master": "2.x-dev"
  2422. },
  2423. "laravel": {
  2424. "providers": [
  2425. "Laravel\\Tinker\\TinkerServiceProvider"
  2426. ]
  2427. }
  2428. },
  2429. "autoload": {
  2430. "psr-4": {
  2431. "Laravel\\Tinker\\": "src/"
  2432. }
  2433. },
  2434. "notification-url": "https://packagist.org/downloads/",
  2435. "license": [
  2436. "MIT"
  2437. ],
  2438. "authors": [
  2439. {
  2440. "name": "Taylor Otwell",
  2441. "email": "taylor@laravel.com"
  2442. }
  2443. ],
  2444. "description": "Powerful REPL for the Laravel framework.",
  2445. "keywords": [
  2446. "REPL",
  2447. "Tinker",
  2448. "laravel",
  2449. "psysh"
  2450. ],
  2451. "support": {
  2452. "issues": "https://github.com/laravel/tinker/issues",
  2453. "source": "https://github.com/laravel/tinker/tree/v2.8.1"
  2454. },
  2455. "time": "2023-02-15T16:40:09+00:00"
  2456. },
  2457. {
  2458. "name": "league/commonmark",
  2459. "version": "2.4.0",
  2460. "source": {
  2461. "type": "git",
  2462. "url": "https://github.com/thephpleague/commonmark.git",
  2463. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048"
  2464. },
  2465. "dist": {
  2466. "type": "zip",
  2467. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  2468. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  2469. "shasum": ""
  2470. },
  2471. "require": {
  2472. "ext-mbstring": "*",
  2473. "league/config": "^1.1.1",
  2474. "php": "^7.4 || ^8.0",
  2475. "psr/event-dispatcher": "^1.0",
  2476. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2477. "symfony/polyfill-php80": "^1.16"
  2478. },
  2479. "require-dev": {
  2480. "cebe/markdown": "^1.0",
  2481. "commonmark/cmark": "0.30.0",
  2482. "commonmark/commonmark.js": "0.30.0",
  2483. "composer/package-versions-deprecated": "^1.8",
  2484. "embed/embed": "^4.4",
  2485. "erusev/parsedown": "^1.0",
  2486. "ext-json": "*",
  2487. "github/gfm": "0.29.0",
  2488. "michelf/php-markdown": "^1.4 || ^2.0",
  2489. "nyholm/psr7": "^1.5",
  2490. "phpstan/phpstan": "^1.8.2",
  2491. "phpunit/phpunit": "^9.5.21",
  2492. "scrutinizer/ocular": "^1.8.1",
  2493. "symfony/finder": "^5.3 | ^6.0",
  2494. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2495. "unleashedtech/php-coding-standard": "^3.1.1",
  2496. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2497. },
  2498. "suggest": {
  2499. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2500. },
  2501. "type": "library",
  2502. "extra": {
  2503. "branch-alias": {
  2504. "dev-main": "2.5-dev"
  2505. }
  2506. },
  2507. "autoload": {
  2508. "psr-4": {
  2509. "League\\CommonMark\\": "src"
  2510. }
  2511. },
  2512. "notification-url": "https://packagist.org/downloads/",
  2513. "license": [
  2514. "BSD-3-Clause"
  2515. ],
  2516. "authors": [
  2517. {
  2518. "name": "Colin O'Dell",
  2519. "email": "colinodell@gmail.com",
  2520. "homepage": "https://www.colinodell.com",
  2521. "role": "Lead Developer"
  2522. }
  2523. ],
  2524. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2525. "homepage": "https://commonmark.thephpleague.com",
  2526. "keywords": [
  2527. "commonmark",
  2528. "flavored",
  2529. "gfm",
  2530. "github",
  2531. "github-flavored",
  2532. "markdown",
  2533. "md",
  2534. "parser"
  2535. ],
  2536. "support": {
  2537. "docs": "https://commonmark.thephpleague.com/",
  2538. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2539. "issues": "https://github.com/thephpleague/commonmark/issues",
  2540. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2541. "source": "https://github.com/thephpleague/commonmark"
  2542. },
  2543. "funding": [
  2544. {
  2545. "url": "https://www.colinodell.com/sponsor",
  2546. "type": "custom"
  2547. },
  2548. {
  2549. "url": "https://www.paypal.me/colinpodell/10.00",
  2550. "type": "custom"
  2551. },
  2552. {
  2553. "url": "https://github.com/colinodell",
  2554. "type": "github"
  2555. },
  2556. {
  2557. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2558. "type": "tidelift"
  2559. }
  2560. ],
  2561. "time": "2023-03-24T15:16:10+00:00"
  2562. },
  2563. {
  2564. "name": "league/config",
  2565. "version": "v1.2.0",
  2566. "source": {
  2567. "type": "git",
  2568. "url": "https://github.com/thephpleague/config.git",
  2569. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2570. },
  2571. "dist": {
  2572. "type": "zip",
  2573. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2574. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2575. "shasum": ""
  2576. },
  2577. "require": {
  2578. "dflydev/dot-access-data": "^3.0.1",
  2579. "nette/schema": "^1.2",
  2580. "php": "^7.4 || ^8.0"
  2581. },
  2582. "require-dev": {
  2583. "phpstan/phpstan": "^1.8.2",
  2584. "phpunit/phpunit": "^9.5.5",
  2585. "scrutinizer/ocular": "^1.8.1",
  2586. "unleashedtech/php-coding-standard": "^3.1",
  2587. "vimeo/psalm": "^4.7.3"
  2588. },
  2589. "type": "library",
  2590. "extra": {
  2591. "branch-alias": {
  2592. "dev-main": "1.2-dev"
  2593. }
  2594. },
  2595. "autoload": {
  2596. "psr-4": {
  2597. "League\\Config\\": "src"
  2598. }
  2599. },
  2600. "notification-url": "https://packagist.org/downloads/",
  2601. "license": [
  2602. "BSD-3-Clause"
  2603. ],
  2604. "authors": [
  2605. {
  2606. "name": "Colin O'Dell",
  2607. "email": "colinodell@gmail.com",
  2608. "homepage": "https://www.colinodell.com",
  2609. "role": "Lead Developer"
  2610. }
  2611. ],
  2612. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2613. "homepage": "https://config.thephpleague.com",
  2614. "keywords": [
  2615. "array",
  2616. "config",
  2617. "configuration",
  2618. "dot",
  2619. "dot-access",
  2620. "nested",
  2621. "schema"
  2622. ],
  2623. "support": {
  2624. "docs": "https://config.thephpleague.com/",
  2625. "issues": "https://github.com/thephpleague/config/issues",
  2626. "rss": "https://github.com/thephpleague/config/releases.atom",
  2627. "source": "https://github.com/thephpleague/config"
  2628. },
  2629. "funding": [
  2630. {
  2631. "url": "https://www.colinodell.com/sponsor",
  2632. "type": "custom"
  2633. },
  2634. {
  2635. "url": "https://www.paypal.me/colinpodell/10.00",
  2636. "type": "custom"
  2637. },
  2638. {
  2639. "url": "https://github.com/colinodell",
  2640. "type": "github"
  2641. }
  2642. ],
  2643. "time": "2022-12-11T20:36:23+00:00"
  2644. },
  2645. {
  2646. "name": "league/flysystem",
  2647. "version": "3.15.1",
  2648. "source": {
  2649. "type": "git",
  2650. "url": "https://github.com/thephpleague/flysystem.git",
  2651. "reference": "a141d430414fcb8bf797a18716b09f759a385bed"
  2652. },
  2653. "dist": {
  2654. "type": "zip",
  2655. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a141d430414fcb8bf797a18716b09f759a385bed",
  2656. "reference": "a141d430414fcb8bf797a18716b09f759a385bed",
  2657. "shasum": ""
  2658. },
  2659. "require": {
  2660. "league/flysystem-local": "^3.0.0",
  2661. "league/mime-type-detection": "^1.0.0",
  2662. "php": "^8.0.2"
  2663. },
  2664. "conflict": {
  2665. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2666. "guzzlehttp/guzzle": "<7.0",
  2667. "guzzlehttp/ringphp": "<1.1.1",
  2668. "phpseclib/phpseclib": "3.0.15",
  2669. "symfony/http-client": "<5.2"
  2670. },
  2671. "require-dev": {
  2672. "async-aws/s3": "^1.5",
  2673. "async-aws/simple-s3": "^1.1",
  2674. "aws/aws-sdk-php": "^3.220.0",
  2675. "composer/semver": "^3.0",
  2676. "ext-fileinfo": "*",
  2677. "ext-ftp": "*",
  2678. "ext-zip": "*",
  2679. "friendsofphp/php-cs-fixer": "^3.5",
  2680. "google/cloud-storage": "^1.23",
  2681. "microsoft/azure-storage-blob": "^1.1",
  2682. "phpseclib/phpseclib": "^3.0.14",
  2683. "phpstan/phpstan": "^0.12.26",
  2684. "phpunit/phpunit": "^9.5.11",
  2685. "sabre/dav": "^4.3.1"
  2686. },
  2687. "type": "library",
  2688. "autoload": {
  2689. "psr-4": {
  2690. "League\\Flysystem\\": "src"
  2691. }
  2692. },
  2693. "notification-url": "https://packagist.org/downloads/",
  2694. "license": [
  2695. "MIT"
  2696. ],
  2697. "authors": [
  2698. {
  2699. "name": "Frank de Jonge",
  2700. "email": "info@frankdejonge.nl"
  2701. }
  2702. ],
  2703. "description": "File storage abstraction for PHP",
  2704. "keywords": [
  2705. "WebDAV",
  2706. "aws",
  2707. "cloud",
  2708. "file",
  2709. "files",
  2710. "filesystem",
  2711. "filesystems",
  2712. "ftp",
  2713. "s3",
  2714. "sftp",
  2715. "storage"
  2716. ],
  2717. "support": {
  2718. "issues": "https://github.com/thephpleague/flysystem/issues",
  2719. "source": "https://github.com/thephpleague/flysystem/tree/3.15.1"
  2720. },
  2721. "funding": [
  2722. {
  2723. "url": "https://ecologi.com/frankdejonge",
  2724. "type": "custom"
  2725. },
  2726. {
  2727. "url": "https://github.com/frankdejonge",
  2728. "type": "github"
  2729. }
  2730. ],
  2731. "time": "2023-05-04T09:04:26+00:00"
  2732. },
  2733. {
  2734. "name": "league/flysystem-local",
  2735. "version": "3.15.0",
  2736. "source": {
  2737. "type": "git",
  2738. "url": "https://github.com/thephpleague/flysystem-local.git",
  2739. "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3"
  2740. },
  2741. "dist": {
  2742. "type": "zip",
  2743. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/543f64c397fefdf9cfeac443ffb6beff602796b3",
  2744. "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3",
  2745. "shasum": ""
  2746. },
  2747. "require": {
  2748. "ext-fileinfo": "*",
  2749. "league/flysystem": "^3.0.0",
  2750. "league/mime-type-detection": "^1.0.0",
  2751. "php": "^8.0.2"
  2752. },
  2753. "type": "library",
  2754. "autoload": {
  2755. "psr-4": {
  2756. "League\\Flysystem\\Local\\": ""
  2757. }
  2758. },
  2759. "notification-url": "https://packagist.org/downloads/",
  2760. "license": [
  2761. "MIT"
  2762. ],
  2763. "authors": [
  2764. {
  2765. "name": "Frank de Jonge",
  2766. "email": "info@frankdejonge.nl"
  2767. }
  2768. ],
  2769. "description": "Local filesystem adapter for Flysystem.",
  2770. "keywords": [
  2771. "Flysystem",
  2772. "file",
  2773. "files",
  2774. "filesystem",
  2775. "local"
  2776. ],
  2777. "support": {
  2778. "issues": "https://github.com/thephpleague/flysystem-local/issues",
  2779. "source": "https://github.com/thephpleague/flysystem-local/tree/3.15.0"
  2780. },
  2781. "funding": [
  2782. {
  2783. "url": "https://ecologi.com/frankdejonge",
  2784. "type": "custom"
  2785. },
  2786. {
  2787. "url": "https://github.com/frankdejonge",
  2788. "type": "github"
  2789. }
  2790. ],
  2791. "time": "2023-05-02T20:02:14+00:00"
  2792. },
  2793. {
  2794. "name": "league/mime-type-detection",
  2795. "version": "1.11.0",
  2796. "source": {
  2797. "type": "git",
  2798. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2799. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  2800. },
  2801. "dist": {
  2802. "type": "zip",
  2803. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2804. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2805. "shasum": ""
  2806. },
  2807. "require": {
  2808. "ext-fileinfo": "*",
  2809. "php": "^7.2 || ^8.0"
  2810. },
  2811. "require-dev": {
  2812. "friendsofphp/php-cs-fixer": "^3.2",
  2813. "phpstan/phpstan": "^0.12.68",
  2814. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2815. },
  2816. "type": "library",
  2817. "autoload": {
  2818. "psr-4": {
  2819. "League\\MimeTypeDetection\\": "src"
  2820. }
  2821. },
  2822. "notification-url": "https://packagist.org/downloads/",
  2823. "license": [
  2824. "MIT"
  2825. ],
  2826. "authors": [
  2827. {
  2828. "name": "Frank de Jonge",
  2829. "email": "info@frankdejonge.nl"
  2830. }
  2831. ],
  2832. "description": "Mime-type detection for Flysystem",
  2833. "support": {
  2834. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2835. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2836. },
  2837. "funding": [
  2838. {
  2839. "url": "https://github.com/frankdejonge",
  2840. "type": "github"
  2841. },
  2842. {
  2843. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2844. "type": "tidelift"
  2845. }
  2846. ],
  2847. "time": "2022-04-17T13:12:02+00:00"
  2848. },
  2849. {
  2850. "name": "league/oauth1-client",
  2851. "version": "v1.10.1",
  2852. "source": {
  2853. "type": "git",
  2854. "url": "https://github.com/thephpleague/oauth1-client.git",
  2855. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  2856. },
  2857. "dist": {
  2858. "type": "zip",
  2859. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  2860. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  2861. "shasum": ""
  2862. },
  2863. "require": {
  2864. "ext-json": "*",
  2865. "ext-openssl": "*",
  2866. "guzzlehttp/guzzle": "^6.0|^7.0",
  2867. "guzzlehttp/psr7": "^1.7|^2.0",
  2868. "php": ">=7.1||>=8.0"
  2869. },
  2870. "require-dev": {
  2871. "ext-simplexml": "*",
  2872. "friendsofphp/php-cs-fixer": "^2.17",
  2873. "mockery/mockery": "^1.3.3",
  2874. "phpstan/phpstan": "^0.12.42",
  2875. "phpunit/phpunit": "^7.5||9.5"
  2876. },
  2877. "suggest": {
  2878. "ext-simplexml": "For decoding XML-based responses."
  2879. },
  2880. "type": "library",
  2881. "extra": {
  2882. "branch-alias": {
  2883. "dev-master": "1.0-dev",
  2884. "dev-develop": "2.0-dev"
  2885. }
  2886. },
  2887. "autoload": {
  2888. "psr-4": {
  2889. "League\\OAuth1\\Client\\": "src/"
  2890. }
  2891. },
  2892. "notification-url": "https://packagist.org/downloads/",
  2893. "license": [
  2894. "MIT"
  2895. ],
  2896. "authors": [
  2897. {
  2898. "name": "Ben Corlett",
  2899. "email": "bencorlett@me.com",
  2900. "homepage": "http://www.webcomm.com.au",
  2901. "role": "Developer"
  2902. }
  2903. ],
  2904. "description": "OAuth 1.0 Client Library",
  2905. "keywords": [
  2906. "Authentication",
  2907. "SSO",
  2908. "authorization",
  2909. "bitbucket",
  2910. "identity",
  2911. "idp",
  2912. "oauth",
  2913. "oauth1",
  2914. "single sign on",
  2915. "trello",
  2916. "tumblr",
  2917. "twitter"
  2918. ],
  2919. "support": {
  2920. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  2921. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  2922. },
  2923. "time": "2022-04-15T14:02:14+00:00"
  2924. },
  2925. {
  2926. "name": "league/uri-parser",
  2927. "version": "1.4.1",
  2928. "source": {
  2929. "type": "git",
  2930. "url": "https://github.com/thephpleague/uri-parser.git",
  2931. "reference": "671548427e4c932352d9b9279fdfa345bf63fa00"
  2932. },
  2933. "dist": {
  2934. "type": "zip",
  2935. "url": "https://api.github.com/repos/thephpleague/uri-parser/zipball/671548427e4c932352d9b9279fdfa345bf63fa00",
  2936. "reference": "671548427e4c932352d9b9279fdfa345bf63fa00",
  2937. "shasum": ""
  2938. },
  2939. "require": {
  2940. "php": ">=7.0.0"
  2941. },
  2942. "require-dev": {
  2943. "friendsofphp/php-cs-fixer": "^2.0",
  2944. "phpstan/phpstan": "^0.9.2",
  2945. "phpstan/phpstan-phpunit": "^0.9.4",
  2946. "phpstan/phpstan-strict-rules": "^0.9.0",
  2947. "phpunit/phpunit": "^6.0"
  2948. },
  2949. "suggest": {
  2950. "ext-intl": "Allow parsing RFC3987 compliant hosts",
  2951. "league/uri-schemes": "Allow validating and normalizing URI parsing results"
  2952. },
  2953. "type": "library",
  2954. "extra": {
  2955. "branch-alias": {
  2956. "dev-master": "1.x-dev"
  2957. }
  2958. },
  2959. "autoload": {
  2960. "files": [
  2961. "src/functions_include.php"
  2962. ],
  2963. "psr-4": {
  2964. "League\\Uri\\": "src"
  2965. }
  2966. },
  2967. "notification-url": "https://packagist.org/downloads/",
  2968. "license": [
  2969. "MIT"
  2970. ],
  2971. "authors": [
  2972. {
  2973. "name": "Ignace Nyamagana Butera",
  2974. "email": "nyamsprod@gmail.com",
  2975. "homepage": "https://nyamsprod.com"
  2976. }
  2977. ],
  2978. "description": "userland URI parser RFC 3986 compliant",
  2979. "homepage": "https://github.com/thephpleague/uri-parser",
  2980. "keywords": [
  2981. "parse_url",
  2982. "parser",
  2983. "rfc3986",
  2984. "rfc3987",
  2985. "uri",
  2986. "url"
  2987. ],
  2988. "support": {
  2989. "issues": "https://github.com/thephpleague/uri-parser/issues",
  2990. "source": "https://github.com/thephpleague/uri-parser/tree/master"
  2991. },
  2992. "abandoned": true,
  2993. "time": "2018-11-22T07:55:51+00:00"
  2994. },
  2995. {
  2996. "name": "leandrocfe/filament-apex-charts",
  2997. "version": "1.0.3",
  2998. "source": {
  2999. "type": "git",
  3000. "url": "https://github.com/leandrocfe/filament-apex-charts.git",
  3001. "reference": "af32c6f3014d9fd784d4d7329e9b1cce56b37196"
  3002. },
  3003. "dist": {
  3004. "type": "zip",
  3005. "url": "https://api.github.com/repos/leandrocfe/filament-apex-charts/zipball/af32c6f3014d9fd784d4d7329e9b1cce56b37196",
  3006. "reference": "af32c6f3014d9fd784d4d7329e9b1cce56b37196",
  3007. "shasum": ""
  3008. },
  3009. "require": {
  3010. "filament/filament": "^2.16",
  3011. "illuminate/contracts": "^9.0|^10.0",
  3012. "livewire/livewire": "^2.11",
  3013. "php": "^8.1",
  3014. "spatie/laravel-package-tools": "^1.13.0"
  3015. },
  3016. "require-dev": {
  3017. "laravel/pint": "^1.0",
  3018. "nunomaduro/collision": "^6.0|^7.0",
  3019. "nunomaduro/larastan": "^2.0.1",
  3020. "orchestra/testbench": "^7.0|^8.0",
  3021. "pestphp/pest": "^1.21",
  3022. "pestphp/pest-plugin-laravel": "^1.1",
  3023. "phpstan/extension-installer": "^1.1",
  3024. "phpstan/phpstan-deprecation-rules": "^1.0",
  3025. "phpstan/phpstan-phpunit": "^1.0",
  3026. "phpunit/phpunit": "^9.5|^10.0"
  3027. },
  3028. "type": "library",
  3029. "extra": {
  3030. "laravel": {
  3031. "providers": [
  3032. "Leandrocfe\\FilamentApexCharts\\FilamentApexChartsServiceProvider"
  3033. ],
  3034. "aliases": {
  3035. "FilamentApexCharts": "Leandrocfe\\FilamentApexCharts\\Facades\\FilamentApexCharts"
  3036. }
  3037. }
  3038. },
  3039. "autoload": {
  3040. "psr-4": {
  3041. "Leandrocfe\\FilamentApexCharts\\": "src"
  3042. }
  3043. },
  3044. "notification-url": "https://packagist.org/downloads/",
  3045. "license": [
  3046. "MIT"
  3047. ],
  3048. "authors": [
  3049. {
  3050. "name": "Leandro Costa Ferreira",
  3051. "email": "leandrocfe@gmail.com",
  3052. "role": "Developer"
  3053. }
  3054. ],
  3055. "description": "Apex Charts integration for Filament PHP.",
  3056. "homepage": "https://github.com/leandrocfe/filament-apex-charts",
  3057. "keywords": [
  3058. "apexcharts",
  3059. "filament-apex-charts",
  3060. "laravel",
  3061. "leandrocfe"
  3062. ],
  3063. "support": {
  3064. "issues": "https://github.com/leandrocfe/filament-apex-charts/issues",
  3065. "source": "https://github.com/leandrocfe/filament-apex-charts/tree/1.0.3"
  3066. },
  3067. "time": "2023-06-02T11:05:07+00:00"
  3068. },
  3069. {
  3070. "name": "livewire/livewire",
  3071. "version": "v2.12.3",
  3072. "source": {
  3073. "type": "git",
  3074. "url": "https://github.com/livewire/livewire.git",
  3075. "reference": "019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74"
  3076. },
  3077. "dist": {
  3078. "type": "zip",
  3079. "url": "https://api.github.com/repos/livewire/livewire/zipball/019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74",
  3080. "reference": "019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74",
  3081. "shasum": ""
  3082. },
  3083. "require": {
  3084. "illuminate/database": "^7.0|^8.0|^9.0|^10.0",
  3085. "illuminate/support": "^7.0|^8.0|^9.0|^10.0",
  3086. "illuminate/validation": "^7.0|^8.0|^9.0|^10.0",
  3087. "league/mime-type-detection": "^1.9",
  3088. "php": "^7.2.5|^8.0",
  3089. "symfony/http-kernel": "^5.0|^6.0"
  3090. },
  3091. "require-dev": {
  3092. "calebporzio/sushi": "^2.1",
  3093. "laravel/framework": "^7.0|^8.0|^9.0|^10.0",
  3094. "mockery/mockery": "^1.3.1",
  3095. "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0",
  3096. "orchestra/testbench-dusk": "^5.2|^6.0|^7.0|^8.0",
  3097. "phpunit/phpunit": "^8.4|^9.0",
  3098. "psy/psysh": "@stable"
  3099. },
  3100. "type": "library",
  3101. "extra": {
  3102. "laravel": {
  3103. "providers": [
  3104. "Livewire\\LivewireServiceProvider"
  3105. ],
  3106. "aliases": {
  3107. "Livewire": "Livewire\\Livewire"
  3108. }
  3109. }
  3110. },
  3111. "autoload": {
  3112. "files": [
  3113. "src/helpers.php"
  3114. ],
  3115. "psr-4": {
  3116. "Livewire\\": "src/"
  3117. }
  3118. },
  3119. "notification-url": "https://packagist.org/downloads/",
  3120. "license": [
  3121. "MIT"
  3122. ],
  3123. "authors": [
  3124. {
  3125. "name": "Caleb Porzio",
  3126. "email": "calebporzio@gmail.com"
  3127. }
  3128. ],
  3129. "description": "A front-end framework for Laravel.",
  3130. "support": {
  3131. "issues": "https://github.com/livewire/livewire/issues",
  3132. "source": "https://github.com/livewire/livewire/tree/v2.12.3"
  3133. },
  3134. "funding": [
  3135. {
  3136. "url": "https://github.com/livewire",
  3137. "type": "github"
  3138. }
  3139. ],
  3140. "time": "2023-03-03T20:12:38+00:00"
  3141. },
  3142. {
  3143. "name": "masterminds/html5",
  3144. "version": "2.8.0",
  3145. "source": {
  3146. "type": "git",
  3147. "url": "https://github.com/Masterminds/html5-php.git",
  3148. "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3"
  3149. },
  3150. "dist": {
  3151. "type": "zip",
  3152. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3",
  3153. "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3",
  3154. "shasum": ""
  3155. },
  3156. "require": {
  3157. "ext-dom": "*",
  3158. "php": ">=5.3.0"
  3159. },
  3160. "require-dev": {
  3161. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  3162. },
  3163. "type": "library",
  3164. "extra": {
  3165. "branch-alias": {
  3166. "dev-master": "2.7-dev"
  3167. }
  3168. },
  3169. "autoload": {
  3170. "psr-4": {
  3171. "Masterminds\\": "src"
  3172. }
  3173. },
  3174. "notification-url": "https://packagist.org/downloads/",
  3175. "license": [
  3176. "MIT"
  3177. ],
  3178. "authors": [
  3179. {
  3180. "name": "Matt Butcher",
  3181. "email": "technosophos@gmail.com"
  3182. },
  3183. {
  3184. "name": "Matt Farina",
  3185. "email": "matt@mattfarina.com"
  3186. },
  3187. {
  3188. "name": "Asmir Mustafic",
  3189. "email": "goetas@gmail.com"
  3190. }
  3191. ],
  3192. "description": "An HTML5 parser and serializer.",
  3193. "homepage": "http://masterminds.github.io/html5-php",
  3194. "keywords": [
  3195. "HTML5",
  3196. "dom",
  3197. "html",
  3198. "parser",
  3199. "querypath",
  3200. "serializer",
  3201. "xml"
  3202. ],
  3203. "support": {
  3204. "issues": "https://github.com/Masterminds/html5-php/issues",
  3205. "source": "https://github.com/Masterminds/html5-php/tree/2.8.0"
  3206. },
  3207. "time": "2023-04-26T07:27:39+00:00"
  3208. },
  3209. {
  3210. "name": "matomo/device-detector",
  3211. "version": "6.1.3",
  3212. "source": {
  3213. "type": "git",
  3214. "url": "https://github.com/matomo-org/device-detector.git",
  3215. "reference": "3e0fac7e77f3faadc3858fea9f5fa7efeb9cf239"
  3216. },
  3217. "dist": {
  3218. "type": "zip",
  3219. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/3e0fac7e77f3faadc3858fea9f5fa7efeb9cf239",
  3220. "reference": "3e0fac7e77f3faadc3858fea9f5fa7efeb9cf239",
  3221. "shasum": ""
  3222. },
  3223. "require": {
  3224. "mustangostang/spyc": "*",
  3225. "php": "^7.2|^8.0"
  3226. },
  3227. "replace": {
  3228. "piwik/device-detector": "self.version"
  3229. },
  3230. "require-dev": {
  3231. "matthiasmullie/scrapbook": "^1.4.7",
  3232. "mayflower/mo4-coding-standard": "^v8.0.0",
  3233. "phpstan/phpstan": "^0.12.52",
  3234. "phpunit/phpunit": "^8.5.8",
  3235. "psr/cache": "^1.0.1",
  3236. "psr/simple-cache": "^1.0.1",
  3237. "symfony/yaml": "^5.1.7"
  3238. },
  3239. "suggest": {
  3240. "doctrine/cache": "Can directly be used for caching purpose",
  3241. "ext-yaml": "Necessary for using the Pecl YAML parser"
  3242. },
  3243. "type": "library",
  3244. "autoload": {
  3245. "psr-4": {
  3246. "DeviceDetector\\": ""
  3247. },
  3248. "exclude-from-classmap": [
  3249. "Tests/"
  3250. ]
  3251. },
  3252. "notification-url": "https://packagist.org/downloads/",
  3253. "license": [
  3254. "LGPL-3.0-or-later"
  3255. ],
  3256. "authors": [
  3257. {
  3258. "name": "The Matomo Team",
  3259. "email": "hello@matomo.org",
  3260. "homepage": "https://matomo.org/team/"
  3261. }
  3262. ],
  3263. "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.",
  3264. "homepage": "https://matomo.org",
  3265. "keywords": [
  3266. "devicedetection",
  3267. "parser",
  3268. "useragent"
  3269. ],
  3270. "support": {
  3271. "forum": "https://forum.matomo.org/",
  3272. "issues": "https://github.com/matomo-org/device-detector/issues",
  3273. "source": "https://github.com/matomo-org/matomo",
  3274. "wiki": "https://dev.matomo.org/"
  3275. },
  3276. "time": "2023-06-06T11:58:07+00:00"
  3277. },
  3278. {
  3279. "name": "monolog/monolog",
  3280. "version": "3.4.0",
  3281. "source": {
  3282. "type": "git",
  3283. "url": "https://github.com/Seldaek/monolog.git",
  3284. "reference": "e2392369686d420ca32df3803de28b5d6f76867d"
  3285. },
  3286. "dist": {
  3287. "type": "zip",
  3288. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e2392369686d420ca32df3803de28b5d6f76867d",
  3289. "reference": "e2392369686d420ca32df3803de28b5d6f76867d",
  3290. "shasum": ""
  3291. },
  3292. "require": {
  3293. "php": ">=8.1",
  3294. "psr/log": "^2.0 || ^3.0"
  3295. },
  3296. "provide": {
  3297. "psr/log-implementation": "3.0.0"
  3298. },
  3299. "require-dev": {
  3300. "aws/aws-sdk-php": "^3.0",
  3301. "doctrine/couchdb": "~1.0@dev",
  3302. "elasticsearch/elasticsearch": "^7 || ^8",
  3303. "ext-json": "*",
  3304. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  3305. "guzzlehttp/guzzle": "^7.4.5",
  3306. "guzzlehttp/psr7": "^2.2",
  3307. "mongodb/mongodb": "^1.8",
  3308. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3309. "phpstan/phpstan": "^1.9",
  3310. "phpstan/phpstan-deprecation-rules": "^1.0",
  3311. "phpstan/phpstan-strict-rules": "^1.4",
  3312. "phpunit/phpunit": "^10.1",
  3313. "predis/predis": "^1.1 || ^2",
  3314. "ruflin/elastica": "^7",
  3315. "symfony/mailer": "^5.4 || ^6",
  3316. "symfony/mime": "^5.4 || ^6"
  3317. },
  3318. "suggest": {
  3319. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3320. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3321. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3322. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3323. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3324. "ext-mbstring": "Allow to work properly with unicode symbols",
  3325. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3326. "ext-openssl": "Required to send log messages using SSL",
  3327. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3328. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3329. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3330. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3331. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3332. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3333. },
  3334. "type": "library",
  3335. "extra": {
  3336. "branch-alias": {
  3337. "dev-main": "3.x-dev"
  3338. }
  3339. },
  3340. "autoload": {
  3341. "psr-4": {
  3342. "Monolog\\": "src/Monolog"
  3343. }
  3344. },
  3345. "notification-url": "https://packagist.org/downloads/",
  3346. "license": [
  3347. "MIT"
  3348. ],
  3349. "authors": [
  3350. {
  3351. "name": "Jordi Boggiano",
  3352. "email": "j.boggiano@seld.be",
  3353. "homepage": "https://seld.be"
  3354. }
  3355. ],
  3356. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3357. "homepage": "https://github.com/Seldaek/monolog",
  3358. "keywords": [
  3359. "log",
  3360. "logging",
  3361. "psr-3"
  3362. ],
  3363. "support": {
  3364. "issues": "https://github.com/Seldaek/monolog/issues",
  3365. "source": "https://github.com/Seldaek/monolog/tree/3.4.0"
  3366. },
  3367. "funding": [
  3368. {
  3369. "url": "https://github.com/Seldaek",
  3370. "type": "github"
  3371. },
  3372. {
  3373. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3374. "type": "tidelift"
  3375. }
  3376. ],
  3377. "time": "2023-06-21T08:46:11+00:00"
  3378. },
  3379. {
  3380. "name": "mustangostang/spyc",
  3381. "version": "0.6.3",
  3382. "source": {
  3383. "type": "git",
  3384. "url": "git@github.com:mustangostang/spyc.git",
  3385. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  3386. },
  3387. "dist": {
  3388. "type": "zip",
  3389. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  3390. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  3391. "shasum": ""
  3392. },
  3393. "require": {
  3394. "php": ">=5.3.1"
  3395. },
  3396. "require-dev": {
  3397. "phpunit/phpunit": "4.3.*@dev"
  3398. },
  3399. "type": "library",
  3400. "extra": {
  3401. "branch-alias": {
  3402. "dev-master": "0.5.x-dev"
  3403. }
  3404. },
  3405. "autoload": {
  3406. "files": [
  3407. "Spyc.php"
  3408. ]
  3409. },
  3410. "notification-url": "https://packagist.org/downloads/",
  3411. "license": [
  3412. "MIT"
  3413. ],
  3414. "authors": [
  3415. {
  3416. "name": "mustangostang",
  3417. "email": "vlad.andersen@gmail.com"
  3418. }
  3419. ],
  3420. "description": "A simple YAML loader/dumper class for PHP",
  3421. "homepage": "https://github.com/mustangostang/spyc/",
  3422. "keywords": [
  3423. "spyc",
  3424. "yaml",
  3425. "yml"
  3426. ],
  3427. "time": "2019-09-10T13:16:29+00:00"
  3428. },
  3429. {
  3430. "name": "nesbot/carbon",
  3431. "version": "2.68.1",
  3432. "source": {
  3433. "type": "git",
  3434. "url": "https://github.com/briannesbitt/Carbon.git",
  3435. "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da"
  3436. },
  3437. "dist": {
  3438. "type": "zip",
  3439. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4f991ed2a403c85efbc4f23eb4030063fdbe01da",
  3440. "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da",
  3441. "shasum": ""
  3442. },
  3443. "require": {
  3444. "ext-json": "*",
  3445. "php": "^7.1.8 || ^8.0",
  3446. "symfony/polyfill-mbstring": "^1.0",
  3447. "symfony/polyfill-php80": "^1.16",
  3448. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3449. },
  3450. "require-dev": {
  3451. "doctrine/dbal": "^2.0 || ^3.1.4",
  3452. "doctrine/orm": "^2.7",
  3453. "friendsofphp/php-cs-fixer": "^3.0",
  3454. "kylekatarnls/multi-tester": "^2.0",
  3455. "ondrejmirtes/better-reflection": "*",
  3456. "phpmd/phpmd": "^2.9",
  3457. "phpstan/extension-installer": "^1.0",
  3458. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3459. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3460. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3461. "squizlabs/php_codesniffer": "^3.4"
  3462. },
  3463. "bin": [
  3464. "bin/carbon"
  3465. ],
  3466. "type": "library",
  3467. "extra": {
  3468. "branch-alias": {
  3469. "dev-3.x": "3.x-dev",
  3470. "dev-master": "2.x-dev"
  3471. },
  3472. "laravel": {
  3473. "providers": [
  3474. "Carbon\\Laravel\\ServiceProvider"
  3475. ]
  3476. },
  3477. "phpstan": {
  3478. "includes": [
  3479. "extension.neon"
  3480. ]
  3481. }
  3482. },
  3483. "autoload": {
  3484. "psr-4": {
  3485. "Carbon\\": "src/Carbon/"
  3486. }
  3487. },
  3488. "notification-url": "https://packagist.org/downloads/",
  3489. "license": [
  3490. "MIT"
  3491. ],
  3492. "authors": [
  3493. {
  3494. "name": "Brian Nesbitt",
  3495. "email": "brian@nesbot.com",
  3496. "homepage": "https://markido.com"
  3497. },
  3498. {
  3499. "name": "kylekatarnls",
  3500. "homepage": "https://github.com/kylekatarnls"
  3501. }
  3502. ],
  3503. "description": "An API extension for DateTime that supports 281 different languages.",
  3504. "homepage": "https://carbon.nesbot.com",
  3505. "keywords": [
  3506. "date",
  3507. "datetime",
  3508. "time"
  3509. ],
  3510. "support": {
  3511. "docs": "https://carbon.nesbot.com/docs",
  3512. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3513. "source": "https://github.com/briannesbitt/Carbon"
  3514. },
  3515. "funding": [
  3516. {
  3517. "url": "https://github.com/sponsors/kylekatarnls",
  3518. "type": "github"
  3519. },
  3520. {
  3521. "url": "https://opencollective.com/Carbon#sponsor",
  3522. "type": "opencollective"
  3523. },
  3524. {
  3525. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3526. "type": "tidelift"
  3527. }
  3528. ],
  3529. "time": "2023-06-20T18:29:04+00:00"
  3530. },
  3531. {
  3532. "name": "nette/schema",
  3533. "version": "v1.2.3",
  3534. "source": {
  3535. "type": "git",
  3536. "url": "https://github.com/nette/schema.git",
  3537. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  3538. },
  3539. "dist": {
  3540. "type": "zip",
  3541. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  3542. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  3543. "shasum": ""
  3544. },
  3545. "require": {
  3546. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3547. "php": ">=7.1 <8.3"
  3548. },
  3549. "require-dev": {
  3550. "nette/tester": "^2.3 || ^2.4",
  3551. "phpstan/phpstan-nette": "^1.0",
  3552. "tracy/tracy": "^2.7"
  3553. },
  3554. "type": "library",
  3555. "extra": {
  3556. "branch-alias": {
  3557. "dev-master": "1.2-dev"
  3558. }
  3559. },
  3560. "autoload": {
  3561. "classmap": [
  3562. "src/"
  3563. ]
  3564. },
  3565. "notification-url": "https://packagist.org/downloads/",
  3566. "license": [
  3567. "BSD-3-Clause",
  3568. "GPL-2.0-only",
  3569. "GPL-3.0-only"
  3570. ],
  3571. "authors": [
  3572. {
  3573. "name": "David Grudl",
  3574. "homepage": "https://davidgrudl.com"
  3575. },
  3576. {
  3577. "name": "Nette Community",
  3578. "homepage": "https://nette.org/contributors"
  3579. }
  3580. ],
  3581. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3582. "homepage": "https://nette.org",
  3583. "keywords": [
  3584. "config",
  3585. "nette"
  3586. ],
  3587. "support": {
  3588. "issues": "https://github.com/nette/schema/issues",
  3589. "source": "https://github.com/nette/schema/tree/v1.2.3"
  3590. },
  3591. "time": "2022-10-13T01:24:26+00:00"
  3592. },
  3593. {
  3594. "name": "nette/utils",
  3595. "version": "v4.0.0",
  3596. "source": {
  3597. "type": "git",
  3598. "url": "https://github.com/nette/utils.git",
  3599. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
  3600. },
  3601. "dist": {
  3602. "type": "zip",
  3603. "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
  3604. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
  3605. "shasum": ""
  3606. },
  3607. "require": {
  3608. "php": ">=8.0 <8.3"
  3609. },
  3610. "conflict": {
  3611. "nette/finder": "<3",
  3612. "nette/schema": "<1.2.2"
  3613. },
  3614. "require-dev": {
  3615. "jetbrains/phpstorm-attributes": "dev-master",
  3616. "nette/tester": "^2.4",
  3617. "phpstan/phpstan": "^1.0",
  3618. "tracy/tracy": "^2.9"
  3619. },
  3620. "suggest": {
  3621. "ext-gd": "to use Image",
  3622. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3623. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3624. "ext-json": "to use Nette\\Utils\\Json",
  3625. "ext-mbstring": "to use Strings::lower() etc...",
  3626. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3627. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3628. },
  3629. "type": "library",
  3630. "extra": {
  3631. "branch-alias": {
  3632. "dev-master": "4.0-dev"
  3633. }
  3634. },
  3635. "autoload": {
  3636. "classmap": [
  3637. "src/"
  3638. ]
  3639. },
  3640. "notification-url": "https://packagist.org/downloads/",
  3641. "license": [
  3642. "BSD-3-Clause",
  3643. "GPL-2.0-only",
  3644. "GPL-3.0-only"
  3645. ],
  3646. "authors": [
  3647. {
  3648. "name": "David Grudl",
  3649. "homepage": "https://davidgrudl.com"
  3650. },
  3651. {
  3652. "name": "Nette Community",
  3653. "homepage": "https://nette.org/contributors"
  3654. }
  3655. ],
  3656. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3657. "homepage": "https://nette.org",
  3658. "keywords": [
  3659. "array",
  3660. "core",
  3661. "datetime",
  3662. "images",
  3663. "json",
  3664. "nette",
  3665. "paginator",
  3666. "password",
  3667. "slugify",
  3668. "string",
  3669. "unicode",
  3670. "utf-8",
  3671. "utility",
  3672. "validation"
  3673. ],
  3674. "support": {
  3675. "issues": "https://github.com/nette/utils/issues",
  3676. "source": "https://github.com/nette/utils/tree/v4.0.0"
  3677. },
  3678. "time": "2023-02-02T10:41:53+00:00"
  3679. },
  3680. {
  3681. "name": "nikic/php-parser",
  3682. "version": "v4.16.0",
  3683. "source": {
  3684. "type": "git",
  3685. "url": "https://github.com/nikic/PHP-Parser.git",
  3686. "reference": "19526a33fb561ef417e822e85f08a00db4059c17"
  3687. },
  3688. "dist": {
  3689. "type": "zip",
  3690. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/19526a33fb561ef417e822e85f08a00db4059c17",
  3691. "reference": "19526a33fb561ef417e822e85f08a00db4059c17",
  3692. "shasum": ""
  3693. },
  3694. "require": {
  3695. "ext-tokenizer": "*",
  3696. "php": ">=7.0"
  3697. },
  3698. "require-dev": {
  3699. "ircmaxell/php-yacc": "^0.0.7",
  3700. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3701. },
  3702. "bin": [
  3703. "bin/php-parse"
  3704. ],
  3705. "type": "library",
  3706. "extra": {
  3707. "branch-alias": {
  3708. "dev-master": "4.9-dev"
  3709. }
  3710. },
  3711. "autoload": {
  3712. "psr-4": {
  3713. "PhpParser\\": "lib/PhpParser"
  3714. }
  3715. },
  3716. "notification-url": "https://packagist.org/downloads/",
  3717. "license": [
  3718. "BSD-3-Clause"
  3719. ],
  3720. "authors": [
  3721. {
  3722. "name": "Nikita Popov"
  3723. }
  3724. ],
  3725. "description": "A PHP parser written in PHP",
  3726. "keywords": [
  3727. "parser",
  3728. "php"
  3729. ],
  3730. "support": {
  3731. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3732. "source": "https://github.com/nikic/PHP-Parser/tree/v4.16.0"
  3733. },
  3734. "time": "2023-06-25T14:52:30+00:00"
  3735. },
  3736. {
  3737. "name": "nunomaduro/termwind",
  3738. "version": "v1.15.1",
  3739. "source": {
  3740. "type": "git",
  3741. "url": "https://github.com/nunomaduro/termwind.git",
  3742. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  3743. },
  3744. "dist": {
  3745. "type": "zip",
  3746. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3747. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3748. "shasum": ""
  3749. },
  3750. "require": {
  3751. "ext-mbstring": "*",
  3752. "php": "^8.0",
  3753. "symfony/console": "^5.3.0|^6.0.0"
  3754. },
  3755. "require-dev": {
  3756. "ergebnis/phpstan-rules": "^1.0.",
  3757. "illuminate/console": "^8.0|^9.0",
  3758. "illuminate/support": "^8.0|^9.0",
  3759. "laravel/pint": "^1.0.0",
  3760. "pestphp/pest": "^1.21.0",
  3761. "pestphp/pest-plugin-mock": "^1.0",
  3762. "phpstan/phpstan": "^1.4.6",
  3763. "phpstan/phpstan-strict-rules": "^1.1.0",
  3764. "symfony/var-dumper": "^5.2.7|^6.0.0",
  3765. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3766. },
  3767. "type": "library",
  3768. "extra": {
  3769. "laravel": {
  3770. "providers": [
  3771. "Termwind\\Laravel\\TermwindServiceProvider"
  3772. ]
  3773. }
  3774. },
  3775. "autoload": {
  3776. "files": [
  3777. "src/Functions.php"
  3778. ],
  3779. "psr-4": {
  3780. "Termwind\\": "src/"
  3781. }
  3782. },
  3783. "notification-url": "https://packagist.org/downloads/",
  3784. "license": [
  3785. "MIT"
  3786. ],
  3787. "authors": [
  3788. {
  3789. "name": "Nuno Maduro",
  3790. "email": "enunomaduro@gmail.com"
  3791. }
  3792. ],
  3793. "description": "Its like Tailwind CSS, but for the console.",
  3794. "keywords": [
  3795. "cli",
  3796. "console",
  3797. "css",
  3798. "package",
  3799. "php",
  3800. "style"
  3801. ],
  3802. "support": {
  3803. "issues": "https://github.com/nunomaduro/termwind/issues",
  3804. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  3805. },
  3806. "funding": [
  3807. {
  3808. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3809. "type": "custom"
  3810. },
  3811. {
  3812. "url": "https://github.com/nunomaduro",
  3813. "type": "github"
  3814. },
  3815. {
  3816. "url": "https://github.com/xiCO2k",
  3817. "type": "github"
  3818. }
  3819. ],
  3820. "time": "2023-02-08T01:06:31+00:00"
  3821. },
  3822. {
  3823. "name": "paragonie/constant_time_encoding",
  3824. "version": "v2.6.3",
  3825. "source": {
  3826. "type": "git",
  3827. "url": "https://github.com/paragonie/constant_time_encoding.git",
  3828. "reference": "58c3f47f650c94ec05a151692652a868995d2938"
  3829. },
  3830. "dist": {
  3831. "type": "zip",
  3832. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938",
  3833. "reference": "58c3f47f650c94ec05a151692652a868995d2938",
  3834. "shasum": ""
  3835. },
  3836. "require": {
  3837. "php": "^7|^8"
  3838. },
  3839. "require-dev": {
  3840. "phpunit/phpunit": "^6|^7|^8|^9",
  3841. "vimeo/psalm": "^1|^2|^3|^4"
  3842. },
  3843. "type": "library",
  3844. "autoload": {
  3845. "psr-4": {
  3846. "ParagonIE\\ConstantTime\\": "src/"
  3847. }
  3848. },
  3849. "notification-url": "https://packagist.org/downloads/",
  3850. "license": [
  3851. "MIT"
  3852. ],
  3853. "authors": [
  3854. {
  3855. "name": "Paragon Initiative Enterprises",
  3856. "email": "security@paragonie.com",
  3857. "homepage": "https://paragonie.com",
  3858. "role": "Maintainer"
  3859. },
  3860. {
  3861. "name": "Steve 'Sc00bz' Thomas",
  3862. "email": "steve@tobtu.com",
  3863. "homepage": "https://www.tobtu.com",
  3864. "role": "Original Developer"
  3865. }
  3866. ],
  3867. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3868. "keywords": [
  3869. "base16",
  3870. "base32",
  3871. "base32_decode",
  3872. "base32_encode",
  3873. "base64",
  3874. "base64_decode",
  3875. "base64_encode",
  3876. "bin2hex",
  3877. "encoding",
  3878. "hex",
  3879. "hex2bin",
  3880. "rfc4648"
  3881. ],
  3882. "support": {
  3883. "email": "info@paragonie.com",
  3884. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  3885. "source": "https://github.com/paragonie/constant_time_encoding"
  3886. },
  3887. "time": "2022-06-14T06:56:20+00:00"
  3888. },
  3889. {
  3890. "name": "phpoption/phpoption",
  3891. "version": "1.9.1",
  3892. "source": {
  3893. "type": "git",
  3894. "url": "https://github.com/schmittjoh/php-option.git",
  3895. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  3896. },
  3897. "dist": {
  3898. "type": "zip",
  3899. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  3900. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  3901. "shasum": ""
  3902. },
  3903. "require": {
  3904. "php": "^7.2.5 || ^8.0"
  3905. },
  3906. "require-dev": {
  3907. "bamarni/composer-bin-plugin": "^1.8.2",
  3908. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  3909. },
  3910. "type": "library",
  3911. "extra": {
  3912. "bamarni-bin": {
  3913. "bin-links": true,
  3914. "forward-command": true
  3915. },
  3916. "branch-alias": {
  3917. "dev-master": "1.9-dev"
  3918. }
  3919. },
  3920. "autoload": {
  3921. "psr-4": {
  3922. "PhpOption\\": "src/PhpOption/"
  3923. }
  3924. },
  3925. "notification-url": "https://packagist.org/downloads/",
  3926. "license": [
  3927. "Apache-2.0"
  3928. ],
  3929. "authors": [
  3930. {
  3931. "name": "Johannes M. Schmitt",
  3932. "email": "schmittjoh@gmail.com",
  3933. "homepage": "https://github.com/schmittjoh"
  3934. },
  3935. {
  3936. "name": "Graham Campbell",
  3937. "email": "hello@gjcampbell.co.uk",
  3938. "homepage": "https://github.com/GrahamCampbell"
  3939. }
  3940. ],
  3941. "description": "Option Type for PHP",
  3942. "keywords": [
  3943. "language",
  3944. "option",
  3945. "php",
  3946. "type"
  3947. ],
  3948. "support": {
  3949. "issues": "https://github.com/schmittjoh/php-option/issues",
  3950. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  3951. },
  3952. "funding": [
  3953. {
  3954. "url": "https://github.com/GrahamCampbell",
  3955. "type": "github"
  3956. },
  3957. {
  3958. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3959. "type": "tidelift"
  3960. }
  3961. ],
  3962. "time": "2023-02-25T19:38:58+00:00"
  3963. },
  3964. {
  3965. "name": "pragmarx/google2fa",
  3966. "version": "v8.0.1",
  3967. "source": {
  3968. "type": "git",
  3969. "url": "https://github.com/antonioribeiro/google2fa.git",
  3970. "reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3"
  3971. },
  3972. "dist": {
  3973. "type": "zip",
  3974. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/80c3d801b31fe165f8fe99ea085e0a37834e1be3",
  3975. "reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3",
  3976. "shasum": ""
  3977. },
  3978. "require": {
  3979. "paragonie/constant_time_encoding": "^1.0|^2.0",
  3980. "php": "^7.1|^8.0"
  3981. },
  3982. "require-dev": {
  3983. "phpstan/phpstan": "^0.12.18",
  3984. "phpunit/phpunit": "^7.5.15|^8.5|^9.0"
  3985. },
  3986. "type": "library",
  3987. "autoload": {
  3988. "psr-4": {
  3989. "PragmaRX\\Google2FA\\": "src/"
  3990. }
  3991. },
  3992. "notification-url": "https://packagist.org/downloads/",
  3993. "license": [
  3994. "MIT"
  3995. ],
  3996. "authors": [
  3997. {
  3998. "name": "Antonio Carlos Ribeiro",
  3999. "email": "acr@antoniocarlosribeiro.com",
  4000. "role": "Creator & Designer"
  4001. }
  4002. ],
  4003. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  4004. "keywords": [
  4005. "2fa",
  4006. "Authentication",
  4007. "Two Factor Authentication",
  4008. "google2fa"
  4009. ],
  4010. "support": {
  4011. "issues": "https://github.com/antonioribeiro/google2fa/issues",
  4012. "source": "https://github.com/antonioribeiro/google2fa/tree/v8.0.1"
  4013. },
  4014. "time": "2022-06-13T21:57:56+00:00"
  4015. },
  4016. {
  4017. "name": "psr/container",
  4018. "version": "2.0.2",
  4019. "source": {
  4020. "type": "git",
  4021. "url": "https://github.com/php-fig/container.git",
  4022. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4023. },
  4024. "dist": {
  4025. "type": "zip",
  4026. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4027. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4028. "shasum": ""
  4029. },
  4030. "require": {
  4031. "php": ">=7.4.0"
  4032. },
  4033. "type": "library",
  4034. "extra": {
  4035. "branch-alias": {
  4036. "dev-master": "2.0.x-dev"
  4037. }
  4038. },
  4039. "autoload": {
  4040. "psr-4": {
  4041. "Psr\\Container\\": "src/"
  4042. }
  4043. },
  4044. "notification-url": "https://packagist.org/downloads/",
  4045. "license": [
  4046. "MIT"
  4047. ],
  4048. "authors": [
  4049. {
  4050. "name": "PHP-FIG",
  4051. "homepage": "https://www.php-fig.org/"
  4052. }
  4053. ],
  4054. "description": "Common Container Interface (PHP FIG PSR-11)",
  4055. "homepage": "https://github.com/php-fig/container",
  4056. "keywords": [
  4057. "PSR-11",
  4058. "container",
  4059. "container-interface",
  4060. "container-interop",
  4061. "psr"
  4062. ],
  4063. "support": {
  4064. "issues": "https://github.com/php-fig/container/issues",
  4065. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4066. },
  4067. "time": "2021-11-05T16:47:00+00:00"
  4068. },
  4069. {
  4070. "name": "psr/event-dispatcher",
  4071. "version": "1.0.0",
  4072. "source": {
  4073. "type": "git",
  4074. "url": "https://github.com/php-fig/event-dispatcher.git",
  4075. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4076. },
  4077. "dist": {
  4078. "type": "zip",
  4079. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4080. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4081. "shasum": ""
  4082. },
  4083. "require": {
  4084. "php": ">=7.2.0"
  4085. },
  4086. "type": "library",
  4087. "extra": {
  4088. "branch-alias": {
  4089. "dev-master": "1.0.x-dev"
  4090. }
  4091. },
  4092. "autoload": {
  4093. "psr-4": {
  4094. "Psr\\EventDispatcher\\": "src/"
  4095. }
  4096. },
  4097. "notification-url": "https://packagist.org/downloads/",
  4098. "license": [
  4099. "MIT"
  4100. ],
  4101. "authors": [
  4102. {
  4103. "name": "PHP-FIG",
  4104. "homepage": "http://www.php-fig.org/"
  4105. }
  4106. ],
  4107. "description": "Standard interfaces for event handling.",
  4108. "keywords": [
  4109. "events",
  4110. "psr",
  4111. "psr-14"
  4112. ],
  4113. "support": {
  4114. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4115. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4116. },
  4117. "time": "2019-01-08T18:20:26+00:00"
  4118. },
  4119. {
  4120. "name": "psr/http-client",
  4121. "version": "1.0.2",
  4122. "source": {
  4123. "type": "git",
  4124. "url": "https://github.com/php-fig/http-client.git",
  4125. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
  4126. },
  4127. "dist": {
  4128. "type": "zip",
  4129. "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  4130. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  4131. "shasum": ""
  4132. },
  4133. "require": {
  4134. "php": "^7.0 || ^8.0",
  4135. "psr/http-message": "^1.0 || ^2.0"
  4136. },
  4137. "type": "library",
  4138. "extra": {
  4139. "branch-alias": {
  4140. "dev-master": "1.0.x-dev"
  4141. }
  4142. },
  4143. "autoload": {
  4144. "psr-4": {
  4145. "Psr\\Http\\Client\\": "src/"
  4146. }
  4147. },
  4148. "notification-url": "https://packagist.org/downloads/",
  4149. "license": [
  4150. "MIT"
  4151. ],
  4152. "authors": [
  4153. {
  4154. "name": "PHP-FIG",
  4155. "homepage": "https://www.php-fig.org/"
  4156. }
  4157. ],
  4158. "description": "Common interface for HTTP clients",
  4159. "homepage": "https://github.com/php-fig/http-client",
  4160. "keywords": [
  4161. "http",
  4162. "http-client",
  4163. "psr",
  4164. "psr-18"
  4165. ],
  4166. "support": {
  4167. "source": "https://github.com/php-fig/http-client/tree/1.0.2"
  4168. },
  4169. "time": "2023-04-10T20:12:12+00:00"
  4170. },
  4171. {
  4172. "name": "psr/http-factory",
  4173. "version": "1.0.2",
  4174. "source": {
  4175. "type": "git",
  4176. "url": "https://github.com/php-fig/http-factory.git",
  4177. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4178. },
  4179. "dist": {
  4180. "type": "zip",
  4181. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4182. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4183. "shasum": ""
  4184. },
  4185. "require": {
  4186. "php": ">=7.0.0",
  4187. "psr/http-message": "^1.0 || ^2.0"
  4188. },
  4189. "type": "library",
  4190. "extra": {
  4191. "branch-alias": {
  4192. "dev-master": "1.0.x-dev"
  4193. }
  4194. },
  4195. "autoload": {
  4196. "psr-4": {
  4197. "Psr\\Http\\Message\\": "src/"
  4198. }
  4199. },
  4200. "notification-url": "https://packagist.org/downloads/",
  4201. "license": [
  4202. "MIT"
  4203. ],
  4204. "authors": [
  4205. {
  4206. "name": "PHP-FIG",
  4207. "homepage": "https://www.php-fig.org/"
  4208. }
  4209. ],
  4210. "description": "Common interfaces for PSR-7 HTTP message factories",
  4211. "keywords": [
  4212. "factory",
  4213. "http",
  4214. "message",
  4215. "psr",
  4216. "psr-17",
  4217. "psr-7",
  4218. "request",
  4219. "response"
  4220. ],
  4221. "support": {
  4222. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4223. },
  4224. "time": "2023-04-10T20:10:41+00:00"
  4225. },
  4226. {
  4227. "name": "psr/http-message",
  4228. "version": "2.0",
  4229. "source": {
  4230. "type": "git",
  4231. "url": "https://github.com/php-fig/http-message.git",
  4232. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4233. },
  4234. "dist": {
  4235. "type": "zip",
  4236. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4237. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4238. "shasum": ""
  4239. },
  4240. "require": {
  4241. "php": "^7.2 || ^8.0"
  4242. },
  4243. "type": "library",
  4244. "extra": {
  4245. "branch-alias": {
  4246. "dev-master": "2.0.x-dev"
  4247. }
  4248. },
  4249. "autoload": {
  4250. "psr-4": {
  4251. "Psr\\Http\\Message\\": "src/"
  4252. }
  4253. },
  4254. "notification-url": "https://packagist.org/downloads/",
  4255. "license": [
  4256. "MIT"
  4257. ],
  4258. "authors": [
  4259. {
  4260. "name": "PHP-FIG",
  4261. "homepage": "https://www.php-fig.org/"
  4262. }
  4263. ],
  4264. "description": "Common interface for HTTP messages",
  4265. "homepage": "https://github.com/php-fig/http-message",
  4266. "keywords": [
  4267. "http",
  4268. "http-message",
  4269. "psr",
  4270. "psr-7",
  4271. "request",
  4272. "response"
  4273. ],
  4274. "support": {
  4275. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4276. },
  4277. "time": "2023-04-04T09:54:51+00:00"
  4278. },
  4279. {
  4280. "name": "psr/log",
  4281. "version": "3.0.0",
  4282. "source": {
  4283. "type": "git",
  4284. "url": "https://github.com/php-fig/log.git",
  4285. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  4286. },
  4287. "dist": {
  4288. "type": "zip",
  4289. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4290. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4291. "shasum": ""
  4292. },
  4293. "require": {
  4294. "php": ">=8.0.0"
  4295. },
  4296. "type": "library",
  4297. "extra": {
  4298. "branch-alias": {
  4299. "dev-master": "3.x-dev"
  4300. }
  4301. },
  4302. "autoload": {
  4303. "psr-4": {
  4304. "Psr\\Log\\": "src"
  4305. }
  4306. },
  4307. "notification-url": "https://packagist.org/downloads/",
  4308. "license": [
  4309. "MIT"
  4310. ],
  4311. "authors": [
  4312. {
  4313. "name": "PHP-FIG",
  4314. "homepage": "https://www.php-fig.org/"
  4315. }
  4316. ],
  4317. "description": "Common interface for logging libraries",
  4318. "homepage": "https://github.com/php-fig/log",
  4319. "keywords": [
  4320. "log",
  4321. "psr",
  4322. "psr-3"
  4323. ],
  4324. "support": {
  4325. "source": "https://github.com/php-fig/log/tree/3.0.0"
  4326. },
  4327. "time": "2021-07-14T16:46:02+00:00"
  4328. },
  4329. {
  4330. "name": "psr/simple-cache",
  4331. "version": "3.0.0",
  4332. "source": {
  4333. "type": "git",
  4334. "url": "https://github.com/php-fig/simple-cache.git",
  4335. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4336. },
  4337. "dist": {
  4338. "type": "zip",
  4339. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4340. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4341. "shasum": ""
  4342. },
  4343. "require": {
  4344. "php": ">=8.0.0"
  4345. },
  4346. "type": "library",
  4347. "extra": {
  4348. "branch-alias": {
  4349. "dev-master": "3.0.x-dev"
  4350. }
  4351. },
  4352. "autoload": {
  4353. "psr-4": {
  4354. "Psr\\SimpleCache\\": "src/"
  4355. }
  4356. },
  4357. "notification-url": "https://packagist.org/downloads/",
  4358. "license": [
  4359. "MIT"
  4360. ],
  4361. "authors": [
  4362. {
  4363. "name": "PHP-FIG",
  4364. "homepage": "https://www.php-fig.org/"
  4365. }
  4366. ],
  4367. "description": "Common interfaces for simple caching",
  4368. "keywords": [
  4369. "cache",
  4370. "caching",
  4371. "psr",
  4372. "psr-16",
  4373. "simple-cache"
  4374. ],
  4375. "support": {
  4376. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4377. },
  4378. "time": "2021-10-29T13:26:27+00:00"
  4379. },
  4380. {
  4381. "name": "psy/psysh",
  4382. "version": "v0.11.18",
  4383. "source": {
  4384. "type": "git",
  4385. "url": "https://github.com/bobthecow/psysh.git",
  4386. "reference": "4f00ee9e236fa6a48f4560d1300b9c961a70a7ec"
  4387. },
  4388. "dist": {
  4389. "type": "zip",
  4390. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/4f00ee9e236fa6a48f4560d1300b9c961a70a7ec",
  4391. "reference": "4f00ee9e236fa6a48f4560d1300b9c961a70a7ec",
  4392. "shasum": ""
  4393. },
  4394. "require": {
  4395. "ext-json": "*",
  4396. "ext-tokenizer": "*",
  4397. "nikic/php-parser": "^4.0 || ^3.1",
  4398. "php": "^8.0 || ^7.0.8",
  4399. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4400. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4401. },
  4402. "conflict": {
  4403. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4404. },
  4405. "require-dev": {
  4406. "bamarni/composer-bin-plugin": "^1.2"
  4407. },
  4408. "suggest": {
  4409. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4410. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4411. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4412. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4413. },
  4414. "bin": [
  4415. "bin/psysh"
  4416. ],
  4417. "type": "library",
  4418. "extra": {
  4419. "branch-alias": {
  4420. "dev-main": "0.11.x-dev"
  4421. }
  4422. },
  4423. "autoload": {
  4424. "files": [
  4425. "src/functions.php"
  4426. ],
  4427. "psr-4": {
  4428. "Psy\\": "src/"
  4429. }
  4430. },
  4431. "notification-url": "https://packagist.org/downloads/",
  4432. "license": [
  4433. "MIT"
  4434. ],
  4435. "authors": [
  4436. {
  4437. "name": "Justin Hileman",
  4438. "email": "justin@justinhileman.info",
  4439. "homepage": "http://justinhileman.com"
  4440. }
  4441. ],
  4442. "description": "An interactive shell for modern PHP.",
  4443. "homepage": "http://psysh.org",
  4444. "keywords": [
  4445. "REPL",
  4446. "console",
  4447. "interactive",
  4448. "shell"
  4449. ],
  4450. "support": {
  4451. "issues": "https://github.com/bobthecow/psysh/issues",
  4452. "source": "https://github.com/bobthecow/psysh/tree/v0.11.18"
  4453. },
  4454. "time": "2023-05-23T02:31:11+00:00"
  4455. },
  4456. {
  4457. "name": "ralouphie/getallheaders",
  4458. "version": "3.0.3",
  4459. "source": {
  4460. "type": "git",
  4461. "url": "https://github.com/ralouphie/getallheaders.git",
  4462. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4463. },
  4464. "dist": {
  4465. "type": "zip",
  4466. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4467. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4468. "shasum": ""
  4469. },
  4470. "require": {
  4471. "php": ">=5.6"
  4472. },
  4473. "require-dev": {
  4474. "php-coveralls/php-coveralls": "^2.1",
  4475. "phpunit/phpunit": "^5 || ^6.5"
  4476. },
  4477. "type": "library",
  4478. "autoload": {
  4479. "files": [
  4480. "src/getallheaders.php"
  4481. ]
  4482. },
  4483. "notification-url": "https://packagist.org/downloads/",
  4484. "license": [
  4485. "MIT"
  4486. ],
  4487. "authors": [
  4488. {
  4489. "name": "Ralph Khattar",
  4490. "email": "ralph.khattar@gmail.com"
  4491. }
  4492. ],
  4493. "description": "A polyfill for getallheaders.",
  4494. "support": {
  4495. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4496. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4497. },
  4498. "time": "2019-03-08T08:55:37+00:00"
  4499. },
  4500. {
  4501. "name": "ramsey/collection",
  4502. "version": "2.0.0",
  4503. "source": {
  4504. "type": "git",
  4505. "url": "https://github.com/ramsey/collection.git",
  4506. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4507. },
  4508. "dist": {
  4509. "type": "zip",
  4510. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4511. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4512. "shasum": ""
  4513. },
  4514. "require": {
  4515. "php": "^8.1"
  4516. },
  4517. "require-dev": {
  4518. "captainhook/plugin-composer": "^5.3",
  4519. "ergebnis/composer-normalize": "^2.28.3",
  4520. "fakerphp/faker": "^1.21",
  4521. "hamcrest/hamcrest-php": "^2.0",
  4522. "jangregor/phpstan-prophecy": "^1.0",
  4523. "mockery/mockery": "^1.5",
  4524. "php-parallel-lint/php-console-highlighter": "^1.0",
  4525. "php-parallel-lint/php-parallel-lint": "^1.3",
  4526. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4527. "phpspec/prophecy-phpunit": "^2.0",
  4528. "phpstan/extension-installer": "^1.2",
  4529. "phpstan/phpstan": "^1.9",
  4530. "phpstan/phpstan-mockery": "^1.1",
  4531. "phpstan/phpstan-phpunit": "^1.3",
  4532. "phpunit/phpunit": "^9.5",
  4533. "psalm/plugin-mockery": "^1.1",
  4534. "psalm/plugin-phpunit": "^0.18.4",
  4535. "ramsey/coding-standard": "^2.0.3",
  4536. "ramsey/conventional-commits": "^1.3",
  4537. "vimeo/psalm": "^5.4"
  4538. },
  4539. "type": "library",
  4540. "extra": {
  4541. "captainhook": {
  4542. "force-install": true
  4543. },
  4544. "ramsey/conventional-commits": {
  4545. "configFile": "conventional-commits.json"
  4546. }
  4547. },
  4548. "autoload": {
  4549. "psr-4": {
  4550. "Ramsey\\Collection\\": "src/"
  4551. }
  4552. },
  4553. "notification-url": "https://packagist.org/downloads/",
  4554. "license": [
  4555. "MIT"
  4556. ],
  4557. "authors": [
  4558. {
  4559. "name": "Ben Ramsey",
  4560. "email": "ben@benramsey.com",
  4561. "homepage": "https://benramsey.com"
  4562. }
  4563. ],
  4564. "description": "A PHP library for representing and manipulating collections.",
  4565. "keywords": [
  4566. "array",
  4567. "collection",
  4568. "hash",
  4569. "map",
  4570. "queue",
  4571. "set"
  4572. ],
  4573. "support": {
  4574. "issues": "https://github.com/ramsey/collection/issues",
  4575. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4576. },
  4577. "funding": [
  4578. {
  4579. "url": "https://github.com/ramsey",
  4580. "type": "github"
  4581. },
  4582. {
  4583. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4584. "type": "tidelift"
  4585. }
  4586. ],
  4587. "time": "2022-12-31T21:50:55+00:00"
  4588. },
  4589. {
  4590. "name": "ramsey/uuid",
  4591. "version": "4.7.4",
  4592. "source": {
  4593. "type": "git",
  4594. "url": "https://github.com/ramsey/uuid.git",
  4595. "reference": "60a4c63ab724854332900504274f6150ff26d286"
  4596. },
  4597. "dist": {
  4598. "type": "zip",
  4599. "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
  4600. "reference": "60a4c63ab724854332900504274f6150ff26d286",
  4601. "shasum": ""
  4602. },
  4603. "require": {
  4604. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  4605. "ext-json": "*",
  4606. "php": "^8.0",
  4607. "ramsey/collection": "^1.2 || ^2.0"
  4608. },
  4609. "replace": {
  4610. "rhumsaa/uuid": "self.version"
  4611. },
  4612. "require-dev": {
  4613. "captainhook/captainhook": "^5.10",
  4614. "captainhook/plugin-composer": "^5.3",
  4615. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4616. "doctrine/annotations": "^1.8",
  4617. "ergebnis/composer-normalize": "^2.15",
  4618. "mockery/mockery": "^1.3",
  4619. "paragonie/random-lib": "^2",
  4620. "php-mock/php-mock": "^2.2",
  4621. "php-mock/php-mock-mockery": "^1.3",
  4622. "php-parallel-lint/php-parallel-lint": "^1.1",
  4623. "phpbench/phpbench": "^1.0",
  4624. "phpstan/extension-installer": "^1.1",
  4625. "phpstan/phpstan": "^1.8",
  4626. "phpstan/phpstan-mockery": "^1.1",
  4627. "phpstan/phpstan-phpunit": "^1.1",
  4628. "phpunit/phpunit": "^8.5 || ^9",
  4629. "ramsey/composer-repl": "^1.4",
  4630. "slevomat/coding-standard": "^8.4",
  4631. "squizlabs/php_codesniffer": "^3.5",
  4632. "vimeo/psalm": "^4.9"
  4633. },
  4634. "suggest": {
  4635. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4636. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4637. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4638. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4639. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4640. },
  4641. "type": "library",
  4642. "extra": {
  4643. "captainhook": {
  4644. "force-install": true
  4645. }
  4646. },
  4647. "autoload": {
  4648. "files": [
  4649. "src/functions.php"
  4650. ],
  4651. "psr-4": {
  4652. "Ramsey\\Uuid\\": "src/"
  4653. }
  4654. },
  4655. "notification-url": "https://packagist.org/downloads/",
  4656. "license": [
  4657. "MIT"
  4658. ],
  4659. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4660. "keywords": [
  4661. "guid",
  4662. "identifier",
  4663. "uuid"
  4664. ],
  4665. "support": {
  4666. "issues": "https://github.com/ramsey/uuid/issues",
  4667. "source": "https://github.com/ramsey/uuid/tree/4.7.4"
  4668. },
  4669. "funding": [
  4670. {
  4671. "url": "https://github.com/ramsey",
  4672. "type": "github"
  4673. },
  4674. {
  4675. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4676. "type": "tidelift"
  4677. }
  4678. ],
  4679. "time": "2023-04-15T23:01:58+00:00"
  4680. },
  4681. {
  4682. "name": "ryangjchandler/blade-capture-directive",
  4683. "version": "v0.3.0",
  4684. "source": {
  4685. "type": "git",
  4686. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  4687. "reference": "62fd2ecb50b938a46025093bcb64fcaddd531f89"
  4688. },
  4689. "dist": {
  4690. "type": "zip",
  4691. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/62fd2ecb50b938a46025093bcb64fcaddd531f89",
  4692. "reference": "62fd2ecb50b938a46025093bcb64fcaddd531f89",
  4693. "shasum": ""
  4694. },
  4695. "require": {
  4696. "illuminate/contracts": "^9.0|^10.0",
  4697. "php": "^8.0",
  4698. "spatie/laravel-package-tools": "^1.9.2"
  4699. },
  4700. "require-dev": {
  4701. "nunomaduro/collision": "^6.0|^7.0",
  4702. "nunomaduro/larastan": "^2.0",
  4703. "orchestra/testbench": "^7.22|^8.0",
  4704. "pestphp/pest": "^1.21",
  4705. "pestphp/pest-plugin-laravel": "^1.1",
  4706. "phpstan/extension-installer": "^1.1",
  4707. "phpstan/phpstan-deprecation-rules": "^1.0",
  4708. "phpstan/phpstan-phpunit": "^1.0",
  4709. "phpunit/phpunit": "^9.5",
  4710. "spatie/laravel-ray": "^1.26"
  4711. },
  4712. "type": "library",
  4713. "extra": {
  4714. "laravel": {
  4715. "providers": [
  4716. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  4717. ],
  4718. "aliases": {
  4719. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  4720. }
  4721. }
  4722. },
  4723. "autoload": {
  4724. "psr-4": {
  4725. "RyanChandler\\BladeCaptureDirective\\": "src",
  4726. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  4727. }
  4728. },
  4729. "notification-url": "https://packagist.org/downloads/",
  4730. "license": [
  4731. "MIT"
  4732. ],
  4733. "authors": [
  4734. {
  4735. "name": "Ryan Chandler",
  4736. "email": "support@ryangjchandler.co.uk",
  4737. "role": "Developer"
  4738. }
  4739. ],
  4740. "description": "Create inline partials in your Blade templates with ease.",
  4741. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  4742. "keywords": [
  4743. "blade-capture-directive",
  4744. "laravel",
  4745. "ryangjchandler"
  4746. ],
  4747. "support": {
  4748. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  4749. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v0.3.0"
  4750. },
  4751. "funding": [
  4752. {
  4753. "url": "https://github.com/ryangjchandler",
  4754. "type": "github"
  4755. }
  4756. ],
  4757. "time": "2023-02-14T16:54:54+00:00"
  4758. },
  4759. {
  4760. "name": "spatie/eloquent-sortable",
  4761. "version": "4.0.2",
  4762. "source": {
  4763. "type": "git",
  4764. "url": "https://github.com/spatie/eloquent-sortable.git",
  4765. "reference": "74994d10a17d15d2cdb319d6b2ad7cb6fa067c0a"
  4766. },
  4767. "dist": {
  4768. "type": "zip",
  4769. "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/74994d10a17d15d2cdb319d6b2ad7cb6fa067c0a",
  4770. "reference": "74994d10a17d15d2cdb319d6b2ad7cb6fa067c0a",
  4771. "shasum": ""
  4772. },
  4773. "require": {
  4774. "illuminate/database": "^9.0|^10.0",
  4775. "illuminate/support": "^9.0|^10.0",
  4776. "nesbot/carbon": "^2.63",
  4777. "php": "^8.1",
  4778. "spatie/laravel-package-tools": "^1.9"
  4779. },
  4780. "require-dev": {
  4781. "orchestra/testbench": "^7.0|^8.0",
  4782. "phpunit/phpunit": "^9.5"
  4783. },
  4784. "type": "library",
  4785. "extra": {
  4786. "laravel": {
  4787. "providers": [
  4788. "Spatie\\EloquentSortable\\EloquentSortableServiceProvider"
  4789. ]
  4790. }
  4791. },
  4792. "autoload": {
  4793. "psr-4": {
  4794. "Spatie\\EloquentSortable\\": "src/"
  4795. }
  4796. },
  4797. "notification-url": "https://packagist.org/downloads/",
  4798. "license": [
  4799. "MIT"
  4800. ],
  4801. "authors": [
  4802. {
  4803. "name": "Freek Van der Herten",
  4804. "email": "freek@spatie.be"
  4805. }
  4806. ],
  4807. "description": "Sortable behaviour for eloquent models",
  4808. "homepage": "https://github.com/spatie/eloquent-sortable",
  4809. "keywords": [
  4810. "behaviour",
  4811. "eloquent",
  4812. "laravel",
  4813. "model",
  4814. "sort",
  4815. "sortable"
  4816. ],
  4817. "support": {
  4818. "issues": "https://github.com/spatie/eloquent-sortable/issues",
  4819. "source": "https://github.com/spatie/eloquent-sortable/tree/4.0.2"
  4820. },
  4821. "funding": [
  4822. {
  4823. "url": "https://spatie.be/open-source/support-us",
  4824. "type": "custom"
  4825. },
  4826. {
  4827. "url": "https://github.com/spatie",
  4828. "type": "github"
  4829. }
  4830. ],
  4831. "time": "2023-01-23T08:34:14+00:00"
  4832. },
  4833. {
  4834. "name": "spatie/invade",
  4835. "version": "1.1.1",
  4836. "source": {
  4837. "type": "git",
  4838. "url": "https://github.com/spatie/invade.git",
  4839. "reference": "d0a9c895a96152549d478a7e3420e19039eef038"
  4840. },
  4841. "dist": {
  4842. "type": "zip",
  4843. "url": "https://api.github.com/repos/spatie/invade/zipball/d0a9c895a96152549d478a7e3420e19039eef038",
  4844. "reference": "d0a9c895a96152549d478a7e3420e19039eef038",
  4845. "shasum": ""
  4846. },
  4847. "require": {
  4848. "php": "^8.0"
  4849. },
  4850. "require-dev": {
  4851. "pestphp/pest": "^1.20",
  4852. "phpstan/phpstan": "^1.4",
  4853. "spatie/ray": "^1.28"
  4854. },
  4855. "type": "library",
  4856. "extra": {
  4857. "phpstan": {
  4858. "includes": [
  4859. "phpstan-extension.neon"
  4860. ]
  4861. }
  4862. },
  4863. "autoload": {
  4864. "files": [
  4865. "src/functions.php"
  4866. ],
  4867. "psr-4": {
  4868. "Spatie\\Invade\\": "src"
  4869. }
  4870. },
  4871. "notification-url": "https://packagist.org/downloads/",
  4872. "license": [
  4873. "MIT"
  4874. ],
  4875. "authors": [
  4876. {
  4877. "name": "Freek Van der Herten",
  4878. "email": "freek@spatie.be",
  4879. "role": "Developer"
  4880. }
  4881. ],
  4882. "description": "A PHP function to work with private properties and methods",
  4883. "homepage": "https://github.com/spatie/invade",
  4884. "keywords": [
  4885. "invade",
  4886. "spatie"
  4887. ],
  4888. "support": {
  4889. "source": "https://github.com/spatie/invade/tree/1.1.1"
  4890. },
  4891. "funding": [
  4892. {
  4893. "url": "https://github.com/spatie",
  4894. "type": "github"
  4895. }
  4896. ],
  4897. "time": "2022-07-05T09:31:00+00:00"
  4898. },
  4899. {
  4900. "name": "spatie/laravel-package-tools",
  4901. "version": "1.15.0",
  4902. "source": {
  4903. "type": "git",
  4904. "url": "https://github.com/spatie/laravel-package-tools.git",
  4905. "reference": "efab1844b8826443135201c4443690f032c3d533"
  4906. },
  4907. "dist": {
  4908. "type": "zip",
  4909. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/efab1844b8826443135201c4443690f032c3d533",
  4910. "reference": "efab1844b8826443135201c4443690f032c3d533",
  4911. "shasum": ""
  4912. },
  4913. "require": {
  4914. "illuminate/contracts": "^9.28|^10.0",
  4915. "php": "^8.0"
  4916. },
  4917. "require-dev": {
  4918. "mockery/mockery": "^1.5",
  4919. "orchestra/testbench": "^7.7|^8.0",
  4920. "pestphp/pest": "^1.22",
  4921. "phpunit/phpunit": "^9.5.24",
  4922. "spatie/pest-plugin-test-time": "^1.1"
  4923. },
  4924. "type": "library",
  4925. "autoload": {
  4926. "psr-4": {
  4927. "Spatie\\LaravelPackageTools\\": "src"
  4928. }
  4929. },
  4930. "notification-url": "https://packagist.org/downloads/",
  4931. "license": [
  4932. "MIT"
  4933. ],
  4934. "authors": [
  4935. {
  4936. "name": "Freek Van der Herten",
  4937. "email": "freek@spatie.be",
  4938. "role": "Developer"
  4939. }
  4940. ],
  4941. "description": "Tools for creating Laravel packages",
  4942. "homepage": "https://github.com/spatie/laravel-package-tools",
  4943. "keywords": [
  4944. "laravel-package-tools",
  4945. "spatie"
  4946. ],
  4947. "support": {
  4948. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  4949. "source": "https://github.com/spatie/laravel-package-tools/tree/1.15.0"
  4950. },
  4951. "funding": [
  4952. {
  4953. "url": "https://github.com/spatie",
  4954. "type": "github"
  4955. }
  4956. ],
  4957. "time": "2023-04-27T08:09:01+00:00"
  4958. },
  4959. {
  4960. "name": "spatie/laravel-tags",
  4961. "version": "4.4.0",
  4962. "source": {
  4963. "type": "git",
  4964. "url": "https://github.com/spatie/laravel-tags.git",
  4965. "reference": "7cee368fc273f32b140ab7b8b81cd66026f89255"
  4966. },
  4967. "dist": {
  4968. "type": "zip",
  4969. "url": "https://api.github.com/repos/spatie/laravel-tags/zipball/7cee368fc273f32b140ab7b8b81cd66026f89255",
  4970. "reference": "7cee368fc273f32b140ab7b8b81cd66026f89255",
  4971. "shasum": ""
  4972. },
  4973. "require": {
  4974. "laravel/framework": "^8.67|^9.0|^10.0",
  4975. "nesbot/carbon": "^2.63",
  4976. "php": "^8.0",
  4977. "spatie/eloquent-sortable": "^3.10|^4.0",
  4978. "spatie/laravel-package-tools": "^1.4",
  4979. "spatie/laravel-translatable": "^4.6|^5.0|^6.0"
  4980. },
  4981. "require-dev": {
  4982. "orchestra/testbench": "^6.13|^7.0|^8.0",
  4983. "pestphp/pest": "^1.22",
  4984. "phpunit/phpunit": "^9.5.2"
  4985. },
  4986. "type": "library",
  4987. "extra": {
  4988. "laravel": {
  4989. "providers": [
  4990. "Spatie\\Tags\\TagsServiceProvider"
  4991. ]
  4992. }
  4993. },
  4994. "autoload": {
  4995. "psr-4": {
  4996. "Spatie\\Tags\\": "src"
  4997. }
  4998. },
  4999. "notification-url": "https://packagist.org/downloads/",
  5000. "license": [
  5001. "MIT"
  5002. ],
  5003. "authors": [
  5004. {
  5005. "name": "Freek Van der Herten",
  5006. "email": "freek@spatie.be",
  5007. "homepage": "https://spatie.be",
  5008. "role": "Developer"
  5009. }
  5010. ],
  5011. "description": "Add tags and taggable behaviour to your Laravel app",
  5012. "homepage": "https://github.com/spatie/laravel-tags",
  5013. "keywords": [
  5014. "laravel-tags",
  5015. "spatie"
  5016. ],
  5017. "support": {
  5018. "issues": "https://github.com/spatie/laravel-tags/issues",
  5019. "source": "https://github.com/spatie/laravel-tags/tree/4.4.0"
  5020. },
  5021. "funding": [
  5022. {
  5023. "url": "https://github.com/spatie",
  5024. "type": "github"
  5025. }
  5026. ],
  5027. "time": "2023-05-16T15:24:45+00:00"
  5028. },
  5029. {
  5030. "name": "spatie/laravel-translatable",
  5031. "version": "6.5.2",
  5032. "source": {
  5033. "type": "git",
  5034. "url": "https://github.com/spatie/laravel-translatable.git",
  5035. "reference": "29d08d2088bda0d2b05452a348a7af2e81f9c668"
  5036. },
  5037. "dist": {
  5038. "type": "zip",
  5039. "url": "https://api.github.com/repos/spatie/laravel-translatable/zipball/29d08d2088bda0d2b05452a348a7af2e81f9c668",
  5040. "reference": "29d08d2088bda0d2b05452a348a7af2e81f9c668",
  5041. "shasum": ""
  5042. },
  5043. "require": {
  5044. "illuminate/database": "^9.0|^10.0",
  5045. "illuminate/support": "^9.0|^10.0",
  5046. "php": "^8.0",
  5047. "spatie/laravel-package-tools": "^1.11"
  5048. },
  5049. "require-dev": {
  5050. "mockery/mockery": "^1.4",
  5051. "orchestra/testbench": "^7.0|^8.0",
  5052. "pestphp/pest": "^1.20"
  5053. },
  5054. "type": "library",
  5055. "extra": {
  5056. "laravel": {
  5057. "providers": [
  5058. "Spatie\\Translatable\\TranslatableServiceProvider"
  5059. ]
  5060. },
  5061. "aliases": {
  5062. "Translatable": "Spatie\\Translatable\\Facades\\Translatable"
  5063. }
  5064. },
  5065. "autoload": {
  5066. "psr-4": {
  5067. "Spatie\\Translatable\\": "src"
  5068. }
  5069. },
  5070. "notification-url": "https://packagist.org/downloads/",
  5071. "license": [
  5072. "MIT"
  5073. ],
  5074. "authors": [
  5075. {
  5076. "name": "Freek Van der Herten",
  5077. "email": "freek@spatie.be",
  5078. "homepage": "https://spatie.be",
  5079. "role": "Developer"
  5080. },
  5081. {
  5082. "name": "Sebastian De Deyne",
  5083. "email": "sebastian@spatie.be",
  5084. "homepage": "https://spatie.be",
  5085. "role": "Developer"
  5086. }
  5087. ],
  5088. "description": "A trait to make an Eloquent model hold translations",
  5089. "homepage": "https://github.com/spatie/laravel-translatable",
  5090. "keywords": [
  5091. "eloquent",
  5092. "i8n",
  5093. "laravel-translatable",
  5094. "model",
  5095. "multilingual",
  5096. "spatie",
  5097. "translate"
  5098. ],
  5099. "support": {
  5100. "issues": "https://github.com/spatie/laravel-translatable/issues",
  5101. "source": "https://github.com/spatie/laravel-translatable/tree/6.5.2"
  5102. },
  5103. "funding": [
  5104. {
  5105. "url": "https://github.com/spatie",
  5106. "type": "github"
  5107. }
  5108. ],
  5109. "time": "2023-06-20T18:08:15+00:00"
  5110. },
  5111. {
  5112. "name": "squirephp/countries",
  5113. "version": "v3.4.1",
  5114. "source": {
  5115. "type": "git",
  5116. "url": "https://github.com/squirephp/countries.git",
  5117. "reference": "7dd92f46dc67ef0c03da4171f7d987f1886074a6"
  5118. },
  5119. "dist": {
  5120. "type": "zip",
  5121. "url": "https://api.github.com/repos/squirephp/countries/zipball/7dd92f46dc67ef0c03da4171f7d987f1886074a6",
  5122. "reference": "7dd92f46dc67ef0c03da4171f7d987f1886074a6",
  5123. "shasum": ""
  5124. },
  5125. "require": {
  5126. "illuminate/support": "^8.0|^9.0|^10.0",
  5127. "php": "^8.0",
  5128. "squirephp/model": "self.version",
  5129. "squirephp/rule": "self.version"
  5130. },
  5131. "type": "library",
  5132. "extra": {
  5133. "laravel": {
  5134. "providers": [
  5135. "Squire\\CountriesServiceProvider"
  5136. ]
  5137. }
  5138. },
  5139. "autoload": {
  5140. "psr-4": {
  5141. "Squire\\": "src"
  5142. }
  5143. },
  5144. "notification-url": "https://packagist.org/downloads/",
  5145. "license": [
  5146. "MIT"
  5147. ],
  5148. "authors": [
  5149. {
  5150. "name": "Dan Harrin",
  5151. "email": "dan@danharrin.com"
  5152. }
  5153. ],
  5154. "description": "A library containing Squire's Country model.",
  5155. "homepage": "https://github.com/squirephp",
  5156. "keywords": [
  5157. "squire"
  5158. ],
  5159. "support": {
  5160. "issues": "https://github.com/squirephp/squire/issues",
  5161. "source": "https://github.com/squirephp/squire"
  5162. },
  5163. "time": "2023-02-18T12:44:15+00:00"
  5164. },
  5165. {
  5166. "name": "squirephp/countries-en",
  5167. "version": "v3.4.1",
  5168. "source": {
  5169. "type": "git",
  5170. "url": "https://github.com/squirephp/countries-en.git",
  5171. "reference": "831f343a2ee484aaa8b9b659c0915df46c887d3c"
  5172. },
  5173. "dist": {
  5174. "type": "zip",
  5175. "url": "https://api.github.com/repos/squirephp/countries-en/zipball/831f343a2ee484aaa8b9b659c0915df46c887d3c",
  5176. "reference": "831f343a2ee484aaa8b9b659c0915df46c887d3c",
  5177. "shasum": ""
  5178. },
  5179. "require": {
  5180. "illuminate/support": "^8.0|^9.0|^10.0",
  5181. "php": "^8.0",
  5182. "squirephp/countries": "self.version",
  5183. "squirephp/repository": "self.version"
  5184. },
  5185. "type": "library",
  5186. "extra": {
  5187. "laravel": {
  5188. "providers": [
  5189. "Squire\\CountriesEnServiceProvider"
  5190. ]
  5191. }
  5192. },
  5193. "autoload": {
  5194. "psr-4": {
  5195. "Squire\\": "src"
  5196. }
  5197. },
  5198. "notification-url": "https://packagist.org/downloads/",
  5199. "license": [
  5200. "MIT"
  5201. ],
  5202. "authors": [
  5203. {
  5204. "name": "Dan Harrin",
  5205. "email": "dan@danharrin.com"
  5206. }
  5207. ],
  5208. "description": "A library containing the English translation of Squire's Country model.",
  5209. "homepage": "https://github.com/squirephp",
  5210. "keywords": [
  5211. "squire"
  5212. ],
  5213. "support": {
  5214. "issues": "https://github.com/squirephp/squire/issues",
  5215. "source": "https://github.com/squirephp/squire"
  5216. },
  5217. "time": "2023-02-18T12:44:18+00:00"
  5218. },
  5219. {
  5220. "name": "squirephp/model",
  5221. "version": "v3.4.1",
  5222. "source": {
  5223. "type": "git",
  5224. "url": "https://github.com/squirephp/model.git",
  5225. "reference": "dbd3cd2fb74c36f6aabd9294de40a8f64c82518d"
  5226. },
  5227. "dist": {
  5228. "type": "zip",
  5229. "url": "https://api.github.com/repos/squirephp/model/zipball/dbd3cd2fb74c36f6aabd9294de40a8f64c82518d",
  5230. "reference": "dbd3cd2fb74c36f6aabd9294de40a8f64c82518d",
  5231. "shasum": ""
  5232. },
  5233. "require": {
  5234. "ext-pdo_sqlite": "*",
  5235. "illuminate/database": "^8.40|^9.0|^10.0",
  5236. "illuminate/support": "^8.0|^9.0|^10.0",
  5237. "php": "^8.0"
  5238. },
  5239. "type": "library",
  5240. "extra": {
  5241. "laravel": {
  5242. "providers": [
  5243. "Squire\\ModelServiceProvider"
  5244. ]
  5245. }
  5246. },
  5247. "autoload": {
  5248. "psr-4": {
  5249. "Squire\\": "src"
  5250. }
  5251. },
  5252. "notification-url": "https://packagist.org/downloads/",
  5253. "license": [
  5254. "MIT"
  5255. ],
  5256. "authors": [
  5257. {
  5258. "name": "Dan Harrin",
  5259. "email": "dan@danharrin.com"
  5260. }
  5261. ],
  5262. "description": "A library containing the base Squire model class.",
  5263. "homepage": "https://github.com/squirephp",
  5264. "keywords": [
  5265. "squire"
  5266. ],
  5267. "support": {
  5268. "issues": "https://github.com/squirephp/squire/issues",
  5269. "source": "https://github.com/squirephp/squire"
  5270. },
  5271. "time": "2023-02-18T12:44:15+00:00"
  5272. },
  5273. {
  5274. "name": "squirephp/regions",
  5275. "version": "v3.4.1",
  5276. "source": {
  5277. "type": "git",
  5278. "url": "https://github.com/squirephp/regions.git",
  5279. "reference": "c28f9e9d124453020130df27df6933000c8c2b42"
  5280. },
  5281. "dist": {
  5282. "type": "zip",
  5283. "url": "https://api.github.com/repos/squirephp/regions/zipball/c28f9e9d124453020130df27df6933000c8c2b42",
  5284. "reference": "c28f9e9d124453020130df27df6933000c8c2b42",
  5285. "shasum": ""
  5286. },
  5287. "require": {
  5288. "illuminate/support": "^8.0|^9.0|^10.0",
  5289. "php": "^8.0",
  5290. "squirephp/model": "self.version",
  5291. "squirephp/rule": "self.version"
  5292. },
  5293. "type": "library",
  5294. "extra": {
  5295. "laravel": {
  5296. "providers": [
  5297. "Squire\\RegionsServiceProvider"
  5298. ]
  5299. }
  5300. },
  5301. "autoload": {
  5302. "psr-4": {
  5303. "Squire\\": "src"
  5304. }
  5305. },
  5306. "notification-url": "https://packagist.org/downloads/",
  5307. "license": [
  5308. "MIT"
  5309. ],
  5310. "authors": [
  5311. {
  5312. "name": "Dan Harrin",
  5313. "email": "dan@danharrin.com"
  5314. }
  5315. ],
  5316. "description": "A library containing Squire's Region model.",
  5317. "homepage": "https://github.com/squirephp",
  5318. "keywords": [
  5319. "squire"
  5320. ],
  5321. "support": {
  5322. "issues": "https://github.com/squirephp/squire/issues",
  5323. "source": "https://github.com/squirephp/squire"
  5324. },
  5325. "time": "2023-02-18T12:44:18+00:00"
  5326. },
  5327. {
  5328. "name": "squirephp/regions-en",
  5329. "version": "v3.4.1",
  5330. "source": {
  5331. "type": "git",
  5332. "url": "https://github.com/squirephp/regions-en.git",
  5333. "reference": "c3dd19c5791c976d141111d065c5e857d34e31ff"
  5334. },
  5335. "dist": {
  5336. "type": "zip",
  5337. "url": "https://api.github.com/repos/squirephp/regions-en/zipball/c3dd19c5791c976d141111d065c5e857d34e31ff",
  5338. "reference": "c3dd19c5791c976d141111d065c5e857d34e31ff",
  5339. "shasum": ""
  5340. },
  5341. "require": {
  5342. "illuminate/support": "^8.0|^9.0|^10.0",
  5343. "php": "^8.0",
  5344. "squirephp/regions": "self.version",
  5345. "squirephp/repository": "self.version"
  5346. },
  5347. "type": "library",
  5348. "extra": {
  5349. "laravel": {
  5350. "providers": [
  5351. "Squire\\RegionsEnServiceProvider"
  5352. ]
  5353. }
  5354. },
  5355. "autoload": {
  5356. "psr-4": {
  5357. "Squire\\": "src"
  5358. }
  5359. },
  5360. "notification-url": "https://packagist.org/downloads/",
  5361. "license": [
  5362. "MIT"
  5363. ],
  5364. "authors": [
  5365. {
  5366. "name": "Dan Harrin",
  5367. "email": "dan@danharrin.com"
  5368. }
  5369. ],
  5370. "description": "A library containing the English translation of Squire's Region model.",
  5371. "homepage": "https://github.com/squirephp",
  5372. "keywords": [
  5373. "squire"
  5374. ],
  5375. "support": {
  5376. "issues": "https://github.com/squirephp/squire/issues",
  5377. "source": "https://github.com/squirephp/squire"
  5378. },
  5379. "time": "2023-02-18T12:44:35+00:00"
  5380. },
  5381. {
  5382. "name": "squirephp/repository",
  5383. "version": "v3.4.1",
  5384. "source": {
  5385. "type": "git",
  5386. "url": "https://github.com/squirephp/repository.git",
  5387. "reference": "dffe543ee093cdad29c776ae901eb5aa43ac371a"
  5388. },
  5389. "dist": {
  5390. "type": "zip",
  5391. "url": "https://api.github.com/repos/squirephp/repository/zipball/dffe543ee093cdad29c776ae901eb5aa43ac371a",
  5392. "reference": "dffe543ee093cdad29c776ae901eb5aa43ac371a",
  5393. "shasum": ""
  5394. },
  5395. "require": {
  5396. "illuminate/support": "^8.0|^9.0|^10.0",
  5397. "php": "^8.0"
  5398. },
  5399. "type": "library",
  5400. "extra": {
  5401. "laravel": {
  5402. "providers": [
  5403. "Squire\\RepositoryServiceProvider"
  5404. ],
  5405. "aliases": {
  5406. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  5407. }
  5408. }
  5409. },
  5410. "autoload": {
  5411. "psr-4": {
  5412. "Squire\\": "src"
  5413. }
  5414. },
  5415. "notification-url": "https://packagist.org/downloads/",
  5416. "license": [
  5417. "MIT"
  5418. ],
  5419. "authors": [
  5420. {
  5421. "name": "Dan Harrin",
  5422. "email": "dan@danharrin.com"
  5423. }
  5424. ],
  5425. "description": "A library containing the Squire repository.",
  5426. "homepage": "https://github.com/squirephp",
  5427. "keywords": [
  5428. "squire"
  5429. ],
  5430. "support": {
  5431. "issues": "https://github.com/squirephp/squire/issues",
  5432. "source": "https://github.com/squirephp/squire"
  5433. },
  5434. "time": "2023-02-18T12:44:39+00:00"
  5435. },
  5436. {
  5437. "name": "squirephp/rule",
  5438. "version": "v3.4.1",
  5439. "source": {
  5440. "type": "git",
  5441. "url": "https://github.com/squirephp/rule.git",
  5442. "reference": "2a3d11385140e325dcfbcf48c864e1a02fa0c342"
  5443. },
  5444. "dist": {
  5445. "type": "zip",
  5446. "url": "https://api.github.com/repos/squirephp/rule/zipball/2a3d11385140e325dcfbcf48c864e1a02fa0c342",
  5447. "reference": "2a3d11385140e325dcfbcf48c864e1a02fa0c342",
  5448. "shasum": ""
  5449. },
  5450. "require": {
  5451. "illuminate/contracts": "^8.0|^9.0|^10.0",
  5452. "illuminate/database": "^8.40|^9.0|^10.0",
  5453. "illuminate/support": "^8.0|^9.0|^10.0",
  5454. "php": "^8.0"
  5455. },
  5456. "type": "library",
  5457. "autoload": {
  5458. "psr-4": {
  5459. "Squire\\": "src"
  5460. }
  5461. },
  5462. "notification-url": "https://packagist.org/downloads/",
  5463. "license": [
  5464. "MIT"
  5465. ],
  5466. "authors": [
  5467. {
  5468. "name": "Dan Harrin",
  5469. "email": "dan@danharrin.com"
  5470. }
  5471. ],
  5472. "description": "A library containing the base Squire rule class.",
  5473. "homepage": "https://github.com/squirephp",
  5474. "keywords": [
  5475. "squire"
  5476. ],
  5477. "support": {
  5478. "issues": "https://github.com/squirephp/squire/issues",
  5479. "source": "https://github.com/squirephp/squire"
  5480. },
  5481. "time": "2023-02-18T12:44:38+00:00"
  5482. },
  5483. {
  5484. "name": "symfony/console",
  5485. "version": "v6.3.0",
  5486. "source": {
  5487. "type": "git",
  5488. "url": "https://github.com/symfony/console.git",
  5489. "reference": "8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7"
  5490. },
  5491. "dist": {
  5492. "type": "zip",
  5493. "url": "https://api.github.com/repos/symfony/console/zipball/8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7",
  5494. "reference": "8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7",
  5495. "shasum": ""
  5496. },
  5497. "require": {
  5498. "php": ">=8.1",
  5499. "symfony/deprecation-contracts": "^2.5|^3",
  5500. "symfony/polyfill-mbstring": "~1.0",
  5501. "symfony/service-contracts": "^2.5|^3",
  5502. "symfony/string": "^5.4|^6.0"
  5503. },
  5504. "conflict": {
  5505. "symfony/dependency-injection": "<5.4",
  5506. "symfony/dotenv": "<5.4",
  5507. "symfony/event-dispatcher": "<5.4",
  5508. "symfony/lock": "<5.4",
  5509. "symfony/process": "<5.4"
  5510. },
  5511. "provide": {
  5512. "psr/log-implementation": "1.0|2.0|3.0"
  5513. },
  5514. "require-dev": {
  5515. "psr/log": "^1|^2|^3",
  5516. "symfony/config": "^5.4|^6.0",
  5517. "symfony/dependency-injection": "^5.4|^6.0",
  5518. "symfony/event-dispatcher": "^5.4|^6.0",
  5519. "symfony/lock": "^5.4|^6.0",
  5520. "symfony/process": "^5.4|^6.0",
  5521. "symfony/var-dumper": "^5.4|^6.0"
  5522. },
  5523. "type": "library",
  5524. "autoload": {
  5525. "psr-4": {
  5526. "Symfony\\Component\\Console\\": ""
  5527. },
  5528. "exclude-from-classmap": [
  5529. "/Tests/"
  5530. ]
  5531. },
  5532. "notification-url": "https://packagist.org/downloads/",
  5533. "license": [
  5534. "MIT"
  5535. ],
  5536. "authors": [
  5537. {
  5538. "name": "Fabien Potencier",
  5539. "email": "fabien@symfony.com"
  5540. },
  5541. {
  5542. "name": "Symfony Community",
  5543. "homepage": "https://symfony.com/contributors"
  5544. }
  5545. ],
  5546. "description": "Eases the creation of beautiful and testable command line interfaces",
  5547. "homepage": "https://symfony.com",
  5548. "keywords": [
  5549. "cli",
  5550. "command-line",
  5551. "console",
  5552. "terminal"
  5553. ],
  5554. "support": {
  5555. "source": "https://github.com/symfony/console/tree/v6.3.0"
  5556. },
  5557. "funding": [
  5558. {
  5559. "url": "https://symfony.com/sponsor",
  5560. "type": "custom"
  5561. },
  5562. {
  5563. "url": "https://github.com/fabpot",
  5564. "type": "github"
  5565. },
  5566. {
  5567. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5568. "type": "tidelift"
  5569. }
  5570. ],
  5571. "time": "2023-05-29T12:49:39+00:00"
  5572. },
  5573. {
  5574. "name": "symfony/css-selector",
  5575. "version": "v6.3.0",
  5576. "source": {
  5577. "type": "git",
  5578. "url": "https://github.com/symfony/css-selector.git",
  5579. "reference": "88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf"
  5580. },
  5581. "dist": {
  5582. "type": "zip",
  5583. "url": "https://api.github.com/repos/symfony/css-selector/zipball/88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf",
  5584. "reference": "88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf",
  5585. "shasum": ""
  5586. },
  5587. "require": {
  5588. "php": ">=8.1"
  5589. },
  5590. "type": "library",
  5591. "autoload": {
  5592. "psr-4": {
  5593. "Symfony\\Component\\CssSelector\\": ""
  5594. },
  5595. "exclude-from-classmap": [
  5596. "/Tests/"
  5597. ]
  5598. },
  5599. "notification-url": "https://packagist.org/downloads/",
  5600. "license": [
  5601. "MIT"
  5602. ],
  5603. "authors": [
  5604. {
  5605. "name": "Fabien Potencier",
  5606. "email": "fabien@symfony.com"
  5607. },
  5608. {
  5609. "name": "Jean-François Simon",
  5610. "email": "jeanfrancois.simon@sensiolabs.com"
  5611. },
  5612. {
  5613. "name": "Symfony Community",
  5614. "homepage": "https://symfony.com/contributors"
  5615. }
  5616. ],
  5617. "description": "Converts CSS selectors to XPath expressions",
  5618. "homepage": "https://symfony.com",
  5619. "support": {
  5620. "source": "https://github.com/symfony/css-selector/tree/v6.3.0"
  5621. },
  5622. "funding": [
  5623. {
  5624. "url": "https://symfony.com/sponsor",
  5625. "type": "custom"
  5626. },
  5627. {
  5628. "url": "https://github.com/fabpot",
  5629. "type": "github"
  5630. },
  5631. {
  5632. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5633. "type": "tidelift"
  5634. }
  5635. ],
  5636. "time": "2023-03-20T16:43:42+00:00"
  5637. },
  5638. {
  5639. "name": "symfony/deprecation-contracts",
  5640. "version": "v3.3.0",
  5641. "source": {
  5642. "type": "git",
  5643. "url": "https://github.com/symfony/deprecation-contracts.git",
  5644. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  5645. },
  5646. "dist": {
  5647. "type": "zip",
  5648. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  5649. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  5650. "shasum": ""
  5651. },
  5652. "require": {
  5653. "php": ">=8.1"
  5654. },
  5655. "type": "library",
  5656. "extra": {
  5657. "branch-alias": {
  5658. "dev-main": "3.4-dev"
  5659. },
  5660. "thanks": {
  5661. "name": "symfony/contracts",
  5662. "url": "https://github.com/symfony/contracts"
  5663. }
  5664. },
  5665. "autoload": {
  5666. "files": [
  5667. "function.php"
  5668. ]
  5669. },
  5670. "notification-url": "https://packagist.org/downloads/",
  5671. "license": [
  5672. "MIT"
  5673. ],
  5674. "authors": [
  5675. {
  5676. "name": "Nicolas Grekas",
  5677. "email": "p@tchwork.com"
  5678. },
  5679. {
  5680. "name": "Symfony Community",
  5681. "homepage": "https://symfony.com/contributors"
  5682. }
  5683. ],
  5684. "description": "A generic function and convention to trigger deprecation notices",
  5685. "homepage": "https://symfony.com",
  5686. "support": {
  5687. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  5688. },
  5689. "funding": [
  5690. {
  5691. "url": "https://symfony.com/sponsor",
  5692. "type": "custom"
  5693. },
  5694. {
  5695. "url": "https://github.com/fabpot",
  5696. "type": "github"
  5697. },
  5698. {
  5699. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5700. "type": "tidelift"
  5701. }
  5702. ],
  5703. "time": "2023-05-23T14:45:45+00:00"
  5704. },
  5705. {
  5706. "name": "symfony/error-handler",
  5707. "version": "v6.3.0",
  5708. "source": {
  5709. "type": "git",
  5710. "url": "https://github.com/symfony/error-handler.git",
  5711. "reference": "99d2d814a6351461af350ead4d963bd67451236f"
  5712. },
  5713. "dist": {
  5714. "type": "zip",
  5715. "url": "https://api.github.com/repos/symfony/error-handler/zipball/99d2d814a6351461af350ead4d963bd67451236f",
  5716. "reference": "99d2d814a6351461af350ead4d963bd67451236f",
  5717. "shasum": ""
  5718. },
  5719. "require": {
  5720. "php": ">=8.1",
  5721. "psr/log": "^1|^2|^3",
  5722. "symfony/var-dumper": "^5.4|^6.0"
  5723. },
  5724. "conflict": {
  5725. "symfony/deprecation-contracts": "<2.5"
  5726. },
  5727. "require-dev": {
  5728. "symfony/deprecation-contracts": "^2.5|^3",
  5729. "symfony/http-kernel": "^5.4|^6.0",
  5730. "symfony/serializer": "^5.4|^6.0"
  5731. },
  5732. "bin": [
  5733. "Resources/bin/patch-type-declarations"
  5734. ],
  5735. "type": "library",
  5736. "autoload": {
  5737. "psr-4": {
  5738. "Symfony\\Component\\ErrorHandler\\": ""
  5739. },
  5740. "exclude-from-classmap": [
  5741. "/Tests/"
  5742. ]
  5743. },
  5744. "notification-url": "https://packagist.org/downloads/",
  5745. "license": [
  5746. "MIT"
  5747. ],
  5748. "authors": [
  5749. {
  5750. "name": "Fabien Potencier",
  5751. "email": "fabien@symfony.com"
  5752. },
  5753. {
  5754. "name": "Symfony Community",
  5755. "homepage": "https://symfony.com/contributors"
  5756. }
  5757. ],
  5758. "description": "Provides tools to manage errors and ease debugging PHP code",
  5759. "homepage": "https://symfony.com",
  5760. "support": {
  5761. "source": "https://github.com/symfony/error-handler/tree/v6.3.0"
  5762. },
  5763. "funding": [
  5764. {
  5765. "url": "https://symfony.com/sponsor",
  5766. "type": "custom"
  5767. },
  5768. {
  5769. "url": "https://github.com/fabpot",
  5770. "type": "github"
  5771. },
  5772. {
  5773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5774. "type": "tidelift"
  5775. }
  5776. ],
  5777. "time": "2023-05-10T12:03:13+00:00"
  5778. },
  5779. {
  5780. "name": "symfony/event-dispatcher",
  5781. "version": "v6.3.0",
  5782. "source": {
  5783. "type": "git",
  5784. "url": "https://github.com/symfony/event-dispatcher.git",
  5785. "reference": "3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa"
  5786. },
  5787. "dist": {
  5788. "type": "zip",
  5789. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa",
  5790. "reference": "3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa",
  5791. "shasum": ""
  5792. },
  5793. "require": {
  5794. "php": ">=8.1",
  5795. "symfony/event-dispatcher-contracts": "^2.5|^3"
  5796. },
  5797. "conflict": {
  5798. "symfony/dependency-injection": "<5.4",
  5799. "symfony/service-contracts": "<2.5"
  5800. },
  5801. "provide": {
  5802. "psr/event-dispatcher-implementation": "1.0",
  5803. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5804. },
  5805. "require-dev": {
  5806. "psr/log": "^1|^2|^3",
  5807. "symfony/config": "^5.4|^6.0",
  5808. "symfony/dependency-injection": "^5.4|^6.0",
  5809. "symfony/error-handler": "^5.4|^6.0",
  5810. "symfony/expression-language": "^5.4|^6.0",
  5811. "symfony/http-foundation": "^5.4|^6.0",
  5812. "symfony/service-contracts": "^2.5|^3",
  5813. "symfony/stopwatch": "^5.4|^6.0"
  5814. },
  5815. "type": "library",
  5816. "autoload": {
  5817. "psr-4": {
  5818. "Symfony\\Component\\EventDispatcher\\": ""
  5819. },
  5820. "exclude-from-classmap": [
  5821. "/Tests/"
  5822. ]
  5823. },
  5824. "notification-url": "https://packagist.org/downloads/",
  5825. "license": [
  5826. "MIT"
  5827. ],
  5828. "authors": [
  5829. {
  5830. "name": "Fabien Potencier",
  5831. "email": "fabien@symfony.com"
  5832. },
  5833. {
  5834. "name": "Symfony Community",
  5835. "homepage": "https://symfony.com/contributors"
  5836. }
  5837. ],
  5838. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5839. "homepage": "https://symfony.com",
  5840. "support": {
  5841. "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.0"
  5842. },
  5843. "funding": [
  5844. {
  5845. "url": "https://symfony.com/sponsor",
  5846. "type": "custom"
  5847. },
  5848. {
  5849. "url": "https://github.com/fabpot",
  5850. "type": "github"
  5851. },
  5852. {
  5853. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5854. "type": "tidelift"
  5855. }
  5856. ],
  5857. "time": "2023-04-21T14:41:17+00:00"
  5858. },
  5859. {
  5860. "name": "symfony/event-dispatcher-contracts",
  5861. "version": "v3.3.0",
  5862. "source": {
  5863. "type": "git",
  5864. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5865. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  5866. },
  5867. "dist": {
  5868. "type": "zip",
  5869. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  5870. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  5871. "shasum": ""
  5872. },
  5873. "require": {
  5874. "php": ">=8.1",
  5875. "psr/event-dispatcher": "^1"
  5876. },
  5877. "type": "library",
  5878. "extra": {
  5879. "branch-alias": {
  5880. "dev-main": "3.4-dev"
  5881. },
  5882. "thanks": {
  5883. "name": "symfony/contracts",
  5884. "url": "https://github.com/symfony/contracts"
  5885. }
  5886. },
  5887. "autoload": {
  5888. "psr-4": {
  5889. "Symfony\\Contracts\\EventDispatcher\\": ""
  5890. }
  5891. },
  5892. "notification-url": "https://packagist.org/downloads/",
  5893. "license": [
  5894. "MIT"
  5895. ],
  5896. "authors": [
  5897. {
  5898. "name": "Nicolas Grekas",
  5899. "email": "p@tchwork.com"
  5900. },
  5901. {
  5902. "name": "Symfony Community",
  5903. "homepage": "https://symfony.com/contributors"
  5904. }
  5905. ],
  5906. "description": "Generic abstractions related to dispatching event",
  5907. "homepage": "https://symfony.com",
  5908. "keywords": [
  5909. "abstractions",
  5910. "contracts",
  5911. "decoupling",
  5912. "interfaces",
  5913. "interoperability",
  5914. "standards"
  5915. ],
  5916. "support": {
  5917. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
  5918. },
  5919. "funding": [
  5920. {
  5921. "url": "https://symfony.com/sponsor",
  5922. "type": "custom"
  5923. },
  5924. {
  5925. "url": "https://github.com/fabpot",
  5926. "type": "github"
  5927. },
  5928. {
  5929. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5930. "type": "tidelift"
  5931. }
  5932. ],
  5933. "time": "2023-05-23T14:45:45+00:00"
  5934. },
  5935. {
  5936. "name": "symfony/finder",
  5937. "version": "v6.3.0",
  5938. "source": {
  5939. "type": "git",
  5940. "url": "https://github.com/symfony/finder.git",
  5941. "reference": "d9b01ba073c44cef617c7907ce2419f8d00d75e2"
  5942. },
  5943. "dist": {
  5944. "type": "zip",
  5945. "url": "https://api.github.com/repos/symfony/finder/zipball/d9b01ba073c44cef617c7907ce2419f8d00d75e2",
  5946. "reference": "d9b01ba073c44cef617c7907ce2419f8d00d75e2",
  5947. "shasum": ""
  5948. },
  5949. "require": {
  5950. "php": ">=8.1"
  5951. },
  5952. "require-dev": {
  5953. "symfony/filesystem": "^6.0"
  5954. },
  5955. "type": "library",
  5956. "autoload": {
  5957. "psr-4": {
  5958. "Symfony\\Component\\Finder\\": ""
  5959. },
  5960. "exclude-from-classmap": [
  5961. "/Tests/"
  5962. ]
  5963. },
  5964. "notification-url": "https://packagist.org/downloads/",
  5965. "license": [
  5966. "MIT"
  5967. ],
  5968. "authors": [
  5969. {
  5970. "name": "Fabien Potencier",
  5971. "email": "fabien@symfony.com"
  5972. },
  5973. {
  5974. "name": "Symfony Community",
  5975. "homepage": "https://symfony.com/contributors"
  5976. }
  5977. ],
  5978. "description": "Finds files and directories via an intuitive fluent interface",
  5979. "homepage": "https://symfony.com",
  5980. "support": {
  5981. "source": "https://github.com/symfony/finder/tree/v6.3.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": "2023-04-02T01:25:41+00:00"
  5998. },
  5999. {
  6000. "name": "symfony/http-foundation",
  6001. "version": "v6.3.1",
  6002. "source": {
  6003. "type": "git",
  6004. "url": "https://github.com/symfony/http-foundation.git",
  6005. "reference": "e0ad0d153e1c20069250986cd9e9dd1ccebb0d66"
  6006. },
  6007. "dist": {
  6008. "type": "zip",
  6009. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e0ad0d153e1c20069250986cd9e9dd1ccebb0d66",
  6010. "reference": "e0ad0d153e1c20069250986cd9e9dd1ccebb0d66",
  6011. "shasum": ""
  6012. },
  6013. "require": {
  6014. "php": ">=8.1",
  6015. "symfony/deprecation-contracts": "^2.5|^3",
  6016. "symfony/polyfill-mbstring": "~1.1",
  6017. "symfony/polyfill-php83": "^1.27"
  6018. },
  6019. "conflict": {
  6020. "symfony/cache": "<6.2"
  6021. },
  6022. "require-dev": {
  6023. "doctrine/dbal": "^2.13.1|^3.0",
  6024. "predis/predis": "^1.1|^2.0",
  6025. "symfony/cache": "^5.4|^6.0",
  6026. "symfony/dependency-injection": "^5.4|^6.0",
  6027. "symfony/expression-language": "^5.4|^6.0",
  6028. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6029. "symfony/mime": "^5.4|^6.0",
  6030. "symfony/rate-limiter": "^5.2|^6.0"
  6031. },
  6032. "type": "library",
  6033. "autoload": {
  6034. "psr-4": {
  6035. "Symfony\\Component\\HttpFoundation\\": ""
  6036. },
  6037. "exclude-from-classmap": [
  6038. "/Tests/"
  6039. ]
  6040. },
  6041. "notification-url": "https://packagist.org/downloads/",
  6042. "license": [
  6043. "MIT"
  6044. ],
  6045. "authors": [
  6046. {
  6047. "name": "Fabien Potencier",
  6048. "email": "fabien@symfony.com"
  6049. },
  6050. {
  6051. "name": "Symfony Community",
  6052. "homepage": "https://symfony.com/contributors"
  6053. }
  6054. ],
  6055. "description": "Defines an object-oriented layer for the HTTP specification",
  6056. "homepage": "https://symfony.com",
  6057. "support": {
  6058. "source": "https://github.com/symfony/http-foundation/tree/v6.3.1"
  6059. },
  6060. "funding": [
  6061. {
  6062. "url": "https://symfony.com/sponsor",
  6063. "type": "custom"
  6064. },
  6065. {
  6066. "url": "https://github.com/fabpot",
  6067. "type": "github"
  6068. },
  6069. {
  6070. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6071. "type": "tidelift"
  6072. }
  6073. ],
  6074. "time": "2023-06-24T11:51:27+00:00"
  6075. },
  6076. {
  6077. "name": "symfony/http-kernel",
  6078. "version": "v6.3.1",
  6079. "source": {
  6080. "type": "git",
  6081. "url": "https://github.com/symfony/http-kernel.git",
  6082. "reference": "161e16fd2e35fb4881a43bc8b383dfd5be4ac374"
  6083. },
  6084. "dist": {
  6085. "type": "zip",
  6086. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/161e16fd2e35fb4881a43bc8b383dfd5be4ac374",
  6087. "reference": "161e16fd2e35fb4881a43bc8b383dfd5be4ac374",
  6088. "shasum": ""
  6089. },
  6090. "require": {
  6091. "php": ">=8.1",
  6092. "psr/log": "^1|^2|^3",
  6093. "symfony/deprecation-contracts": "^2.5|^3",
  6094. "symfony/error-handler": "^6.3",
  6095. "symfony/event-dispatcher": "^5.4|^6.0",
  6096. "symfony/http-foundation": "^6.2.7",
  6097. "symfony/polyfill-ctype": "^1.8"
  6098. },
  6099. "conflict": {
  6100. "symfony/browser-kit": "<5.4",
  6101. "symfony/cache": "<5.4",
  6102. "symfony/config": "<6.1",
  6103. "symfony/console": "<5.4",
  6104. "symfony/dependency-injection": "<6.3",
  6105. "symfony/doctrine-bridge": "<5.4",
  6106. "symfony/form": "<5.4",
  6107. "symfony/http-client": "<5.4",
  6108. "symfony/http-client-contracts": "<2.5",
  6109. "symfony/mailer": "<5.4",
  6110. "symfony/messenger": "<5.4",
  6111. "symfony/translation": "<5.4",
  6112. "symfony/translation-contracts": "<2.5",
  6113. "symfony/twig-bridge": "<5.4",
  6114. "symfony/validator": "<5.4",
  6115. "symfony/var-dumper": "<6.3",
  6116. "twig/twig": "<2.13"
  6117. },
  6118. "provide": {
  6119. "psr/log-implementation": "1.0|2.0|3.0"
  6120. },
  6121. "require-dev": {
  6122. "psr/cache": "^1.0|^2.0|^3.0",
  6123. "symfony/browser-kit": "^5.4|^6.0",
  6124. "symfony/clock": "^6.2",
  6125. "symfony/config": "^6.1",
  6126. "symfony/console": "^5.4|^6.0",
  6127. "symfony/css-selector": "^5.4|^6.0",
  6128. "symfony/dependency-injection": "^6.3",
  6129. "symfony/dom-crawler": "^5.4|^6.0",
  6130. "symfony/expression-language": "^5.4|^6.0",
  6131. "symfony/finder": "^5.4|^6.0",
  6132. "symfony/http-client-contracts": "^2.5|^3",
  6133. "symfony/process": "^5.4|^6.0",
  6134. "symfony/property-access": "^5.4.5|^6.0.5",
  6135. "symfony/routing": "^5.4|^6.0",
  6136. "symfony/serializer": "^6.3",
  6137. "symfony/stopwatch": "^5.4|^6.0",
  6138. "symfony/translation": "^5.4|^6.0",
  6139. "symfony/translation-contracts": "^2.5|^3",
  6140. "symfony/uid": "^5.4|^6.0",
  6141. "symfony/validator": "^6.3",
  6142. "symfony/var-exporter": "^6.2",
  6143. "twig/twig": "^2.13|^3.0.4"
  6144. },
  6145. "type": "library",
  6146. "autoload": {
  6147. "psr-4": {
  6148. "Symfony\\Component\\HttpKernel\\": ""
  6149. },
  6150. "exclude-from-classmap": [
  6151. "/Tests/"
  6152. ]
  6153. },
  6154. "notification-url": "https://packagist.org/downloads/",
  6155. "license": [
  6156. "MIT"
  6157. ],
  6158. "authors": [
  6159. {
  6160. "name": "Fabien Potencier",
  6161. "email": "fabien@symfony.com"
  6162. },
  6163. {
  6164. "name": "Symfony Community",
  6165. "homepage": "https://symfony.com/contributors"
  6166. }
  6167. ],
  6168. "description": "Provides a structured process for converting a Request into a Response",
  6169. "homepage": "https://symfony.com",
  6170. "support": {
  6171. "source": "https://github.com/symfony/http-kernel/tree/v6.3.1"
  6172. },
  6173. "funding": [
  6174. {
  6175. "url": "https://symfony.com/sponsor",
  6176. "type": "custom"
  6177. },
  6178. {
  6179. "url": "https://github.com/fabpot",
  6180. "type": "github"
  6181. },
  6182. {
  6183. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6184. "type": "tidelift"
  6185. }
  6186. ],
  6187. "time": "2023-06-26T06:07:32+00:00"
  6188. },
  6189. {
  6190. "name": "symfony/mailer",
  6191. "version": "v6.3.0",
  6192. "source": {
  6193. "type": "git",
  6194. "url": "https://github.com/symfony/mailer.git",
  6195. "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435"
  6196. },
  6197. "dist": {
  6198. "type": "zip",
  6199. "url": "https://api.github.com/repos/symfony/mailer/zipball/7b03d9be1dea29bfec0a6c7b603f5072a4c97435",
  6200. "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435",
  6201. "shasum": ""
  6202. },
  6203. "require": {
  6204. "egulias/email-validator": "^2.1.10|^3|^4",
  6205. "php": ">=8.1",
  6206. "psr/event-dispatcher": "^1",
  6207. "psr/log": "^1|^2|^3",
  6208. "symfony/event-dispatcher": "^5.4|^6.0",
  6209. "symfony/mime": "^6.2",
  6210. "symfony/service-contracts": "^2.5|^3"
  6211. },
  6212. "conflict": {
  6213. "symfony/http-client-contracts": "<2.5",
  6214. "symfony/http-kernel": "<5.4",
  6215. "symfony/messenger": "<6.2",
  6216. "symfony/mime": "<6.2",
  6217. "symfony/twig-bridge": "<6.2.1"
  6218. },
  6219. "require-dev": {
  6220. "symfony/console": "^5.4|^6.0",
  6221. "symfony/http-client": "^5.4|^6.0",
  6222. "symfony/messenger": "^6.2",
  6223. "symfony/twig-bridge": "^6.2"
  6224. },
  6225. "type": "library",
  6226. "autoload": {
  6227. "psr-4": {
  6228. "Symfony\\Component\\Mailer\\": ""
  6229. },
  6230. "exclude-from-classmap": [
  6231. "/Tests/"
  6232. ]
  6233. },
  6234. "notification-url": "https://packagist.org/downloads/",
  6235. "license": [
  6236. "MIT"
  6237. ],
  6238. "authors": [
  6239. {
  6240. "name": "Fabien Potencier",
  6241. "email": "fabien@symfony.com"
  6242. },
  6243. {
  6244. "name": "Symfony Community",
  6245. "homepage": "https://symfony.com/contributors"
  6246. }
  6247. ],
  6248. "description": "Helps sending emails",
  6249. "homepage": "https://symfony.com",
  6250. "support": {
  6251. "source": "https://github.com/symfony/mailer/tree/v6.3.0"
  6252. },
  6253. "funding": [
  6254. {
  6255. "url": "https://symfony.com/sponsor",
  6256. "type": "custom"
  6257. },
  6258. {
  6259. "url": "https://github.com/fabpot",
  6260. "type": "github"
  6261. },
  6262. {
  6263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6264. "type": "tidelift"
  6265. }
  6266. ],
  6267. "time": "2023-05-29T12:49:39+00:00"
  6268. },
  6269. {
  6270. "name": "symfony/mime",
  6271. "version": "v6.3.0",
  6272. "source": {
  6273. "type": "git",
  6274. "url": "https://github.com/symfony/mime.git",
  6275. "reference": "7b5d2121858cd6efbed778abce9cfdd7ab1f62ad"
  6276. },
  6277. "dist": {
  6278. "type": "zip",
  6279. "url": "https://api.github.com/repos/symfony/mime/zipball/7b5d2121858cd6efbed778abce9cfdd7ab1f62ad",
  6280. "reference": "7b5d2121858cd6efbed778abce9cfdd7ab1f62ad",
  6281. "shasum": ""
  6282. },
  6283. "require": {
  6284. "php": ">=8.1",
  6285. "symfony/polyfill-intl-idn": "^1.10",
  6286. "symfony/polyfill-mbstring": "^1.0"
  6287. },
  6288. "conflict": {
  6289. "egulias/email-validator": "~3.0.0",
  6290. "phpdocumentor/reflection-docblock": "<3.2.2",
  6291. "phpdocumentor/type-resolver": "<1.4.0",
  6292. "symfony/mailer": "<5.4",
  6293. "symfony/serializer": "<6.2"
  6294. },
  6295. "require-dev": {
  6296. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6297. "league/html-to-markdown": "^5.0",
  6298. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6299. "symfony/dependency-injection": "^5.4|^6.0",
  6300. "symfony/property-access": "^5.4|^6.0",
  6301. "symfony/property-info": "^5.4|^6.0",
  6302. "symfony/serializer": "^6.2"
  6303. },
  6304. "type": "library",
  6305. "autoload": {
  6306. "psr-4": {
  6307. "Symfony\\Component\\Mime\\": ""
  6308. },
  6309. "exclude-from-classmap": [
  6310. "/Tests/"
  6311. ]
  6312. },
  6313. "notification-url": "https://packagist.org/downloads/",
  6314. "license": [
  6315. "MIT"
  6316. ],
  6317. "authors": [
  6318. {
  6319. "name": "Fabien Potencier",
  6320. "email": "fabien@symfony.com"
  6321. },
  6322. {
  6323. "name": "Symfony Community",
  6324. "homepage": "https://symfony.com/contributors"
  6325. }
  6326. ],
  6327. "description": "Allows manipulating MIME messages",
  6328. "homepage": "https://symfony.com",
  6329. "keywords": [
  6330. "mime",
  6331. "mime-type"
  6332. ],
  6333. "support": {
  6334. "source": "https://github.com/symfony/mime/tree/v6.3.0"
  6335. },
  6336. "funding": [
  6337. {
  6338. "url": "https://symfony.com/sponsor",
  6339. "type": "custom"
  6340. },
  6341. {
  6342. "url": "https://github.com/fabpot",
  6343. "type": "github"
  6344. },
  6345. {
  6346. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6347. "type": "tidelift"
  6348. }
  6349. ],
  6350. "time": "2023-04-28T15:57:00+00:00"
  6351. },
  6352. {
  6353. "name": "symfony/polyfill-ctype",
  6354. "version": "v1.27.0",
  6355. "source": {
  6356. "type": "git",
  6357. "url": "https://github.com/symfony/polyfill-ctype.git",
  6358. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  6359. },
  6360. "dist": {
  6361. "type": "zip",
  6362. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  6363. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  6364. "shasum": ""
  6365. },
  6366. "require": {
  6367. "php": ">=7.1"
  6368. },
  6369. "provide": {
  6370. "ext-ctype": "*"
  6371. },
  6372. "suggest": {
  6373. "ext-ctype": "For best performance"
  6374. },
  6375. "type": "library",
  6376. "extra": {
  6377. "branch-alias": {
  6378. "dev-main": "1.27-dev"
  6379. },
  6380. "thanks": {
  6381. "name": "symfony/polyfill",
  6382. "url": "https://github.com/symfony/polyfill"
  6383. }
  6384. },
  6385. "autoload": {
  6386. "files": [
  6387. "bootstrap.php"
  6388. ],
  6389. "psr-4": {
  6390. "Symfony\\Polyfill\\Ctype\\": ""
  6391. }
  6392. },
  6393. "notification-url": "https://packagist.org/downloads/",
  6394. "license": [
  6395. "MIT"
  6396. ],
  6397. "authors": [
  6398. {
  6399. "name": "Gert de Pagter",
  6400. "email": "BackEndTea@gmail.com"
  6401. },
  6402. {
  6403. "name": "Symfony Community",
  6404. "homepage": "https://symfony.com/contributors"
  6405. }
  6406. ],
  6407. "description": "Symfony polyfill for ctype functions",
  6408. "homepage": "https://symfony.com",
  6409. "keywords": [
  6410. "compatibility",
  6411. "ctype",
  6412. "polyfill",
  6413. "portable"
  6414. ],
  6415. "support": {
  6416. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  6417. },
  6418. "funding": [
  6419. {
  6420. "url": "https://symfony.com/sponsor",
  6421. "type": "custom"
  6422. },
  6423. {
  6424. "url": "https://github.com/fabpot",
  6425. "type": "github"
  6426. },
  6427. {
  6428. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6429. "type": "tidelift"
  6430. }
  6431. ],
  6432. "time": "2022-11-03T14:55:06+00:00"
  6433. },
  6434. {
  6435. "name": "symfony/polyfill-intl-grapheme",
  6436. "version": "v1.27.0",
  6437. "source": {
  6438. "type": "git",
  6439. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6440. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  6441. },
  6442. "dist": {
  6443. "type": "zip",
  6444. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  6445. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  6446. "shasum": ""
  6447. },
  6448. "require": {
  6449. "php": ">=7.1"
  6450. },
  6451. "suggest": {
  6452. "ext-intl": "For best performance"
  6453. },
  6454. "type": "library",
  6455. "extra": {
  6456. "branch-alias": {
  6457. "dev-main": "1.27-dev"
  6458. },
  6459. "thanks": {
  6460. "name": "symfony/polyfill",
  6461. "url": "https://github.com/symfony/polyfill"
  6462. }
  6463. },
  6464. "autoload": {
  6465. "files": [
  6466. "bootstrap.php"
  6467. ],
  6468. "psr-4": {
  6469. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6470. }
  6471. },
  6472. "notification-url": "https://packagist.org/downloads/",
  6473. "license": [
  6474. "MIT"
  6475. ],
  6476. "authors": [
  6477. {
  6478. "name": "Nicolas Grekas",
  6479. "email": "p@tchwork.com"
  6480. },
  6481. {
  6482. "name": "Symfony Community",
  6483. "homepage": "https://symfony.com/contributors"
  6484. }
  6485. ],
  6486. "description": "Symfony polyfill for intl's grapheme_* functions",
  6487. "homepage": "https://symfony.com",
  6488. "keywords": [
  6489. "compatibility",
  6490. "grapheme",
  6491. "intl",
  6492. "polyfill",
  6493. "portable",
  6494. "shim"
  6495. ],
  6496. "support": {
  6497. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  6498. },
  6499. "funding": [
  6500. {
  6501. "url": "https://symfony.com/sponsor",
  6502. "type": "custom"
  6503. },
  6504. {
  6505. "url": "https://github.com/fabpot",
  6506. "type": "github"
  6507. },
  6508. {
  6509. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6510. "type": "tidelift"
  6511. }
  6512. ],
  6513. "time": "2022-11-03T14:55:06+00:00"
  6514. },
  6515. {
  6516. "name": "symfony/polyfill-intl-idn",
  6517. "version": "v1.27.0",
  6518. "source": {
  6519. "type": "git",
  6520. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6521. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  6522. },
  6523. "dist": {
  6524. "type": "zip",
  6525. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  6526. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  6527. "shasum": ""
  6528. },
  6529. "require": {
  6530. "php": ">=7.1",
  6531. "symfony/polyfill-intl-normalizer": "^1.10",
  6532. "symfony/polyfill-php72": "^1.10"
  6533. },
  6534. "suggest": {
  6535. "ext-intl": "For best performance"
  6536. },
  6537. "type": "library",
  6538. "extra": {
  6539. "branch-alias": {
  6540. "dev-main": "1.27-dev"
  6541. },
  6542. "thanks": {
  6543. "name": "symfony/polyfill",
  6544. "url": "https://github.com/symfony/polyfill"
  6545. }
  6546. },
  6547. "autoload": {
  6548. "files": [
  6549. "bootstrap.php"
  6550. ],
  6551. "psr-4": {
  6552. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6553. }
  6554. },
  6555. "notification-url": "https://packagist.org/downloads/",
  6556. "license": [
  6557. "MIT"
  6558. ],
  6559. "authors": [
  6560. {
  6561. "name": "Laurent Bassin",
  6562. "email": "laurent@bassin.info"
  6563. },
  6564. {
  6565. "name": "Trevor Rowbotham",
  6566. "email": "trevor.rowbotham@pm.me"
  6567. },
  6568. {
  6569. "name": "Symfony Community",
  6570. "homepage": "https://symfony.com/contributors"
  6571. }
  6572. ],
  6573. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6574. "homepage": "https://symfony.com",
  6575. "keywords": [
  6576. "compatibility",
  6577. "idn",
  6578. "intl",
  6579. "polyfill",
  6580. "portable",
  6581. "shim"
  6582. ],
  6583. "support": {
  6584. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  6585. },
  6586. "funding": [
  6587. {
  6588. "url": "https://symfony.com/sponsor",
  6589. "type": "custom"
  6590. },
  6591. {
  6592. "url": "https://github.com/fabpot",
  6593. "type": "github"
  6594. },
  6595. {
  6596. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6597. "type": "tidelift"
  6598. }
  6599. ],
  6600. "time": "2022-11-03T14:55:06+00:00"
  6601. },
  6602. {
  6603. "name": "symfony/polyfill-intl-normalizer",
  6604. "version": "v1.27.0",
  6605. "source": {
  6606. "type": "git",
  6607. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6608. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  6609. },
  6610. "dist": {
  6611. "type": "zip",
  6612. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  6613. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  6614. "shasum": ""
  6615. },
  6616. "require": {
  6617. "php": ">=7.1"
  6618. },
  6619. "suggest": {
  6620. "ext-intl": "For best performance"
  6621. },
  6622. "type": "library",
  6623. "extra": {
  6624. "branch-alias": {
  6625. "dev-main": "1.27-dev"
  6626. },
  6627. "thanks": {
  6628. "name": "symfony/polyfill",
  6629. "url": "https://github.com/symfony/polyfill"
  6630. }
  6631. },
  6632. "autoload": {
  6633. "files": [
  6634. "bootstrap.php"
  6635. ],
  6636. "psr-4": {
  6637. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6638. },
  6639. "classmap": [
  6640. "Resources/stubs"
  6641. ]
  6642. },
  6643. "notification-url": "https://packagist.org/downloads/",
  6644. "license": [
  6645. "MIT"
  6646. ],
  6647. "authors": [
  6648. {
  6649. "name": "Nicolas Grekas",
  6650. "email": "p@tchwork.com"
  6651. },
  6652. {
  6653. "name": "Symfony Community",
  6654. "homepage": "https://symfony.com/contributors"
  6655. }
  6656. ],
  6657. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6658. "homepage": "https://symfony.com",
  6659. "keywords": [
  6660. "compatibility",
  6661. "intl",
  6662. "normalizer",
  6663. "polyfill",
  6664. "portable",
  6665. "shim"
  6666. ],
  6667. "support": {
  6668. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  6669. },
  6670. "funding": [
  6671. {
  6672. "url": "https://symfony.com/sponsor",
  6673. "type": "custom"
  6674. },
  6675. {
  6676. "url": "https://github.com/fabpot",
  6677. "type": "github"
  6678. },
  6679. {
  6680. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6681. "type": "tidelift"
  6682. }
  6683. ],
  6684. "time": "2022-11-03T14:55:06+00:00"
  6685. },
  6686. {
  6687. "name": "symfony/polyfill-mbstring",
  6688. "version": "v1.27.0",
  6689. "source": {
  6690. "type": "git",
  6691. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6692. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  6693. },
  6694. "dist": {
  6695. "type": "zip",
  6696. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  6697. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  6698. "shasum": ""
  6699. },
  6700. "require": {
  6701. "php": ">=7.1"
  6702. },
  6703. "provide": {
  6704. "ext-mbstring": "*"
  6705. },
  6706. "suggest": {
  6707. "ext-mbstring": "For best performance"
  6708. },
  6709. "type": "library",
  6710. "extra": {
  6711. "branch-alias": {
  6712. "dev-main": "1.27-dev"
  6713. },
  6714. "thanks": {
  6715. "name": "symfony/polyfill",
  6716. "url": "https://github.com/symfony/polyfill"
  6717. }
  6718. },
  6719. "autoload": {
  6720. "files": [
  6721. "bootstrap.php"
  6722. ],
  6723. "psr-4": {
  6724. "Symfony\\Polyfill\\Mbstring\\": ""
  6725. }
  6726. },
  6727. "notification-url": "https://packagist.org/downloads/",
  6728. "license": [
  6729. "MIT"
  6730. ],
  6731. "authors": [
  6732. {
  6733. "name": "Nicolas Grekas",
  6734. "email": "p@tchwork.com"
  6735. },
  6736. {
  6737. "name": "Symfony Community",
  6738. "homepage": "https://symfony.com/contributors"
  6739. }
  6740. ],
  6741. "description": "Symfony polyfill for the Mbstring extension",
  6742. "homepage": "https://symfony.com",
  6743. "keywords": [
  6744. "compatibility",
  6745. "mbstring",
  6746. "polyfill",
  6747. "portable",
  6748. "shim"
  6749. ],
  6750. "support": {
  6751. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  6752. },
  6753. "funding": [
  6754. {
  6755. "url": "https://symfony.com/sponsor",
  6756. "type": "custom"
  6757. },
  6758. {
  6759. "url": "https://github.com/fabpot",
  6760. "type": "github"
  6761. },
  6762. {
  6763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6764. "type": "tidelift"
  6765. }
  6766. ],
  6767. "time": "2022-11-03T14:55:06+00:00"
  6768. },
  6769. {
  6770. "name": "symfony/polyfill-php72",
  6771. "version": "v1.27.0",
  6772. "source": {
  6773. "type": "git",
  6774. "url": "https://github.com/symfony/polyfill-php72.git",
  6775. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  6776. },
  6777. "dist": {
  6778. "type": "zip",
  6779. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  6780. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  6781. "shasum": ""
  6782. },
  6783. "require": {
  6784. "php": ">=7.1"
  6785. },
  6786. "type": "library",
  6787. "extra": {
  6788. "branch-alias": {
  6789. "dev-main": "1.27-dev"
  6790. },
  6791. "thanks": {
  6792. "name": "symfony/polyfill",
  6793. "url": "https://github.com/symfony/polyfill"
  6794. }
  6795. },
  6796. "autoload": {
  6797. "files": [
  6798. "bootstrap.php"
  6799. ],
  6800. "psr-4": {
  6801. "Symfony\\Polyfill\\Php72\\": ""
  6802. }
  6803. },
  6804. "notification-url": "https://packagist.org/downloads/",
  6805. "license": [
  6806. "MIT"
  6807. ],
  6808. "authors": [
  6809. {
  6810. "name": "Nicolas Grekas",
  6811. "email": "p@tchwork.com"
  6812. },
  6813. {
  6814. "name": "Symfony Community",
  6815. "homepage": "https://symfony.com/contributors"
  6816. }
  6817. ],
  6818. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6819. "homepage": "https://symfony.com",
  6820. "keywords": [
  6821. "compatibility",
  6822. "polyfill",
  6823. "portable",
  6824. "shim"
  6825. ],
  6826. "support": {
  6827. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  6828. },
  6829. "funding": [
  6830. {
  6831. "url": "https://symfony.com/sponsor",
  6832. "type": "custom"
  6833. },
  6834. {
  6835. "url": "https://github.com/fabpot",
  6836. "type": "github"
  6837. },
  6838. {
  6839. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6840. "type": "tidelift"
  6841. }
  6842. ],
  6843. "time": "2022-11-03T14:55:06+00:00"
  6844. },
  6845. {
  6846. "name": "symfony/polyfill-php80",
  6847. "version": "v1.27.0",
  6848. "source": {
  6849. "type": "git",
  6850. "url": "https://github.com/symfony/polyfill-php80.git",
  6851. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  6852. },
  6853. "dist": {
  6854. "type": "zip",
  6855. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  6856. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  6857. "shasum": ""
  6858. },
  6859. "require": {
  6860. "php": ">=7.1"
  6861. },
  6862. "type": "library",
  6863. "extra": {
  6864. "branch-alias": {
  6865. "dev-main": "1.27-dev"
  6866. },
  6867. "thanks": {
  6868. "name": "symfony/polyfill",
  6869. "url": "https://github.com/symfony/polyfill"
  6870. }
  6871. },
  6872. "autoload": {
  6873. "files": [
  6874. "bootstrap.php"
  6875. ],
  6876. "psr-4": {
  6877. "Symfony\\Polyfill\\Php80\\": ""
  6878. },
  6879. "classmap": [
  6880. "Resources/stubs"
  6881. ]
  6882. },
  6883. "notification-url": "https://packagist.org/downloads/",
  6884. "license": [
  6885. "MIT"
  6886. ],
  6887. "authors": [
  6888. {
  6889. "name": "Ion Bazan",
  6890. "email": "ion.bazan@gmail.com"
  6891. },
  6892. {
  6893. "name": "Nicolas Grekas",
  6894. "email": "p@tchwork.com"
  6895. },
  6896. {
  6897. "name": "Symfony Community",
  6898. "homepage": "https://symfony.com/contributors"
  6899. }
  6900. ],
  6901. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6902. "homepage": "https://symfony.com",
  6903. "keywords": [
  6904. "compatibility",
  6905. "polyfill",
  6906. "portable",
  6907. "shim"
  6908. ],
  6909. "support": {
  6910. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  6911. },
  6912. "funding": [
  6913. {
  6914. "url": "https://symfony.com/sponsor",
  6915. "type": "custom"
  6916. },
  6917. {
  6918. "url": "https://github.com/fabpot",
  6919. "type": "github"
  6920. },
  6921. {
  6922. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6923. "type": "tidelift"
  6924. }
  6925. ],
  6926. "time": "2022-11-03T14:55:06+00:00"
  6927. },
  6928. {
  6929. "name": "symfony/polyfill-php83",
  6930. "version": "v1.27.0",
  6931. "source": {
  6932. "type": "git",
  6933. "url": "https://github.com/symfony/polyfill-php83.git",
  6934. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57"
  6935. },
  6936. "dist": {
  6937. "type": "zip",
  6938. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57",
  6939. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57",
  6940. "shasum": ""
  6941. },
  6942. "require": {
  6943. "php": ">=7.1",
  6944. "symfony/polyfill-php80": "^1.14"
  6945. },
  6946. "type": "library",
  6947. "extra": {
  6948. "branch-alias": {
  6949. "dev-main": "1.27-dev"
  6950. },
  6951. "thanks": {
  6952. "name": "symfony/polyfill",
  6953. "url": "https://github.com/symfony/polyfill"
  6954. }
  6955. },
  6956. "autoload": {
  6957. "files": [
  6958. "bootstrap.php"
  6959. ],
  6960. "psr-4": {
  6961. "Symfony\\Polyfill\\Php83\\": ""
  6962. }
  6963. },
  6964. "notification-url": "https://packagist.org/downloads/",
  6965. "license": [
  6966. "MIT"
  6967. ],
  6968. "authors": [
  6969. {
  6970. "name": "Nicolas Grekas",
  6971. "email": "p@tchwork.com"
  6972. },
  6973. {
  6974. "name": "Symfony Community",
  6975. "homepage": "https://symfony.com/contributors"
  6976. }
  6977. ],
  6978. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6979. "homepage": "https://symfony.com",
  6980. "keywords": [
  6981. "compatibility",
  6982. "polyfill",
  6983. "portable",
  6984. "shim"
  6985. ],
  6986. "support": {
  6987. "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0"
  6988. },
  6989. "funding": [
  6990. {
  6991. "url": "https://symfony.com/sponsor",
  6992. "type": "custom"
  6993. },
  6994. {
  6995. "url": "https://github.com/fabpot",
  6996. "type": "github"
  6997. },
  6998. {
  6999. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7000. "type": "tidelift"
  7001. }
  7002. ],
  7003. "time": "2022-11-03T14:55:06+00:00"
  7004. },
  7005. {
  7006. "name": "symfony/polyfill-uuid",
  7007. "version": "v1.27.0",
  7008. "source": {
  7009. "type": "git",
  7010. "url": "https://github.com/symfony/polyfill-uuid.git",
  7011. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166"
  7012. },
  7013. "dist": {
  7014. "type": "zip",
  7015. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166",
  7016. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166",
  7017. "shasum": ""
  7018. },
  7019. "require": {
  7020. "php": ">=7.1"
  7021. },
  7022. "provide": {
  7023. "ext-uuid": "*"
  7024. },
  7025. "suggest": {
  7026. "ext-uuid": "For best performance"
  7027. },
  7028. "type": "library",
  7029. "extra": {
  7030. "branch-alias": {
  7031. "dev-main": "1.27-dev"
  7032. },
  7033. "thanks": {
  7034. "name": "symfony/polyfill",
  7035. "url": "https://github.com/symfony/polyfill"
  7036. }
  7037. },
  7038. "autoload": {
  7039. "files": [
  7040. "bootstrap.php"
  7041. ],
  7042. "psr-4": {
  7043. "Symfony\\Polyfill\\Uuid\\": ""
  7044. }
  7045. },
  7046. "notification-url": "https://packagist.org/downloads/",
  7047. "license": [
  7048. "MIT"
  7049. ],
  7050. "authors": [
  7051. {
  7052. "name": "Grégoire Pineau",
  7053. "email": "lyrixx@lyrixx.info"
  7054. },
  7055. {
  7056. "name": "Symfony Community",
  7057. "homepage": "https://symfony.com/contributors"
  7058. }
  7059. ],
  7060. "description": "Symfony polyfill for uuid functions",
  7061. "homepage": "https://symfony.com",
  7062. "keywords": [
  7063. "compatibility",
  7064. "polyfill",
  7065. "portable",
  7066. "uuid"
  7067. ],
  7068. "support": {
  7069. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0"
  7070. },
  7071. "funding": [
  7072. {
  7073. "url": "https://symfony.com/sponsor",
  7074. "type": "custom"
  7075. },
  7076. {
  7077. "url": "https://github.com/fabpot",
  7078. "type": "github"
  7079. },
  7080. {
  7081. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7082. "type": "tidelift"
  7083. }
  7084. ],
  7085. "time": "2022-11-03T14:55:06+00:00"
  7086. },
  7087. {
  7088. "name": "symfony/process",
  7089. "version": "v6.3.0",
  7090. "source": {
  7091. "type": "git",
  7092. "url": "https://github.com/symfony/process.git",
  7093. "reference": "8741e3ed7fe2e91ec099e02446fb86667a0f1628"
  7094. },
  7095. "dist": {
  7096. "type": "zip",
  7097. "url": "https://api.github.com/repos/symfony/process/zipball/8741e3ed7fe2e91ec099e02446fb86667a0f1628",
  7098. "reference": "8741e3ed7fe2e91ec099e02446fb86667a0f1628",
  7099. "shasum": ""
  7100. },
  7101. "require": {
  7102. "php": ">=8.1"
  7103. },
  7104. "type": "library",
  7105. "autoload": {
  7106. "psr-4": {
  7107. "Symfony\\Component\\Process\\": ""
  7108. },
  7109. "exclude-from-classmap": [
  7110. "/Tests/"
  7111. ]
  7112. },
  7113. "notification-url": "https://packagist.org/downloads/",
  7114. "license": [
  7115. "MIT"
  7116. ],
  7117. "authors": [
  7118. {
  7119. "name": "Fabien Potencier",
  7120. "email": "fabien@symfony.com"
  7121. },
  7122. {
  7123. "name": "Symfony Community",
  7124. "homepage": "https://symfony.com/contributors"
  7125. }
  7126. ],
  7127. "description": "Executes commands in sub-processes",
  7128. "homepage": "https://symfony.com",
  7129. "support": {
  7130. "source": "https://github.com/symfony/process/tree/v6.3.0"
  7131. },
  7132. "funding": [
  7133. {
  7134. "url": "https://symfony.com/sponsor",
  7135. "type": "custom"
  7136. },
  7137. {
  7138. "url": "https://github.com/fabpot",
  7139. "type": "github"
  7140. },
  7141. {
  7142. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7143. "type": "tidelift"
  7144. }
  7145. ],
  7146. "time": "2023-05-19T08:06:44+00:00"
  7147. },
  7148. {
  7149. "name": "symfony/routing",
  7150. "version": "v6.3.1",
  7151. "source": {
  7152. "type": "git",
  7153. "url": "https://github.com/symfony/routing.git",
  7154. "reference": "d37ad1779c38b8eb71996d17dc13030dcb7f9cf5"
  7155. },
  7156. "dist": {
  7157. "type": "zip",
  7158. "url": "https://api.github.com/repos/symfony/routing/zipball/d37ad1779c38b8eb71996d17dc13030dcb7f9cf5",
  7159. "reference": "d37ad1779c38b8eb71996d17dc13030dcb7f9cf5",
  7160. "shasum": ""
  7161. },
  7162. "require": {
  7163. "php": ">=8.1"
  7164. },
  7165. "conflict": {
  7166. "doctrine/annotations": "<1.12",
  7167. "symfony/config": "<6.2",
  7168. "symfony/dependency-injection": "<5.4",
  7169. "symfony/yaml": "<5.4"
  7170. },
  7171. "require-dev": {
  7172. "doctrine/annotations": "^1.12|^2",
  7173. "psr/log": "^1|^2|^3",
  7174. "symfony/config": "^6.2",
  7175. "symfony/dependency-injection": "^5.4|^6.0",
  7176. "symfony/expression-language": "^5.4|^6.0",
  7177. "symfony/http-foundation": "^5.4|^6.0",
  7178. "symfony/yaml": "^5.4|^6.0"
  7179. },
  7180. "type": "library",
  7181. "autoload": {
  7182. "psr-4": {
  7183. "Symfony\\Component\\Routing\\": ""
  7184. },
  7185. "exclude-from-classmap": [
  7186. "/Tests/"
  7187. ]
  7188. },
  7189. "notification-url": "https://packagist.org/downloads/",
  7190. "license": [
  7191. "MIT"
  7192. ],
  7193. "authors": [
  7194. {
  7195. "name": "Fabien Potencier",
  7196. "email": "fabien@symfony.com"
  7197. },
  7198. {
  7199. "name": "Symfony Community",
  7200. "homepage": "https://symfony.com/contributors"
  7201. }
  7202. ],
  7203. "description": "Maps an HTTP request to a set of configuration variables",
  7204. "homepage": "https://symfony.com",
  7205. "keywords": [
  7206. "router",
  7207. "routing",
  7208. "uri",
  7209. "url"
  7210. ],
  7211. "support": {
  7212. "source": "https://github.com/symfony/routing/tree/v6.3.1"
  7213. },
  7214. "funding": [
  7215. {
  7216. "url": "https://symfony.com/sponsor",
  7217. "type": "custom"
  7218. },
  7219. {
  7220. "url": "https://github.com/fabpot",
  7221. "type": "github"
  7222. },
  7223. {
  7224. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7225. "type": "tidelift"
  7226. }
  7227. ],
  7228. "time": "2023-06-05T15:30:22+00:00"
  7229. },
  7230. {
  7231. "name": "symfony/service-contracts",
  7232. "version": "v3.3.0",
  7233. "source": {
  7234. "type": "git",
  7235. "url": "https://github.com/symfony/service-contracts.git",
  7236. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  7237. },
  7238. "dist": {
  7239. "type": "zip",
  7240. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  7241. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  7242. "shasum": ""
  7243. },
  7244. "require": {
  7245. "php": ">=8.1",
  7246. "psr/container": "^2.0"
  7247. },
  7248. "conflict": {
  7249. "ext-psr": "<1.1|>=2"
  7250. },
  7251. "type": "library",
  7252. "extra": {
  7253. "branch-alias": {
  7254. "dev-main": "3.4-dev"
  7255. },
  7256. "thanks": {
  7257. "name": "symfony/contracts",
  7258. "url": "https://github.com/symfony/contracts"
  7259. }
  7260. },
  7261. "autoload": {
  7262. "psr-4": {
  7263. "Symfony\\Contracts\\Service\\": ""
  7264. },
  7265. "exclude-from-classmap": [
  7266. "/Test/"
  7267. ]
  7268. },
  7269. "notification-url": "https://packagist.org/downloads/",
  7270. "license": [
  7271. "MIT"
  7272. ],
  7273. "authors": [
  7274. {
  7275. "name": "Nicolas Grekas",
  7276. "email": "p@tchwork.com"
  7277. },
  7278. {
  7279. "name": "Symfony Community",
  7280. "homepage": "https://symfony.com/contributors"
  7281. }
  7282. ],
  7283. "description": "Generic abstractions related to writing services",
  7284. "homepage": "https://symfony.com",
  7285. "keywords": [
  7286. "abstractions",
  7287. "contracts",
  7288. "decoupling",
  7289. "interfaces",
  7290. "interoperability",
  7291. "standards"
  7292. ],
  7293. "support": {
  7294. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  7295. },
  7296. "funding": [
  7297. {
  7298. "url": "https://symfony.com/sponsor",
  7299. "type": "custom"
  7300. },
  7301. {
  7302. "url": "https://github.com/fabpot",
  7303. "type": "github"
  7304. },
  7305. {
  7306. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7307. "type": "tidelift"
  7308. }
  7309. ],
  7310. "time": "2023-05-23T14:45:45+00:00"
  7311. },
  7312. {
  7313. "name": "symfony/string",
  7314. "version": "v6.3.0",
  7315. "source": {
  7316. "type": "git",
  7317. "url": "https://github.com/symfony/string.git",
  7318. "reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f"
  7319. },
  7320. "dist": {
  7321. "type": "zip",
  7322. "url": "https://api.github.com/repos/symfony/string/zipball/f2e190ee75ff0f5eced645ec0be5c66fac81f51f",
  7323. "reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f",
  7324. "shasum": ""
  7325. },
  7326. "require": {
  7327. "php": ">=8.1",
  7328. "symfony/polyfill-ctype": "~1.8",
  7329. "symfony/polyfill-intl-grapheme": "~1.0",
  7330. "symfony/polyfill-intl-normalizer": "~1.0",
  7331. "symfony/polyfill-mbstring": "~1.0"
  7332. },
  7333. "conflict": {
  7334. "symfony/translation-contracts": "<2.5"
  7335. },
  7336. "require-dev": {
  7337. "symfony/error-handler": "^5.4|^6.0",
  7338. "symfony/http-client": "^5.4|^6.0",
  7339. "symfony/intl": "^6.2",
  7340. "symfony/translation-contracts": "^2.5|^3.0",
  7341. "symfony/var-exporter": "^5.4|^6.0"
  7342. },
  7343. "type": "library",
  7344. "autoload": {
  7345. "files": [
  7346. "Resources/functions.php"
  7347. ],
  7348. "psr-4": {
  7349. "Symfony\\Component\\String\\": ""
  7350. },
  7351. "exclude-from-classmap": [
  7352. "/Tests/"
  7353. ]
  7354. },
  7355. "notification-url": "https://packagist.org/downloads/",
  7356. "license": [
  7357. "MIT"
  7358. ],
  7359. "authors": [
  7360. {
  7361. "name": "Nicolas Grekas",
  7362. "email": "p@tchwork.com"
  7363. },
  7364. {
  7365. "name": "Symfony Community",
  7366. "homepage": "https://symfony.com/contributors"
  7367. }
  7368. ],
  7369. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7370. "homepage": "https://symfony.com",
  7371. "keywords": [
  7372. "grapheme",
  7373. "i18n",
  7374. "string",
  7375. "unicode",
  7376. "utf-8",
  7377. "utf8"
  7378. ],
  7379. "support": {
  7380. "source": "https://github.com/symfony/string/tree/v6.3.0"
  7381. },
  7382. "funding": [
  7383. {
  7384. "url": "https://symfony.com/sponsor",
  7385. "type": "custom"
  7386. },
  7387. {
  7388. "url": "https://github.com/fabpot",
  7389. "type": "github"
  7390. },
  7391. {
  7392. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7393. "type": "tidelift"
  7394. }
  7395. ],
  7396. "time": "2023-03-21T21:06:29+00:00"
  7397. },
  7398. {
  7399. "name": "symfony/translation",
  7400. "version": "v6.3.0",
  7401. "source": {
  7402. "type": "git",
  7403. "url": "https://github.com/symfony/translation.git",
  7404. "reference": "f72b2cba8f79dd9d536f534f76874b58ad37876f"
  7405. },
  7406. "dist": {
  7407. "type": "zip",
  7408. "url": "https://api.github.com/repos/symfony/translation/zipball/f72b2cba8f79dd9d536f534f76874b58ad37876f",
  7409. "reference": "f72b2cba8f79dd9d536f534f76874b58ad37876f",
  7410. "shasum": ""
  7411. },
  7412. "require": {
  7413. "php": ">=8.1",
  7414. "symfony/polyfill-mbstring": "~1.0",
  7415. "symfony/translation-contracts": "^2.5|^3.0"
  7416. },
  7417. "conflict": {
  7418. "symfony/config": "<5.4",
  7419. "symfony/console": "<5.4",
  7420. "symfony/dependency-injection": "<5.4",
  7421. "symfony/http-client-contracts": "<2.5",
  7422. "symfony/http-kernel": "<5.4",
  7423. "symfony/service-contracts": "<2.5",
  7424. "symfony/twig-bundle": "<5.4",
  7425. "symfony/yaml": "<5.4"
  7426. },
  7427. "provide": {
  7428. "symfony/translation-implementation": "2.3|3.0"
  7429. },
  7430. "require-dev": {
  7431. "nikic/php-parser": "^4.13",
  7432. "psr/log": "^1|^2|^3",
  7433. "symfony/config": "^5.4|^6.0",
  7434. "symfony/console": "^5.4|^6.0",
  7435. "symfony/dependency-injection": "^5.4|^6.0",
  7436. "symfony/finder": "^5.4|^6.0",
  7437. "symfony/http-client-contracts": "^2.5|^3.0",
  7438. "symfony/http-kernel": "^5.4|^6.0",
  7439. "symfony/intl": "^5.4|^6.0",
  7440. "symfony/polyfill-intl-icu": "^1.21",
  7441. "symfony/routing": "^5.4|^6.0",
  7442. "symfony/service-contracts": "^2.5|^3",
  7443. "symfony/yaml": "^5.4|^6.0"
  7444. },
  7445. "type": "library",
  7446. "autoload": {
  7447. "files": [
  7448. "Resources/functions.php"
  7449. ],
  7450. "psr-4": {
  7451. "Symfony\\Component\\Translation\\": ""
  7452. },
  7453. "exclude-from-classmap": [
  7454. "/Tests/"
  7455. ]
  7456. },
  7457. "notification-url": "https://packagist.org/downloads/",
  7458. "license": [
  7459. "MIT"
  7460. ],
  7461. "authors": [
  7462. {
  7463. "name": "Fabien Potencier",
  7464. "email": "fabien@symfony.com"
  7465. },
  7466. {
  7467. "name": "Symfony Community",
  7468. "homepage": "https://symfony.com/contributors"
  7469. }
  7470. ],
  7471. "description": "Provides tools to internationalize your application",
  7472. "homepage": "https://symfony.com",
  7473. "support": {
  7474. "source": "https://github.com/symfony/translation/tree/v6.3.0"
  7475. },
  7476. "funding": [
  7477. {
  7478. "url": "https://symfony.com/sponsor",
  7479. "type": "custom"
  7480. },
  7481. {
  7482. "url": "https://github.com/fabpot",
  7483. "type": "github"
  7484. },
  7485. {
  7486. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7487. "type": "tidelift"
  7488. }
  7489. ],
  7490. "time": "2023-05-19T12:46:45+00:00"
  7491. },
  7492. {
  7493. "name": "symfony/translation-contracts",
  7494. "version": "v3.3.0",
  7495. "source": {
  7496. "type": "git",
  7497. "url": "https://github.com/symfony/translation-contracts.git",
  7498. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
  7499. },
  7500. "dist": {
  7501. "type": "zip",
  7502. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
  7503. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
  7504. "shasum": ""
  7505. },
  7506. "require": {
  7507. "php": ">=8.1"
  7508. },
  7509. "type": "library",
  7510. "extra": {
  7511. "branch-alias": {
  7512. "dev-main": "3.4-dev"
  7513. },
  7514. "thanks": {
  7515. "name": "symfony/contracts",
  7516. "url": "https://github.com/symfony/contracts"
  7517. }
  7518. },
  7519. "autoload": {
  7520. "psr-4": {
  7521. "Symfony\\Contracts\\Translation\\": ""
  7522. },
  7523. "exclude-from-classmap": [
  7524. "/Test/"
  7525. ]
  7526. },
  7527. "notification-url": "https://packagist.org/downloads/",
  7528. "license": [
  7529. "MIT"
  7530. ],
  7531. "authors": [
  7532. {
  7533. "name": "Nicolas Grekas",
  7534. "email": "p@tchwork.com"
  7535. },
  7536. {
  7537. "name": "Symfony Community",
  7538. "homepage": "https://symfony.com/contributors"
  7539. }
  7540. ],
  7541. "description": "Generic abstractions related to translation",
  7542. "homepage": "https://symfony.com",
  7543. "keywords": [
  7544. "abstractions",
  7545. "contracts",
  7546. "decoupling",
  7547. "interfaces",
  7548. "interoperability",
  7549. "standards"
  7550. ],
  7551. "support": {
  7552. "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
  7553. },
  7554. "funding": [
  7555. {
  7556. "url": "https://symfony.com/sponsor",
  7557. "type": "custom"
  7558. },
  7559. {
  7560. "url": "https://github.com/fabpot",
  7561. "type": "github"
  7562. },
  7563. {
  7564. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7565. "type": "tidelift"
  7566. }
  7567. ],
  7568. "time": "2023-05-30T17:17:10+00:00"
  7569. },
  7570. {
  7571. "name": "symfony/uid",
  7572. "version": "v6.3.0",
  7573. "source": {
  7574. "type": "git",
  7575. "url": "https://github.com/symfony/uid.git",
  7576. "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384"
  7577. },
  7578. "dist": {
  7579. "type": "zip",
  7580. "url": "https://api.github.com/repos/symfony/uid/zipball/01b0f20b1351d997711c56f1638f7a8c3061e384",
  7581. "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384",
  7582. "shasum": ""
  7583. },
  7584. "require": {
  7585. "php": ">=8.1",
  7586. "symfony/polyfill-uuid": "^1.15"
  7587. },
  7588. "require-dev": {
  7589. "symfony/console": "^5.4|^6.0"
  7590. },
  7591. "type": "library",
  7592. "autoload": {
  7593. "psr-4": {
  7594. "Symfony\\Component\\Uid\\": ""
  7595. },
  7596. "exclude-from-classmap": [
  7597. "/Tests/"
  7598. ]
  7599. },
  7600. "notification-url": "https://packagist.org/downloads/",
  7601. "license": [
  7602. "MIT"
  7603. ],
  7604. "authors": [
  7605. {
  7606. "name": "Grégoire Pineau",
  7607. "email": "lyrixx@lyrixx.info"
  7608. },
  7609. {
  7610. "name": "Nicolas Grekas",
  7611. "email": "p@tchwork.com"
  7612. },
  7613. {
  7614. "name": "Symfony Community",
  7615. "homepage": "https://symfony.com/contributors"
  7616. }
  7617. ],
  7618. "description": "Provides an object-oriented API to generate and represent UIDs",
  7619. "homepage": "https://symfony.com",
  7620. "keywords": [
  7621. "UID",
  7622. "ulid",
  7623. "uuid"
  7624. ],
  7625. "support": {
  7626. "source": "https://github.com/symfony/uid/tree/v6.3.0"
  7627. },
  7628. "funding": [
  7629. {
  7630. "url": "https://symfony.com/sponsor",
  7631. "type": "custom"
  7632. },
  7633. {
  7634. "url": "https://github.com/fabpot",
  7635. "type": "github"
  7636. },
  7637. {
  7638. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7639. "type": "tidelift"
  7640. }
  7641. ],
  7642. "time": "2023-04-08T07:25:02+00:00"
  7643. },
  7644. {
  7645. "name": "symfony/var-dumper",
  7646. "version": "v6.3.1",
  7647. "source": {
  7648. "type": "git",
  7649. "url": "https://github.com/symfony/var-dumper.git",
  7650. "reference": "c81268d6960ddb47af17391a27d222bd58cf0515"
  7651. },
  7652. "dist": {
  7653. "type": "zip",
  7654. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c81268d6960ddb47af17391a27d222bd58cf0515",
  7655. "reference": "c81268d6960ddb47af17391a27d222bd58cf0515",
  7656. "shasum": ""
  7657. },
  7658. "require": {
  7659. "php": ">=8.1",
  7660. "symfony/polyfill-mbstring": "~1.0"
  7661. },
  7662. "conflict": {
  7663. "symfony/console": "<5.4"
  7664. },
  7665. "require-dev": {
  7666. "ext-iconv": "*",
  7667. "symfony/console": "^5.4|^6.0",
  7668. "symfony/process": "^5.4|^6.0",
  7669. "symfony/uid": "^5.4|^6.0",
  7670. "twig/twig": "^2.13|^3.0.4"
  7671. },
  7672. "bin": [
  7673. "Resources/bin/var-dump-server"
  7674. ],
  7675. "type": "library",
  7676. "autoload": {
  7677. "files": [
  7678. "Resources/functions/dump.php"
  7679. ],
  7680. "psr-4": {
  7681. "Symfony\\Component\\VarDumper\\": ""
  7682. },
  7683. "exclude-from-classmap": [
  7684. "/Tests/"
  7685. ]
  7686. },
  7687. "notification-url": "https://packagist.org/downloads/",
  7688. "license": [
  7689. "MIT"
  7690. ],
  7691. "authors": [
  7692. {
  7693. "name": "Nicolas Grekas",
  7694. "email": "p@tchwork.com"
  7695. },
  7696. {
  7697. "name": "Symfony Community",
  7698. "homepage": "https://symfony.com/contributors"
  7699. }
  7700. ],
  7701. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7702. "homepage": "https://symfony.com",
  7703. "keywords": [
  7704. "debug",
  7705. "dump"
  7706. ],
  7707. "support": {
  7708. "source": "https://github.com/symfony/var-dumper/tree/v6.3.1"
  7709. },
  7710. "funding": [
  7711. {
  7712. "url": "https://symfony.com/sponsor",
  7713. "type": "custom"
  7714. },
  7715. {
  7716. "url": "https://github.com/fabpot",
  7717. "type": "github"
  7718. },
  7719. {
  7720. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7721. "type": "tidelift"
  7722. }
  7723. ],
  7724. "time": "2023-06-21T12:08:28+00:00"
  7725. },
  7726. {
  7727. "name": "tgalopin/html-sanitizer",
  7728. "version": "1.5.0",
  7729. "source": {
  7730. "type": "git",
  7731. "url": "https://github.com/tgalopin/html-sanitizer.git",
  7732. "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913"
  7733. },
  7734. "dist": {
  7735. "type": "zip",
  7736. "url": "https://api.github.com/repos/tgalopin/html-sanitizer/zipball/5d02dcb6f2ea4f505731eac440798caa1b3b0913",
  7737. "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913",
  7738. "shasum": ""
  7739. },
  7740. "require": {
  7741. "ext-dom": "*",
  7742. "league/uri-parser": "^1.4.1",
  7743. "masterminds/html5": "^2.4",
  7744. "php": ">=7.1",
  7745. "psr/log": "^1.0|^2.0|^3.0"
  7746. },
  7747. "require-dev": {
  7748. "phpunit/phpunit": "^7.4",
  7749. "symfony/var-dumper": "^4.1"
  7750. },
  7751. "type": "library",
  7752. "autoload": {
  7753. "psr-4": {
  7754. "HtmlSanitizer\\": "src"
  7755. }
  7756. },
  7757. "notification-url": "https://packagist.org/downloads/",
  7758. "license": [
  7759. "MIT"
  7760. ],
  7761. "authors": [
  7762. {
  7763. "name": "Titouan Galopin",
  7764. "email": "galopintitouan@gmail.com"
  7765. }
  7766. ],
  7767. "description": "Sanitize untrustworthy HTML user input",
  7768. "support": {
  7769. "issues": "https://github.com/tgalopin/html-sanitizer/issues",
  7770. "source": "https://github.com/tgalopin/html-sanitizer/tree/1.5.0"
  7771. },
  7772. "abandoned": "symfony/html-sanitizer",
  7773. "time": "2021-09-14T08:27:50+00:00"
  7774. },
  7775. {
  7776. "name": "tijsverkoyen/css-to-inline-styles",
  7777. "version": "2.2.6",
  7778. "source": {
  7779. "type": "git",
  7780. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7781. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  7782. },
  7783. "dist": {
  7784. "type": "zip",
  7785. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7786. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7787. "shasum": ""
  7788. },
  7789. "require": {
  7790. "ext-dom": "*",
  7791. "ext-libxml": "*",
  7792. "php": "^5.5 || ^7.0 || ^8.0",
  7793. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7794. },
  7795. "require-dev": {
  7796. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7797. },
  7798. "type": "library",
  7799. "extra": {
  7800. "branch-alias": {
  7801. "dev-master": "2.2.x-dev"
  7802. }
  7803. },
  7804. "autoload": {
  7805. "psr-4": {
  7806. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7807. }
  7808. },
  7809. "notification-url": "https://packagist.org/downloads/",
  7810. "license": [
  7811. "BSD-3-Clause"
  7812. ],
  7813. "authors": [
  7814. {
  7815. "name": "Tijs Verkoyen",
  7816. "email": "css_to_inline_styles@verkoyen.eu",
  7817. "role": "Developer"
  7818. }
  7819. ],
  7820. "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.",
  7821. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7822. "support": {
  7823. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7824. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  7825. },
  7826. "time": "2023-01-03T09:29:04+00:00"
  7827. },
  7828. {
  7829. "name": "vlucas/phpdotenv",
  7830. "version": "v5.5.0",
  7831. "source": {
  7832. "type": "git",
  7833. "url": "https://github.com/vlucas/phpdotenv.git",
  7834. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  7835. },
  7836. "dist": {
  7837. "type": "zip",
  7838. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  7839. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  7840. "shasum": ""
  7841. },
  7842. "require": {
  7843. "ext-pcre": "*",
  7844. "graham-campbell/result-type": "^1.0.2",
  7845. "php": "^7.1.3 || ^8.0",
  7846. "phpoption/phpoption": "^1.8",
  7847. "symfony/polyfill-ctype": "^1.23",
  7848. "symfony/polyfill-mbstring": "^1.23.1",
  7849. "symfony/polyfill-php80": "^1.23.1"
  7850. },
  7851. "require-dev": {
  7852. "bamarni/composer-bin-plugin": "^1.4.1",
  7853. "ext-filter": "*",
  7854. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  7855. },
  7856. "suggest": {
  7857. "ext-filter": "Required to use the boolean validator."
  7858. },
  7859. "type": "library",
  7860. "extra": {
  7861. "bamarni-bin": {
  7862. "bin-links": true,
  7863. "forward-command": true
  7864. },
  7865. "branch-alias": {
  7866. "dev-master": "5.5-dev"
  7867. }
  7868. },
  7869. "autoload": {
  7870. "psr-4": {
  7871. "Dotenv\\": "src/"
  7872. }
  7873. },
  7874. "notification-url": "https://packagist.org/downloads/",
  7875. "license": [
  7876. "BSD-3-Clause"
  7877. ],
  7878. "authors": [
  7879. {
  7880. "name": "Graham Campbell",
  7881. "email": "hello@gjcampbell.co.uk",
  7882. "homepage": "https://github.com/GrahamCampbell"
  7883. },
  7884. {
  7885. "name": "Vance Lucas",
  7886. "email": "vance@vancelucas.com",
  7887. "homepage": "https://github.com/vlucas"
  7888. }
  7889. ],
  7890. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7891. "keywords": [
  7892. "dotenv",
  7893. "env",
  7894. "environment"
  7895. ],
  7896. "support": {
  7897. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7898. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  7899. },
  7900. "funding": [
  7901. {
  7902. "url": "https://github.com/GrahamCampbell",
  7903. "type": "github"
  7904. },
  7905. {
  7906. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7907. "type": "tidelift"
  7908. }
  7909. ],
  7910. "time": "2022-10-16T01:01:54+00:00"
  7911. },
  7912. {
  7913. "name": "voku/portable-ascii",
  7914. "version": "2.0.1",
  7915. "source": {
  7916. "type": "git",
  7917. "url": "https://github.com/voku/portable-ascii.git",
  7918. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  7919. },
  7920. "dist": {
  7921. "type": "zip",
  7922. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  7923. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  7924. "shasum": ""
  7925. },
  7926. "require": {
  7927. "php": ">=7.0.0"
  7928. },
  7929. "require-dev": {
  7930. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7931. },
  7932. "suggest": {
  7933. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7934. },
  7935. "type": "library",
  7936. "autoload": {
  7937. "psr-4": {
  7938. "voku\\": "src/voku/"
  7939. }
  7940. },
  7941. "notification-url": "https://packagist.org/downloads/",
  7942. "license": [
  7943. "MIT"
  7944. ],
  7945. "authors": [
  7946. {
  7947. "name": "Lars Moelleken",
  7948. "homepage": "http://www.moelleken.org/"
  7949. }
  7950. ],
  7951. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7952. "homepage": "https://github.com/voku/portable-ascii",
  7953. "keywords": [
  7954. "ascii",
  7955. "clean",
  7956. "php"
  7957. ],
  7958. "support": {
  7959. "issues": "https://github.com/voku/portable-ascii/issues",
  7960. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  7961. },
  7962. "funding": [
  7963. {
  7964. "url": "https://www.paypal.me/moelleken",
  7965. "type": "custom"
  7966. },
  7967. {
  7968. "url": "https://github.com/voku",
  7969. "type": "github"
  7970. },
  7971. {
  7972. "url": "https://opencollective.com/portable-ascii",
  7973. "type": "open_collective"
  7974. },
  7975. {
  7976. "url": "https://www.patreon.com/voku",
  7977. "type": "patreon"
  7978. },
  7979. {
  7980. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7981. "type": "tidelift"
  7982. }
  7983. ],
  7984. "time": "2022-03-08T17:03:00+00:00"
  7985. },
  7986. {
  7987. "name": "webmozart/assert",
  7988. "version": "1.11.0",
  7989. "source": {
  7990. "type": "git",
  7991. "url": "https://github.com/webmozarts/assert.git",
  7992. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7993. },
  7994. "dist": {
  7995. "type": "zip",
  7996. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7997. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7998. "shasum": ""
  7999. },
  8000. "require": {
  8001. "ext-ctype": "*",
  8002. "php": "^7.2 || ^8.0"
  8003. },
  8004. "conflict": {
  8005. "phpstan/phpstan": "<0.12.20",
  8006. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8007. },
  8008. "require-dev": {
  8009. "phpunit/phpunit": "^8.5.13"
  8010. },
  8011. "type": "library",
  8012. "extra": {
  8013. "branch-alias": {
  8014. "dev-master": "1.10-dev"
  8015. }
  8016. },
  8017. "autoload": {
  8018. "psr-4": {
  8019. "Webmozart\\Assert\\": "src/"
  8020. }
  8021. },
  8022. "notification-url": "https://packagist.org/downloads/",
  8023. "license": [
  8024. "MIT"
  8025. ],
  8026. "authors": [
  8027. {
  8028. "name": "Bernhard Schussek",
  8029. "email": "bschussek@gmail.com"
  8030. }
  8031. ],
  8032. "description": "Assertions to validate method input/output with nice error messages.",
  8033. "keywords": [
  8034. "assert",
  8035. "check",
  8036. "validate"
  8037. ],
  8038. "support": {
  8039. "issues": "https://github.com/webmozarts/assert/issues",
  8040. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8041. },
  8042. "time": "2022-06-03T18:03:27+00:00"
  8043. }
  8044. ],
  8045. "packages-dev": [
  8046. {
  8047. "name": "doctrine/cache",
  8048. "version": "2.2.0",
  8049. "source": {
  8050. "type": "git",
  8051. "url": "https://github.com/doctrine/cache.git",
  8052. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  8053. },
  8054. "dist": {
  8055. "type": "zip",
  8056. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  8057. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  8058. "shasum": ""
  8059. },
  8060. "require": {
  8061. "php": "~7.1 || ^8.0"
  8062. },
  8063. "conflict": {
  8064. "doctrine/common": ">2.2,<2.4"
  8065. },
  8066. "require-dev": {
  8067. "cache/integration-tests": "dev-master",
  8068. "doctrine/coding-standard": "^9",
  8069. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8070. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  8071. "symfony/cache": "^4.4 || ^5.4 || ^6",
  8072. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  8073. },
  8074. "type": "library",
  8075. "autoload": {
  8076. "psr-4": {
  8077. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  8078. }
  8079. },
  8080. "notification-url": "https://packagist.org/downloads/",
  8081. "license": [
  8082. "MIT"
  8083. ],
  8084. "authors": [
  8085. {
  8086. "name": "Guilherme Blanco",
  8087. "email": "guilhermeblanco@gmail.com"
  8088. },
  8089. {
  8090. "name": "Roman Borschel",
  8091. "email": "roman@code-factory.org"
  8092. },
  8093. {
  8094. "name": "Benjamin Eberlei",
  8095. "email": "kontakt@beberlei.de"
  8096. },
  8097. {
  8098. "name": "Jonathan Wage",
  8099. "email": "jonwage@gmail.com"
  8100. },
  8101. {
  8102. "name": "Johannes Schmitt",
  8103. "email": "schmittjoh@gmail.com"
  8104. }
  8105. ],
  8106. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  8107. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  8108. "keywords": [
  8109. "abstraction",
  8110. "apcu",
  8111. "cache",
  8112. "caching",
  8113. "couchdb",
  8114. "memcached",
  8115. "php",
  8116. "redis",
  8117. "xcache"
  8118. ],
  8119. "support": {
  8120. "issues": "https://github.com/doctrine/cache/issues",
  8121. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  8122. },
  8123. "funding": [
  8124. {
  8125. "url": "https://www.doctrine-project.org/sponsorship.html",
  8126. "type": "custom"
  8127. },
  8128. {
  8129. "url": "https://www.patreon.com/phpdoctrine",
  8130. "type": "patreon"
  8131. },
  8132. {
  8133. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  8134. "type": "tidelift"
  8135. }
  8136. ],
  8137. "time": "2022-05-20T20:07:39+00:00"
  8138. },
  8139. {
  8140. "name": "doctrine/dbal",
  8141. "version": "3.6.4",
  8142. "source": {
  8143. "type": "git",
  8144. "url": "https://github.com/doctrine/dbal.git",
  8145. "reference": "19f0dec95edd6a3c3c5ff1d188ea94c6b7fc903f"
  8146. },
  8147. "dist": {
  8148. "type": "zip",
  8149. "url": "https://api.github.com/repos/doctrine/dbal/zipball/19f0dec95edd6a3c3c5ff1d188ea94c6b7fc903f",
  8150. "reference": "19f0dec95edd6a3c3c5ff1d188ea94c6b7fc903f",
  8151. "shasum": ""
  8152. },
  8153. "require": {
  8154. "composer-runtime-api": "^2",
  8155. "doctrine/cache": "^1.11|^2.0",
  8156. "doctrine/deprecations": "^0.5.3|^1",
  8157. "doctrine/event-manager": "^1|^2",
  8158. "php": "^7.4 || ^8.0",
  8159. "psr/cache": "^1|^2|^3",
  8160. "psr/log": "^1|^2|^3"
  8161. },
  8162. "require-dev": {
  8163. "doctrine/coding-standard": "12.0.0",
  8164. "fig/log-test": "^1",
  8165. "jetbrains/phpstorm-stubs": "2022.3",
  8166. "phpstan/phpstan": "1.10.14",
  8167. "phpstan/phpstan-strict-rules": "^1.5",
  8168. "phpunit/phpunit": "9.6.7",
  8169. "psalm/plugin-phpunit": "0.18.4",
  8170. "squizlabs/php_codesniffer": "3.7.2",
  8171. "symfony/cache": "^5.4|^6.0",
  8172. "symfony/console": "^4.4|^5.4|^6.0",
  8173. "vimeo/psalm": "4.30.0"
  8174. },
  8175. "suggest": {
  8176. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  8177. },
  8178. "bin": [
  8179. "bin/doctrine-dbal"
  8180. ],
  8181. "type": "library",
  8182. "autoload": {
  8183. "psr-4": {
  8184. "Doctrine\\DBAL\\": "src"
  8185. }
  8186. },
  8187. "notification-url": "https://packagist.org/downloads/",
  8188. "license": [
  8189. "MIT"
  8190. ],
  8191. "authors": [
  8192. {
  8193. "name": "Guilherme Blanco",
  8194. "email": "guilhermeblanco@gmail.com"
  8195. },
  8196. {
  8197. "name": "Roman Borschel",
  8198. "email": "roman@code-factory.org"
  8199. },
  8200. {
  8201. "name": "Benjamin Eberlei",
  8202. "email": "kontakt@beberlei.de"
  8203. },
  8204. {
  8205. "name": "Jonathan Wage",
  8206. "email": "jonwage@gmail.com"
  8207. }
  8208. ],
  8209. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  8210. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  8211. "keywords": [
  8212. "abstraction",
  8213. "database",
  8214. "db2",
  8215. "dbal",
  8216. "mariadb",
  8217. "mssql",
  8218. "mysql",
  8219. "oci8",
  8220. "oracle",
  8221. "pdo",
  8222. "pgsql",
  8223. "postgresql",
  8224. "queryobject",
  8225. "sasql",
  8226. "sql",
  8227. "sqlite",
  8228. "sqlserver",
  8229. "sqlsrv"
  8230. ],
  8231. "support": {
  8232. "issues": "https://github.com/doctrine/dbal/issues",
  8233. "source": "https://github.com/doctrine/dbal/tree/3.6.4"
  8234. },
  8235. "funding": [
  8236. {
  8237. "url": "https://www.doctrine-project.org/sponsorship.html",
  8238. "type": "custom"
  8239. },
  8240. {
  8241. "url": "https://www.patreon.com/phpdoctrine",
  8242. "type": "patreon"
  8243. },
  8244. {
  8245. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  8246. "type": "tidelift"
  8247. }
  8248. ],
  8249. "time": "2023-06-15T07:40:12+00:00"
  8250. },
  8251. {
  8252. "name": "doctrine/deprecations",
  8253. "version": "v1.1.1",
  8254. "source": {
  8255. "type": "git",
  8256. "url": "https://github.com/doctrine/deprecations.git",
  8257. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3"
  8258. },
  8259. "dist": {
  8260. "type": "zip",
  8261. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  8262. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  8263. "shasum": ""
  8264. },
  8265. "require": {
  8266. "php": "^7.1 || ^8.0"
  8267. },
  8268. "require-dev": {
  8269. "doctrine/coding-standard": "^9",
  8270. "phpstan/phpstan": "1.4.10 || 1.10.15",
  8271. "phpstan/phpstan-phpunit": "^1.0",
  8272. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8273. "psalm/plugin-phpunit": "0.18.4",
  8274. "psr/log": "^1 || ^2 || ^3",
  8275. "vimeo/psalm": "4.30.0 || 5.12.0"
  8276. },
  8277. "suggest": {
  8278. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  8279. },
  8280. "type": "library",
  8281. "autoload": {
  8282. "psr-4": {
  8283. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  8284. }
  8285. },
  8286. "notification-url": "https://packagist.org/downloads/",
  8287. "license": [
  8288. "MIT"
  8289. ],
  8290. "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.",
  8291. "homepage": "https://www.doctrine-project.org/",
  8292. "support": {
  8293. "issues": "https://github.com/doctrine/deprecations/issues",
  8294. "source": "https://github.com/doctrine/deprecations/tree/v1.1.1"
  8295. },
  8296. "time": "2023-06-03T09:27:29+00:00"
  8297. },
  8298. {
  8299. "name": "doctrine/event-manager",
  8300. "version": "2.0.0",
  8301. "source": {
  8302. "type": "git",
  8303. "url": "https://github.com/doctrine/event-manager.git",
  8304. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  8305. },
  8306. "dist": {
  8307. "type": "zip",
  8308. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  8309. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  8310. "shasum": ""
  8311. },
  8312. "require": {
  8313. "php": "^8.1"
  8314. },
  8315. "conflict": {
  8316. "doctrine/common": "<2.9"
  8317. },
  8318. "require-dev": {
  8319. "doctrine/coding-standard": "^10",
  8320. "phpstan/phpstan": "^1.8.8",
  8321. "phpunit/phpunit": "^9.5",
  8322. "vimeo/psalm": "^4.28"
  8323. },
  8324. "type": "library",
  8325. "autoload": {
  8326. "psr-4": {
  8327. "Doctrine\\Common\\": "src"
  8328. }
  8329. },
  8330. "notification-url": "https://packagist.org/downloads/",
  8331. "license": [
  8332. "MIT"
  8333. ],
  8334. "authors": [
  8335. {
  8336. "name": "Guilherme Blanco",
  8337. "email": "guilhermeblanco@gmail.com"
  8338. },
  8339. {
  8340. "name": "Roman Borschel",
  8341. "email": "roman@code-factory.org"
  8342. },
  8343. {
  8344. "name": "Benjamin Eberlei",
  8345. "email": "kontakt@beberlei.de"
  8346. },
  8347. {
  8348. "name": "Jonathan Wage",
  8349. "email": "jonwage@gmail.com"
  8350. },
  8351. {
  8352. "name": "Johannes Schmitt",
  8353. "email": "schmittjoh@gmail.com"
  8354. },
  8355. {
  8356. "name": "Marco Pivetta",
  8357. "email": "ocramius@gmail.com"
  8358. }
  8359. ],
  8360. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  8361. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  8362. "keywords": [
  8363. "event",
  8364. "event dispatcher",
  8365. "event manager",
  8366. "event system",
  8367. "events"
  8368. ],
  8369. "support": {
  8370. "issues": "https://github.com/doctrine/event-manager/issues",
  8371. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  8372. },
  8373. "funding": [
  8374. {
  8375. "url": "https://www.doctrine-project.org/sponsorship.html",
  8376. "type": "custom"
  8377. },
  8378. {
  8379. "url": "https://www.patreon.com/phpdoctrine",
  8380. "type": "patreon"
  8381. },
  8382. {
  8383. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  8384. "type": "tidelift"
  8385. }
  8386. ],
  8387. "time": "2022-10-12T20:59:15+00:00"
  8388. },
  8389. {
  8390. "name": "fakerphp/faker",
  8391. "version": "v1.23.0",
  8392. "source": {
  8393. "type": "git",
  8394. "url": "https://github.com/FakerPHP/Faker.git",
  8395. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  8396. },
  8397. "dist": {
  8398. "type": "zip",
  8399. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8400. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8401. "shasum": ""
  8402. },
  8403. "require": {
  8404. "php": "^7.4 || ^8.0",
  8405. "psr/container": "^1.0 || ^2.0",
  8406. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8407. },
  8408. "conflict": {
  8409. "fzaninotto/faker": "*"
  8410. },
  8411. "require-dev": {
  8412. "bamarni/composer-bin-plugin": "^1.4.1",
  8413. "doctrine/persistence": "^1.3 || ^2.0",
  8414. "ext-intl": "*",
  8415. "phpunit/phpunit": "^9.5.26",
  8416. "symfony/phpunit-bridge": "^5.4.16"
  8417. },
  8418. "suggest": {
  8419. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8420. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8421. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8422. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8423. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8424. },
  8425. "type": "library",
  8426. "extra": {
  8427. "branch-alias": {
  8428. "dev-main": "v1.21-dev"
  8429. }
  8430. },
  8431. "autoload": {
  8432. "psr-4": {
  8433. "Faker\\": "src/Faker/"
  8434. }
  8435. },
  8436. "notification-url": "https://packagist.org/downloads/",
  8437. "license": [
  8438. "MIT"
  8439. ],
  8440. "authors": [
  8441. {
  8442. "name": "François Zaninotto"
  8443. }
  8444. ],
  8445. "description": "Faker is a PHP library that generates fake data for you.",
  8446. "keywords": [
  8447. "data",
  8448. "faker",
  8449. "fixtures"
  8450. ],
  8451. "support": {
  8452. "issues": "https://github.com/FakerPHP/Faker/issues",
  8453. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  8454. },
  8455. "time": "2023-06-12T08:44:38+00:00"
  8456. },
  8457. {
  8458. "name": "filp/whoops",
  8459. "version": "2.15.2",
  8460. "source": {
  8461. "type": "git",
  8462. "url": "https://github.com/filp/whoops.git",
  8463. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73"
  8464. },
  8465. "dist": {
  8466. "type": "zip",
  8467. "url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  8468. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  8469. "shasum": ""
  8470. },
  8471. "require": {
  8472. "php": "^5.5.9 || ^7.0 || ^8.0",
  8473. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8474. },
  8475. "require-dev": {
  8476. "mockery/mockery": "^0.9 || ^1.0",
  8477. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8478. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8479. },
  8480. "suggest": {
  8481. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8482. "whoops/soap": "Formats errors as SOAP responses"
  8483. },
  8484. "type": "library",
  8485. "extra": {
  8486. "branch-alias": {
  8487. "dev-master": "2.7-dev"
  8488. }
  8489. },
  8490. "autoload": {
  8491. "psr-4": {
  8492. "Whoops\\": "src/Whoops/"
  8493. }
  8494. },
  8495. "notification-url": "https://packagist.org/downloads/",
  8496. "license": [
  8497. "MIT"
  8498. ],
  8499. "authors": [
  8500. {
  8501. "name": "Filipe Dobreira",
  8502. "homepage": "https://github.com/filp",
  8503. "role": "Developer"
  8504. }
  8505. ],
  8506. "description": "php error handling for cool kids",
  8507. "homepage": "https://filp.github.io/whoops/",
  8508. "keywords": [
  8509. "error",
  8510. "exception",
  8511. "handling",
  8512. "library",
  8513. "throwable",
  8514. "whoops"
  8515. ],
  8516. "support": {
  8517. "issues": "https://github.com/filp/whoops/issues",
  8518. "source": "https://github.com/filp/whoops/tree/2.15.2"
  8519. },
  8520. "funding": [
  8521. {
  8522. "url": "https://github.com/denis-sokolov",
  8523. "type": "github"
  8524. }
  8525. ],
  8526. "time": "2023-04-12T12:00:00+00:00"
  8527. },
  8528. {
  8529. "name": "hamcrest/hamcrest-php",
  8530. "version": "v2.0.1",
  8531. "source": {
  8532. "type": "git",
  8533. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8534. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8535. },
  8536. "dist": {
  8537. "type": "zip",
  8538. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8539. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8540. "shasum": ""
  8541. },
  8542. "require": {
  8543. "php": "^5.3|^7.0|^8.0"
  8544. },
  8545. "replace": {
  8546. "cordoval/hamcrest-php": "*",
  8547. "davedevelopment/hamcrest-php": "*",
  8548. "kodova/hamcrest-php": "*"
  8549. },
  8550. "require-dev": {
  8551. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8552. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8553. },
  8554. "type": "library",
  8555. "extra": {
  8556. "branch-alias": {
  8557. "dev-master": "2.1-dev"
  8558. }
  8559. },
  8560. "autoload": {
  8561. "classmap": [
  8562. "hamcrest"
  8563. ]
  8564. },
  8565. "notification-url": "https://packagist.org/downloads/",
  8566. "license": [
  8567. "BSD-3-Clause"
  8568. ],
  8569. "description": "This is the PHP port of Hamcrest Matchers",
  8570. "keywords": [
  8571. "test"
  8572. ],
  8573. "support": {
  8574. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8575. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8576. },
  8577. "time": "2020-07-09T08:09:16+00:00"
  8578. },
  8579. {
  8580. "name": "laravel/pint",
  8581. "version": "v1.10.3",
  8582. "source": {
  8583. "type": "git",
  8584. "url": "https://github.com/laravel/pint.git",
  8585. "reference": "c472786bca01e4812a9bb7933b23edfc5b6877b7"
  8586. },
  8587. "dist": {
  8588. "type": "zip",
  8589. "url": "https://api.github.com/repos/laravel/pint/zipball/c472786bca01e4812a9bb7933b23edfc5b6877b7",
  8590. "reference": "c472786bca01e4812a9bb7933b23edfc5b6877b7",
  8591. "shasum": ""
  8592. },
  8593. "require": {
  8594. "ext-json": "*",
  8595. "ext-mbstring": "*",
  8596. "ext-tokenizer": "*",
  8597. "ext-xml": "*",
  8598. "php": "^8.1.0"
  8599. },
  8600. "require-dev": {
  8601. "friendsofphp/php-cs-fixer": "^3.18.0",
  8602. "illuminate/view": "^10.5.1",
  8603. "laravel-zero/framework": "^10.0.2",
  8604. "mockery/mockery": "^1.5.1",
  8605. "nunomaduro/larastan": "^2.5.1",
  8606. "nunomaduro/termwind": "^1.15.1",
  8607. "pestphp/pest": "^2.4.0"
  8608. },
  8609. "bin": [
  8610. "builds/pint"
  8611. ],
  8612. "type": "project",
  8613. "autoload": {
  8614. "psr-4": {
  8615. "App\\": "app/",
  8616. "Database\\Seeders\\": "database/seeders/",
  8617. "Database\\Factories\\": "database/factories/"
  8618. }
  8619. },
  8620. "notification-url": "https://packagist.org/downloads/",
  8621. "license": [
  8622. "MIT"
  8623. ],
  8624. "authors": [
  8625. {
  8626. "name": "Nuno Maduro",
  8627. "email": "enunomaduro@gmail.com"
  8628. }
  8629. ],
  8630. "description": "An opinionated code formatter for PHP.",
  8631. "homepage": "https://laravel.com",
  8632. "keywords": [
  8633. "format",
  8634. "formatter",
  8635. "lint",
  8636. "linter",
  8637. "php"
  8638. ],
  8639. "support": {
  8640. "issues": "https://github.com/laravel/pint/issues",
  8641. "source": "https://github.com/laravel/pint"
  8642. },
  8643. "time": "2023-06-20T15:55:03+00:00"
  8644. },
  8645. {
  8646. "name": "laravel/sail",
  8647. "version": "v1.23.0",
  8648. "source": {
  8649. "type": "git",
  8650. "url": "https://github.com/laravel/sail.git",
  8651. "reference": "a2e046f748e87d3ef8b2b381e0e5c5a11f34e46b"
  8652. },
  8653. "dist": {
  8654. "type": "zip",
  8655. "url": "https://api.github.com/repos/laravel/sail/zipball/a2e046f748e87d3ef8b2b381e0e5c5a11f34e46b",
  8656. "reference": "a2e046f748e87d3ef8b2b381e0e5c5a11f34e46b",
  8657. "shasum": ""
  8658. },
  8659. "require": {
  8660. "illuminate/console": "^8.0|^9.0|^10.0",
  8661. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8662. "illuminate/support": "^8.0|^9.0|^10.0",
  8663. "php": "^8.0",
  8664. "symfony/yaml": "^6.0"
  8665. },
  8666. "require-dev": {
  8667. "orchestra/testbench": "^6.0|^7.0|^8.0",
  8668. "phpstan/phpstan": "^1.10"
  8669. },
  8670. "bin": [
  8671. "bin/sail"
  8672. ],
  8673. "type": "library",
  8674. "extra": {
  8675. "branch-alias": {
  8676. "dev-master": "1.x-dev"
  8677. },
  8678. "laravel": {
  8679. "providers": [
  8680. "Laravel\\Sail\\SailServiceProvider"
  8681. ]
  8682. }
  8683. },
  8684. "autoload": {
  8685. "psr-4": {
  8686. "Laravel\\Sail\\": "src/"
  8687. }
  8688. },
  8689. "notification-url": "https://packagist.org/downloads/",
  8690. "license": [
  8691. "MIT"
  8692. ],
  8693. "authors": [
  8694. {
  8695. "name": "Taylor Otwell",
  8696. "email": "taylor@laravel.com"
  8697. }
  8698. ],
  8699. "description": "Docker files for running a basic Laravel application.",
  8700. "keywords": [
  8701. "docker",
  8702. "laravel"
  8703. ],
  8704. "support": {
  8705. "issues": "https://github.com/laravel/sail/issues",
  8706. "source": "https://github.com/laravel/sail"
  8707. },
  8708. "time": "2023-06-16T21:20:12+00:00"
  8709. },
  8710. {
  8711. "name": "mockery/mockery",
  8712. "version": "1.6.2",
  8713. "source": {
  8714. "type": "git",
  8715. "url": "https://github.com/mockery/mockery.git",
  8716. "reference": "13a7fa2642c76c58fa2806ef7f565344c817a191"
  8717. },
  8718. "dist": {
  8719. "type": "zip",
  8720. "url": "https://api.github.com/repos/mockery/mockery/zipball/13a7fa2642c76c58fa2806ef7f565344c817a191",
  8721. "reference": "13a7fa2642c76c58fa2806ef7f565344c817a191",
  8722. "shasum": ""
  8723. },
  8724. "require": {
  8725. "hamcrest/hamcrest-php": "^2.0.1",
  8726. "lib-pcre": ">=7.0",
  8727. "php": "^7.4 || ^8.0"
  8728. },
  8729. "conflict": {
  8730. "phpunit/phpunit": "<8.0"
  8731. },
  8732. "require-dev": {
  8733. "phpunit/phpunit": "^8.5 || ^9.3",
  8734. "psalm/plugin-phpunit": "^0.18",
  8735. "vimeo/psalm": "^5.9"
  8736. },
  8737. "type": "library",
  8738. "extra": {
  8739. "branch-alias": {
  8740. "dev-main": "1.6.x-dev"
  8741. }
  8742. },
  8743. "autoload": {
  8744. "files": [
  8745. "library/helpers.php",
  8746. "library/Mockery.php"
  8747. ],
  8748. "psr-4": {
  8749. "Mockery\\": "library/Mockery"
  8750. }
  8751. },
  8752. "notification-url": "https://packagist.org/downloads/",
  8753. "license": [
  8754. "BSD-3-Clause"
  8755. ],
  8756. "authors": [
  8757. {
  8758. "name": "Pádraic Brady",
  8759. "email": "padraic.brady@gmail.com",
  8760. "homepage": "http://blog.astrumfutura.com"
  8761. },
  8762. {
  8763. "name": "Dave Marshall",
  8764. "email": "dave.marshall@atstsolutions.co.uk",
  8765. "homepage": "http://davedevelopment.co.uk"
  8766. }
  8767. ],
  8768. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8769. "homepage": "https://github.com/mockery/mockery",
  8770. "keywords": [
  8771. "BDD",
  8772. "TDD",
  8773. "library",
  8774. "mock",
  8775. "mock objects",
  8776. "mockery",
  8777. "stub",
  8778. "test",
  8779. "test double",
  8780. "testing"
  8781. ],
  8782. "support": {
  8783. "issues": "https://github.com/mockery/mockery/issues",
  8784. "source": "https://github.com/mockery/mockery/tree/1.6.2"
  8785. },
  8786. "time": "2023-06-07T09:07:52+00:00"
  8787. },
  8788. {
  8789. "name": "myclabs/deep-copy",
  8790. "version": "1.11.1",
  8791. "source": {
  8792. "type": "git",
  8793. "url": "https://github.com/myclabs/DeepCopy.git",
  8794. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8795. },
  8796. "dist": {
  8797. "type": "zip",
  8798. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8799. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8800. "shasum": ""
  8801. },
  8802. "require": {
  8803. "php": "^7.1 || ^8.0"
  8804. },
  8805. "conflict": {
  8806. "doctrine/collections": "<1.6.8",
  8807. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8808. },
  8809. "require-dev": {
  8810. "doctrine/collections": "^1.6.8",
  8811. "doctrine/common": "^2.13.3 || ^3.2.2",
  8812. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8813. },
  8814. "type": "library",
  8815. "autoload": {
  8816. "files": [
  8817. "src/DeepCopy/deep_copy.php"
  8818. ],
  8819. "psr-4": {
  8820. "DeepCopy\\": "src/DeepCopy/"
  8821. }
  8822. },
  8823. "notification-url": "https://packagist.org/downloads/",
  8824. "license": [
  8825. "MIT"
  8826. ],
  8827. "description": "Create deep copies (clones) of your objects",
  8828. "keywords": [
  8829. "clone",
  8830. "copy",
  8831. "duplicate",
  8832. "object",
  8833. "object graph"
  8834. ],
  8835. "support": {
  8836. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8837. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8838. },
  8839. "funding": [
  8840. {
  8841. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8842. "type": "tidelift"
  8843. }
  8844. ],
  8845. "time": "2023-03-08T13:26:56+00:00"
  8846. },
  8847. {
  8848. "name": "nunomaduro/collision",
  8849. "version": "v7.7.0",
  8850. "source": {
  8851. "type": "git",
  8852. "url": "https://github.com/nunomaduro/collision.git",
  8853. "reference": "69a07197d055456d29911116fca3bc2c985f524b"
  8854. },
  8855. "dist": {
  8856. "type": "zip",
  8857. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/69a07197d055456d29911116fca3bc2c985f524b",
  8858. "reference": "69a07197d055456d29911116fca3bc2c985f524b",
  8859. "shasum": ""
  8860. },
  8861. "require": {
  8862. "filp/whoops": "^2.15.2",
  8863. "nunomaduro/termwind": "^1.15.1",
  8864. "php": "^8.1.0",
  8865. "symfony/console": "^6.3.0"
  8866. },
  8867. "conflict": {
  8868. "phpunit/phpunit": "<10.1.2"
  8869. },
  8870. "require-dev": {
  8871. "brianium/paratest": "^7.2.2",
  8872. "laravel/framework": "^10.14.1",
  8873. "laravel/pint": "^1.10.3",
  8874. "laravel/sail": "^1.23.0",
  8875. "laravel/sanctum": "^3.2.5",
  8876. "laravel/tinker": "^2.8.1",
  8877. "nunomaduro/larastan": "^2.6.3",
  8878. "orchestra/testbench-core": "^8.5.8",
  8879. "pestphp/pest": "^2.8.1",
  8880. "phpunit/phpunit": "^10.2.2",
  8881. "sebastian/environment": "^6.0.1",
  8882. "spatie/laravel-ignition": "^2.2.0"
  8883. },
  8884. "type": "library",
  8885. "extra": {
  8886. "laravel": {
  8887. "providers": [
  8888. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8889. ]
  8890. }
  8891. },
  8892. "autoload": {
  8893. "files": [
  8894. "./src/Adapters/Phpunit/Autoload.php"
  8895. ],
  8896. "psr-4": {
  8897. "NunoMaduro\\Collision\\": "src/"
  8898. }
  8899. },
  8900. "notification-url": "https://packagist.org/downloads/",
  8901. "license": [
  8902. "MIT"
  8903. ],
  8904. "authors": [
  8905. {
  8906. "name": "Nuno Maduro",
  8907. "email": "enunomaduro@gmail.com"
  8908. }
  8909. ],
  8910. "description": "Cli error handling for console/command-line PHP applications.",
  8911. "keywords": [
  8912. "artisan",
  8913. "cli",
  8914. "command-line",
  8915. "console",
  8916. "error",
  8917. "handling",
  8918. "laravel",
  8919. "laravel-zero",
  8920. "php",
  8921. "symfony"
  8922. ],
  8923. "support": {
  8924. "issues": "https://github.com/nunomaduro/collision/issues",
  8925. "source": "https://github.com/nunomaduro/collision"
  8926. },
  8927. "funding": [
  8928. {
  8929. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8930. "type": "custom"
  8931. },
  8932. {
  8933. "url": "https://github.com/nunomaduro",
  8934. "type": "github"
  8935. },
  8936. {
  8937. "url": "https://www.patreon.com/nunomaduro",
  8938. "type": "patreon"
  8939. }
  8940. ],
  8941. "time": "2023-06-29T09:10:16+00:00"
  8942. },
  8943. {
  8944. "name": "phar-io/manifest",
  8945. "version": "2.0.3",
  8946. "source": {
  8947. "type": "git",
  8948. "url": "https://github.com/phar-io/manifest.git",
  8949. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8950. },
  8951. "dist": {
  8952. "type": "zip",
  8953. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8954. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8955. "shasum": ""
  8956. },
  8957. "require": {
  8958. "ext-dom": "*",
  8959. "ext-phar": "*",
  8960. "ext-xmlwriter": "*",
  8961. "phar-io/version": "^3.0.1",
  8962. "php": "^7.2 || ^8.0"
  8963. },
  8964. "type": "library",
  8965. "extra": {
  8966. "branch-alias": {
  8967. "dev-master": "2.0.x-dev"
  8968. }
  8969. },
  8970. "autoload": {
  8971. "classmap": [
  8972. "src/"
  8973. ]
  8974. },
  8975. "notification-url": "https://packagist.org/downloads/",
  8976. "license": [
  8977. "BSD-3-Clause"
  8978. ],
  8979. "authors": [
  8980. {
  8981. "name": "Arne Blankerts",
  8982. "email": "arne@blankerts.de",
  8983. "role": "Developer"
  8984. },
  8985. {
  8986. "name": "Sebastian Heuer",
  8987. "email": "sebastian@phpeople.de",
  8988. "role": "Developer"
  8989. },
  8990. {
  8991. "name": "Sebastian Bergmann",
  8992. "email": "sebastian@phpunit.de",
  8993. "role": "Developer"
  8994. }
  8995. ],
  8996. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8997. "support": {
  8998. "issues": "https://github.com/phar-io/manifest/issues",
  8999. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9000. },
  9001. "time": "2021-07-20T11:28:43+00:00"
  9002. },
  9003. {
  9004. "name": "phar-io/version",
  9005. "version": "3.2.1",
  9006. "source": {
  9007. "type": "git",
  9008. "url": "https://github.com/phar-io/version.git",
  9009. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9010. },
  9011. "dist": {
  9012. "type": "zip",
  9013. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9014. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9015. "shasum": ""
  9016. },
  9017. "require": {
  9018. "php": "^7.2 || ^8.0"
  9019. },
  9020. "type": "library",
  9021. "autoload": {
  9022. "classmap": [
  9023. "src/"
  9024. ]
  9025. },
  9026. "notification-url": "https://packagist.org/downloads/",
  9027. "license": [
  9028. "BSD-3-Clause"
  9029. ],
  9030. "authors": [
  9031. {
  9032. "name": "Arne Blankerts",
  9033. "email": "arne@blankerts.de",
  9034. "role": "Developer"
  9035. },
  9036. {
  9037. "name": "Sebastian Heuer",
  9038. "email": "sebastian@phpeople.de",
  9039. "role": "Developer"
  9040. },
  9041. {
  9042. "name": "Sebastian Bergmann",
  9043. "email": "sebastian@phpunit.de",
  9044. "role": "Developer"
  9045. }
  9046. ],
  9047. "description": "Library for handling version information and constraints",
  9048. "support": {
  9049. "issues": "https://github.com/phar-io/version/issues",
  9050. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9051. },
  9052. "time": "2022-02-21T01:04:05+00:00"
  9053. },
  9054. {
  9055. "name": "phpunit/php-code-coverage",
  9056. "version": "10.1.2",
  9057. "source": {
  9058. "type": "git",
  9059. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9060. "reference": "db1497ec8dd382e82c962f7abbe0320e4882ee4e"
  9061. },
  9062. "dist": {
  9063. "type": "zip",
  9064. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/db1497ec8dd382e82c962f7abbe0320e4882ee4e",
  9065. "reference": "db1497ec8dd382e82c962f7abbe0320e4882ee4e",
  9066. "shasum": ""
  9067. },
  9068. "require": {
  9069. "ext-dom": "*",
  9070. "ext-libxml": "*",
  9071. "ext-xmlwriter": "*",
  9072. "nikic/php-parser": "^4.15",
  9073. "php": ">=8.1",
  9074. "phpunit/php-file-iterator": "^4.0",
  9075. "phpunit/php-text-template": "^3.0",
  9076. "sebastian/code-unit-reverse-lookup": "^3.0",
  9077. "sebastian/complexity": "^3.0",
  9078. "sebastian/environment": "^6.0",
  9079. "sebastian/lines-of-code": "^2.0",
  9080. "sebastian/version": "^4.0",
  9081. "theseer/tokenizer": "^1.2.0"
  9082. },
  9083. "require-dev": {
  9084. "phpunit/phpunit": "^10.1"
  9085. },
  9086. "suggest": {
  9087. "ext-pcov": "PHP extension that provides line coverage",
  9088. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9089. },
  9090. "type": "library",
  9091. "extra": {
  9092. "branch-alias": {
  9093. "dev-main": "10.1-dev"
  9094. }
  9095. },
  9096. "autoload": {
  9097. "classmap": [
  9098. "src/"
  9099. ]
  9100. },
  9101. "notification-url": "https://packagist.org/downloads/",
  9102. "license": [
  9103. "BSD-3-Clause"
  9104. ],
  9105. "authors": [
  9106. {
  9107. "name": "Sebastian Bergmann",
  9108. "email": "sebastian@phpunit.de",
  9109. "role": "lead"
  9110. }
  9111. ],
  9112. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9113. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9114. "keywords": [
  9115. "coverage",
  9116. "testing",
  9117. "xunit"
  9118. ],
  9119. "support": {
  9120. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9121. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9122. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.2"
  9123. },
  9124. "funding": [
  9125. {
  9126. "url": "https://github.com/sebastianbergmann",
  9127. "type": "github"
  9128. }
  9129. ],
  9130. "time": "2023-05-22T09:04:27+00:00"
  9131. },
  9132. {
  9133. "name": "phpunit/php-file-iterator",
  9134. "version": "4.0.2",
  9135. "source": {
  9136. "type": "git",
  9137. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9138. "reference": "5647d65443818959172645e7ed999217360654b6"
  9139. },
  9140. "dist": {
  9141. "type": "zip",
  9142. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/5647d65443818959172645e7ed999217360654b6",
  9143. "reference": "5647d65443818959172645e7ed999217360654b6",
  9144. "shasum": ""
  9145. },
  9146. "require": {
  9147. "php": ">=8.1"
  9148. },
  9149. "require-dev": {
  9150. "phpunit/phpunit": "^10.0"
  9151. },
  9152. "type": "library",
  9153. "extra": {
  9154. "branch-alias": {
  9155. "dev-main": "4.0-dev"
  9156. }
  9157. },
  9158. "autoload": {
  9159. "classmap": [
  9160. "src/"
  9161. ]
  9162. },
  9163. "notification-url": "https://packagist.org/downloads/",
  9164. "license": [
  9165. "BSD-3-Clause"
  9166. ],
  9167. "authors": [
  9168. {
  9169. "name": "Sebastian Bergmann",
  9170. "email": "sebastian@phpunit.de",
  9171. "role": "lead"
  9172. }
  9173. ],
  9174. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9175. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9176. "keywords": [
  9177. "filesystem",
  9178. "iterator"
  9179. ],
  9180. "support": {
  9181. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9182. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9183. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.0.2"
  9184. },
  9185. "funding": [
  9186. {
  9187. "url": "https://github.com/sebastianbergmann",
  9188. "type": "github"
  9189. }
  9190. ],
  9191. "time": "2023-05-07T09:13:23+00:00"
  9192. },
  9193. {
  9194. "name": "phpunit/php-invoker",
  9195. "version": "4.0.0",
  9196. "source": {
  9197. "type": "git",
  9198. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9199. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9200. },
  9201. "dist": {
  9202. "type": "zip",
  9203. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9204. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9205. "shasum": ""
  9206. },
  9207. "require": {
  9208. "php": ">=8.1"
  9209. },
  9210. "require-dev": {
  9211. "ext-pcntl": "*",
  9212. "phpunit/phpunit": "^10.0"
  9213. },
  9214. "suggest": {
  9215. "ext-pcntl": "*"
  9216. },
  9217. "type": "library",
  9218. "extra": {
  9219. "branch-alias": {
  9220. "dev-main": "4.0-dev"
  9221. }
  9222. },
  9223. "autoload": {
  9224. "classmap": [
  9225. "src/"
  9226. ]
  9227. },
  9228. "notification-url": "https://packagist.org/downloads/",
  9229. "license": [
  9230. "BSD-3-Clause"
  9231. ],
  9232. "authors": [
  9233. {
  9234. "name": "Sebastian Bergmann",
  9235. "email": "sebastian@phpunit.de",
  9236. "role": "lead"
  9237. }
  9238. ],
  9239. "description": "Invoke callables with a timeout",
  9240. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9241. "keywords": [
  9242. "process"
  9243. ],
  9244. "support": {
  9245. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9246. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9247. },
  9248. "funding": [
  9249. {
  9250. "url": "https://github.com/sebastianbergmann",
  9251. "type": "github"
  9252. }
  9253. ],
  9254. "time": "2023-02-03T06:56:09+00:00"
  9255. },
  9256. {
  9257. "name": "phpunit/php-text-template",
  9258. "version": "3.0.0",
  9259. "source": {
  9260. "type": "git",
  9261. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9262. "reference": "9f3d3709577a527025f55bcf0f7ab8052c8bb37d"
  9263. },
  9264. "dist": {
  9265. "type": "zip",
  9266. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/9f3d3709577a527025f55bcf0f7ab8052c8bb37d",
  9267. "reference": "9f3d3709577a527025f55bcf0f7ab8052c8bb37d",
  9268. "shasum": ""
  9269. },
  9270. "require": {
  9271. "php": ">=8.1"
  9272. },
  9273. "require-dev": {
  9274. "phpunit/phpunit": "^10.0"
  9275. },
  9276. "type": "library",
  9277. "extra": {
  9278. "branch-alias": {
  9279. "dev-main": "3.0-dev"
  9280. }
  9281. },
  9282. "autoload": {
  9283. "classmap": [
  9284. "src/"
  9285. ]
  9286. },
  9287. "notification-url": "https://packagist.org/downloads/",
  9288. "license": [
  9289. "BSD-3-Clause"
  9290. ],
  9291. "authors": [
  9292. {
  9293. "name": "Sebastian Bergmann",
  9294. "email": "sebastian@phpunit.de",
  9295. "role": "lead"
  9296. }
  9297. ],
  9298. "description": "Simple template engine.",
  9299. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9300. "keywords": [
  9301. "template"
  9302. ],
  9303. "support": {
  9304. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9305. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.0"
  9306. },
  9307. "funding": [
  9308. {
  9309. "url": "https://github.com/sebastianbergmann",
  9310. "type": "github"
  9311. }
  9312. ],
  9313. "time": "2023-02-03T06:56:46+00:00"
  9314. },
  9315. {
  9316. "name": "phpunit/php-timer",
  9317. "version": "6.0.0",
  9318. "source": {
  9319. "type": "git",
  9320. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9321. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9322. },
  9323. "dist": {
  9324. "type": "zip",
  9325. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9326. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9327. "shasum": ""
  9328. },
  9329. "require": {
  9330. "php": ">=8.1"
  9331. },
  9332. "require-dev": {
  9333. "phpunit/phpunit": "^10.0"
  9334. },
  9335. "type": "library",
  9336. "extra": {
  9337. "branch-alias": {
  9338. "dev-main": "6.0-dev"
  9339. }
  9340. },
  9341. "autoload": {
  9342. "classmap": [
  9343. "src/"
  9344. ]
  9345. },
  9346. "notification-url": "https://packagist.org/downloads/",
  9347. "license": [
  9348. "BSD-3-Clause"
  9349. ],
  9350. "authors": [
  9351. {
  9352. "name": "Sebastian Bergmann",
  9353. "email": "sebastian@phpunit.de",
  9354. "role": "lead"
  9355. }
  9356. ],
  9357. "description": "Utility class for timing",
  9358. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9359. "keywords": [
  9360. "timer"
  9361. ],
  9362. "support": {
  9363. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9364. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9365. },
  9366. "funding": [
  9367. {
  9368. "url": "https://github.com/sebastianbergmann",
  9369. "type": "github"
  9370. }
  9371. ],
  9372. "time": "2023-02-03T06:57:52+00:00"
  9373. },
  9374. {
  9375. "name": "phpunit/phpunit",
  9376. "version": "10.2.3",
  9377. "source": {
  9378. "type": "git",
  9379. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9380. "reference": "35c8cac1734ede2ae354a6644f7088356ff5b08e"
  9381. },
  9382. "dist": {
  9383. "type": "zip",
  9384. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/35c8cac1734ede2ae354a6644f7088356ff5b08e",
  9385. "reference": "35c8cac1734ede2ae354a6644f7088356ff5b08e",
  9386. "shasum": ""
  9387. },
  9388. "require": {
  9389. "ext-dom": "*",
  9390. "ext-json": "*",
  9391. "ext-libxml": "*",
  9392. "ext-mbstring": "*",
  9393. "ext-xml": "*",
  9394. "ext-xmlwriter": "*",
  9395. "myclabs/deep-copy": "^1.10.1",
  9396. "phar-io/manifest": "^2.0.3",
  9397. "phar-io/version": "^3.0.2",
  9398. "php": ">=8.1",
  9399. "phpunit/php-code-coverage": "^10.1.1",
  9400. "phpunit/php-file-iterator": "^4.0",
  9401. "phpunit/php-invoker": "^4.0",
  9402. "phpunit/php-text-template": "^3.0",
  9403. "phpunit/php-timer": "^6.0",
  9404. "sebastian/cli-parser": "^2.0",
  9405. "sebastian/code-unit": "^2.0",
  9406. "sebastian/comparator": "^5.0",
  9407. "sebastian/diff": "^5.0",
  9408. "sebastian/environment": "^6.0",
  9409. "sebastian/exporter": "^5.0",
  9410. "sebastian/global-state": "^6.0",
  9411. "sebastian/object-enumerator": "^5.0",
  9412. "sebastian/recursion-context": "^5.0",
  9413. "sebastian/type": "^4.0",
  9414. "sebastian/version": "^4.0"
  9415. },
  9416. "suggest": {
  9417. "ext-soap": "To be able to generate mocks based on WSDL files"
  9418. },
  9419. "bin": [
  9420. "phpunit"
  9421. ],
  9422. "type": "library",
  9423. "extra": {
  9424. "branch-alias": {
  9425. "dev-main": "10.2-dev"
  9426. }
  9427. },
  9428. "autoload": {
  9429. "files": [
  9430. "src/Framework/Assert/Functions.php"
  9431. ],
  9432. "classmap": [
  9433. "src/"
  9434. ]
  9435. },
  9436. "notification-url": "https://packagist.org/downloads/",
  9437. "license": [
  9438. "BSD-3-Clause"
  9439. ],
  9440. "authors": [
  9441. {
  9442. "name": "Sebastian Bergmann",
  9443. "email": "sebastian@phpunit.de",
  9444. "role": "lead"
  9445. }
  9446. ],
  9447. "description": "The PHP Unit Testing framework.",
  9448. "homepage": "https://phpunit.de/",
  9449. "keywords": [
  9450. "phpunit",
  9451. "testing",
  9452. "xunit"
  9453. ],
  9454. "support": {
  9455. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9456. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9457. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.2.3"
  9458. },
  9459. "funding": [
  9460. {
  9461. "url": "https://phpunit.de/sponsors.html",
  9462. "type": "custom"
  9463. },
  9464. {
  9465. "url": "https://github.com/sebastianbergmann",
  9466. "type": "github"
  9467. },
  9468. {
  9469. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9470. "type": "tidelift"
  9471. }
  9472. ],
  9473. "time": "2023-06-30T06:17:38+00:00"
  9474. },
  9475. {
  9476. "name": "psr/cache",
  9477. "version": "3.0.0",
  9478. "source": {
  9479. "type": "git",
  9480. "url": "https://github.com/php-fig/cache.git",
  9481. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  9482. },
  9483. "dist": {
  9484. "type": "zip",
  9485. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  9486. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  9487. "shasum": ""
  9488. },
  9489. "require": {
  9490. "php": ">=8.0.0"
  9491. },
  9492. "type": "library",
  9493. "extra": {
  9494. "branch-alias": {
  9495. "dev-master": "1.0.x-dev"
  9496. }
  9497. },
  9498. "autoload": {
  9499. "psr-4": {
  9500. "Psr\\Cache\\": "src/"
  9501. }
  9502. },
  9503. "notification-url": "https://packagist.org/downloads/",
  9504. "license": [
  9505. "MIT"
  9506. ],
  9507. "authors": [
  9508. {
  9509. "name": "PHP-FIG",
  9510. "homepage": "https://www.php-fig.org/"
  9511. }
  9512. ],
  9513. "description": "Common interface for caching libraries",
  9514. "keywords": [
  9515. "cache",
  9516. "psr",
  9517. "psr-6"
  9518. ],
  9519. "support": {
  9520. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  9521. },
  9522. "time": "2021-02-03T23:26:27+00:00"
  9523. },
  9524. {
  9525. "name": "sebastian/cli-parser",
  9526. "version": "2.0.0",
  9527. "source": {
  9528. "type": "git",
  9529. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9530. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae"
  9531. },
  9532. "dist": {
  9533. "type": "zip",
  9534. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/efdc130dbbbb8ef0b545a994fd811725c5282cae",
  9535. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae",
  9536. "shasum": ""
  9537. },
  9538. "require": {
  9539. "php": ">=8.1"
  9540. },
  9541. "require-dev": {
  9542. "phpunit/phpunit": "^10.0"
  9543. },
  9544. "type": "library",
  9545. "extra": {
  9546. "branch-alias": {
  9547. "dev-main": "2.0-dev"
  9548. }
  9549. },
  9550. "autoload": {
  9551. "classmap": [
  9552. "src/"
  9553. ]
  9554. },
  9555. "notification-url": "https://packagist.org/downloads/",
  9556. "license": [
  9557. "BSD-3-Clause"
  9558. ],
  9559. "authors": [
  9560. {
  9561. "name": "Sebastian Bergmann",
  9562. "email": "sebastian@phpunit.de",
  9563. "role": "lead"
  9564. }
  9565. ],
  9566. "description": "Library for parsing CLI options",
  9567. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9568. "support": {
  9569. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9570. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.0"
  9571. },
  9572. "funding": [
  9573. {
  9574. "url": "https://github.com/sebastianbergmann",
  9575. "type": "github"
  9576. }
  9577. ],
  9578. "time": "2023-02-03T06:58:15+00:00"
  9579. },
  9580. {
  9581. "name": "sebastian/code-unit",
  9582. "version": "2.0.0",
  9583. "source": {
  9584. "type": "git",
  9585. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9586. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9587. },
  9588. "dist": {
  9589. "type": "zip",
  9590. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9591. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9592. "shasum": ""
  9593. },
  9594. "require": {
  9595. "php": ">=8.1"
  9596. },
  9597. "require-dev": {
  9598. "phpunit/phpunit": "^10.0"
  9599. },
  9600. "type": "library",
  9601. "extra": {
  9602. "branch-alias": {
  9603. "dev-main": "2.0-dev"
  9604. }
  9605. },
  9606. "autoload": {
  9607. "classmap": [
  9608. "src/"
  9609. ]
  9610. },
  9611. "notification-url": "https://packagist.org/downloads/",
  9612. "license": [
  9613. "BSD-3-Clause"
  9614. ],
  9615. "authors": [
  9616. {
  9617. "name": "Sebastian Bergmann",
  9618. "email": "sebastian@phpunit.de",
  9619. "role": "lead"
  9620. }
  9621. ],
  9622. "description": "Collection of value objects that represent the PHP code units",
  9623. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9624. "support": {
  9625. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9626. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9627. },
  9628. "funding": [
  9629. {
  9630. "url": "https://github.com/sebastianbergmann",
  9631. "type": "github"
  9632. }
  9633. ],
  9634. "time": "2023-02-03T06:58:43+00:00"
  9635. },
  9636. {
  9637. "name": "sebastian/code-unit-reverse-lookup",
  9638. "version": "3.0.0",
  9639. "source": {
  9640. "type": "git",
  9641. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9642. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9643. },
  9644. "dist": {
  9645. "type": "zip",
  9646. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9647. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9648. "shasum": ""
  9649. },
  9650. "require": {
  9651. "php": ">=8.1"
  9652. },
  9653. "require-dev": {
  9654. "phpunit/phpunit": "^10.0"
  9655. },
  9656. "type": "library",
  9657. "extra": {
  9658. "branch-alias": {
  9659. "dev-main": "3.0-dev"
  9660. }
  9661. },
  9662. "autoload": {
  9663. "classmap": [
  9664. "src/"
  9665. ]
  9666. },
  9667. "notification-url": "https://packagist.org/downloads/",
  9668. "license": [
  9669. "BSD-3-Clause"
  9670. ],
  9671. "authors": [
  9672. {
  9673. "name": "Sebastian Bergmann",
  9674. "email": "sebastian@phpunit.de"
  9675. }
  9676. ],
  9677. "description": "Looks up which function or method a line of code belongs to",
  9678. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9679. "support": {
  9680. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9681. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9682. },
  9683. "funding": [
  9684. {
  9685. "url": "https://github.com/sebastianbergmann",
  9686. "type": "github"
  9687. }
  9688. ],
  9689. "time": "2023-02-03T06:59:15+00:00"
  9690. },
  9691. {
  9692. "name": "sebastian/comparator",
  9693. "version": "5.0.0",
  9694. "source": {
  9695. "type": "git",
  9696. "url": "https://github.com/sebastianbergmann/comparator.git",
  9697. "reference": "72f01e6586e0caf6af81297897bd112eb7e9627c"
  9698. },
  9699. "dist": {
  9700. "type": "zip",
  9701. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/72f01e6586e0caf6af81297897bd112eb7e9627c",
  9702. "reference": "72f01e6586e0caf6af81297897bd112eb7e9627c",
  9703. "shasum": ""
  9704. },
  9705. "require": {
  9706. "ext-dom": "*",
  9707. "ext-mbstring": "*",
  9708. "php": ">=8.1",
  9709. "sebastian/diff": "^5.0",
  9710. "sebastian/exporter": "^5.0"
  9711. },
  9712. "require-dev": {
  9713. "phpunit/phpunit": "^10.0"
  9714. },
  9715. "type": "library",
  9716. "extra": {
  9717. "branch-alias": {
  9718. "dev-main": "5.0-dev"
  9719. }
  9720. },
  9721. "autoload": {
  9722. "classmap": [
  9723. "src/"
  9724. ]
  9725. },
  9726. "notification-url": "https://packagist.org/downloads/",
  9727. "license": [
  9728. "BSD-3-Clause"
  9729. ],
  9730. "authors": [
  9731. {
  9732. "name": "Sebastian Bergmann",
  9733. "email": "sebastian@phpunit.de"
  9734. },
  9735. {
  9736. "name": "Jeff Welch",
  9737. "email": "whatthejeff@gmail.com"
  9738. },
  9739. {
  9740. "name": "Volker Dusch",
  9741. "email": "github@wallbash.com"
  9742. },
  9743. {
  9744. "name": "Bernhard Schussek",
  9745. "email": "bschussek@2bepublished.at"
  9746. }
  9747. ],
  9748. "description": "Provides the functionality to compare PHP values for equality",
  9749. "homepage": "https://github.com/sebastianbergmann/comparator",
  9750. "keywords": [
  9751. "comparator",
  9752. "compare",
  9753. "equality"
  9754. ],
  9755. "support": {
  9756. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9757. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.0"
  9758. },
  9759. "funding": [
  9760. {
  9761. "url": "https://github.com/sebastianbergmann",
  9762. "type": "github"
  9763. }
  9764. ],
  9765. "time": "2023-02-03T07:07:16+00:00"
  9766. },
  9767. {
  9768. "name": "sebastian/complexity",
  9769. "version": "3.0.0",
  9770. "source": {
  9771. "type": "git",
  9772. "url": "https://github.com/sebastianbergmann/complexity.git",
  9773. "reference": "e67d240970c9dc7ea7b2123a6d520e334dd61dc6"
  9774. },
  9775. "dist": {
  9776. "type": "zip",
  9777. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/e67d240970c9dc7ea7b2123a6d520e334dd61dc6",
  9778. "reference": "e67d240970c9dc7ea7b2123a6d520e334dd61dc6",
  9779. "shasum": ""
  9780. },
  9781. "require": {
  9782. "nikic/php-parser": "^4.10",
  9783. "php": ">=8.1"
  9784. },
  9785. "require-dev": {
  9786. "phpunit/phpunit": "^10.0"
  9787. },
  9788. "type": "library",
  9789. "extra": {
  9790. "branch-alias": {
  9791. "dev-main": "3.0-dev"
  9792. }
  9793. },
  9794. "autoload": {
  9795. "classmap": [
  9796. "src/"
  9797. ]
  9798. },
  9799. "notification-url": "https://packagist.org/downloads/",
  9800. "license": [
  9801. "BSD-3-Clause"
  9802. ],
  9803. "authors": [
  9804. {
  9805. "name": "Sebastian Bergmann",
  9806. "email": "sebastian@phpunit.de",
  9807. "role": "lead"
  9808. }
  9809. ],
  9810. "description": "Library for calculating the complexity of PHP code units",
  9811. "homepage": "https://github.com/sebastianbergmann/complexity",
  9812. "support": {
  9813. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9814. "source": "https://github.com/sebastianbergmann/complexity/tree/3.0.0"
  9815. },
  9816. "funding": [
  9817. {
  9818. "url": "https://github.com/sebastianbergmann",
  9819. "type": "github"
  9820. }
  9821. ],
  9822. "time": "2023-02-03T06:59:47+00:00"
  9823. },
  9824. {
  9825. "name": "sebastian/diff",
  9826. "version": "5.0.3",
  9827. "source": {
  9828. "type": "git",
  9829. "url": "https://github.com/sebastianbergmann/diff.git",
  9830. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b"
  9831. },
  9832. "dist": {
  9833. "type": "zip",
  9834. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  9835. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  9836. "shasum": ""
  9837. },
  9838. "require": {
  9839. "php": ">=8.1"
  9840. },
  9841. "require-dev": {
  9842. "phpunit/phpunit": "^10.0",
  9843. "symfony/process": "^4.2 || ^5"
  9844. },
  9845. "type": "library",
  9846. "extra": {
  9847. "branch-alias": {
  9848. "dev-main": "5.0-dev"
  9849. }
  9850. },
  9851. "autoload": {
  9852. "classmap": [
  9853. "src/"
  9854. ]
  9855. },
  9856. "notification-url": "https://packagist.org/downloads/",
  9857. "license": [
  9858. "BSD-3-Clause"
  9859. ],
  9860. "authors": [
  9861. {
  9862. "name": "Sebastian Bergmann",
  9863. "email": "sebastian@phpunit.de"
  9864. },
  9865. {
  9866. "name": "Kore Nordmann",
  9867. "email": "mail@kore-nordmann.de"
  9868. }
  9869. ],
  9870. "description": "Diff implementation",
  9871. "homepage": "https://github.com/sebastianbergmann/diff",
  9872. "keywords": [
  9873. "diff",
  9874. "udiff",
  9875. "unidiff",
  9876. "unified diff"
  9877. ],
  9878. "support": {
  9879. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9880. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9881. "source": "https://github.com/sebastianbergmann/diff/tree/5.0.3"
  9882. },
  9883. "funding": [
  9884. {
  9885. "url": "https://github.com/sebastianbergmann",
  9886. "type": "github"
  9887. }
  9888. ],
  9889. "time": "2023-05-01T07:48:21+00:00"
  9890. },
  9891. {
  9892. "name": "sebastian/environment",
  9893. "version": "6.0.1",
  9894. "source": {
  9895. "type": "git",
  9896. "url": "https://github.com/sebastianbergmann/environment.git",
  9897. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951"
  9898. },
  9899. "dist": {
  9900. "type": "zip",
  9901. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951",
  9902. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951",
  9903. "shasum": ""
  9904. },
  9905. "require": {
  9906. "php": ">=8.1"
  9907. },
  9908. "require-dev": {
  9909. "phpunit/phpunit": "^10.0"
  9910. },
  9911. "suggest": {
  9912. "ext-posix": "*"
  9913. },
  9914. "type": "library",
  9915. "extra": {
  9916. "branch-alias": {
  9917. "dev-main": "6.0-dev"
  9918. }
  9919. },
  9920. "autoload": {
  9921. "classmap": [
  9922. "src/"
  9923. ]
  9924. },
  9925. "notification-url": "https://packagist.org/downloads/",
  9926. "license": [
  9927. "BSD-3-Clause"
  9928. ],
  9929. "authors": [
  9930. {
  9931. "name": "Sebastian Bergmann",
  9932. "email": "sebastian@phpunit.de"
  9933. }
  9934. ],
  9935. "description": "Provides functionality to handle HHVM/PHP environments",
  9936. "homepage": "https://github.com/sebastianbergmann/environment",
  9937. "keywords": [
  9938. "Xdebug",
  9939. "environment",
  9940. "hhvm"
  9941. ],
  9942. "support": {
  9943. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9944. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9945. "source": "https://github.com/sebastianbergmann/environment/tree/6.0.1"
  9946. },
  9947. "funding": [
  9948. {
  9949. "url": "https://github.com/sebastianbergmann",
  9950. "type": "github"
  9951. }
  9952. ],
  9953. "time": "2023-04-11T05:39:26+00:00"
  9954. },
  9955. {
  9956. "name": "sebastian/exporter",
  9957. "version": "5.0.0",
  9958. "source": {
  9959. "type": "git",
  9960. "url": "https://github.com/sebastianbergmann/exporter.git",
  9961. "reference": "f3ec4bf931c0b31e5b413f5b4fc970a7d03338c0"
  9962. },
  9963. "dist": {
  9964. "type": "zip",
  9965. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/f3ec4bf931c0b31e5b413f5b4fc970a7d03338c0",
  9966. "reference": "f3ec4bf931c0b31e5b413f5b4fc970a7d03338c0",
  9967. "shasum": ""
  9968. },
  9969. "require": {
  9970. "ext-mbstring": "*",
  9971. "php": ">=8.1",
  9972. "sebastian/recursion-context": "^5.0"
  9973. },
  9974. "require-dev": {
  9975. "phpunit/phpunit": "^10.0"
  9976. },
  9977. "type": "library",
  9978. "extra": {
  9979. "branch-alias": {
  9980. "dev-main": "5.0-dev"
  9981. }
  9982. },
  9983. "autoload": {
  9984. "classmap": [
  9985. "src/"
  9986. ]
  9987. },
  9988. "notification-url": "https://packagist.org/downloads/",
  9989. "license": [
  9990. "BSD-3-Clause"
  9991. ],
  9992. "authors": [
  9993. {
  9994. "name": "Sebastian Bergmann",
  9995. "email": "sebastian@phpunit.de"
  9996. },
  9997. {
  9998. "name": "Jeff Welch",
  9999. "email": "whatthejeff@gmail.com"
  10000. },
  10001. {
  10002. "name": "Volker Dusch",
  10003. "email": "github@wallbash.com"
  10004. },
  10005. {
  10006. "name": "Adam Harvey",
  10007. "email": "aharvey@php.net"
  10008. },
  10009. {
  10010. "name": "Bernhard Schussek",
  10011. "email": "bschussek@gmail.com"
  10012. }
  10013. ],
  10014. "description": "Provides the functionality to export PHP variables for visualization",
  10015. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10016. "keywords": [
  10017. "export",
  10018. "exporter"
  10019. ],
  10020. "support": {
  10021. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10022. "source": "https://github.com/sebastianbergmann/exporter/tree/5.0.0"
  10023. },
  10024. "funding": [
  10025. {
  10026. "url": "https://github.com/sebastianbergmann",
  10027. "type": "github"
  10028. }
  10029. ],
  10030. "time": "2023-02-03T07:06:49+00:00"
  10031. },
  10032. {
  10033. "name": "sebastian/global-state",
  10034. "version": "6.0.0",
  10035. "source": {
  10036. "type": "git",
  10037. "url": "https://github.com/sebastianbergmann/global-state.git",
  10038. "reference": "aab257c712de87b90194febd52e4d184551c2d44"
  10039. },
  10040. "dist": {
  10041. "type": "zip",
  10042. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/aab257c712de87b90194febd52e4d184551c2d44",
  10043. "reference": "aab257c712de87b90194febd52e4d184551c2d44",
  10044. "shasum": ""
  10045. },
  10046. "require": {
  10047. "php": ">=8.1",
  10048. "sebastian/object-reflector": "^3.0",
  10049. "sebastian/recursion-context": "^5.0"
  10050. },
  10051. "require-dev": {
  10052. "ext-dom": "*",
  10053. "phpunit/phpunit": "^10.0"
  10054. },
  10055. "type": "library",
  10056. "extra": {
  10057. "branch-alias": {
  10058. "dev-main": "6.0-dev"
  10059. }
  10060. },
  10061. "autoload": {
  10062. "classmap": [
  10063. "src/"
  10064. ]
  10065. },
  10066. "notification-url": "https://packagist.org/downloads/",
  10067. "license": [
  10068. "BSD-3-Clause"
  10069. ],
  10070. "authors": [
  10071. {
  10072. "name": "Sebastian Bergmann",
  10073. "email": "sebastian@phpunit.de"
  10074. }
  10075. ],
  10076. "description": "Snapshotting of global state",
  10077. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10078. "keywords": [
  10079. "global state"
  10080. ],
  10081. "support": {
  10082. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10083. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.0"
  10084. },
  10085. "funding": [
  10086. {
  10087. "url": "https://github.com/sebastianbergmann",
  10088. "type": "github"
  10089. }
  10090. ],
  10091. "time": "2023-02-03T07:07:38+00:00"
  10092. },
  10093. {
  10094. "name": "sebastian/lines-of-code",
  10095. "version": "2.0.0",
  10096. "source": {
  10097. "type": "git",
  10098. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10099. "reference": "17c4d940ecafb3d15d2cf916f4108f664e28b130"
  10100. },
  10101. "dist": {
  10102. "type": "zip",
  10103. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/17c4d940ecafb3d15d2cf916f4108f664e28b130",
  10104. "reference": "17c4d940ecafb3d15d2cf916f4108f664e28b130",
  10105. "shasum": ""
  10106. },
  10107. "require": {
  10108. "nikic/php-parser": "^4.10",
  10109. "php": ">=8.1"
  10110. },
  10111. "require-dev": {
  10112. "phpunit/phpunit": "^10.0"
  10113. },
  10114. "type": "library",
  10115. "extra": {
  10116. "branch-alias": {
  10117. "dev-main": "2.0-dev"
  10118. }
  10119. },
  10120. "autoload": {
  10121. "classmap": [
  10122. "src/"
  10123. ]
  10124. },
  10125. "notification-url": "https://packagist.org/downloads/",
  10126. "license": [
  10127. "BSD-3-Clause"
  10128. ],
  10129. "authors": [
  10130. {
  10131. "name": "Sebastian Bergmann",
  10132. "email": "sebastian@phpunit.de",
  10133. "role": "lead"
  10134. }
  10135. ],
  10136. "description": "Library for counting the lines of code in PHP source code",
  10137. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10138. "support": {
  10139. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10140. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.0"
  10141. },
  10142. "funding": [
  10143. {
  10144. "url": "https://github.com/sebastianbergmann",
  10145. "type": "github"
  10146. }
  10147. ],
  10148. "time": "2023-02-03T07:08:02+00:00"
  10149. },
  10150. {
  10151. "name": "sebastian/object-enumerator",
  10152. "version": "5.0.0",
  10153. "source": {
  10154. "type": "git",
  10155. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10156. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10157. },
  10158. "dist": {
  10159. "type": "zip",
  10160. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10161. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10162. "shasum": ""
  10163. },
  10164. "require": {
  10165. "php": ">=8.1",
  10166. "sebastian/object-reflector": "^3.0",
  10167. "sebastian/recursion-context": "^5.0"
  10168. },
  10169. "require-dev": {
  10170. "phpunit/phpunit": "^10.0"
  10171. },
  10172. "type": "library",
  10173. "extra": {
  10174. "branch-alias": {
  10175. "dev-main": "5.0-dev"
  10176. }
  10177. },
  10178. "autoload": {
  10179. "classmap": [
  10180. "src/"
  10181. ]
  10182. },
  10183. "notification-url": "https://packagist.org/downloads/",
  10184. "license": [
  10185. "BSD-3-Clause"
  10186. ],
  10187. "authors": [
  10188. {
  10189. "name": "Sebastian Bergmann",
  10190. "email": "sebastian@phpunit.de"
  10191. }
  10192. ],
  10193. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10194. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10195. "support": {
  10196. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10197. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10198. },
  10199. "funding": [
  10200. {
  10201. "url": "https://github.com/sebastianbergmann",
  10202. "type": "github"
  10203. }
  10204. ],
  10205. "time": "2023-02-03T07:08:32+00:00"
  10206. },
  10207. {
  10208. "name": "sebastian/object-reflector",
  10209. "version": "3.0.0",
  10210. "source": {
  10211. "type": "git",
  10212. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10213. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10214. },
  10215. "dist": {
  10216. "type": "zip",
  10217. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10218. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10219. "shasum": ""
  10220. },
  10221. "require": {
  10222. "php": ">=8.1"
  10223. },
  10224. "require-dev": {
  10225. "phpunit/phpunit": "^10.0"
  10226. },
  10227. "type": "library",
  10228. "extra": {
  10229. "branch-alias": {
  10230. "dev-main": "3.0-dev"
  10231. }
  10232. },
  10233. "autoload": {
  10234. "classmap": [
  10235. "src/"
  10236. ]
  10237. },
  10238. "notification-url": "https://packagist.org/downloads/",
  10239. "license": [
  10240. "BSD-3-Clause"
  10241. ],
  10242. "authors": [
  10243. {
  10244. "name": "Sebastian Bergmann",
  10245. "email": "sebastian@phpunit.de"
  10246. }
  10247. ],
  10248. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10249. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10250. "support": {
  10251. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10252. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10253. },
  10254. "funding": [
  10255. {
  10256. "url": "https://github.com/sebastianbergmann",
  10257. "type": "github"
  10258. }
  10259. ],
  10260. "time": "2023-02-03T07:06:18+00:00"
  10261. },
  10262. {
  10263. "name": "sebastian/recursion-context",
  10264. "version": "5.0.0",
  10265. "source": {
  10266. "type": "git",
  10267. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10268. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10269. },
  10270. "dist": {
  10271. "type": "zip",
  10272. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10273. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10274. "shasum": ""
  10275. },
  10276. "require": {
  10277. "php": ">=8.1"
  10278. },
  10279. "require-dev": {
  10280. "phpunit/phpunit": "^10.0"
  10281. },
  10282. "type": "library",
  10283. "extra": {
  10284. "branch-alias": {
  10285. "dev-main": "5.0-dev"
  10286. }
  10287. },
  10288. "autoload": {
  10289. "classmap": [
  10290. "src/"
  10291. ]
  10292. },
  10293. "notification-url": "https://packagist.org/downloads/",
  10294. "license": [
  10295. "BSD-3-Clause"
  10296. ],
  10297. "authors": [
  10298. {
  10299. "name": "Sebastian Bergmann",
  10300. "email": "sebastian@phpunit.de"
  10301. },
  10302. {
  10303. "name": "Jeff Welch",
  10304. "email": "whatthejeff@gmail.com"
  10305. },
  10306. {
  10307. "name": "Adam Harvey",
  10308. "email": "aharvey@php.net"
  10309. }
  10310. ],
  10311. "description": "Provides functionality to recursively process PHP variables",
  10312. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10313. "support": {
  10314. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10315. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10316. },
  10317. "funding": [
  10318. {
  10319. "url": "https://github.com/sebastianbergmann",
  10320. "type": "github"
  10321. }
  10322. ],
  10323. "time": "2023-02-03T07:05:40+00:00"
  10324. },
  10325. {
  10326. "name": "sebastian/type",
  10327. "version": "4.0.0",
  10328. "source": {
  10329. "type": "git",
  10330. "url": "https://github.com/sebastianbergmann/type.git",
  10331. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10332. },
  10333. "dist": {
  10334. "type": "zip",
  10335. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10336. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10337. "shasum": ""
  10338. },
  10339. "require": {
  10340. "php": ">=8.1"
  10341. },
  10342. "require-dev": {
  10343. "phpunit/phpunit": "^10.0"
  10344. },
  10345. "type": "library",
  10346. "extra": {
  10347. "branch-alias": {
  10348. "dev-main": "4.0-dev"
  10349. }
  10350. },
  10351. "autoload": {
  10352. "classmap": [
  10353. "src/"
  10354. ]
  10355. },
  10356. "notification-url": "https://packagist.org/downloads/",
  10357. "license": [
  10358. "BSD-3-Clause"
  10359. ],
  10360. "authors": [
  10361. {
  10362. "name": "Sebastian Bergmann",
  10363. "email": "sebastian@phpunit.de",
  10364. "role": "lead"
  10365. }
  10366. ],
  10367. "description": "Collection of value objects that represent the types of the PHP type system",
  10368. "homepage": "https://github.com/sebastianbergmann/type",
  10369. "support": {
  10370. "issues": "https://github.com/sebastianbergmann/type/issues",
  10371. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10372. },
  10373. "funding": [
  10374. {
  10375. "url": "https://github.com/sebastianbergmann",
  10376. "type": "github"
  10377. }
  10378. ],
  10379. "time": "2023-02-03T07:10:45+00:00"
  10380. },
  10381. {
  10382. "name": "sebastian/version",
  10383. "version": "4.0.1",
  10384. "source": {
  10385. "type": "git",
  10386. "url": "https://github.com/sebastianbergmann/version.git",
  10387. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10388. },
  10389. "dist": {
  10390. "type": "zip",
  10391. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10392. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10393. "shasum": ""
  10394. },
  10395. "require": {
  10396. "php": ">=8.1"
  10397. },
  10398. "type": "library",
  10399. "extra": {
  10400. "branch-alias": {
  10401. "dev-main": "4.0-dev"
  10402. }
  10403. },
  10404. "autoload": {
  10405. "classmap": [
  10406. "src/"
  10407. ]
  10408. },
  10409. "notification-url": "https://packagist.org/downloads/",
  10410. "license": [
  10411. "BSD-3-Clause"
  10412. ],
  10413. "authors": [
  10414. {
  10415. "name": "Sebastian Bergmann",
  10416. "email": "sebastian@phpunit.de",
  10417. "role": "lead"
  10418. }
  10419. ],
  10420. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10421. "homepage": "https://github.com/sebastianbergmann/version",
  10422. "support": {
  10423. "issues": "https://github.com/sebastianbergmann/version/issues",
  10424. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10425. },
  10426. "funding": [
  10427. {
  10428. "url": "https://github.com/sebastianbergmann",
  10429. "type": "github"
  10430. }
  10431. ],
  10432. "time": "2023-02-07T11:34:05+00:00"
  10433. },
  10434. {
  10435. "name": "spatie/backtrace",
  10436. "version": "1.5.3",
  10437. "source": {
  10438. "type": "git",
  10439. "url": "https://github.com/spatie/backtrace.git",
  10440. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab"
  10441. },
  10442. "dist": {
  10443. "type": "zip",
  10444. "url": "https://api.github.com/repos/spatie/backtrace/zipball/483f76a82964a0431aa836b6ed0edde0c248e3ab",
  10445. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab",
  10446. "shasum": ""
  10447. },
  10448. "require": {
  10449. "php": "^7.3|^8.0"
  10450. },
  10451. "require-dev": {
  10452. "ext-json": "*",
  10453. "phpunit/phpunit": "^9.3",
  10454. "spatie/phpunit-snapshot-assertions": "^4.2",
  10455. "symfony/var-dumper": "^5.1"
  10456. },
  10457. "type": "library",
  10458. "autoload": {
  10459. "psr-4": {
  10460. "Spatie\\Backtrace\\": "src"
  10461. }
  10462. },
  10463. "notification-url": "https://packagist.org/downloads/",
  10464. "license": [
  10465. "MIT"
  10466. ],
  10467. "authors": [
  10468. {
  10469. "name": "Freek Van de Herten",
  10470. "email": "freek@spatie.be",
  10471. "homepage": "https://spatie.be",
  10472. "role": "Developer"
  10473. }
  10474. ],
  10475. "description": "A better backtrace",
  10476. "homepage": "https://github.com/spatie/backtrace",
  10477. "keywords": [
  10478. "Backtrace",
  10479. "spatie"
  10480. ],
  10481. "support": {
  10482. "source": "https://github.com/spatie/backtrace/tree/1.5.3"
  10483. },
  10484. "funding": [
  10485. {
  10486. "url": "https://github.com/sponsors/spatie",
  10487. "type": "github"
  10488. },
  10489. {
  10490. "url": "https://spatie.be/open-source/support-us",
  10491. "type": "other"
  10492. }
  10493. ],
  10494. "time": "2023-06-28T12:59:17+00:00"
  10495. },
  10496. {
  10497. "name": "spatie/flare-client-php",
  10498. "version": "1.4.0",
  10499. "source": {
  10500. "type": "git",
  10501. "url": "https://github.com/spatie/flare-client-php.git",
  10502. "reference": "82138174d5fe2829a7f085a6bdb2a06f6def9f7a"
  10503. },
  10504. "dist": {
  10505. "type": "zip",
  10506. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/82138174d5fe2829a7f085a6bdb2a06f6def9f7a",
  10507. "reference": "82138174d5fe2829a7f085a6bdb2a06f6def9f7a",
  10508. "shasum": ""
  10509. },
  10510. "require": {
  10511. "illuminate/pipeline": "^8.0|^9.0|^10.0",
  10512. "nesbot/carbon": "^2.62.1",
  10513. "php": "^8.0",
  10514. "spatie/backtrace": "^1.5.2",
  10515. "symfony/http-foundation": "^5.0|^6.0",
  10516. "symfony/mime": "^5.2|^6.0",
  10517. "symfony/process": "^5.2|^6.0",
  10518. "symfony/var-dumper": "^5.2|^6.0"
  10519. },
  10520. "require-dev": {
  10521. "dms/phpunit-arraysubset-asserts": "^0.3.0",
  10522. "pestphp/pest": "^1.20",
  10523. "phpstan/extension-installer": "^1.1",
  10524. "phpstan/phpstan-deprecation-rules": "^1.0",
  10525. "phpstan/phpstan-phpunit": "^1.0",
  10526. "spatie/phpunit-snapshot-assertions": "^4.0"
  10527. },
  10528. "type": "library",
  10529. "extra": {
  10530. "branch-alias": {
  10531. "dev-main": "1.3.x-dev"
  10532. }
  10533. },
  10534. "autoload": {
  10535. "files": [
  10536. "src/helpers.php"
  10537. ],
  10538. "psr-4": {
  10539. "Spatie\\FlareClient\\": "src"
  10540. }
  10541. },
  10542. "notification-url": "https://packagist.org/downloads/",
  10543. "license": [
  10544. "MIT"
  10545. ],
  10546. "description": "Send PHP errors to Flare",
  10547. "homepage": "https://github.com/spatie/flare-client-php",
  10548. "keywords": [
  10549. "exception",
  10550. "flare",
  10551. "reporting",
  10552. "spatie"
  10553. ],
  10554. "support": {
  10555. "issues": "https://github.com/spatie/flare-client-php/issues",
  10556. "source": "https://github.com/spatie/flare-client-php/tree/1.4.0"
  10557. },
  10558. "funding": [
  10559. {
  10560. "url": "https://github.com/spatie",
  10561. "type": "github"
  10562. }
  10563. ],
  10564. "time": "2023-06-28T11:08:09+00:00"
  10565. },
  10566. {
  10567. "name": "spatie/ignition",
  10568. "version": "1.9.0",
  10569. "source": {
  10570. "type": "git",
  10571. "url": "https://github.com/spatie/ignition.git",
  10572. "reference": "de24ff1e01814d5043bd6eb4ab36a5a852a04973"
  10573. },
  10574. "dist": {
  10575. "type": "zip",
  10576. "url": "https://api.github.com/repos/spatie/ignition/zipball/de24ff1e01814d5043bd6eb4ab36a5a852a04973",
  10577. "reference": "de24ff1e01814d5043bd6eb4ab36a5a852a04973",
  10578. "shasum": ""
  10579. },
  10580. "require": {
  10581. "ext-json": "*",
  10582. "ext-mbstring": "*",
  10583. "php": "^8.0",
  10584. "spatie/backtrace": "^1.5.3",
  10585. "spatie/flare-client-php": "^1.4.0",
  10586. "symfony/console": "^5.4|^6.0",
  10587. "symfony/var-dumper": "^5.4|^6.0"
  10588. },
  10589. "require-dev": {
  10590. "illuminate/cache": "^9.52",
  10591. "mockery/mockery": "^1.4",
  10592. "pestphp/pest": "^1.20",
  10593. "phpstan/extension-installer": "^1.1",
  10594. "phpstan/phpstan-deprecation-rules": "^1.0",
  10595. "phpstan/phpstan-phpunit": "^1.0",
  10596. "psr/simple-cache-implementation": "*",
  10597. "symfony/cache": "^6.0",
  10598. "symfony/process": "^5.4|^6.0",
  10599. "vlucas/phpdotenv": "^5.5"
  10600. },
  10601. "suggest": {
  10602. "openai-php/client": "Require get solutions from OpenAI",
  10603. "simple-cache-implementation": "To cache solutions from OpenAI"
  10604. },
  10605. "type": "library",
  10606. "extra": {
  10607. "branch-alias": {
  10608. "dev-main": "1.5.x-dev"
  10609. }
  10610. },
  10611. "autoload": {
  10612. "psr-4": {
  10613. "Spatie\\Ignition\\": "src"
  10614. }
  10615. },
  10616. "notification-url": "https://packagist.org/downloads/",
  10617. "license": [
  10618. "MIT"
  10619. ],
  10620. "authors": [
  10621. {
  10622. "name": "Spatie",
  10623. "email": "info@spatie.be",
  10624. "role": "Developer"
  10625. }
  10626. ],
  10627. "description": "A beautiful error page for PHP applications.",
  10628. "homepage": "https://flareapp.io/ignition",
  10629. "keywords": [
  10630. "error",
  10631. "flare",
  10632. "laravel",
  10633. "page"
  10634. ],
  10635. "support": {
  10636. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10637. "forum": "https://twitter.com/flareappio",
  10638. "issues": "https://github.com/spatie/ignition/issues",
  10639. "source": "https://github.com/spatie/ignition"
  10640. },
  10641. "funding": [
  10642. {
  10643. "url": "https://github.com/spatie",
  10644. "type": "github"
  10645. }
  10646. ],
  10647. "time": "2023-06-28T13:24:59+00:00"
  10648. },
  10649. {
  10650. "name": "spatie/laravel-ignition",
  10651. "version": "2.2.0",
  10652. "source": {
  10653. "type": "git",
  10654. "url": "https://github.com/spatie/laravel-ignition.git",
  10655. "reference": "dd15fbe82ef5392798941efae93c49395a87d943"
  10656. },
  10657. "dist": {
  10658. "type": "zip",
  10659. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/dd15fbe82ef5392798941efae93c49395a87d943",
  10660. "reference": "dd15fbe82ef5392798941efae93c49395a87d943",
  10661. "shasum": ""
  10662. },
  10663. "require": {
  10664. "ext-curl": "*",
  10665. "ext-json": "*",
  10666. "ext-mbstring": "*",
  10667. "illuminate/support": "^10.0",
  10668. "php": "^8.1",
  10669. "spatie/flare-client-php": "^1.3.5",
  10670. "spatie/ignition": "^1.9",
  10671. "symfony/console": "^6.2.3",
  10672. "symfony/var-dumper": "^6.2.3"
  10673. },
  10674. "require-dev": {
  10675. "livewire/livewire": "^2.11",
  10676. "mockery/mockery": "^1.5.1",
  10677. "openai-php/client": "^0.3.4",
  10678. "orchestra/testbench": "^8.0",
  10679. "pestphp/pest": "^1.22.3",
  10680. "phpstan/extension-installer": "^1.2",
  10681. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  10682. "phpstan/phpstan-phpunit": "^1.3.3",
  10683. "vlucas/phpdotenv": "^5.5"
  10684. },
  10685. "suggest": {
  10686. "openai-php/client": "Require get solutions from OpenAI",
  10687. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  10688. },
  10689. "type": "library",
  10690. "extra": {
  10691. "laravel": {
  10692. "providers": [
  10693. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  10694. ],
  10695. "aliases": {
  10696. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  10697. }
  10698. }
  10699. },
  10700. "autoload": {
  10701. "files": [
  10702. "src/helpers.php"
  10703. ],
  10704. "psr-4": {
  10705. "Spatie\\LaravelIgnition\\": "src"
  10706. }
  10707. },
  10708. "notification-url": "https://packagist.org/downloads/",
  10709. "license": [
  10710. "MIT"
  10711. ],
  10712. "authors": [
  10713. {
  10714. "name": "Spatie",
  10715. "email": "info@spatie.be",
  10716. "role": "Developer"
  10717. }
  10718. ],
  10719. "description": "A beautiful error page for Laravel applications.",
  10720. "homepage": "https://flareapp.io/ignition",
  10721. "keywords": [
  10722. "error",
  10723. "flare",
  10724. "laravel",
  10725. "page"
  10726. ],
  10727. "support": {
  10728. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10729. "forum": "https://twitter.com/flareappio",
  10730. "issues": "https://github.com/spatie/laravel-ignition/issues",
  10731. "source": "https://github.com/spatie/laravel-ignition"
  10732. },
  10733. "funding": [
  10734. {
  10735. "url": "https://github.com/spatie",
  10736. "type": "github"
  10737. }
  10738. ],
  10739. "time": "2023-06-28T13:51:52+00:00"
  10740. },
  10741. {
  10742. "name": "symfony/yaml",
  10743. "version": "v6.3.0",
  10744. "source": {
  10745. "type": "git",
  10746. "url": "https://github.com/symfony/yaml.git",
  10747. "reference": "a9a8337aa641ef2aa39c3e028f9107ec391e5927"
  10748. },
  10749. "dist": {
  10750. "type": "zip",
  10751. "url": "https://api.github.com/repos/symfony/yaml/zipball/a9a8337aa641ef2aa39c3e028f9107ec391e5927",
  10752. "reference": "a9a8337aa641ef2aa39c3e028f9107ec391e5927",
  10753. "shasum": ""
  10754. },
  10755. "require": {
  10756. "php": ">=8.1",
  10757. "symfony/polyfill-ctype": "^1.8"
  10758. },
  10759. "conflict": {
  10760. "symfony/console": "<5.4"
  10761. },
  10762. "require-dev": {
  10763. "symfony/console": "^5.4|^6.0"
  10764. },
  10765. "bin": [
  10766. "Resources/bin/yaml-lint"
  10767. ],
  10768. "type": "library",
  10769. "autoload": {
  10770. "psr-4": {
  10771. "Symfony\\Component\\Yaml\\": ""
  10772. },
  10773. "exclude-from-classmap": [
  10774. "/Tests/"
  10775. ]
  10776. },
  10777. "notification-url": "https://packagist.org/downloads/",
  10778. "license": [
  10779. "MIT"
  10780. ],
  10781. "authors": [
  10782. {
  10783. "name": "Fabien Potencier",
  10784. "email": "fabien@symfony.com"
  10785. },
  10786. {
  10787. "name": "Symfony Community",
  10788. "homepage": "https://symfony.com/contributors"
  10789. }
  10790. ],
  10791. "description": "Loads and dumps YAML files",
  10792. "homepage": "https://symfony.com",
  10793. "support": {
  10794. "source": "https://github.com/symfony/yaml/tree/v6.3.0"
  10795. },
  10796. "funding": [
  10797. {
  10798. "url": "https://symfony.com/sponsor",
  10799. "type": "custom"
  10800. },
  10801. {
  10802. "url": "https://github.com/fabpot",
  10803. "type": "github"
  10804. },
  10805. {
  10806. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10807. "type": "tidelift"
  10808. }
  10809. ],
  10810. "time": "2023-04-28T13:28:14+00:00"
  10811. },
  10812. {
  10813. "name": "theseer/tokenizer",
  10814. "version": "1.2.1",
  10815. "source": {
  10816. "type": "git",
  10817. "url": "https://github.com/theseer/tokenizer.git",
  10818. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10819. },
  10820. "dist": {
  10821. "type": "zip",
  10822. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10823. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10824. "shasum": ""
  10825. },
  10826. "require": {
  10827. "ext-dom": "*",
  10828. "ext-tokenizer": "*",
  10829. "ext-xmlwriter": "*",
  10830. "php": "^7.2 || ^8.0"
  10831. },
  10832. "type": "library",
  10833. "autoload": {
  10834. "classmap": [
  10835. "src/"
  10836. ]
  10837. },
  10838. "notification-url": "https://packagist.org/downloads/",
  10839. "license": [
  10840. "BSD-3-Clause"
  10841. ],
  10842. "authors": [
  10843. {
  10844. "name": "Arne Blankerts",
  10845. "email": "arne@blankerts.de",
  10846. "role": "Developer"
  10847. }
  10848. ],
  10849. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10850. "support": {
  10851. "issues": "https://github.com/theseer/tokenizer/issues",
  10852. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10853. },
  10854. "funding": [
  10855. {
  10856. "url": "https://github.com/theseer",
  10857. "type": "github"
  10858. }
  10859. ],
  10860. "time": "2021-07-28T10:34:58+00:00"
  10861. }
  10862. ],
  10863. "aliases": [],
  10864. "minimum-stability": "stable",
  10865. "stability-flags": [],
  10866. "prefer-stable": true,
  10867. "prefer-lowest": false,
  10868. "platform": {
  10869. "php": "^8.1"
  10870. },
  10871. "platform-dev": [],
  10872. "plugin-api-version": "2.3.0"
  10873. }