選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

composer.lock 363KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "dabf47be9fbc6a33cc67ae9123c6f5d2",
  8. "packages": [
  9. {
  10. "name": "akaunting/laravel-money",
  11. "version": "4.0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/akaunting/laravel-money.git",
  15. "reference": "df99d0f5d415490ef7e79362c3b694e8cc8af903"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/df99d0f5d415490ef7e79362c3b694e8cc8af903",
  20. "reference": "df99d0f5d415490ef7e79362c3b694e8cc8af903",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "illuminate/contracts": "^9.0|^10.0",
  25. "illuminate/support": "^9.0|^10.0",
  26. "illuminate/validation": "^9.0|^10.0",
  27. "illuminate/view": "^9.0|^10.0",
  28. "php": "^8.0",
  29. "vlucas/phpdotenv": "^5.4.1"
  30. },
  31. "require-dev": {
  32. "orchestra/testbench": "^7.4|^8.0",
  33. "phpunit/phpunit": "^9.5|^10.0",
  34. "vimeo/psalm": "^4.23"
  35. },
  36. "type": "library",
  37. "extra": {
  38. "laravel": {
  39. "providers": [
  40. "Akaunting\\Money\\Provider"
  41. ]
  42. }
  43. },
  44. "autoload": {
  45. "files": [
  46. "src/helpers.php"
  47. ],
  48. "psr-4": {
  49. "Akaunting\\Money\\": "src"
  50. }
  51. },
  52. "notification-url": "https://packagist.org/downloads/",
  53. "license": [
  54. "MIT"
  55. ],
  56. "authors": [
  57. {
  58. "name": "Denis Duliçi",
  59. "email": "info@akaunting.com",
  60. "homepage": "https://akaunting.com",
  61. "role": "Developer"
  62. }
  63. ],
  64. "description": "Currency formatting and conversion package for Laravel",
  65. "keywords": [
  66. "convert",
  67. "currency",
  68. "format",
  69. "laravel",
  70. "money"
  71. ],
  72. "support": {
  73. "issues": "https://github.com/akaunting/laravel-money/issues",
  74. "source": "https://github.com/akaunting/laravel-money/tree/4.0.1"
  75. },
  76. "time": "2023-03-16T14:39:27+00:00"
  77. },
  78. {
  79. "name": "andrewdwallo/filament-companies",
  80. "version": "v2.0.1",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "294424e0ab6ef76f6ad480fca50a1c39908a7219"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/294424e0ab6ef76f6ad480fca50a1c39908a7219",
  89. "reference": "294424e0ab6ef76f6ad480fca50a1c39908a7219",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "ext-json": "*",
  94. "filament/filament": "^2.16",
  95. "illuminate/console": "^8.6|^9.0|^10.0",
  96. "illuminate/contracts": "^8.6|^9.0|^10.0",
  97. "illuminate/support": "^8.6|^9.0|^10.0",
  98. "laravel/fortify": "^1.15",
  99. "laravel/socialite": "^5.6",
  100. "matomo/device-detector": "^6.1",
  101. "php": "^8.0"
  102. },
  103. "require-dev": {
  104. "laravel/sanctum": "^3.0",
  105. "mockery/mockery": "^1.0",
  106. "orchestra/testbench": "^7.0|^8.0",
  107. "phpunit/phpunit": "^9.3"
  108. },
  109. "type": "library",
  110. "extra": {
  111. "laravel": {
  112. "providers": [
  113. "Wallo\\FilamentCompanies\\FilamentCompaniesServiceProvider"
  114. ]
  115. }
  116. },
  117. "autoload": {
  118. "psr-4": {
  119. "Wallo\\FilamentCompanies\\": "src/"
  120. }
  121. },
  122. "notification-url": "https://packagist.org/downloads/",
  123. "license": [
  124. "MIT"
  125. ],
  126. "authors": [
  127. {
  128. "name": "Andrew Wallo",
  129. "email": "andrewdwallo@gmail.com",
  130. "role": "Developer"
  131. }
  132. ],
  133. "description": "A Laravel Authentication System based on Companies built using Filament",
  134. "homepage": "https://github.com/andrewdwallo/filament-companies",
  135. "keywords": [
  136. "ERP",
  137. "andrewdwallo",
  138. "auth",
  139. "companies",
  140. "filament",
  141. "laravel",
  142. "tailwind",
  143. "wallo"
  144. ],
  145. "support": {
  146. "issues": "https://github.com/andrewdwallo/filament-companies/issues",
  147. "source": "https://github.com/andrewdwallo/filament-companies/tree/v2.0.1"
  148. },
  149. "time": "2023-04-26T04:34:47+00:00"
  150. },
  151. {
  152. "name": "bacon/bacon-qr-code",
  153. "version": "2.0.8",
  154. "source": {
  155. "type": "git",
  156. "url": "https://github.com/Bacon/BaconQrCode.git",
  157. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  158. },
  159. "dist": {
  160. "type": "zip",
  161. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  162. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  163. "shasum": ""
  164. },
  165. "require": {
  166. "dasprid/enum": "^1.0.3",
  167. "ext-iconv": "*",
  168. "php": "^7.1 || ^8.0"
  169. },
  170. "require-dev": {
  171. "phly/keep-a-changelog": "^2.1",
  172. "phpunit/phpunit": "^7 | ^8 | ^9",
  173. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  174. "squizlabs/php_codesniffer": "^3.4"
  175. },
  176. "suggest": {
  177. "ext-imagick": "to generate QR code images"
  178. },
  179. "type": "library",
  180. "autoload": {
  181. "psr-4": {
  182. "BaconQrCode\\": "src/"
  183. }
  184. },
  185. "notification-url": "https://packagist.org/downloads/",
  186. "license": [
  187. "BSD-2-Clause"
  188. ],
  189. "authors": [
  190. {
  191. "name": "Ben Scholzen 'DASPRiD'",
  192. "email": "mail@dasprids.de",
  193. "homepage": "https://dasprids.de/",
  194. "role": "Developer"
  195. }
  196. ],
  197. "description": "BaconQrCode is a QR code generator for PHP.",
  198. "homepage": "https://github.com/Bacon/BaconQrCode",
  199. "support": {
  200. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  201. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  202. },
  203. "time": "2022-12-07T17:46:57+00:00"
  204. },
  205. {
  206. "name": "blade-ui-kit/blade-heroicons",
  207. "version": "1.4.0",
  208. "source": {
  209. "type": "git",
  210. "url": "https://github.com/blade-ui-kit/blade-heroicons.git",
  211. "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b"
  212. },
  213. "dist": {
  214. "type": "zip",
  215. "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/dea08e8308d9bad9ebff1bc482d5985dbaacc91b",
  216. "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b",
  217. "shasum": ""
  218. },
  219. "require": {
  220. "blade-ui-kit/blade-icons": "^1.1",
  221. "illuminate/support": "^8.0|^9.0|^10.0",
  222. "php": "^7.4|^8.0"
  223. },
  224. "require-dev": {
  225. "orchestra/testbench": "^6.0|^7.0|^8.0",
  226. "phpunit/phpunit": "^9.0"
  227. },
  228. "type": "library",
  229. "extra": {
  230. "laravel": {
  231. "providers": [
  232. "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
  233. ]
  234. }
  235. },
  236. "autoload": {
  237. "psr-4": {
  238. "BladeUI\\Heroicons\\": "src"
  239. }
  240. },
  241. "notification-url": "https://packagist.org/downloads/",
  242. "license": [
  243. "MIT"
  244. ],
  245. "authors": [
  246. {
  247. "name": "Dries Vints",
  248. "homepage": "https://driesvints.com"
  249. }
  250. ],
  251. "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
  252. "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
  253. "keywords": [
  254. "Heroicons",
  255. "blade",
  256. "laravel"
  257. ],
  258. "support": {
  259. "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues",
  260. "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/1.4.0"
  261. },
  262. "funding": [
  263. {
  264. "url": "https://github.com/caneco",
  265. "type": "github"
  266. },
  267. {
  268. "url": "https://github.com/driesvints",
  269. "type": "github"
  270. }
  271. ],
  272. "time": "2023-01-25T17:57:58+00:00"
  273. },
  274. {
  275. "name": "blade-ui-kit/blade-icons",
  276. "version": "1.5.1",
  277. "source": {
  278. "type": "git",
  279. "url": "https://github.com/blade-ui-kit/blade-icons.git",
  280. "reference": "b2a80ff2a26641f64bfee48ad0d2a922ce781228"
  281. },
  282. "dist": {
  283. "type": "zip",
  284. "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/b2a80ff2a26641f64bfee48ad0d2a922ce781228",
  285. "reference": "b2a80ff2a26641f64bfee48ad0d2a922ce781228",
  286. "shasum": ""
  287. },
  288. "require": {
  289. "illuminate/contracts": "^8.0|^9.0|^10.0",
  290. "illuminate/filesystem": "^8.0|^9.0|^10.0",
  291. "illuminate/support": "^8.0|^9.0|^10.0",
  292. "illuminate/view": "^8.0|^9.0|^10.0",
  293. "php": "^7.4|^8.0",
  294. "symfony/console": "^5.3|^6.0",
  295. "symfony/finder": "^5.3|^6.0"
  296. },
  297. "require-dev": {
  298. "mockery/mockery": "^1.3",
  299. "orchestra/testbench": "^6.0|^7.0|^8.0",
  300. "phpunit/phpunit": "^9.0"
  301. },
  302. "bin": [
  303. "bin/blade-icons-generate"
  304. ],
  305. "type": "library",
  306. "extra": {
  307. "laravel": {
  308. "providers": [
  309. "BladeUI\\Icons\\BladeIconsServiceProvider"
  310. ]
  311. }
  312. },
  313. "autoload": {
  314. "files": [
  315. "src/helpers.php"
  316. ],
  317. "psr-4": {
  318. "BladeUI\\Icons\\": "src"
  319. }
  320. },
  321. "notification-url": "https://packagist.org/downloads/",
  322. "license": [
  323. "MIT"
  324. ],
  325. "authors": [
  326. {
  327. "name": "Dries Vints",
  328. "homepage": "https://driesvints.com"
  329. }
  330. ],
  331. "description": "A package to easily make use of icons in your Laravel Blade views.",
  332. "homepage": "https://github.com/blade-ui-kit/blade-icons",
  333. "keywords": [
  334. "blade",
  335. "icons",
  336. "laravel",
  337. "svg"
  338. ],
  339. "support": {
  340. "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
  341. "source": "https://github.com/blade-ui-kit/blade-icons"
  342. },
  343. "funding": [
  344. {
  345. "url": "https://github.com/caneco",
  346. "type": "github"
  347. },
  348. {
  349. "url": "https://github.com/driesvints",
  350. "type": "github"
  351. }
  352. ],
  353. "time": "2023-02-15T16:30:12+00:00"
  354. },
  355. {
  356. "name": "brick/math",
  357. "version": "0.11.0",
  358. "source": {
  359. "type": "git",
  360. "url": "https://github.com/brick/math.git",
  361. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  362. },
  363. "dist": {
  364. "type": "zip",
  365. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  366. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  367. "shasum": ""
  368. },
  369. "require": {
  370. "php": "^8.0"
  371. },
  372. "require-dev": {
  373. "php-coveralls/php-coveralls": "^2.2",
  374. "phpunit/phpunit": "^9.0",
  375. "vimeo/psalm": "5.0.0"
  376. },
  377. "type": "library",
  378. "autoload": {
  379. "psr-4": {
  380. "Brick\\Math\\": "src/"
  381. }
  382. },
  383. "notification-url": "https://packagist.org/downloads/",
  384. "license": [
  385. "MIT"
  386. ],
  387. "description": "Arbitrary-precision arithmetic library",
  388. "keywords": [
  389. "Arbitrary-precision",
  390. "BigInteger",
  391. "BigRational",
  392. "arithmetic",
  393. "bigdecimal",
  394. "bignum",
  395. "brick",
  396. "math"
  397. ],
  398. "support": {
  399. "issues": "https://github.com/brick/math/issues",
  400. "source": "https://github.com/brick/math/tree/0.11.0"
  401. },
  402. "funding": [
  403. {
  404. "url": "https://github.com/BenMorel",
  405. "type": "github"
  406. }
  407. ],
  408. "time": "2023-01-15T23:15:59+00:00"
  409. },
  410. {
  411. "name": "danharrin/date-format-converter",
  412. "version": "v0.3.0",
  413. "source": {
  414. "type": "git",
  415. "url": "https://github.com/danharrin/date-format-converter.git",
  416. "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2"
  417. },
  418. "dist": {
  419. "type": "zip",
  420. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/42b6ddc52059d4ba228a67c15adaaa0c039e75f2",
  421. "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2",
  422. "shasum": ""
  423. },
  424. "require": {
  425. "php": "^7.2|^8.0"
  426. },
  427. "type": "library",
  428. "autoload": {
  429. "files": [
  430. "src/helpers.php",
  431. "src/standards.php"
  432. ],
  433. "psr-4": {
  434. "DanHarrin\\DateFormatConverter\\": "src/"
  435. }
  436. },
  437. "notification-url": "https://packagist.org/downloads/",
  438. "license": [
  439. "MIT"
  440. ],
  441. "authors": [
  442. {
  443. "name": "Dan Harrin",
  444. "email": "dan@danharrin.com"
  445. }
  446. ],
  447. "description": "Convert token-based date formats between standards.",
  448. "homepage": "https://github.com/danharrin/date-format-converter",
  449. "support": {
  450. "issues": "https://github.com/danharrin/date-format-converter/issues",
  451. "source": "https://github.com/danharrin/date-format-converter"
  452. },
  453. "funding": [
  454. {
  455. "url": "https://github.com/danharrin",
  456. "type": "github"
  457. }
  458. ],
  459. "time": "2022-09-29T07:48:20+00:00"
  460. },
  461. {
  462. "name": "danharrin/livewire-rate-limiting",
  463. "version": "v1.1.0",
  464. "source": {
  465. "type": "git",
  466. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  467. "reference": "a55996683cabf2e93893280d602191243b3b80b8"
  468. },
  469. "dist": {
  470. "type": "zip",
  471. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/a55996683cabf2e93893280d602191243b3b80b8",
  472. "reference": "a55996683cabf2e93893280d602191243b3b80b8",
  473. "shasum": ""
  474. },
  475. "require": {
  476. "illuminate/support": "^9.0|^10.0",
  477. "php": "^8.0"
  478. },
  479. "require-dev": {
  480. "livewire/livewire": "^2.3",
  481. "orchestra/testbench": "^7.0|^8.0",
  482. "phpunit/phpunit": "^9.0|^10.0"
  483. },
  484. "type": "library",
  485. "autoload": {
  486. "psr-4": {
  487. "DanHarrin\\LivewireRateLimiting\\": "src"
  488. }
  489. },
  490. "notification-url": "https://packagist.org/downloads/",
  491. "license": [
  492. "MIT"
  493. ],
  494. "authors": [
  495. {
  496. "name": "Dan Harrin",
  497. "email": "dan@danharrin.com"
  498. }
  499. ],
  500. "description": "Apply rate limiters to Laravel Livewire actions.",
  501. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  502. "support": {
  503. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  504. "source": "https://github.com/danharrin/livewire-rate-limiting"
  505. },
  506. "funding": [
  507. {
  508. "url": "https://github.com/danharrin",
  509. "type": "github"
  510. }
  511. ],
  512. "time": "2023-03-12T12:17:29+00:00"
  513. },
  514. {
  515. "name": "dasprid/enum",
  516. "version": "1.0.4",
  517. "source": {
  518. "type": "git",
  519. "url": "https://github.com/DASPRiD/Enum.git",
  520. "reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f"
  521. },
  522. "dist": {
  523. "type": "zip",
  524. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8e6b6ea76eabbf19ea2bf5b67b98e1860474012f",
  525. "reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f",
  526. "shasum": ""
  527. },
  528. "require": {
  529. "php": ">=7.1 <9.0"
  530. },
  531. "require-dev": {
  532. "phpunit/phpunit": "^7 | ^8 | ^9",
  533. "squizlabs/php_codesniffer": "*"
  534. },
  535. "type": "library",
  536. "autoload": {
  537. "psr-4": {
  538. "DASPRiD\\Enum\\": "src/"
  539. }
  540. },
  541. "notification-url": "https://packagist.org/downloads/",
  542. "license": [
  543. "BSD-2-Clause"
  544. ],
  545. "authors": [
  546. {
  547. "name": "Ben Scholzen 'DASPRiD'",
  548. "email": "mail@dasprids.de",
  549. "homepage": "https://dasprids.de/",
  550. "role": "Developer"
  551. }
  552. ],
  553. "description": "PHP 7.1 enum implementation",
  554. "keywords": [
  555. "enum",
  556. "map"
  557. ],
  558. "support": {
  559. "issues": "https://github.com/DASPRiD/Enum/issues",
  560. "source": "https://github.com/DASPRiD/Enum/tree/1.0.4"
  561. },
  562. "time": "2023-03-01T18:44:03+00:00"
  563. },
  564. {
  565. "name": "dflydev/dot-access-data",
  566. "version": "v3.0.2",
  567. "source": {
  568. "type": "git",
  569. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  570. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  571. },
  572. "dist": {
  573. "type": "zip",
  574. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  575. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  576. "shasum": ""
  577. },
  578. "require": {
  579. "php": "^7.1 || ^8.0"
  580. },
  581. "require-dev": {
  582. "phpstan/phpstan": "^0.12.42",
  583. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  584. "scrutinizer/ocular": "1.6.0",
  585. "squizlabs/php_codesniffer": "^3.5",
  586. "vimeo/psalm": "^4.0.0"
  587. },
  588. "type": "library",
  589. "extra": {
  590. "branch-alias": {
  591. "dev-main": "3.x-dev"
  592. }
  593. },
  594. "autoload": {
  595. "psr-4": {
  596. "Dflydev\\DotAccessData\\": "src/"
  597. }
  598. },
  599. "notification-url": "https://packagist.org/downloads/",
  600. "license": [
  601. "MIT"
  602. ],
  603. "authors": [
  604. {
  605. "name": "Dragonfly Development Inc.",
  606. "email": "info@dflydev.com",
  607. "homepage": "http://dflydev.com"
  608. },
  609. {
  610. "name": "Beau Simensen",
  611. "email": "beau@dflydev.com",
  612. "homepage": "http://beausimensen.com"
  613. },
  614. {
  615. "name": "Carlos Frutos",
  616. "email": "carlos@kiwing.it",
  617. "homepage": "https://github.com/cfrutos"
  618. },
  619. {
  620. "name": "Colin O'Dell",
  621. "email": "colinodell@gmail.com",
  622. "homepage": "https://www.colinodell.com"
  623. }
  624. ],
  625. "description": "Given a deep data structure, access data by dot notation.",
  626. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  627. "keywords": [
  628. "access",
  629. "data",
  630. "dot",
  631. "notation"
  632. ],
  633. "support": {
  634. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  635. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  636. },
  637. "time": "2022-10-27T11:44:00+00:00"
  638. },
  639. {
  640. "name": "doctrine/inflector",
  641. "version": "2.0.6",
  642. "source": {
  643. "type": "git",
  644. "url": "https://github.com/doctrine/inflector.git",
  645. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  646. },
  647. "dist": {
  648. "type": "zip",
  649. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  650. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  651. "shasum": ""
  652. },
  653. "require": {
  654. "php": "^7.2 || ^8.0"
  655. },
  656. "require-dev": {
  657. "doctrine/coding-standard": "^10",
  658. "phpstan/phpstan": "^1.8",
  659. "phpstan/phpstan-phpunit": "^1.1",
  660. "phpstan/phpstan-strict-rules": "^1.3",
  661. "phpunit/phpunit": "^8.5 || ^9.5",
  662. "vimeo/psalm": "^4.25"
  663. },
  664. "type": "library",
  665. "autoload": {
  666. "psr-4": {
  667. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  668. }
  669. },
  670. "notification-url": "https://packagist.org/downloads/",
  671. "license": [
  672. "MIT"
  673. ],
  674. "authors": [
  675. {
  676. "name": "Guilherme Blanco",
  677. "email": "guilhermeblanco@gmail.com"
  678. },
  679. {
  680. "name": "Roman Borschel",
  681. "email": "roman@code-factory.org"
  682. },
  683. {
  684. "name": "Benjamin Eberlei",
  685. "email": "kontakt@beberlei.de"
  686. },
  687. {
  688. "name": "Jonathan Wage",
  689. "email": "jonwage@gmail.com"
  690. },
  691. {
  692. "name": "Johannes Schmitt",
  693. "email": "schmittjoh@gmail.com"
  694. }
  695. ],
  696. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  697. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  698. "keywords": [
  699. "inflection",
  700. "inflector",
  701. "lowercase",
  702. "manipulation",
  703. "php",
  704. "plural",
  705. "singular",
  706. "strings",
  707. "uppercase",
  708. "words"
  709. ],
  710. "support": {
  711. "issues": "https://github.com/doctrine/inflector/issues",
  712. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  713. },
  714. "funding": [
  715. {
  716. "url": "https://www.doctrine-project.org/sponsorship.html",
  717. "type": "custom"
  718. },
  719. {
  720. "url": "https://www.patreon.com/phpdoctrine",
  721. "type": "patreon"
  722. },
  723. {
  724. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  725. "type": "tidelift"
  726. }
  727. ],
  728. "time": "2022-10-20T09:10:12+00:00"
  729. },
  730. {
  731. "name": "doctrine/lexer",
  732. "version": "3.0.0",
  733. "source": {
  734. "type": "git",
  735. "url": "https://github.com/doctrine/lexer.git",
  736. "reference": "84a527db05647743d50373e0ec53a152f2cde568"
  737. },
  738. "dist": {
  739. "type": "zip",
  740. "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568",
  741. "reference": "84a527db05647743d50373e0ec53a152f2cde568",
  742. "shasum": ""
  743. },
  744. "require": {
  745. "php": "^8.1"
  746. },
  747. "require-dev": {
  748. "doctrine/coding-standard": "^10",
  749. "phpstan/phpstan": "^1.9",
  750. "phpunit/phpunit": "^9.5",
  751. "psalm/plugin-phpunit": "^0.18.3",
  752. "vimeo/psalm": "^5.0"
  753. },
  754. "type": "library",
  755. "autoload": {
  756. "psr-4": {
  757. "Doctrine\\Common\\Lexer\\": "src"
  758. }
  759. },
  760. "notification-url": "https://packagist.org/downloads/",
  761. "license": [
  762. "MIT"
  763. ],
  764. "authors": [
  765. {
  766. "name": "Guilherme Blanco",
  767. "email": "guilhermeblanco@gmail.com"
  768. },
  769. {
  770. "name": "Roman Borschel",
  771. "email": "roman@code-factory.org"
  772. },
  773. {
  774. "name": "Johannes Schmitt",
  775. "email": "schmittjoh@gmail.com"
  776. }
  777. ],
  778. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  779. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  780. "keywords": [
  781. "annotations",
  782. "docblock",
  783. "lexer",
  784. "parser",
  785. "php"
  786. ],
  787. "support": {
  788. "issues": "https://github.com/doctrine/lexer/issues",
  789. "source": "https://github.com/doctrine/lexer/tree/3.0.0"
  790. },
  791. "funding": [
  792. {
  793. "url": "https://www.doctrine-project.org/sponsorship.html",
  794. "type": "custom"
  795. },
  796. {
  797. "url": "https://www.patreon.com/phpdoctrine",
  798. "type": "patreon"
  799. },
  800. {
  801. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  802. "type": "tidelift"
  803. }
  804. ],
  805. "time": "2022-12-15T16:57:16+00:00"
  806. },
  807. {
  808. "name": "dragonmantank/cron-expression",
  809. "version": "v3.3.2",
  810. "source": {
  811. "type": "git",
  812. "url": "https://github.com/dragonmantank/cron-expression.git",
  813. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8"
  814. },
  815. "dist": {
  816. "type": "zip",
  817. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8",
  818. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8",
  819. "shasum": ""
  820. },
  821. "require": {
  822. "php": "^7.2|^8.0",
  823. "webmozart/assert": "^1.0"
  824. },
  825. "replace": {
  826. "mtdowling/cron-expression": "^1.0"
  827. },
  828. "require-dev": {
  829. "phpstan/extension-installer": "^1.0",
  830. "phpstan/phpstan": "^1.0",
  831. "phpstan/phpstan-webmozart-assert": "^1.0",
  832. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  833. },
  834. "type": "library",
  835. "autoload": {
  836. "psr-4": {
  837. "Cron\\": "src/Cron/"
  838. }
  839. },
  840. "notification-url": "https://packagist.org/downloads/",
  841. "license": [
  842. "MIT"
  843. ],
  844. "authors": [
  845. {
  846. "name": "Chris Tankersley",
  847. "email": "chris@ctankersley.com",
  848. "homepage": "https://github.com/dragonmantank"
  849. }
  850. ],
  851. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  852. "keywords": [
  853. "cron",
  854. "schedule"
  855. ],
  856. "support": {
  857. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  858. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2"
  859. },
  860. "funding": [
  861. {
  862. "url": "https://github.com/dragonmantank",
  863. "type": "github"
  864. }
  865. ],
  866. "time": "2022-09-10T18:51:20+00:00"
  867. },
  868. {
  869. "name": "egulias/email-validator",
  870. "version": "4.0.1",
  871. "source": {
  872. "type": "git",
  873. "url": "https://github.com/egulias/EmailValidator.git",
  874. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
  875. },
  876. "dist": {
  877. "type": "zip",
  878. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  879. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  880. "shasum": ""
  881. },
  882. "require": {
  883. "doctrine/lexer": "^2.0 || ^3.0",
  884. "php": ">=8.1",
  885. "symfony/polyfill-intl-idn": "^1.26"
  886. },
  887. "require-dev": {
  888. "phpunit/phpunit": "^9.5.27",
  889. "vimeo/psalm": "^4.30"
  890. },
  891. "suggest": {
  892. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  893. },
  894. "type": "library",
  895. "extra": {
  896. "branch-alias": {
  897. "dev-master": "4.0.x-dev"
  898. }
  899. },
  900. "autoload": {
  901. "psr-4": {
  902. "Egulias\\EmailValidator\\": "src"
  903. }
  904. },
  905. "notification-url": "https://packagist.org/downloads/",
  906. "license": [
  907. "MIT"
  908. ],
  909. "authors": [
  910. {
  911. "name": "Eduardo Gulias Davis"
  912. }
  913. ],
  914. "description": "A library for validating emails against several RFCs",
  915. "homepage": "https://github.com/egulias/EmailValidator",
  916. "keywords": [
  917. "email",
  918. "emailvalidation",
  919. "emailvalidator",
  920. "validation",
  921. "validator"
  922. ],
  923. "support": {
  924. "issues": "https://github.com/egulias/EmailValidator/issues",
  925. "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
  926. },
  927. "funding": [
  928. {
  929. "url": "https://github.com/egulias",
  930. "type": "github"
  931. }
  932. ],
  933. "time": "2023-01-14T14:17:03+00:00"
  934. },
  935. {
  936. "name": "filament/filament",
  937. "version": "v2.17.43",
  938. "source": {
  939. "type": "git",
  940. "url": "https://github.com/filamentphp/app.git",
  941. "reference": "d3e067e44b981f8212740ad32e9c8d733e562b2c"
  942. },
  943. "dist": {
  944. "type": "zip",
  945. "url": "https://api.github.com/repos/filamentphp/app/zipball/d3e067e44b981f8212740ad32e9c8d733e562b2c",
  946. "reference": "d3e067e44b981f8212740ad32e9c8d733e562b2c",
  947. "shasum": ""
  948. },
  949. "require": {
  950. "danharrin/livewire-rate-limiting": "^0.3|^1.0",
  951. "filament/forms": "self.version",
  952. "filament/notifications": "self.version",
  953. "filament/support": "self.version",
  954. "filament/tables": "self.version",
  955. "illuminate/auth": "^8.6|^9.0|^10.0",
  956. "illuminate/console": "^8.6|^9.0|^10.0",
  957. "illuminate/contracts": "^8.6|^9.0|^10.0",
  958. "illuminate/cookie": "^8.6|^9.0|^10.0",
  959. "illuminate/database": "^8.6|^9.0|^10.0",
  960. "illuminate/http": "^8.6|^9.0|^10.0",
  961. "illuminate/routing": "^8.6|^9.0|^10.0",
  962. "illuminate/session": "^8.6|^9.0|^10.0",
  963. "illuminate/support": "^8.6|^9.0|^10.0",
  964. "illuminate/view": "^8.6|^9.0|^10.0",
  965. "livewire/livewire": "^2.10.7",
  966. "php": "^8.0",
  967. "ryangjchandler/blade-capture-directive": "^0.2|^0.3",
  968. "spatie/laravel-package-tools": "^1.9"
  969. },
  970. "type": "library",
  971. "extra": {
  972. "laravel": {
  973. "providers": [
  974. "Filament\\FilamentServiceProvider"
  975. ]
  976. }
  977. },
  978. "autoload": {
  979. "files": [
  980. "src/helpers.php"
  981. ],
  982. "psr-4": {
  983. "Filament\\": "src"
  984. }
  985. },
  986. "notification-url": "https://packagist.org/downloads/",
  987. "license": [
  988. "MIT"
  989. ],
  990. "description": "Effortlessly build TALL-powered admin panels.",
  991. "homepage": "https://github.com/filamentphp/filament",
  992. "support": {
  993. "issues": "https://github.com/filamentphp/filament/issues",
  994. "source": "https://github.com/filamentphp/filament"
  995. },
  996. "time": "2023-05-22T21:18:35+00:00"
  997. },
  998. {
  999. "name": "filament/forms",
  1000. "version": "v2.17.43",
  1001. "source": {
  1002. "type": "git",
  1003. "url": "https://github.com/filamentphp/forms.git",
  1004. "reference": "a8acd3681f2b2163d6cad3478a5fe14489d53217"
  1005. },
  1006. "dist": {
  1007. "type": "zip",
  1008. "url": "https://api.github.com/repos/filamentphp/forms/zipball/a8acd3681f2b2163d6cad3478a5fe14489d53217",
  1009. "reference": "a8acd3681f2b2163d6cad3478a5fe14489d53217",
  1010. "shasum": ""
  1011. },
  1012. "require": {
  1013. "blade-ui-kit/blade-heroicons": "^1.2",
  1014. "danharrin/date-format-converter": "^0.3",
  1015. "filament/notifications": "self.version",
  1016. "filament/support": "self.version",
  1017. "illuminate/console": "^8.6|^9.0|^10.0",
  1018. "illuminate/contracts": "^8.6|^9.0|^10.0",
  1019. "illuminate/database": "^8.6|^9.0|^10.0",
  1020. "illuminate/filesystem": "^8.6|^9.0|^10.0",
  1021. "illuminate/support": "^8.6|^9.0|^10.0",
  1022. "illuminate/validation": "^8.6|^9.0|^10.0",
  1023. "illuminate/view": "^8.6|^9.0|^10.0",
  1024. "livewire/livewire": "^2.10.7",
  1025. "php": "^8.0",
  1026. "spatie/laravel-package-tools": "^1.9"
  1027. },
  1028. "type": "library",
  1029. "extra": {
  1030. "laravel": {
  1031. "providers": [
  1032. "Filament\\Forms\\FormsServiceProvider"
  1033. ]
  1034. }
  1035. },
  1036. "autoload": {
  1037. "files": [
  1038. "src/helpers.php"
  1039. ],
  1040. "psr-4": {
  1041. "Filament\\Forms\\": "src"
  1042. }
  1043. },
  1044. "notification-url": "https://packagist.org/downloads/",
  1045. "license": [
  1046. "MIT"
  1047. ],
  1048. "description": "Effortlessly build TALL-powered forms.",
  1049. "homepage": "https://github.com/filamentphp/filament",
  1050. "support": {
  1051. "issues": "https://github.com/filamentphp/filament/issues",
  1052. "source": "https://github.com/filamentphp/filament"
  1053. },
  1054. "time": "2023-05-22T21:18:31+00:00"
  1055. },
  1056. {
  1057. "name": "filament/notifications",
  1058. "version": "v2.17.43",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/filamentphp/notifications.git",
  1062. "reference": "0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252",
  1067. "reference": "0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "blade-ui-kit/blade-heroicons": "^1.2",
  1072. "filament/support": "self.version",
  1073. "illuminate/contracts": "^8.6|^9.0|^10.0",
  1074. "illuminate/filesystem": "^8.6|^9.0|^10.0",
  1075. "illuminate/notifications": "^8.6|^9.0|^10.0",
  1076. "illuminate/support": "^8.6|^9.0|^10.0",
  1077. "livewire/livewire": "^2.10.7",
  1078. "php": "^8.0",
  1079. "spatie/laravel-package-tools": "^1.9"
  1080. },
  1081. "type": "library",
  1082. "extra": {
  1083. "laravel": {
  1084. "providers": [
  1085. "Filament\\Notifications\\NotificationsServiceProvider"
  1086. ]
  1087. }
  1088. },
  1089. "autoload": {
  1090. "files": [
  1091. "src/Testing/Autoload.php"
  1092. ],
  1093. "psr-4": {
  1094. "Filament\\Notifications\\": "src"
  1095. }
  1096. },
  1097. "notification-url": "https://packagist.org/downloads/",
  1098. "license": [
  1099. "MIT"
  1100. ],
  1101. "description": "Effortlessly build TALL-powered notifications.",
  1102. "homepage": "https://github.com/filamentphp/filament",
  1103. "support": {
  1104. "issues": "https://github.com/filamentphp/filament/issues",
  1105. "source": "https://github.com/filamentphp/filament"
  1106. },
  1107. "time": "2023-05-04T23:08:09+00:00"
  1108. },
  1109. {
  1110. "name": "filament/support",
  1111. "version": "v2.17.43",
  1112. "source": {
  1113. "type": "git",
  1114. "url": "https://github.com/filamentphp/support.git",
  1115. "reference": "1e03d08cb6df27fd64e658b5316fd34f81554a8d"
  1116. },
  1117. "dist": {
  1118. "type": "zip",
  1119. "url": "https://api.github.com/repos/filamentphp/support/zipball/1e03d08cb6df27fd64e658b5316fd34f81554a8d",
  1120. "reference": "1e03d08cb6df27fd64e658b5316fd34f81554a8d",
  1121. "shasum": ""
  1122. },
  1123. "require": {
  1124. "illuminate/contracts": "^8.6|^9.0|^10.0",
  1125. "illuminate/support": "^8.6|^9.0|^10.0",
  1126. "illuminate/view": "^8.6|^9.0|^10.0",
  1127. "php": "^8.0",
  1128. "spatie/laravel-package-tools": "^1.9",
  1129. "tgalopin/html-sanitizer": "^1.5"
  1130. },
  1131. "type": "library",
  1132. "extra": {
  1133. "laravel": {
  1134. "providers": [
  1135. "Filament\\Support\\SupportServiceProvider"
  1136. ]
  1137. }
  1138. },
  1139. "autoload": {
  1140. "files": [
  1141. "src/helpers.php"
  1142. ],
  1143. "psr-4": {
  1144. "Filament\\Support\\": "src"
  1145. }
  1146. },
  1147. "notification-url": "https://packagist.org/downloads/",
  1148. "license": [
  1149. "MIT"
  1150. ],
  1151. "description": "Associated helper methods and foundation code for Filament packages.",
  1152. "homepage": "https://github.com/filamentphp/filament",
  1153. "support": {
  1154. "issues": "https://github.com/filamentphp/filament/issues",
  1155. "source": "https://github.com/filamentphp/filament"
  1156. },
  1157. "time": "2023-05-22T21:18:29+00:00"
  1158. },
  1159. {
  1160. "name": "filament/tables",
  1161. "version": "v2.17.43",
  1162. "source": {
  1163. "type": "git",
  1164. "url": "https://github.com/filamentphp/tables.git",
  1165. "reference": "1a57eac2388d2336c66dedf840b20a6b66a9b127"
  1166. },
  1167. "dist": {
  1168. "type": "zip",
  1169. "url": "https://api.github.com/repos/filamentphp/tables/zipball/1a57eac2388d2336c66dedf840b20a6b66a9b127",
  1170. "reference": "1a57eac2388d2336c66dedf840b20a6b66a9b127",
  1171. "shasum": ""
  1172. },
  1173. "require": {
  1174. "akaunting/laravel-money": "^1.2|^2.0|^3.0|^4.0",
  1175. "blade-ui-kit/blade-heroicons": "^1.2",
  1176. "filament/forms": "self.version",
  1177. "filament/notifications": "self.version",
  1178. "filament/support": "self.version",
  1179. "illuminate/console": "^8.6|^9.0|^10.0",
  1180. "illuminate/contracts": "^8.6|^9.0|^10.0",
  1181. "illuminate/database": "^8.6|^9.0|^10.0",
  1182. "illuminate/filesystem": "^8.6|^9.0|^10.0",
  1183. "illuminate/support": "^8.6|^9.0|^10.0",
  1184. "illuminate/view": "^8.6|^9.0|^10.0",
  1185. "livewire/livewire": "^2.10.7",
  1186. "php": "^8.0",
  1187. "spatie/invade": "^1.0",
  1188. "spatie/laravel-package-tools": "^1.9"
  1189. },
  1190. "type": "library",
  1191. "extra": {
  1192. "laravel": {
  1193. "providers": [
  1194. "Filament\\Tables\\TablesServiceProvider"
  1195. ]
  1196. }
  1197. },
  1198. "autoload": {
  1199. "psr-4": {
  1200. "Filament\\Tables\\": "src"
  1201. }
  1202. },
  1203. "notification-url": "https://packagist.org/downloads/",
  1204. "license": [
  1205. "MIT"
  1206. ],
  1207. "description": "Effortlessly build TALL-powered tables.",
  1208. "homepage": "https://github.com/filamentphp/filament",
  1209. "support": {
  1210. "issues": "https://github.com/filamentphp/filament/issues",
  1211. "source": "https://github.com/filamentphp/filament"
  1212. },
  1213. "time": "2023-05-22T21:18:35+00:00"
  1214. },
  1215. {
  1216. "name": "flowframe/laravel-trend",
  1217. "version": "v0.1.5",
  1218. "source": {
  1219. "type": "git",
  1220. "url": "https://github.com/Flowframe/laravel-trend.git",
  1221. "reference": "bc43bf7840ff60aca39e856ad96f5e990fac83d7"
  1222. },
  1223. "dist": {
  1224. "type": "zip",
  1225. "url": "https://api.github.com/repos/Flowframe/laravel-trend/zipball/bc43bf7840ff60aca39e856ad96f5e990fac83d7",
  1226. "reference": "bc43bf7840ff60aca39e856ad96f5e990fac83d7",
  1227. "shasum": ""
  1228. },
  1229. "require": {
  1230. "illuminate/contracts": "^8.37|^9|^10.0",
  1231. "php": "^8.0",
  1232. "spatie/laravel-package-tools": "^1.4.3"
  1233. },
  1234. "require-dev": {
  1235. "nunomaduro/collision": "^5.3|^6.1",
  1236. "orchestra/testbench": "^6.15|^7.0|^8.0",
  1237. "pestphp/pest": "^1.18",
  1238. "pestphp/pest-plugin-laravel": "^1.1",
  1239. "spatie/laravel-ray": "^1.23",
  1240. "vimeo/psalm": "^4.8|^5.6"
  1241. },
  1242. "type": "library",
  1243. "extra": {
  1244. "laravel": {
  1245. "providers": [
  1246. "Flowframe\\Trend\\TrendServiceProvider"
  1247. ],
  1248. "aliases": {
  1249. "Trend": "Flowframe\\Trend\\TrendFacade"
  1250. }
  1251. }
  1252. },
  1253. "autoload": {
  1254. "psr-4": {
  1255. "Flowframe\\Trend\\": "src",
  1256. "Flowframe\\Trend\\Database\\Factories\\": "database/factories"
  1257. }
  1258. },
  1259. "notification-url": "https://packagist.org/downloads/",
  1260. "license": [
  1261. "MIT"
  1262. ],
  1263. "authors": [
  1264. {
  1265. "name": "Lars Klopstra",
  1266. "email": "lars@flowframe.nl",
  1267. "role": "Developer"
  1268. }
  1269. ],
  1270. "description": "Easily generate model trends",
  1271. "homepage": "https://github.com/flowframe/laravel-trend",
  1272. "keywords": [
  1273. "Flowframe",
  1274. "laravel",
  1275. "laravel-trend"
  1276. ],
  1277. "support": {
  1278. "issues": "https://github.com/Flowframe/laravel-trend/issues",
  1279. "source": "https://github.com/Flowframe/laravel-trend/tree/v0.1.5"
  1280. },
  1281. "funding": [
  1282. {
  1283. "url": "https://github.com/larsklopstra",
  1284. "type": "github"
  1285. }
  1286. ],
  1287. "time": "2023-03-22T20:51:43+00:00"
  1288. },
  1289. {
  1290. "name": "fruitcake/php-cors",
  1291. "version": "v1.2.0",
  1292. "source": {
  1293. "type": "git",
  1294. "url": "https://github.com/fruitcake/php-cors.git",
  1295. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  1296. },
  1297. "dist": {
  1298. "type": "zip",
  1299. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1300. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1301. "shasum": ""
  1302. },
  1303. "require": {
  1304. "php": "^7.4|^8.0",
  1305. "symfony/http-foundation": "^4.4|^5.4|^6"
  1306. },
  1307. "require-dev": {
  1308. "phpstan/phpstan": "^1.4",
  1309. "phpunit/phpunit": "^9",
  1310. "squizlabs/php_codesniffer": "^3.5"
  1311. },
  1312. "type": "library",
  1313. "extra": {
  1314. "branch-alias": {
  1315. "dev-main": "1.1-dev"
  1316. }
  1317. },
  1318. "autoload": {
  1319. "psr-4": {
  1320. "Fruitcake\\Cors\\": "src/"
  1321. }
  1322. },
  1323. "notification-url": "https://packagist.org/downloads/",
  1324. "license": [
  1325. "MIT"
  1326. ],
  1327. "authors": [
  1328. {
  1329. "name": "Fruitcake",
  1330. "homepage": "https://fruitcake.nl"
  1331. },
  1332. {
  1333. "name": "Barryvdh",
  1334. "email": "barryvdh@gmail.com"
  1335. }
  1336. ],
  1337. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1338. "homepage": "https://github.com/fruitcake/php-cors",
  1339. "keywords": [
  1340. "cors",
  1341. "laravel",
  1342. "symfony"
  1343. ],
  1344. "support": {
  1345. "issues": "https://github.com/fruitcake/php-cors/issues",
  1346. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  1347. },
  1348. "funding": [
  1349. {
  1350. "url": "https://fruitcake.nl",
  1351. "type": "custom"
  1352. },
  1353. {
  1354. "url": "https://github.com/barryvdh",
  1355. "type": "github"
  1356. }
  1357. ],
  1358. "time": "2022-02-20T15:07:15+00:00"
  1359. },
  1360. {
  1361. "name": "graham-campbell/result-type",
  1362. "version": "v1.1.1",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1366. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1371. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1372. "shasum": ""
  1373. },
  1374. "require": {
  1375. "php": "^7.2.5 || ^8.0",
  1376. "phpoption/phpoption": "^1.9.1"
  1377. },
  1378. "require-dev": {
  1379. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  1380. },
  1381. "type": "library",
  1382. "autoload": {
  1383. "psr-4": {
  1384. "GrahamCampbell\\ResultType\\": "src/"
  1385. }
  1386. },
  1387. "notification-url": "https://packagist.org/downloads/",
  1388. "license": [
  1389. "MIT"
  1390. ],
  1391. "authors": [
  1392. {
  1393. "name": "Graham Campbell",
  1394. "email": "hello@gjcampbell.co.uk",
  1395. "homepage": "https://github.com/GrahamCampbell"
  1396. }
  1397. ],
  1398. "description": "An Implementation Of The Result Type",
  1399. "keywords": [
  1400. "Graham Campbell",
  1401. "GrahamCampbell",
  1402. "Result Type",
  1403. "Result-Type",
  1404. "result"
  1405. ],
  1406. "support": {
  1407. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1408. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1"
  1409. },
  1410. "funding": [
  1411. {
  1412. "url": "https://github.com/GrahamCampbell",
  1413. "type": "github"
  1414. },
  1415. {
  1416. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1417. "type": "tidelift"
  1418. }
  1419. ],
  1420. "time": "2023-02-25T20:23:15+00:00"
  1421. },
  1422. {
  1423. "name": "guzzlehttp/guzzle",
  1424. "version": "7.7.0",
  1425. "source": {
  1426. "type": "git",
  1427. "url": "https://github.com/guzzle/guzzle.git",
  1428. "reference": "fb7566caccf22d74d1ab270de3551f72a58399f5"
  1429. },
  1430. "dist": {
  1431. "type": "zip",
  1432. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/fb7566caccf22d74d1ab270de3551f72a58399f5",
  1433. "reference": "fb7566caccf22d74d1ab270de3551f72a58399f5",
  1434. "shasum": ""
  1435. },
  1436. "require": {
  1437. "ext-json": "*",
  1438. "guzzlehttp/promises": "^1.5.3 || ^2.0",
  1439. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  1440. "php": "^7.2.5 || ^8.0",
  1441. "psr/http-client": "^1.0",
  1442. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1443. },
  1444. "provide": {
  1445. "psr/http-client-implementation": "1.0"
  1446. },
  1447. "require-dev": {
  1448. "bamarni/composer-bin-plugin": "^1.8.1",
  1449. "ext-curl": "*",
  1450. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  1451. "php-http/message-factory": "^1.1",
  1452. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  1453. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1454. },
  1455. "suggest": {
  1456. "ext-curl": "Required for CURL handler support",
  1457. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1458. "psr/log": "Required for using the Log middleware"
  1459. },
  1460. "type": "library",
  1461. "extra": {
  1462. "bamarni-bin": {
  1463. "bin-links": true,
  1464. "forward-command": false
  1465. }
  1466. },
  1467. "autoload": {
  1468. "files": [
  1469. "src/functions_include.php"
  1470. ],
  1471. "psr-4": {
  1472. "GuzzleHttp\\": "src/"
  1473. }
  1474. },
  1475. "notification-url": "https://packagist.org/downloads/",
  1476. "license": [
  1477. "MIT"
  1478. ],
  1479. "authors": [
  1480. {
  1481. "name": "Graham Campbell",
  1482. "email": "hello@gjcampbell.co.uk",
  1483. "homepage": "https://github.com/GrahamCampbell"
  1484. },
  1485. {
  1486. "name": "Michael Dowling",
  1487. "email": "mtdowling@gmail.com",
  1488. "homepage": "https://github.com/mtdowling"
  1489. },
  1490. {
  1491. "name": "Jeremy Lindblom",
  1492. "email": "jeremeamia@gmail.com",
  1493. "homepage": "https://github.com/jeremeamia"
  1494. },
  1495. {
  1496. "name": "George Mponos",
  1497. "email": "gmponos@gmail.com",
  1498. "homepage": "https://github.com/gmponos"
  1499. },
  1500. {
  1501. "name": "Tobias Nyholm",
  1502. "email": "tobias.nyholm@gmail.com",
  1503. "homepage": "https://github.com/Nyholm"
  1504. },
  1505. {
  1506. "name": "Márk Sági-Kazár",
  1507. "email": "mark.sagikazar@gmail.com",
  1508. "homepage": "https://github.com/sagikazarmark"
  1509. },
  1510. {
  1511. "name": "Tobias Schultze",
  1512. "email": "webmaster@tubo-world.de",
  1513. "homepage": "https://github.com/Tobion"
  1514. }
  1515. ],
  1516. "description": "Guzzle is a PHP HTTP client library",
  1517. "keywords": [
  1518. "client",
  1519. "curl",
  1520. "framework",
  1521. "http",
  1522. "http client",
  1523. "psr-18",
  1524. "psr-7",
  1525. "rest",
  1526. "web service"
  1527. ],
  1528. "support": {
  1529. "issues": "https://github.com/guzzle/guzzle/issues",
  1530. "source": "https://github.com/guzzle/guzzle/tree/7.7.0"
  1531. },
  1532. "funding": [
  1533. {
  1534. "url": "https://github.com/GrahamCampbell",
  1535. "type": "github"
  1536. },
  1537. {
  1538. "url": "https://github.com/Nyholm",
  1539. "type": "github"
  1540. },
  1541. {
  1542. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1543. "type": "tidelift"
  1544. }
  1545. ],
  1546. "time": "2023-05-21T14:04:53+00:00"
  1547. },
  1548. {
  1549. "name": "guzzlehttp/promises",
  1550. "version": "2.0.0",
  1551. "source": {
  1552. "type": "git",
  1553. "url": "https://github.com/guzzle/promises.git",
  1554. "reference": "3a494dc7dc1d7d12e511890177ae2d0e6c107da6"
  1555. },
  1556. "dist": {
  1557. "type": "zip",
  1558. "url": "https://api.github.com/repos/guzzle/promises/zipball/3a494dc7dc1d7d12e511890177ae2d0e6c107da6",
  1559. "reference": "3a494dc7dc1d7d12e511890177ae2d0e6c107da6",
  1560. "shasum": ""
  1561. },
  1562. "require": {
  1563. "php": "^7.2.5 || ^8.0"
  1564. },
  1565. "require-dev": {
  1566. "bamarni/composer-bin-plugin": "^1.8.1",
  1567. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1568. },
  1569. "type": "library",
  1570. "extra": {
  1571. "bamarni-bin": {
  1572. "bin-links": true,
  1573. "forward-command": false
  1574. }
  1575. },
  1576. "autoload": {
  1577. "psr-4": {
  1578. "GuzzleHttp\\Promise\\": "src/"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "Graham Campbell",
  1588. "email": "hello@gjcampbell.co.uk",
  1589. "homepage": "https://github.com/GrahamCampbell"
  1590. },
  1591. {
  1592. "name": "Michael Dowling",
  1593. "email": "mtdowling@gmail.com",
  1594. "homepage": "https://github.com/mtdowling"
  1595. },
  1596. {
  1597. "name": "Tobias Nyholm",
  1598. "email": "tobias.nyholm@gmail.com",
  1599. "homepage": "https://github.com/Nyholm"
  1600. },
  1601. {
  1602. "name": "Tobias Schultze",
  1603. "email": "webmaster@tubo-world.de",
  1604. "homepage": "https://github.com/Tobion"
  1605. }
  1606. ],
  1607. "description": "Guzzle promises library",
  1608. "keywords": [
  1609. "promise"
  1610. ],
  1611. "support": {
  1612. "issues": "https://github.com/guzzle/promises/issues",
  1613. "source": "https://github.com/guzzle/promises/tree/2.0.0"
  1614. },
  1615. "funding": [
  1616. {
  1617. "url": "https://github.com/GrahamCampbell",
  1618. "type": "github"
  1619. },
  1620. {
  1621. "url": "https://github.com/Nyholm",
  1622. "type": "github"
  1623. },
  1624. {
  1625. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1626. "type": "tidelift"
  1627. }
  1628. ],
  1629. "time": "2023-05-21T13:50:22+00:00"
  1630. },
  1631. {
  1632. "name": "guzzlehttp/psr7",
  1633. "version": "2.5.0",
  1634. "source": {
  1635. "type": "git",
  1636. "url": "https://github.com/guzzle/psr7.git",
  1637. "reference": "b635f279edd83fc275f822a1188157ffea568ff6"
  1638. },
  1639. "dist": {
  1640. "type": "zip",
  1641. "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6",
  1642. "reference": "b635f279edd83fc275f822a1188157ffea568ff6",
  1643. "shasum": ""
  1644. },
  1645. "require": {
  1646. "php": "^7.2.5 || ^8.0",
  1647. "psr/http-factory": "^1.0",
  1648. "psr/http-message": "^1.1 || ^2.0",
  1649. "ralouphie/getallheaders": "^3.0"
  1650. },
  1651. "provide": {
  1652. "psr/http-factory-implementation": "1.0",
  1653. "psr/http-message-implementation": "1.0"
  1654. },
  1655. "require-dev": {
  1656. "bamarni/composer-bin-plugin": "^1.8.1",
  1657. "http-interop/http-factory-tests": "^0.9",
  1658. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1659. },
  1660. "suggest": {
  1661. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1662. },
  1663. "type": "library",
  1664. "extra": {
  1665. "bamarni-bin": {
  1666. "bin-links": true,
  1667. "forward-command": false
  1668. }
  1669. },
  1670. "autoload": {
  1671. "psr-4": {
  1672. "GuzzleHttp\\Psr7\\": "src/"
  1673. }
  1674. },
  1675. "notification-url": "https://packagist.org/downloads/",
  1676. "license": [
  1677. "MIT"
  1678. ],
  1679. "authors": [
  1680. {
  1681. "name": "Graham Campbell",
  1682. "email": "hello@gjcampbell.co.uk",
  1683. "homepage": "https://github.com/GrahamCampbell"
  1684. },
  1685. {
  1686. "name": "Michael Dowling",
  1687. "email": "mtdowling@gmail.com",
  1688. "homepage": "https://github.com/mtdowling"
  1689. },
  1690. {
  1691. "name": "George Mponos",
  1692. "email": "gmponos@gmail.com",
  1693. "homepage": "https://github.com/gmponos"
  1694. },
  1695. {
  1696. "name": "Tobias Nyholm",
  1697. "email": "tobias.nyholm@gmail.com",
  1698. "homepage": "https://github.com/Nyholm"
  1699. },
  1700. {
  1701. "name": "Márk Sági-Kazár",
  1702. "email": "mark.sagikazar@gmail.com",
  1703. "homepage": "https://github.com/sagikazarmark"
  1704. },
  1705. {
  1706. "name": "Tobias Schultze",
  1707. "email": "webmaster@tubo-world.de",
  1708. "homepage": "https://github.com/Tobion"
  1709. },
  1710. {
  1711. "name": "Márk Sági-Kazár",
  1712. "email": "mark.sagikazar@gmail.com",
  1713. "homepage": "https://sagikazarmark.hu"
  1714. }
  1715. ],
  1716. "description": "PSR-7 message implementation that also provides common utility methods",
  1717. "keywords": [
  1718. "http",
  1719. "message",
  1720. "psr-7",
  1721. "request",
  1722. "response",
  1723. "stream",
  1724. "uri",
  1725. "url"
  1726. ],
  1727. "support": {
  1728. "issues": "https://github.com/guzzle/psr7/issues",
  1729. "source": "https://github.com/guzzle/psr7/tree/2.5.0"
  1730. },
  1731. "funding": [
  1732. {
  1733. "url": "https://github.com/GrahamCampbell",
  1734. "type": "github"
  1735. },
  1736. {
  1737. "url": "https://github.com/Nyholm",
  1738. "type": "github"
  1739. },
  1740. {
  1741. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1742. "type": "tidelift"
  1743. }
  1744. ],
  1745. "time": "2023-04-17T16:11:26+00:00"
  1746. },
  1747. {
  1748. "name": "guzzlehttp/uri-template",
  1749. "version": "v1.0.1",
  1750. "source": {
  1751. "type": "git",
  1752. "url": "https://github.com/guzzle/uri-template.git",
  1753. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2"
  1754. },
  1755. "dist": {
  1756. "type": "zip",
  1757. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2",
  1758. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2",
  1759. "shasum": ""
  1760. },
  1761. "require": {
  1762. "php": "^7.2.5 || ^8.0",
  1763. "symfony/polyfill-php80": "^1.17"
  1764. },
  1765. "require-dev": {
  1766. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  1767. "uri-template/tests": "1.0.0"
  1768. },
  1769. "type": "library",
  1770. "extra": {
  1771. "branch-alias": {
  1772. "dev-master": "1.0-dev"
  1773. }
  1774. },
  1775. "autoload": {
  1776. "psr-4": {
  1777. "GuzzleHttp\\UriTemplate\\": "src"
  1778. }
  1779. },
  1780. "notification-url": "https://packagist.org/downloads/",
  1781. "license": [
  1782. "MIT"
  1783. ],
  1784. "authors": [
  1785. {
  1786. "name": "Graham Campbell",
  1787. "email": "hello@gjcampbell.co.uk",
  1788. "homepage": "https://github.com/GrahamCampbell"
  1789. },
  1790. {
  1791. "name": "Michael Dowling",
  1792. "email": "mtdowling@gmail.com",
  1793. "homepage": "https://github.com/mtdowling"
  1794. },
  1795. {
  1796. "name": "George Mponos",
  1797. "email": "gmponos@gmail.com",
  1798. "homepage": "https://github.com/gmponos"
  1799. },
  1800. {
  1801. "name": "Tobias Nyholm",
  1802. "email": "tobias.nyholm@gmail.com",
  1803. "homepage": "https://github.com/Nyholm"
  1804. }
  1805. ],
  1806. "description": "A polyfill class for uri_template of PHP",
  1807. "keywords": [
  1808. "guzzlehttp",
  1809. "uri-template"
  1810. ],
  1811. "support": {
  1812. "issues": "https://github.com/guzzle/uri-template/issues",
  1813. "source": "https://github.com/guzzle/uri-template/tree/v1.0.1"
  1814. },
  1815. "funding": [
  1816. {
  1817. "url": "https://github.com/GrahamCampbell",
  1818. "type": "github"
  1819. },
  1820. {
  1821. "url": "https://github.com/Nyholm",
  1822. "type": "github"
  1823. },
  1824. {
  1825. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1826. "type": "tidelift"
  1827. }
  1828. ],
  1829. "time": "2021-10-07T12:57:01+00:00"
  1830. },
  1831. {
  1832. "name": "laravel/fortify",
  1833. "version": "v1.17.2",
  1834. "source": {
  1835. "type": "git",
  1836. "url": "https://github.com/laravel/fortify.git",
  1837. "reference": "fc4b9b00b0d657dd035751b286f412976596ba32"
  1838. },
  1839. "dist": {
  1840. "type": "zip",
  1841. "url": "https://api.github.com/repos/laravel/fortify/zipball/fc4b9b00b0d657dd035751b286f412976596ba32",
  1842. "reference": "fc4b9b00b0d657dd035751b286f412976596ba32",
  1843. "shasum": ""
  1844. },
  1845. "require": {
  1846. "bacon/bacon-qr-code": "^2.0",
  1847. "ext-json": "*",
  1848. "illuminate/support": "^8.82|^9.0|^10.0",
  1849. "php": "^7.3|^8.0",
  1850. "pragmarx/google2fa": "^7.0|^8.0"
  1851. },
  1852. "require-dev": {
  1853. "mockery/mockery": "^1.0",
  1854. "orchestra/testbench": "^6.0|^7.0|^8.0",
  1855. "phpstan/phpstan": "^1.10",
  1856. "phpunit/phpunit": "^9.3"
  1857. },
  1858. "type": "library",
  1859. "extra": {
  1860. "branch-alias": {
  1861. "dev-master": "1.x-dev"
  1862. },
  1863. "laravel": {
  1864. "providers": [
  1865. "Laravel\\Fortify\\FortifyServiceProvider"
  1866. ]
  1867. }
  1868. },
  1869. "autoload": {
  1870. "psr-4": {
  1871. "Laravel\\Fortify\\": "src/"
  1872. }
  1873. },
  1874. "notification-url": "https://packagist.org/downloads/",
  1875. "license": [
  1876. "MIT"
  1877. ],
  1878. "authors": [
  1879. {
  1880. "name": "Taylor Otwell",
  1881. "email": "taylor@laravel.com"
  1882. }
  1883. ],
  1884. "description": "Backend controllers and scaffolding for Laravel authentication.",
  1885. "keywords": [
  1886. "auth",
  1887. "laravel"
  1888. ],
  1889. "support": {
  1890. "issues": "https://github.com/laravel/fortify/issues",
  1891. "source": "https://github.com/laravel/fortify"
  1892. },
  1893. "time": "2023-04-26T13:35:07+00:00"
  1894. },
  1895. {
  1896. "name": "laravel/framework",
  1897. "version": "v10.11.0",
  1898. "source": {
  1899. "type": "git",
  1900. "url": "https://github.com/laravel/framework.git",
  1901. "reference": "21a5b6d9b669f32c10cc8ba776511b5f62599fea"
  1902. },
  1903. "dist": {
  1904. "type": "zip",
  1905. "url": "https://api.github.com/repos/laravel/framework/zipball/21a5b6d9b669f32c10cc8ba776511b5f62599fea",
  1906. "reference": "21a5b6d9b669f32c10cc8ba776511b5f62599fea",
  1907. "shasum": ""
  1908. },
  1909. "require": {
  1910. "brick/math": "^0.9.3|^0.10.2|^0.11",
  1911. "composer-runtime-api": "^2.2",
  1912. "doctrine/inflector": "^2.0.5",
  1913. "dragonmantank/cron-expression": "^3.3.2",
  1914. "egulias/email-validator": "^3.2.1|^4.0",
  1915. "ext-ctype": "*",
  1916. "ext-filter": "*",
  1917. "ext-hash": "*",
  1918. "ext-mbstring": "*",
  1919. "ext-openssl": "*",
  1920. "ext-session": "*",
  1921. "ext-tokenizer": "*",
  1922. "fruitcake/php-cors": "^1.2",
  1923. "guzzlehttp/uri-template": "^1.0",
  1924. "laravel/serializable-closure": "^1.3",
  1925. "league/commonmark": "^2.2.1",
  1926. "league/flysystem": "^3.8.0",
  1927. "monolog/monolog": "^3.0",
  1928. "nesbot/carbon": "^2.62.1",
  1929. "nunomaduro/termwind": "^1.13",
  1930. "php": "^8.1",
  1931. "psr/container": "^1.1.1|^2.0.1",
  1932. "psr/log": "^1.0|^2.0|^3.0",
  1933. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1934. "ramsey/uuid": "^4.7",
  1935. "symfony/console": "^6.2",
  1936. "symfony/error-handler": "^6.2",
  1937. "symfony/finder": "^6.2",
  1938. "symfony/http-foundation": "^6.2",
  1939. "symfony/http-kernel": "^6.2",
  1940. "symfony/mailer": "^6.2",
  1941. "symfony/mime": "^6.2",
  1942. "symfony/process": "^6.2",
  1943. "symfony/routing": "^6.2",
  1944. "symfony/uid": "^6.2",
  1945. "symfony/var-dumper": "^6.2",
  1946. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  1947. "vlucas/phpdotenv": "^5.4.1",
  1948. "voku/portable-ascii": "^2.0"
  1949. },
  1950. "conflict": {
  1951. "tightenco/collect": "<5.5.33"
  1952. },
  1953. "provide": {
  1954. "psr/container-implementation": "1.1|2.0",
  1955. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1956. },
  1957. "replace": {
  1958. "illuminate/auth": "self.version",
  1959. "illuminate/broadcasting": "self.version",
  1960. "illuminate/bus": "self.version",
  1961. "illuminate/cache": "self.version",
  1962. "illuminate/collections": "self.version",
  1963. "illuminate/conditionable": "self.version",
  1964. "illuminate/config": "self.version",
  1965. "illuminate/console": "self.version",
  1966. "illuminate/container": "self.version",
  1967. "illuminate/contracts": "self.version",
  1968. "illuminate/cookie": "self.version",
  1969. "illuminate/database": "self.version",
  1970. "illuminate/encryption": "self.version",
  1971. "illuminate/events": "self.version",
  1972. "illuminate/filesystem": "self.version",
  1973. "illuminate/hashing": "self.version",
  1974. "illuminate/http": "self.version",
  1975. "illuminate/log": "self.version",
  1976. "illuminate/macroable": "self.version",
  1977. "illuminate/mail": "self.version",
  1978. "illuminate/notifications": "self.version",
  1979. "illuminate/pagination": "self.version",
  1980. "illuminate/pipeline": "self.version",
  1981. "illuminate/process": "self.version",
  1982. "illuminate/queue": "self.version",
  1983. "illuminate/redis": "self.version",
  1984. "illuminate/routing": "self.version",
  1985. "illuminate/session": "self.version",
  1986. "illuminate/support": "self.version",
  1987. "illuminate/testing": "self.version",
  1988. "illuminate/translation": "self.version",
  1989. "illuminate/validation": "self.version",
  1990. "illuminate/view": "self.version"
  1991. },
  1992. "require-dev": {
  1993. "ably/ably-php": "^1.0",
  1994. "aws/aws-sdk-php": "^3.235.5",
  1995. "doctrine/dbal": "^3.5.1",
  1996. "ext-gmp": "*",
  1997. "fakerphp/faker": "^1.21",
  1998. "guzzlehttp/guzzle": "^7.5",
  1999. "league/flysystem-aws-s3-v3": "^3.0",
  2000. "league/flysystem-ftp": "^3.0",
  2001. "league/flysystem-path-prefixing": "^3.3",
  2002. "league/flysystem-read-only": "^3.3",
  2003. "league/flysystem-sftp-v3": "^3.0",
  2004. "mockery/mockery": "^1.5.1",
  2005. "orchestra/testbench-core": "^8.4",
  2006. "pda/pheanstalk": "^4.0",
  2007. "phpstan/phpdoc-parser": "^1.15",
  2008. "phpstan/phpstan": "^1.4.7",
  2009. "phpunit/phpunit": "^10.0.7",
  2010. "predis/predis": "^2.0.2",
  2011. "symfony/cache": "^6.2",
  2012. "symfony/http-client": "^6.2.4"
  2013. },
  2014. "suggest": {
  2015. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2016. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  2017. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2018. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).",
  2019. "ext-apcu": "Required to use the APC cache driver.",
  2020. "ext-fileinfo": "Required to use the Filesystem class.",
  2021. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2022. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2023. "ext-memcached": "Required to use the memcache cache driver.",
  2024. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2025. "ext-pdo": "Required to use all database features.",
  2026. "ext-posix": "Required to use all features of the queue worker.",
  2027. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2028. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2029. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2030. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  2031. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2032. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  2033. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  2034. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  2035. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  2036. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  2037. "mockery/mockery": "Required to use mocking (^1.5.1).",
  2038. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2039. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2040. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).",
  2041. "predis/predis": "Required to use the predis connector (^2.0.2).",
  2042. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2043. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2044. "symfony/cache": "Required to PSR-6 cache bridge (^6.2).",
  2045. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).",
  2046. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.2).",
  2047. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).",
  2048. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2).",
  2049. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  2050. },
  2051. "type": "library",
  2052. "extra": {
  2053. "branch-alias": {
  2054. "dev-master": "10.x-dev"
  2055. }
  2056. },
  2057. "autoload": {
  2058. "files": [
  2059. "src/Illuminate/Collections/helpers.php",
  2060. "src/Illuminate/Events/functions.php",
  2061. "src/Illuminate/Foundation/helpers.php",
  2062. "src/Illuminate/Support/helpers.php"
  2063. ],
  2064. "psr-4": {
  2065. "Illuminate\\": "src/Illuminate/",
  2066. "Illuminate\\Support\\": [
  2067. "src/Illuminate/Macroable/",
  2068. "src/Illuminate/Collections/",
  2069. "src/Illuminate/Conditionable/"
  2070. ]
  2071. }
  2072. },
  2073. "notification-url": "https://packagist.org/downloads/",
  2074. "license": [
  2075. "MIT"
  2076. ],
  2077. "authors": [
  2078. {
  2079. "name": "Taylor Otwell",
  2080. "email": "taylor@laravel.com"
  2081. }
  2082. ],
  2083. "description": "The Laravel Framework.",
  2084. "homepage": "https://laravel.com",
  2085. "keywords": [
  2086. "framework",
  2087. "laravel"
  2088. ],
  2089. "support": {
  2090. "issues": "https://github.com/laravel/framework/issues",
  2091. "source": "https://github.com/laravel/framework"
  2092. },
  2093. "time": "2023-05-16T13:59:23+00:00"
  2094. },
  2095. {
  2096. "name": "laravel/sanctum",
  2097. "version": "v3.2.5",
  2098. "source": {
  2099. "type": "git",
  2100. "url": "https://github.com/laravel/sanctum.git",
  2101. "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876"
  2102. },
  2103. "dist": {
  2104. "type": "zip",
  2105. "url": "https://api.github.com/repos/laravel/sanctum/zipball/8ebda85d59d3c414863a7f4d816ef8302faad876",
  2106. "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876",
  2107. "shasum": ""
  2108. },
  2109. "require": {
  2110. "ext-json": "*",
  2111. "illuminate/console": "^9.21|^10.0",
  2112. "illuminate/contracts": "^9.21|^10.0",
  2113. "illuminate/database": "^9.21|^10.0",
  2114. "illuminate/support": "^9.21|^10.0",
  2115. "php": "^8.0.2"
  2116. },
  2117. "require-dev": {
  2118. "mockery/mockery": "^1.0",
  2119. "orchestra/testbench": "^7.0|^8.0",
  2120. "phpstan/phpstan": "^1.10",
  2121. "phpunit/phpunit": "^9.3"
  2122. },
  2123. "type": "library",
  2124. "extra": {
  2125. "branch-alias": {
  2126. "dev-master": "3.x-dev"
  2127. },
  2128. "laravel": {
  2129. "providers": [
  2130. "Laravel\\Sanctum\\SanctumServiceProvider"
  2131. ]
  2132. }
  2133. },
  2134. "autoload": {
  2135. "psr-4": {
  2136. "Laravel\\Sanctum\\": "src/"
  2137. }
  2138. },
  2139. "notification-url": "https://packagist.org/downloads/",
  2140. "license": [
  2141. "MIT"
  2142. ],
  2143. "authors": [
  2144. {
  2145. "name": "Taylor Otwell",
  2146. "email": "taylor@laravel.com"
  2147. }
  2148. ],
  2149. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2150. "keywords": [
  2151. "auth",
  2152. "laravel",
  2153. "sanctum"
  2154. ],
  2155. "support": {
  2156. "issues": "https://github.com/laravel/sanctum/issues",
  2157. "source": "https://github.com/laravel/sanctum"
  2158. },
  2159. "time": "2023-05-01T19:39:51+00:00"
  2160. },
  2161. {
  2162. "name": "laravel/serializable-closure",
  2163. "version": "v1.3.0",
  2164. "source": {
  2165. "type": "git",
  2166. "url": "https://github.com/laravel/serializable-closure.git",
  2167. "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37"
  2168. },
  2169. "dist": {
  2170. "type": "zip",
  2171. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
  2172. "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
  2173. "shasum": ""
  2174. },
  2175. "require": {
  2176. "php": "^7.3|^8.0"
  2177. },
  2178. "require-dev": {
  2179. "nesbot/carbon": "^2.61",
  2180. "pestphp/pest": "^1.21.3",
  2181. "phpstan/phpstan": "^1.8.2",
  2182. "symfony/var-dumper": "^5.4.11"
  2183. },
  2184. "type": "library",
  2185. "extra": {
  2186. "branch-alias": {
  2187. "dev-master": "1.x-dev"
  2188. }
  2189. },
  2190. "autoload": {
  2191. "psr-4": {
  2192. "Laravel\\SerializableClosure\\": "src/"
  2193. }
  2194. },
  2195. "notification-url": "https://packagist.org/downloads/",
  2196. "license": [
  2197. "MIT"
  2198. ],
  2199. "authors": [
  2200. {
  2201. "name": "Taylor Otwell",
  2202. "email": "taylor@laravel.com"
  2203. },
  2204. {
  2205. "name": "Nuno Maduro",
  2206. "email": "nuno@laravel.com"
  2207. }
  2208. ],
  2209. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2210. "keywords": [
  2211. "closure",
  2212. "laravel",
  2213. "serializable"
  2214. ],
  2215. "support": {
  2216. "issues": "https://github.com/laravel/serializable-closure/issues",
  2217. "source": "https://github.com/laravel/serializable-closure"
  2218. },
  2219. "time": "2023-01-30T18:31:20+00:00"
  2220. },
  2221. {
  2222. "name": "laravel/socialite",
  2223. "version": "v5.6.1",
  2224. "source": {
  2225. "type": "git",
  2226. "url": "https://github.com/laravel/socialite.git",
  2227. "reference": "a14a177f2cc71d8add71e2b19e00800e83bdda09"
  2228. },
  2229. "dist": {
  2230. "type": "zip",
  2231. "url": "https://api.github.com/repos/laravel/socialite/zipball/a14a177f2cc71d8add71e2b19e00800e83bdda09",
  2232. "reference": "a14a177f2cc71d8add71e2b19e00800e83bdda09",
  2233. "shasum": ""
  2234. },
  2235. "require": {
  2236. "ext-json": "*",
  2237. "guzzlehttp/guzzle": "^6.0|^7.0",
  2238. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2239. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2240. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2241. "league/oauth1-client": "^1.10.1",
  2242. "php": "^7.2|^8.0"
  2243. },
  2244. "require-dev": {
  2245. "mockery/mockery": "^1.0",
  2246. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
  2247. "phpunit/phpunit": "^8.0|^9.3"
  2248. },
  2249. "type": "library",
  2250. "extra": {
  2251. "branch-alias": {
  2252. "dev-master": "5.x-dev"
  2253. },
  2254. "laravel": {
  2255. "providers": [
  2256. "Laravel\\Socialite\\SocialiteServiceProvider"
  2257. ],
  2258. "aliases": {
  2259. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2260. }
  2261. }
  2262. },
  2263. "autoload": {
  2264. "psr-4": {
  2265. "Laravel\\Socialite\\": "src/"
  2266. }
  2267. },
  2268. "notification-url": "https://packagist.org/downloads/",
  2269. "license": [
  2270. "MIT"
  2271. ],
  2272. "authors": [
  2273. {
  2274. "name": "Taylor Otwell",
  2275. "email": "taylor@laravel.com"
  2276. }
  2277. ],
  2278. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2279. "homepage": "https://laravel.com",
  2280. "keywords": [
  2281. "laravel",
  2282. "oauth"
  2283. ],
  2284. "support": {
  2285. "issues": "https://github.com/laravel/socialite/issues",
  2286. "source": "https://github.com/laravel/socialite"
  2287. },
  2288. "time": "2023-01-20T15:42:35+00:00"
  2289. },
  2290. {
  2291. "name": "laravel/tinker",
  2292. "version": "v2.8.1",
  2293. "source": {
  2294. "type": "git",
  2295. "url": "https://github.com/laravel/tinker.git",
  2296. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10"
  2297. },
  2298. "dist": {
  2299. "type": "zip",
  2300. "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2301. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2302. "shasum": ""
  2303. },
  2304. "require": {
  2305. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2306. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2307. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2308. "php": "^7.2.5|^8.0",
  2309. "psy/psysh": "^0.10.4|^0.11.1",
  2310. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2311. },
  2312. "require-dev": {
  2313. "mockery/mockery": "~1.3.3|^1.4.2",
  2314. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2315. },
  2316. "suggest": {
  2317. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  2318. },
  2319. "type": "library",
  2320. "extra": {
  2321. "branch-alias": {
  2322. "dev-master": "2.x-dev"
  2323. },
  2324. "laravel": {
  2325. "providers": [
  2326. "Laravel\\Tinker\\TinkerServiceProvider"
  2327. ]
  2328. }
  2329. },
  2330. "autoload": {
  2331. "psr-4": {
  2332. "Laravel\\Tinker\\": "src/"
  2333. }
  2334. },
  2335. "notification-url": "https://packagist.org/downloads/",
  2336. "license": [
  2337. "MIT"
  2338. ],
  2339. "authors": [
  2340. {
  2341. "name": "Taylor Otwell",
  2342. "email": "taylor@laravel.com"
  2343. }
  2344. ],
  2345. "description": "Powerful REPL for the Laravel framework.",
  2346. "keywords": [
  2347. "REPL",
  2348. "Tinker",
  2349. "laravel",
  2350. "psysh"
  2351. ],
  2352. "support": {
  2353. "issues": "https://github.com/laravel/tinker/issues",
  2354. "source": "https://github.com/laravel/tinker/tree/v2.8.1"
  2355. },
  2356. "time": "2023-02-15T16:40:09+00:00"
  2357. },
  2358. {
  2359. "name": "league/commonmark",
  2360. "version": "2.4.0",
  2361. "source": {
  2362. "type": "git",
  2363. "url": "https://github.com/thephpleague/commonmark.git",
  2364. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048"
  2365. },
  2366. "dist": {
  2367. "type": "zip",
  2368. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  2369. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  2370. "shasum": ""
  2371. },
  2372. "require": {
  2373. "ext-mbstring": "*",
  2374. "league/config": "^1.1.1",
  2375. "php": "^7.4 || ^8.0",
  2376. "psr/event-dispatcher": "^1.0",
  2377. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2378. "symfony/polyfill-php80": "^1.16"
  2379. },
  2380. "require-dev": {
  2381. "cebe/markdown": "^1.0",
  2382. "commonmark/cmark": "0.30.0",
  2383. "commonmark/commonmark.js": "0.30.0",
  2384. "composer/package-versions-deprecated": "^1.8",
  2385. "embed/embed": "^4.4",
  2386. "erusev/parsedown": "^1.0",
  2387. "ext-json": "*",
  2388. "github/gfm": "0.29.0",
  2389. "michelf/php-markdown": "^1.4 || ^2.0",
  2390. "nyholm/psr7": "^1.5",
  2391. "phpstan/phpstan": "^1.8.2",
  2392. "phpunit/phpunit": "^9.5.21",
  2393. "scrutinizer/ocular": "^1.8.1",
  2394. "symfony/finder": "^5.3 | ^6.0",
  2395. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2396. "unleashedtech/php-coding-standard": "^3.1.1",
  2397. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2398. },
  2399. "suggest": {
  2400. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2401. },
  2402. "type": "library",
  2403. "extra": {
  2404. "branch-alias": {
  2405. "dev-main": "2.5-dev"
  2406. }
  2407. },
  2408. "autoload": {
  2409. "psr-4": {
  2410. "League\\CommonMark\\": "src"
  2411. }
  2412. },
  2413. "notification-url": "https://packagist.org/downloads/",
  2414. "license": [
  2415. "BSD-3-Clause"
  2416. ],
  2417. "authors": [
  2418. {
  2419. "name": "Colin O'Dell",
  2420. "email": "colinodell@gmail.com",
  2421. "homepage": "https://www.colinodell.com",
  2422. "role": "Lead Developer"
  2423. }
  2424. ],
  2425. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2426. "homepage": "https://commonmark.thephpleague.com",
  2427. "keywords": [
  2428. "commonmark",
  2429. "flavored",
  2430. "gfm",
  2431. "github",
  2432. "github-flavored",
  2433. "markdown",
  2434. "md",
  2435. "parser"
  2436. ],
  2437. "support": {
  2438. "docs": "https://commonmark.thephpleague.com/",
  2439. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2440. "issues": "https://github.com/thephpleague/commonmark/issues",
  2441. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2442. "source": "https://github.com/thephpleague/commonmark"
  2443. },
  2444. "funding": [
  2445. {
  2446. "url": "https://www.colinodell.com/sponsor",
  2447. "type": "custom"
  2448. },
  2449. {
  2450. "url": "https://www.paypal.me/colinpodell/10.00",
  2451. "type": "custom"
  2452. },
  2453. {
  2454. "url": "https://github.com/colinodell",
  2455. "type": "github"
  2456. },
  2457. {
  2458. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2459. "type": "tidelift"
  2460. }
  2461. ],
  2462. "time": "2023-03-24T15:16:10+00:00"
  2463. },
  2464. {
  2465. "name": "league/config",
  2466. "version": "v1.2.0",
  2467. "source": {
  2468. "type": "git",
  2469. "url": "https://github.com/thephpleague/config.git",
  2470. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2471. },
  2472. "dist": {
  2473. "type": "zip",
  2474. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2475. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2476. "shasum": ""
  2477. },
  2478. "require": {
  2479. "dflydev/dot-access-data": "^3.0.1",
  2480. "nette/schema": "^1.2",
  2481. "php": "^7.4 || ^8.0"
  2482. },
  2483. "require-dev": {
  2484. "phpstan/phpstan": "^1.8.2",
  2485. "phpunit/phpunit": "^9.5.5",
  2486. "scrutinizer/ocular": "^1.8.1",
  2487. "unleashedtech/php-coding-standard": "^3.1",
  2488. "vimeo/psalm": "^4.7.3"
  2489. },
  2490. "type": "library",
  2491. "extra": {
  2492. "branch-alias": {
  2493. "dev-main": "1.2-dev"
  2494. }
  2495. },
  2496. "autoload": {
  2497. "psr-4": {
  2498. "League\\Config\\": "src"
  2499. }
  2500. },
  2501. "notification-url": "https://packagist.org/downloads/",
  2502. "license": [
  2503. "BSD-3-Clause"
  2504. ],
  2505. "authors": [
  2506. {
  2507. "name": "Colin O'Dell",
  2508. "email": "colinodell@gmail.com",
  2509. "homepage": "https://www.colinodell.com",
  2510. "role": "Lead Developer"
  2511. }
  2512. ],
  2513. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2514. "homepage": "https://config.thephpleague.com",
  2515. "keywords": [
  2516. "array",
  2517. "config",
  2518. "configuration",
  2519. "dot",
  2520. "dot-access",
  2521. "nested",
  2522. "schema"
  2523. ],
  2524. "support": {
  2525. "docs": "https://config.thephpleague.com/",
  2526. "issues": "https://github.com/thephpleague/config/issues",
  2527. "rss": "https://github.com/thephpleague/config/releases.atom",
  2528. "source": "https://github.com/thephpleague/config"
  2529. },
  2530. "funding": [
  2531. {
  2532. "url": "https://www.colinodell.com/sponsor",
  2533. "type": "custom"
  2534. },
  2535. {
  2536. "url": "https://www.paypal.me/colinpodell/10.00",
  2537. "type": "custom"
  2538. },
  2539. {
  2540. "url": "https://github.com/colinodell",
  2541. "type": "github"
  2542. }
  2543. ],
  2544. "time": "2022-12-11T20:36:23+00:00"
  2545. },
  2546. {
  2547. "name": "league/flysystem",
  2548. "version": "3.15.1",
  2549. "source": {
  2550. "type": "git",
  2551. "url": "https://github.com/thephpleague/flysystem.git",
  2552. "reference": "a141d430414fcb8bf797a18716b09f759a385bed"
  2553. },
  2554. "dist": {
  2555. "type": "zip",
  2556. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a141d430414fcb8bf797a18716b09f759a385bed",
  2557. "reference": "a141d430414fcb8bf797a18716b09f759a385bed",
  2558. "shasum": ""
  2559. },
  2560. "require": {
  2561. "league/flysystem-local": "^3.0.0",
  2562. "league/mime-type-detection": "^1.0.0",
  2563. "php": "^8.0.2"
  2564. },
  2565. "conflict": {
  2566. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2567. "guzzlehttp/guzzle": "<7.0",
  2568. "guzzlehttp/ringphp": "<1.1.1",
  2569. "phpseclib/phpseclib": "3.0.15",
  2570. "symfony/http-client": "<5.2"
  2571. },
  2572. "require-dev": {
  2573. "async-aws/s3": "^1.5",
  2574. "async-aws/simple-s3": "^1.1",
  2575. "aws/aws-sdk-php": "^3.220.0",
  2576. "composer/semver": "^3.0",
  2577. "ext-fileinfo": "*",
  2578. "ext-ftp": "*",
  2579. "ext-zip": "*",
  2580. "friendsofphp/php-cs-fixer": "^3.5",
  2581. "google/cloud-storage": "^1.23",
  2582. "microsoft/azure-storage-blob": "^1.1",
  2583. "phpseclib/phpseclib": "^3.0.14",
  2584. "phpstan/phpstan": "^0.12.26",
  2585. "phpunit/phpunit": "^9.5.11",
  2586. "sabre/dav": "^4.3.1"
  2587. },
  2588. "type": "library",
  2589. "autoload": {
  2590. "psr-4": {
  2591. "League\\Flysystem\\": "src"
  2592. }
  2593. },
  2594. "notification-url": "https://packagist.org/downloads/",
  2595. "license": [
  2596. "MIT"
  2597. ],
  2598. "authors": [
  2599. {
  2600. "name": "Frank de Jonge",
  2601. "email": "info@frankdejonge.nl"
  2602. }
  2603. ],
  2604. "description": "File storage abstraction for PHP",
  2605. "keywords": [
  2606. "WebDAV",
  2607. "aws",
  2608. "cloud",
  2609. "file",
  2610. "files",
  2611. "filesystem",
  2612. "filesystems",
  2613. "ftp",
  2614. "s3",
  2615. "sftp",
  2616. "storage"
  2617. ],
  2618. "support": {
  2619. "issues": "https://github.com/thephpleague/flysystem/issues",
  2620. "source": "https://github.com/thephpleague/flysystem/tree/3.15.1"
  2621. },
  2622. "funding": [
  2623. {
  2624. "url": "https://ecologi.com/frankdejonge",
  2625. "type": "custom"
  2626. },
  2627. {
  2628. "url": "https://github.com/frankdejonge",
  2629. "type": "github"
  2630. }
  2631. ],
  2632. "time": "2023-05-04T09:04:26+00:00"
  2633. },
  2634. {
  2635. "name": "league/flysystem-local",
  2636. "version": "3.15.0",
  2637. "source": {
  2638. "type": "git",
  2639. "url": "https://github.com/thephpleague/flysystem-local.git",
  2640. "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3"
  2641. },
  2642. "dist": {
  2643. "type": "zip",
  2644. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/543f64c397fefdf9cfeac443ffb6beff602796b3",
  2645. "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3",
  2646. "shasum": ""
  2647. },
  2648. "require": {
  2649. "ext-fileinfo": "*",
  2650. "league/flysystem": "^3.0.0",
  2651. "league/mime-type-detection": "^1.0.0",
  2652. "php": "^8.0.2"
  2653. },
  2654. "type": "library",
  2655. "autoload": {
  2656. "psr-4": {
  2657. "League\\Flysystem\\Local\\": ""
  2658. }
  2659. },
  2660. "notification-url": "https://packagist.org/downloads/",
  2661. "license": [
  2662. "MIT"
  2663. ],
  2664. "authors": [
  2665. {
  2666. "name": "Frank de Jonge",
  2667. "email": "info@frankdejonge.nl"
  2668. }
  2669. ],
  2670. "description": "Local filesystem adapter for Flysystem.",
  2671. "keywords": [
  2672. "Flysystem",
  2673. "file",
  2674. "files",
  2675. "filesystem",
  2676. "local"
  2677. ],
  2678. "support": {
  2679. "issues": "https://github.com/thephpleague/flysystem-local/issues",
  2680. "source": "https://github.com/thephpleague/flysystem-local/tree/3.15.0"
  2681. },
  2682. "funding": [
  2683. {
  2684. "url": "https://ecologi.com/frankdejonge",
  2685. "type": "custom"
  2686. },
  2687. {
  2688. "url": "https://github.com/frankdejonge",
  2689. "type": "github"
  2690. }
  2691. ],
  2692. "time": "2023-05-02T20:02:14+00:00"
  2693. },
  2694. {
  2695. "name": "league/mime-type-detection",
  2696. "version": "1.11.0",
  2697. "source": {
  2698. "type": "git",
  2699. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2700. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  2701. },
  2702. "dist": {
  2703. "type": "zip",
  2704. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2705. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2706. "shasum": ""
  2707. },
  2708. "require": {
  2709. "ext-fileinfo": "*",
  2710. "php": "^7.2 || ^8.0"
  2711. },
  2712. "require-dev": {
  2713. "friendsofphp/php-cs-fixer": "^3.2",
  2714. "phpstan/phpstan": "^0.12.68",
  2715. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2716. },
  2717. "type": "library",
  2718. "autoload": {
  2719. "psr-4": {
  2720. "League\\MimeTypeDetection\\": "src"
  2721. }
  2722. },
  2723. "notification-url": "https://packagist.org/downloads/",
  2724. "license": [
  2725. "MIT"
  2726. ],
  2727. "authors": [
  2728. {
  2729. "name": "Frank de Jonge",
  2730. "email": "info@frankdejonge.nl"
  2731. }
  2732. ],
  2733. "description": "Mime-type detection for Flysystem",
  2734. "support": {
  2735. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2736. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2737. },
  2738. "funding": [
  2739. {
  2740. "url": "https://github.com/frankdejonge",
  2741. "type": "github"
  2742. },
  2743. {
  2744. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2745. "type": "tidelift"
  2746. }
  2747. ],
  2748. "time": "2022-04-17T13:12:02+00:00"
  2749. },
  2750. {
  2751. "name": "league/oauth1-client",
  2752. "version": "v1.10.1",
  2753. "source": {
  2754. "type": "git",
  2755. "url": "https://github.com/thephpleague/oauth1-client.git",
  2756. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  2757. },
  2758. "dist": {
  2759. "type": "zip",
  2760. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  2761. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  2762. "shasum": ""
  2763. },
  2764. "require": {
  2765. "ext-json": "*",
  2766. "ext-openssl": "*",
  2767. "guzzlehttp/guzzle": "^6.0|^7.0",
  2768. "guzzlehttp/psr7": "^1.7|^2.0",
  2769. "php": ">=7.1||>=8.0"
  2770. },
  2771. "require-dev": {
  2772. "ext-simplexml": "*",
  2773. "friendsofphp/php-cs-fixer": "^2.17",
  2774. "mockery/mockery": "^1.3.3",
  2775. "phpstan/phpstan": "^0.12.42",
  2776. "phpunit/phpunit": "^7.5||9.5"
  2777. },
  2778. "suggest": {
  2779. "ext-simplexml": "For decoding XML-based responses."
  2780. },
  2781. "type": "library",
  2782. "extra": {
  2783. "branch-alias": {
  2784. "dev-master": "1.0-dev",
  2785. "dev-develop": "2.0-dev"
  2786. }
  2787. },
  2788. "autoload": {
  2789. "psr-4": {
  2790. "League\\OAuth1\\Client\\": "src/"
  2791. }
  2792. },
  2793. "notification-url": "https://packagist.org/downloads/",
  2794. "license": [
  2795. "MIT"
  2796. ],
  2797. "authors": [
  2798. {
  2799. "name": "Ben Corlett",
  2800. "email": "bencorlett@me.com",
  2801. "homepage": "http://www.webcomm.com.au",
  2802. "role": "Developer"
  2803. }
  2804. ],
  2805. "description": "OAuth 1.0 Client Library",
  2806. "keywords": [
  2807. "Authentication",
  2808. "SSO",
  2809. "authorization",
  2810. "bitbucket",
  2811. "identity",
  2812. "idp",
  2813. "oauth",
  2814. "oauth1",
  2815. "single sign on",
  2816. "trello",
  2817. "tumblr",
  2818. "twitter"
  2819. ],
  2820. "support": {
  2821. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  2822. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  2823. },
  2824. "time": "2022-04-15T14:02:14+00:00"
  2825. },
  2826. {
  2827. "name": "league/uri-parser",
  2828. "version": "1.4.1",
  2829. "source": {
  2830. "type": "git",
  2831. "url": "https://github.com/thephpleague/uri-parser.git",
  2832. "reference": "671548427e4c932352d9b9279fdfa345bf63fa00"
  2833. },
  2834. "dist": {
  2835. "type": "zip",
  2836. "url": "https://api.github.com/repos/thephpleague/uri-parser/zipball/671548427e4c932352d9b9279fdfa345bf63fa00",
  2837. "reference": "671548427e4c932352d9b9279fdfa345bf63fa00",
  2838. "shasum": ""
  2839. },
  2840. "require": {
  2841. "php": ">=7.0.0"
  2842. },
  2843. "require-dev": {
  2844. "friendsofphp/php-cs-fixer": "^2.0",
  2845. "phpstan/phpstan": "^0.9.2",
  2846. "phpstan/phpstan-phpunit": "^0.9.4",
  2847. "phpstan/phpstan-strict-rules": "^0.9.0",
  2848. "phpunit/phpunit": "^6.0"
  2849. },
  2850. "suggest": {
  2851. "ext-intl": "Allow parsing RFC3987 compliant hosts",
  2852. "league/uri-schemes": "Allow validating and normalizing URI parsing results"
  2853. },
  2854. "type": "library",
  2855. "extra": {
  2856. "branch-alias": {
  2857. "dev-master": "1.x-dev"
  2858. }
  2859. },
  2860. "autoload": {
  2861. "files": [
  2862. "src/functions_include.php"
  2863. ],
  2864. "psr-4": {
  2865. "League\\Uri\\": "src"
  2866. }
  2867. },
  2868. "notification-url": "https://packagist.org/downloads/",
  2869. "license": [
  2870. "MIT"
  2871. ],
  2872. "authors": [
  2873. {
  2874. "name": "Ignace Nyamagana Butera",
  2875. "email": "nyamsprod@gmail.com",
  2876. "homepage": "https://nyamsprod.com"
  2877. }
  2878. ],
  2879. "description": "userland URI parser RFC 3986 compliant",
  2880. "homepage": "https://github.com/thephpleague/uri-parser",
  2881. "keywords": [
  2882. "parse_url",
  2883. "parser",
  2884. "rfc3986",
  2885. "rfc3987",
  2886. "uri",
  2887. "url"
  2888. ],
  2889. "support": {
  2890. "issues": "https://github.com/thephpleague/uri-parser/issues",
  2891. "source": "https://github.com/thephpleague/uri-parser/tree/master"
  2892. },
  2893. "abandoned": true,
  2894. "time": "2018-11-22T07:55:51+00:00"
  2895. },
  2896. {
  2897. "name": "leandrocfe/filament-apex-charts",
  2898. "version": "1.0.2",
  2899. "source": {
  2900. "type": "git",
  2901. "url": "https://github.com/leandrocfe/filament-apex-charts.git",
  2902. "reference": "26118c0c3f81465b418ecc630c7e1a63693a7f7b"
  2903. },
  2904. "dist": {
  2905. "type": "zip",
  2906. "url": "https://api.github.com/repos/leandrocfe/filament-apex-charts/zipball/26118c0c3f81465b418ecc630c7e1a63693a7f7b",
  2907. "reference": "26118c0c3f81465b418ecc630c7e1a63693a7f7b",
  2908. "shasum": ""
  2909. },
  2910. "require": {
  2911. "filament/filament": "^2.16",
  2912. "illuminate/contracts": "^9.0|^10.0",
  2913. "livewire/livewire": "^2.11",
  2914. "php": "^8.1",
  2915. "spatie/laravel-package-tools": "^1.13.0"
  2916. },
  2917. "require-dev": {
  2918. "laravel/pint": "^1.0",
  2919. "nunomaduro/collision": "^6.0|^7.0",
  2920. "nunomaduro/larastan": "^2.0.1",
  2921. "orchestra/testbench": "^7.0|^8.0",
  2922. "pestphp/pest": "^1.21",
  2923. "pestphp/pest-plugin-laravel": "^1.1",
  2924. "phpstan/extension-installer": "^1.1",
  2925. "phpstan/phpstan-deprecation-rules": "^1.0",
  2926. "phpstan/phpstan-phpunit": "^1.0",
  2927. "phpunit/phpunit": "^9.5|^10.0"
  2928. },
  2929. "type": "library",
  2930. "extra": {
  2931. "laravel": {
  2932. "providers": [
  2933. "Leandrocfe\\FilamentApexCharts\\FilamentApexChartsServiceProvider"
  2934. ],
  2935. "aliases": {
  2936. "FilamentApexCharts": "Leandrocfe\\FilamentApexCharts\\Facades\\FilamentApexCharts"
  2937. }
  2938. }
  2939. },
  2940. "autoload": {
  2941. "psr-4": {
  2942. "Leandrocfe\\FilamentApexCharts\\": "src"
  2943. }
  2944. },
  2945. "notification-url": "https://packagist.org/downloads/",
  2946. "license": [
  2947. "MIT"
  2948. ],
  2949. "authors": [
  2950. {
  2951. "name": "Leandro Costa Ferreira",
  2952. "email": "leandrocfe@gmail.com",
  2953. "role": "Developer"
  2954. }
  2955. ],
  2956. "description": "Apex Charts integration for Filament PHP.",
  2957. "homepage": "https://github.com/leandrocfe/filament-apex-charts",
  2958. "keywords": [
  2959. "apexcharts",
  2960. "filament-apex-charts",
  2961. "laravel",
  2962. "leandrocfe"
  2963. ],
  2964. "support": {
  2965. "issues": "https://github.com/leandrocfe/filament-apex-charts/issues",
  2966. "source": "https://github.com/leandrocfe/filament-apex-charts/tree/1.0.2"
  2967. },
  2968. "time": "2023-03-14T01:34:14+00:00"
  2969. },
  2970. {
  2971. "name": "livewire/livewire",
  2972. "version": "v2.12.3",
  2973. "source": {
  2974. "type": "git",
  2975. "url": "https://github.com/livewire/livewire.git",
  2976. "reference": "019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74"
  2977. },
  2978. "dist": {
  2979. "type": "zip",
  2980. "url": "https://api.github.com/repos/livewire/livewire/zipball/019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74",
  2981. "reference": "019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74",
  2982. "shasum": ""
  2983. },
  2984. "require": {
  2985. "illuminate/database": "^7.0|^8.0|^9.0|^10.0",
  2986. "illuminate/support": "^7.0|^8.0|^9.0|^10.0",
  2987. "illuminate/validation": "^7.0|^8.0|^9.0|^10.0",
  2988. "league/mime-type-detection": "^1.9",
  2989. "php": "^7.2.5|^8.0",
  2990. "symfony/http-kernel": "^5.0|^6.0"
  2991. },
  2992. "require-dev": {
  2993. "calebporzio/sushi": "^2.1",
  2994. "laravel/framework": "^7.0|^8.0|^9.0|^10.0",
  2995. "mockery/mockery": "^1.3.1",
  2996. "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0",
  2997. "orchestra/testbench-dusk": "^5.2|^6.0|^7.0|^8.0",
  2998. "phpunit/phpunit": "^8.4|^9.0",
  2999. "psy/psysh": "@stable"
  3000. },
  3001. "type": "library",
  3002. "extra": {
  3003. "laravel": {
  3004. "providers": [
  3005. "Livewire\\LivewireServiceProvider"
  3006. ],
  3007. "aliases": {
  3008. "Livewire": "Livewire\\Livewire"
  3009. }
  3010. }
  3011. },
  3012. "autoload": {
  3013. "files": [
  3014. "src/helpers.php"
  3015. ],
  3016. "psr-4": {
  3017. "Livewire\\": "src/"
  3018. }
  3019. },
  3020. "notification-url": "https://packagist.org/downloads/",
  3021. "license": [
  3022. "MIT"
  3023. ],
  3024. "authors": [
  3025. {
  3026. "name": "Caleb Porzio",
  3027. "email": "calebporzio@gmail.com"
  3028. }
  3029. ],
  3030. "description": "A front-end framework for Laravel.",
  3031. "support": {
  3032. "issues": "https://github.com/livewire/livewire/issues",
  3033. "source": "https://github.com/livewire/livewire/tree/v2.12.3"
  3034. },
  3035. "funding": [
  3036. {
  3037. "url": "https://github.com/livewire",
  3038. "type": "github"
  3039. }
  3040. ],
  3041. "time": "2023-03-03T20:12:38+00:00"
  3042. },
  3043. {
  3044. "name": "masterminds/html5",
  3045. "version": "2.8.0",
  3046. "source": {
  3047. "type": "git",
  3048. "url": "https://github.com/Masterminds/html5-php.git",
  3049. "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3"
  3050. },
  3051. "dist": {
  3052. "type": "zip",
  3053. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3",
  3054. "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3",
  3055. "shasum": ""
  3056. },
  3057. "require": {
  3058. "ext-dom": "*",
  3059. "php": ">=5.3.0"
  3060. },
  3061. "require-dev": {
  3062. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  3063. },
  3064. "type": "library",
  3065. "extra": {
  3066. "branch-alias": {
  3067. "dev-master": "2.7-dev"
  3068. }
  3069. },
  3070. "autoload": {
  3071. "psr-4": {
  3072. "Masterminds\\": "src"
  3073. }
  3074. },
  3075. "notification-url": "https://packagist.org/downloads/",
  3076. "license": [
  3077. "MIT"
  3078. ],
  3079. "authors": [
  3080. {
  3081. "name": "Matt Butcher",
  3082. "email": "technosophos@gmail.com"
  3083. },
  3084. {
  3085. "name": "Matt Farina",
  3086. "email": "matt@mattfarina.com"
  3087. },
  3088. {
  3089. "name": "Asmir Mustafic",
  3090. "email": "goetas@gmail.com"
  3091. }
  3092. ],
  3093. "description": "An HTML5 parser and serializer.",
  3094. "homepage": "http://masterminds.github.io/html5-php",
  3095. "keywords": [
  3096. "HTML5",
  3097. "dom",
  3098. "html",
  3099. "parser",
  3100. "querypath",
  3101. "serializer",
  3102. "xml"
  3103. ],
  3104. "support": {
  3105. "issues": "https://github.com/Masterminds/html5-php/issues",
  3106. "source": "https://github.com/Masterminds/html5-php/tree/2.8.0"
  3107. },
  3108. "time": "2023-04-26T07:27:39+00:00"
  3109. },
  3110. {
  3111. "name": "matomo/device-detector",
  3112. "version": "6.1.2",
  3113. "source": {
  3114. "type": "git",
  3115. "url": "https://github.com/matomo-org/device-detector.git",
  3116. "reference": "7d0760e84f0b41302792a0c764fa52d3dff186f8"
  3117. },
  3118. "dist": {
  3119. "type": "zip",
  3120. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/7d0760e84f0b41302792a0c764fa52d3dff186f8",
  3121. "reference": "7d0760e84f0b41302792a0c764fa52d3dff186f8",
  3122. "shasum": ""
  3123. },
  3124. "require": {
  3125. "mustangostang/spyc": "*",
  3126. "php": "^7.2|^8.0"
  3127. },
  3128. "replace": {
  3129. "piwik/device-detector": "self.version"
  3130. },
  3131. "require-dev": {
  3132. "matthiasmullie/scrapbook": "^1.4.7",
  3133. "mayflower/mo4-coding-standard": "^v8.0.0",
  3134. "phpstan/phpstan": "^0.12.52",
  3135. "phpunit/phpunit": "^8.5.8",
  3136. "psr/cache": "^1.0.1",
  3137. "psr/simple-cache": "^1.0.1",
  3138. "symfony/yaml": "^5.1.7"
  3139. },
  3140. "suggest": {
  3141. "doctrine/cache": "Can directly be used for caching purpose",
  3142. "ext-yaml": "Necessary for using the Pecl YAML parser"
  3143. },
  3144. "type": "library",
  3145. "autoload": {
  3146. "psr-4": {
  3147. "DeviceDetector\\": ""
  3148. },
  3149. "exclude-from-classmap": [
  3150. "Tests/"
  3151. ]
  3152. },
  3153. "notification-url": "https://packagist.org/downloads/",
  3154. "license": [
  3155. "LGPL-3.0-or-later"
  3156. ],
  3157. "authors": [
  3158. {
  3159. "name": "The Matomo Team",
  3160. "email": "hello@matomo.org",
  3161. "homepage": "https://matomo.org/team/"
  3162. }
  3163. ],
  3164. "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.",
  3165. "homepage": "https://matomo.org",
  3166. "keywords": [
  3167. "devicedetection",
  3168. "parser",
  3169. "useragent"
  3170. ],
  3171. "support": {
  3172. "forum": "https://forum.matomo.org/",
  3173. "issues": "https://github.com/matomo-org/device-detector/issues",
  3174. "source": "https://github.com/matomo-org/matomo",
  3175. "wiki": "https://dev.matomo.org/"
  3176. },
  3177. "time": "2023-05-04T09:30:54+00:00"
  3178. },
  3179. {
  3180. "name": "monolog/monolog",
  3181. "version": "3.3.1",
  3182. "source": {
  3183. "type": "git",
  3184. "url": "https://github.com/Seldaek/monolog.git",
  3185. "reference": "9b5daeaffce5b926cac47923798bba91059e60e2"
  3186. },
  3187. "dist": {
  3188. "type": "zip",
  3189. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/9b5daeaffce5b926cac47923798bba91059e60e2",
  3190. "reference": "9b5daeaffce5b926cac47923798bba91059e60e2",
  3191. "shasum": ""
  3192. },
  3193. "require": {
  3194. "php": ">=8.1",
  3195. "psr/log": "^2.0 || ^3.0"
  3196. },
  3197. "provide": {
  3198. "psr/log-implementation": "3.0.0"
  3199. },
  3200. "require-dev": {
  3201. "aws/aws-sdk-php": "^3.0",
  3202. "doctrine/couchdb": "~1.0@dev",
  3203. "elasticsearch/elasticsearch": "^7 || ^8",
  3204. "ext-json": "*",
  3205. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3206. "guzzlehttp/guzzle": "^7.4.5",
  3207. "guzzlehttp/psr7": "^2.2",
  3208. "mongodb/mongodb": "^1.8",
  3209. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3210. "phpstan/phpstan": "^1.9",
  3211. "phpstan/phpstan-deprecation-rules": "^1.0",
  3212. "phpstan/phpstan-strict-rules": "^1.4",
  3213. "phpunit/phpunit": "^9.5.26",
  3214. "predis/predis": "^1.1 || ^2",
  3215. "ruflin/elastica": "^7",
  3216. "symfony/mailer": "^5.4 || ^6",
  3217. "symfony/mime": "^5.4 || ^6"
  3218. },
  3219. "suggest": {
  3220. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3221. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3222. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3223. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3224. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3225. "ext-mbstring": "Allow to work properly with unicode symbols",
  3226. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3227. "ext-openssl": "Required to send log messages using SSL",
  3228. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3229. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3230. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3231. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3232. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3233. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3234. },
  3235. "type": "library",
  3236. "extra": {
  3237. "branch-alias": {
  3238. "dev-main": "3.x-dev"
  3239. }
  3240. },
  3241. "autoload": {
  3242. "psr-4": {
  3243. "Monolog\\": "src/Monolog"
  3244. }
  3245. },
  3246. "notification-url": "https://packagist.org/downloads/",
  3247. "license": [
  3248. "MIT"
  3249. ],
  3250. "authors": [
  3251. {
  3252. "name": "Jordi Boggiano",
  3253. "email": "j.boggiano@seld.be",
  3254. "homepage": "https://seld.be"
  3255. }
  3256. ],
  3257. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3258. "homepage": "https://github.com/Seldaek/monolog",
  3259. "keywords": [
  3260. "log",
  3261. "logging",
  3262. "psr-3"
  3263. ],
  3264. "support": {
  3265. "issues": "https://github.com/Seldaek/monolog/issues",
  3266. "source": "https://github.com/Seldaek/monolog/tree/3.3.1"
  3267. },
  3268. "funding": [
  3269. {
  3270. "url": "https://github.com/Seldaek",
  3271. "type": "github"
  3272. },
  3273. {
  3274. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3275. "type": "tidelift"
  3276. }
  3277. ],
  3278. "time": "2023-02-06T13:46:10+00:00"
  3279. },
  3280. {
  3281. "name": "mustangostang/spyc",
  3282. "version": "0.6.3",
  3283. "source": {
  3284. "type": "git",
  3285. "url": "git@github.com:mustangostang/spyc.git",
  3286. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  3287. },
  3288. "dist": {
  3289. "type": "zip",
  3290. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  3291. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  3292. "shasum": ""
  3293. },
  3294. "require": {
  3295. "php": ">=5.3.1"
  3296. },
  3297. "require-dev": {
  3298. "phpunit/phpunit": "4.3.*@dev"
  3299. },
  3300. "type": "library",
  3301. "extra": {
  3302. "branch-alias": {
  3303. "dev-master": "0.5.x-dev"
  3304. }
  3305. },
  3306. "autoload": {
  3307. "files": [
  3308. "Spyc.php"
  3309. ]
  3310. },
  3311. "notification-url": "https://packagist.org/downloads/",
  3312. "license": [
  3313. "MIT"
  3314. ],
  3315. "authors": [
  3316. {
  3317. "name": "mustangostang",
  3318. "email": "vlad.andersen@gmail.com"
  3319. }
  3320. ],
  3321. "description": "A simple YAML loader/dumper class for PHP",
  3322. "homepage": "https://github.com/mustangostang/spyc/",
  3323. "keywords": [
  3324. "spyc",
  3325. "yaml",
  3326. "yml"
  3327. ],
  3328. "time": "2019-09-10T13:16:29+00:00"
  3329. },
  3330. {
  3331. "name": "nesbot/carbon",
  3332. "version": "2.66.0",
  3333. "source": {
  3334. "type": "git",
  3335. "url": "https://github.com/briannesbitt/Carbon.git",
  3336. "reference": "496712849902241f04902033b0441b269effe001"
  3337. },
  3338. "dist": {
  3339. "type": "zip",
  3340. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  3341. "reference": "496712849902241f04902033b0441b269effe001",
  3342. "shasum": ""
  3343. },
  3344. "require": {
  3345. "ext-json": "*",
  3346. "php": "^7.1.8 || ^8.0",
  3347. "symfony/polyfill-mbstring": "^1.0",
  3348. "symfony/polyfill-php80": "^1.16",
  3349. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3350. },
  3351. "require-dev": {
  3352. "doctrine/dbal": "^2.0 || ^3.1.4",
  3353. "doctrine/orm": "^2.7",
  3354. "friendsofphp/php-cs-fixer": "^3.0",
  3355. "kylekatarnls/multi-tester": "^2.0",
  3356. "ondrejmirtes/better-reflection": "*",
  3357. "phpmd/phpmd": "^2.9",
  3358. "phpstan/extension-installer": "^1.0",
  3359. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3360. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3361. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3362. "squizlabs/php_codesniffer": "^3.4"
  3363. },
  3364. "bin": [
  3365. "bin/carbon"
  3366. ],
  3367. "type": "library",
  3368. "extra": {
  3369. "branch-alias": {
  3370. "dev-3.x": "3.x-dev",
  3371. "dev-master": "2.x-dev"
  3372. },
  3373. "laravel": {
  3374. "providers": [
  3375. "Carbon\\Laravel\\ServiceProvider"
  3376. ]
  3377. },
  3378. "phpstan": {
  3379. "includes": [
  3380. "extension.neon"
  3381. ]
  3382. }
  3383. },
  3384. "autoload": {
  3385. "psr-4": {
  3386. "Carbon\\": "src/Carbon/"
  3387. }
  3388. },
  3389. "notification-url": "https://packagist.org/downloads/",
  3390. "license": [
  3391. "MIT"
  3392. ],
  3393. "authors": [
  3394. {
  3395. "name": "Brian Nesbitt",
  3396. "email": "brian@nesbot.com",
  3397. "homepage": "https://markido.com"
  3398. },
  3399. {
  3400. "name": "kylekatarnls",
  3401. "homepage": "https://github.com/kylekatarnls"
  3402. }
  3403. ],
  3404. "description": "An API extension for DateTime that supports 281 different languages.",
  3405. "homepage": "https://carbon.nesbot.com",
  3406. "keywords": [
  3407. "date",
  3408. "datetime",
  3409. "time"
  3410. ],
  3411. "support": {
  3412. "docs": "https://carbon.nesbot.com/docs",
  3413. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3414. "source": "https://github.com/briannesbitt/Carbon"
  3415. },
  3416. "funding": [
  3417. {
  3418. "url": "https://github.com/sponsors/kylekatarnls",
  3419. "type": "github"
  3420. },
  3421. {
  3422. "url": "https://opencollective.com/Carbon#sponsor",
  3423. "type": "opencollective"
  3424. },
  3425. {
  3426. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3427. "type": "tidelift"
  3428. }
  3429. ],
  3430. "time": "2023-01-29T18:53:47+00:00"
  3431. },
  3432. {
  3433. "name": "nette/schema",
  3434. "version": "v1.2.3",
  3435. "source": {
  3436. "type": "git",
  3437. "url": "https://github.com/nette/schema.git",
  3438. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  3439. },
  3440. "dist": {
  3441. "type": "zip",
  3442. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  3443. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  3444. "shasum": ""
  3445. },
  3446. "require": {
  3447. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3448. "php": ">=7.1 <8.3"
  3449. },
  3450. "require-dev": {
  3451. "nette/tester": "^2.3 || ^2.4",
  3452. "phpstan/phpstan-nette": "^1.0",
  3453. "tracy/tracy": "^2.7"
  3454. },
  3455. "type": "library",
  3456. "extra": {
  3457. "branch-alias": {
  3458. "dev-master": "1.2-dev"
  3459. }
  3460. },
  3461. "autoload": {
  3462. "classmap": [
  3463. "src/"
  3464. ]
  3465. },
  3466. "notification-url": "https://packagist.org/downloads/",
  3467. "license": [
  3468. "BSD-3-Clause",
  3469. "GPL-2.0-only",
  3470. "GPL-3.0-only"
  3471. ],
  3472. "authors": [
  3473. {
  3474. "name": "David Grudl",
  3475. "homepage": "https://davidgrudl.com"
  3476. },
  3477. {
  3478. "name": "Nette Community",
  3479. "homepage": "https://nette.org/contributors"
  3480. }
  3481. ],
  3482. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3483. "homepage": "https://nette.org",
  3484. "keywords": [
  3485. "config",
  3486. "nette"
  3487. ],
  3488. "support": {
  3489. "issues": "https://github.com/nette/schema/issues",
  3490. "source": "https://github.com/nette/schema/tree/v1.2.3"
  3491. },
  3492. "time": "2022-10-13T01:24:26+00:00"
  3493. },
  3494. {
  3495. "name": "nette/utils",
  3496. "version": "v4.0.0",
  3497. "source": {
  3498. "type": "git",
  3499. "url": "https://github.com/nette/utils.git",
  3500. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
  3501. },
  3502. "dist": {
  3503. "type": "zip",
  3504. "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
  3505. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
  3506. "shasum": ""
  3507. },
  3508. "require": {
  3509. "php": ">=8.0 <8.3"
  3510. },
  3511. "conflict": {
  3512. "nette/finder": "<3",
  3513. "nette/schema": "<1.2.2"
  3514. },
  3515. "require-dev": {
  3516. "jetbrains/phpstorm-attributes": "dev-master",
  3517. "nette/tester": "^2.4",
  3518. "phpstan/phpstan": "^1.0",
  3519. "tracy/tracy": "^2.9"
  3520. },
  3521. "suggest": {
  3522. "ext-gd": "to use Image",
  3523. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3524. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3525. "ext-json": "to use Nette\\Utils\\Json",
  3526. "ext-mbstring": "to use Strings::lower() etc...",
  3527. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3528. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3529. },
  3530. "type": "library",
  3531. "extra": {
  3532. "branch-alias": {
  3533. "dev-master": "4.0-dev"
  3534. }
  3535. },
  3536. "autoload": {
  3537. "classmap": [
  3538. "src/"
  3539. ]
  3540. },
  3541. "notification-url": "https://packagist.org/downloads/",
  3542. "license": [
  3543. "BSD-3-Clause",
  3544. "GPL-2.0-only",
  3545. "GPL-3.0-only"
  3546. ],
  3547. "authors": [
  3548. {
  3549. "name": "David Grudl",
  3550. "homepage": "https://davidgrudl.com"
  3551. },
  3552. {
  3553. "name": "Nette Community",
  3554. "homepage": "https://nette.org/contributors"
  3555. }
  3556. ],
  3557. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3558. "homepage": "https://nette.org",
  3559. "keywords": [
  3560. "array",
  3561. "core",
  3562. "datetime",
  3563. "images",
  3564. "json",
  3565. "nette",
  3566. "paginator",
  3567. "password",
  3568. "slugify",
  3569. "string",
  3570. "unicode",
  3571. "utf-8",
  3572. "utility",
  3573. "validation"
  3574. ],
  3575. "support": {
  3576. "issues": "https://github.com/nette/utils/issues",
  3577. "source": "https://github.com/nette/utils/tree/v4.0.0"
  3578. },
  3579. "time": "2023-02-02T10:41:53+00:00"
  3580. },
  3581. {
  3582. "name": "nikic/php-parser",
  3583. "version": "v4.15.5",
  3584. "source": {
  3585. "type": "git",
  3586. "url": "https://github.com/nikic/PHP-Parser.git",
  3587. "reference": "11e2663a5bc9db5d714eedb4277ee300403b4a9e"
  3588. },
  3589. "dist": {
  3590. "type": "zip",
  3591. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/11e2663a5bc9db5d714eedb4277ee300403b4a9e",
  3592. "reference": "11e2663a5bc9db5d714eedb4277ee300403b4a9e",
  3593. "shasum": ""
  3594. },
  3595. "require": {
  3596. "ext-tokenizer": "*",
  3597. "php": ">=7.0"
  3598. },
  3599. "require-dev": {
  3600. "ircmaxell/php-yacc": "^0.0.7",
  3601. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3602. },
  3603. "bin": [
  3604. "bin/php-parse"
  3605. ],
  3606. "type": "library",
  3607. "extra": {
  3608. "branch-alias": {
  3609. "dev-master": "4.9-dev"
  3610. }
  3611. },
  3612. "autoload": {
  3613. "psr-4": {
  3614. "PhpParser\\": "lib/PhpParser"
  3615. }
  3616. },
  3617. "notification-url": "https://packagist.org/downloads/",
  3618. "license": [
  3619. "BSD-3-Clause"
  3620. ],
  3621. "authors": [
  3622. {
  3623. "name": "Nikita Popov"
  3624. }
  3625. ],
  3626. "description": "A PHP parser written in PHP",
  3627. "keywords": [
  3628. "parser",
  3629. "php"
  3630. ],
  3631. "support": {
  3632. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3633. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.5"
  3634. },
  3635. "time": "2023-05-19T20:20:00+00:00"
  3636. },
  3637. {
  3638. "name": "nunomaduro/termwind",
  3639. "version": "v1.15.1",
  3640. "source": {
  3641. "type": "git",
  3642. "url": "https://github.com/nunomaduro/termwind.git",
  3643. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  3644. },
  3645. "dist": {
  3646. "type": "zip",
  3647. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3648. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3649. "shasum": ""
  3650. },
  3651. "require": {
  3652. "ext-mbstring": "*",
  3653. "php": "^8.0",
  3654. "symfony/console": "^5.3.0|^6.0.0"
  3655. },
  3656. "require-dev": {
  3657. "ergebnis/phpstan-rules": "^1.0.",
  3658. "illuminate/console": "^8.0|^9.0",
  3659. "illuminate/support": "^8.0|^9.0",
  3660. "laravel/pint": "^1.0.0",
  3661. "pestphp/pest": "^1.21.0",
  3662. "pestphp/pest-plugin-mock": "^1.0",
  3663. "phpstan/phpstan": "^1.4.6",
  3664. "phpstan/phpstan-strict-rules": "^1.1.0",
  3665. "symfony/var-dumper": "^5.2.7|^6.0.0",
  3666. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3667. },
  3668. "type": "library",
  3669. "extra": {
  3670. "laravel": {
  3671. "providers": [
  3672. "Termwind\\Laravel\\TermwindServiceProvider"
  3673. ]
  3674. }
  3675. },
  3676. "autoload": {
  3677. "files": [
  3678. "src/Functions.php"
  3679. ],
  3680. "psr-4": {
  3681. "Termwind\\": "src/"
  3682. }
  3683. },
  3684. "notification-url": "https://packagist.org/downloads/",
  3685. "license": [
  3686. "MIT"
  3687. ],
  3688. "authors": [
  3689. {
  3690. "name": "Nuno Maduro",
  3691. "email": "enunomaduro@gmail.com"
  3692. }
  3693. ],
  3694. "description": "Its like Tailwind CSS, but for the console.",
  3695. "keywords": [
  3696. "cli",
  3697. "console",
  3698. "css",
  3699. "package",
  3700. "php",
  3701. "style"
  3702. ],
  3703. "support": {
  3704. "issues": "https://github.com/nunomaduro/termwind/issues",
  3705. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  3706. },
  3707. "funding": [
  3708. {
  3709. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3710. "type": "custom"
  3711. },
  3712. {
  3713. "url": "https://github.com/nunomaduro",
  3714. "type": "github"
  3715. },
  3716. {
  3717. "url": "https://github.com/xiCO2k",
  3718. "type": "github"
  3719. }
  3720. ],
  3721. "time": "2023-02-08T01:06:31+00:00"
  3722. },
  3723. {
  3724. "name": "paragonie/constant_time_encoding",
  3725. "version": "v2.6.3",
  3726. "source": {
  3727. "type": "git",
  3728. "url": "https://github.com/paragonie/constant_time_encoding.git",
  3729. "reference": "58c3f47f650c94ec05a151692652a868995d2938"
  3730. },
  3731. "dist": {
  3732. "type": "zip",
  3733. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938",
  3734. "reference": "58c3f47f650c94ec05a151692652a868995d2938",
  3735. "shasum": ""
  3736. },
  3737. "require": {
  3738. "php": "^7|^8"
  3739. },
  3740. "require-dev": {
  3741. "phpunit/phpunit": "^6|^7|^8|^9",
  3742. "vimeo/psalm": "^1|^2|^3|^4"
  3743. },
  3744. "type": "library",
  3745. "autoload": {
  3746. "psr-4": {
  3747. "ParagonIE\\ConstantTime\\": "src/"
  3748. }
  3749. },
  3750. "notification-url": "https://packagist.org/downloads/",
  3751. "license": [
  3752. "MIT"
  3753. ],
  3754. "authors": [
  3755. {
  3756. "name": "Paragon Initiative Enterprises",
  3757. "email": "security@paragonie.com",
  3758. "homepage": "https://paragonie.com",
  3759. "role": "Maintainer"
  3760. },
  3761. {
  3762. "name": "Steve 'Sc00bz' Thomas",
  3763. "email": "steve@tobtu.com",
  3764. "homepage": "https://www.tobtu.com",
  3765. "role": "Original Developer"
  3766. }
  3767. ],
  3768. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3769. "keywords": [
  3770. "base16",
  3771. "base32",
  3772. "base32_decode",
  3773. "base32_encode",
  3774. "base64",
  3775. "base64_decode",
  3776. "base64_encode",
  3777. "bin2hex",
  3778. "encoding",
  3779. "hex",
  3780. "hex2bin",
  3781. "rfc4648"
  3782. ],
  3783. "support": {
  3784. "email": "info@paragonie.com",
  3785. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  3786. "source": "https://github.com/paragonie/constant_time_encoding"
  3787. },
  3788. "time": "2022-06-14T06:56:20+00:00"
  3789. },
  3790. {
  3791. "name": "phpoption/phpoption",
  3792. "version": "1.9.1",
  3793. "source": {
  3794. "type": "git",
  3795. "url": "https://github.com/schmittjoh/php-option.git",
  3796. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  3797. },
  3798. "dist": {
  3799. "type": "zip",
  3800. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  3801. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  3802. "shasum": ""
  3803. },
  3804. "require": {
  3805. "php": "^7.2.5 || ^8.0"
  3806. },
  3807. "require-dev": {
  3808. "bamarni/composer-bin-plugin": "^1.8.2",
  3809. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  3810. },
  3811. "type": "library",
  3812. "extra": {
  3813. "bamarni-bin": {
  3814. "bin-links": true,
  3815. "forward-command": true
  3816. },
  3817. "branch-alias": {
  3818. "dev-master": "1.9-dev"
  3819. }
  3820. },
  3821. "autoload": {
  3822. "psr-4": {
  3823. "PhpOption\\": "src/PhpOption/"
  3824. }
  3825. },
  3826. "notification-url": "https://packagist.org/downloads/",
  3827. "license": [
  3828. "Apache-2.0"
  3829. ],
  3830. "authors": [
  3831. {
  3832. "name": "Johannes M. Schmitt",
  3833. "email": "schmittjoh@gmail.com",
  3834. "homepage": "https://github.com/schmittjoh"
  3835. },
  3836. {
  3837. "name": "Graham Campbell",
  3838. "email": "hello@gjcampbell.co.uk",
  3839. "homepage": "https://github.com/GrahamCampbell"
  3840. }
  3841. ],
  3842. "description": "Option Type for PHP",
  3843. "keywords": [
  3844. "language",
  3845. "option",
  3846. "php",
  3847. "type"
  3848. ],
  3849. "support": {
  3850. "issues": "https://github.com/schmittjoh/php-option/issues",
  3851. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  3852. },
  3853. "funding": [
  3854. {
  3855. "url": "https://github.com/GrahamCampbell",
  3856. "type": "github"
  3857. },
  3858. {
  3859. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3860. "type": "tidelift"
  3861. }
  3862. ],
  3863. "time": "2023-02-25T19:38:58+00:00"
  3864. },
  3865. {
  3866. "name": "pragmarx/google2fa",
  3867. "version": "v8.0.1",
  3868. "source": {
  3869. "type": "git",
  3870. "url": "https://github.com/antonioribeiro/google2fa.git",
  3871. "reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3"
  3872. },
  3873. "dist": {
  3874. "type": "zip",
  3875. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/80c3d801b31fe165f8fe99ea085e0a37834e1be3",
  3876. "reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3",
  3877. "shasum": ""
  3878. },
  3879. "require": {
  3880. "paragonie/constant_time_encoding": "^1.0|^2.0",
  3881. "php": "^7.1|^8.0"
  3882. },
  3883. "require-dev": {
  3884. "phpstan/phpstan": "^0.12.18",
  3885. "phpunit/phpunit": "^7.5.15|^8.5|^9.0"
  3886. },
  3887. "type": "library",
  3888. "autoload": {
  3889. "psr-4": {
  3890. "PragmaRX\\Google2FA\\": "src/"
  3891. }
  3892. },
  3893. "notification-url": "https://packagist.org/downloads/",
  3894. "license": [
  3895. "MIT"
  3896. ],
  3897. "authors": [
  3898. {
  3899. "name": "Antonio Carlos Ribeiro",
  3900. "email": "acr@antoniocarlosribeiro.com",
  3901. "role": "Creator & Designer"
  3902. }
  3903. ],
  3904. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  3905. "keywords": [
  3906. "2fa",
  3907. "Authentication",
  3908. "Two Factor Authentication",
  3909. "google2fa"
  3910. ],
  3911. "support": {
  3912. "issues": "https://github.com/antonioribeiro/google2fa/issues",
  3913. "source": "https://github.com/antonioribeiro/google2fa/tree/v8.0.1"
  3914. },
  3915. "time": "2022-06-13T21:57:56+00:00"
  3916. },
  3917. {
  3918. "name": "psr/container",
  3919. "version": "2.0.2",
  3920. "source": {
  3921. "type": "git",
  3922. "url": "https://github.com/php-fig/container.git",
  3923. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3924. },
  3925. "dist": {
  3926. "type": "zip",
  3927. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3928. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3929. "shasum": ""
  3930. },
  3931. "require": {
  3932. "php": ">=7.4.0"
  3933. },
  3934. "type": "library",
  3935. "extra": {
  3936. "branch-alias": {
  3937. "dev-master": "2.0.x-dev"
  3938. }
  3939. },
  3940. "autoload": {
  3941. "psr-4": {
  3942. "Psr\\Container\\": "src/"
  3943. }
  3944. },
  3945. "notification-url": "https://packagist.org/downloads/",
  3946. "license": [
  3947. "MIT"
  3948. ],
  3949. "authors": [
  3950. {
  3951. "name": "PHP-FIG",
  3952. "homepage": "https://www.php-fig.org/"
  3953. }
  3954. ],
  3955. "description": "Common Container Interface (PHP FIG PSR-11)",
  3956. "homepage": "https://github.com/php-fig/container",
  3957. "keywords": [
  3958. "PSR-11",
  3959. "container",
  3960. "container-interface",
  3961. "container-interop",
  3962. "psr"
  3963. ],
  3964. "support": {
  3965. "issues": "https://github.com/php-fig/container/issues",
  3966. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3967. },
  3968. "time": "2021-11-05T16:47:00+00:00"
  3969. },
  3970. {
  3971. "name": "psr/event-dispatcher",
  3972. "version": "1.0.0",
  3973. "source": {
  3974. "type": "git",
  3975. "url": "https://github.com/php-fig/event-dispatcher.git",
  3976. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3977. },
  3978. "dist": {
  3979. "type": "zip",
  3980. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3981. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3982. "shasum": ""
  3983. },
  3984. "require": {
  3985. "php": ">=7.2.0"
  3986. },
  3987. "type": "library",
  3988. "extra": {
  3989. "branch-alias": {
  3990. "dev-master": "1.0.x-dev"
  3991. }
  3992. },
  3993. "autoload": {
  3994. "psr-4": {
  3995. "Psr\\EventDispatcher\\": "src/"
  3996. }
  3997. },
  3998. "notification-url": "https://packagist.org/downloads/",
  3999. "license": [
  4000. "MIT"
  4001. ],
  4002. "authors": [
  4003. {
  4004. "name": "PHP-FIG",
  4005. "homepage": "http://www.php-fig.org/"
  4006. }
  4007. ],
  4008. "description": "Standard interfaces for event handling.",
  4009. "keywords": [
  4010. "events",
  4011. "psr",
  4012. "psr-14"
  4013. ],
  4014. "support": {
  4015. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4016. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4017. },
  4018. "time": "2019-01-08T18:20:26+00:00"
  4019. },
  4020. {
  4021. "name": "psr/http-client",
  4022. "version": "1.0.2",
  4023. "source": {
  4024. "type": "git",
  4025. "url": "https://github.com/php-fig/http-client.git",
  4026. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
  4027. },
  4028. "dist": {
  4029. "type": "zip",
  4030. "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  4031. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  4032. "shasum": ""
  4033. },
  4034. "require": {
  4035. "php": "^7.0 || ^8.0",
  4036. "psr/http-message": "^1.0 || ^2.0"
  4037. },
  4038. "type": "library",
  4039. "extra": {
  4040. "branch-alias": {
  4041. "dev-master": "1.0.x-dev"
  4042. }
  4043. },
  4044. "autoload": {
  4045. "psr-4": {
  4046. "Psr\\Http\\Client\\": "src/"
  4047. }
  4048. },
  4049. "notification-url": "https://packagist.org/downloads/",
  4050. "license": [
  4051. "MIT"
  4052. ],
  4053. "authors": [
  4054. {
  4055. "name": "PHP-FIG",
  4056. "homepage": "https://www.php-fig.org/"
  4057. }
  4058. ],
  4059. "description": "Common interface for HTTP clients",
  4060. "homepage": "https://github.com/php-fig/http-client",
  4061. "keywords": [
  4062. "http",
  4063. "http-client",
  4064. "psr",
  4065. "psr-18"
  4066. ],
  4067. "support": {
  4068. "source": "https://github.com/php-fig/http-client/tree/1.0.2"
  4069. },
  4070. "time": "2023-04-10T20:12:12+00:00"
  4071. },
  4072. {
  4073. "name": "psr/http-factory",
  4074. "version": "1.0.2",
  4075. "source": {
  4076. "type": "git",
  4077. "url": "https://github.com/php-fig/http-factory.git",
  4078. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4079. },
  4080. "dist": {
  4081. "type": "zip",
  4082. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4083. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4084. "shasum": ""
  4085. },
  4086. "require": {
  4087. "php": ">=7.0.0",
  4088. "psr/http-message": "^1.0 || ^2.0"
  4089. },
  4090. "type": "library",
  4091. "extra": {
  4092. "branch-alias": {
  4093. "dev-master": "1.0.x-dev"
  4094. }
  4095. },
  4096. "autoload": {
  4097. "psr-4": {
  4098. "Psr\\Http\\Message\\": "src/"
  4099. }
  4100. },
  4101. "notification-url": "https://packagist.org/downloads/",
  4102. "license": [
  4103. "MIT"
  4104. ],
  4105. "authors": [
  4106. {
  4107. "name": "PHP-FIG",
  4108. "homepage": "https://www.php-fig.org/"
  4109. }
  4110. ],
  4111. "description": "Common interfaces for PSR-7 HTTP message factories",
  4112. "keywords": [
  4113. "factory",
  4114. "http",
  4115. "message",
  4116. "psr",
  4117. "psr-17",
  4118. "psr-7",
  4119. "request",
  4120. "response"
  4121. ],
  4122. "support": {
  4123. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4124. },
  4125. "time": "2023-04-10T20:10:41+00:00"
  4126. },
  4127. {
  4128. "name": "psr/http-message",
  4129. "version": "2.0",
  4130. "source": {
  4131. "type": "git",
  4132. "url": "https://github.com/php-fig/http-message.git",
  4133. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4134. },
  4135. "dist": {
  4136. "type": "zip",
  4137. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4138. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4139. "shasum": ""
  4140. },
  4141. "require": {
  4142. "php": "^7.2 || ^8.0"
  4143. },
  4144. "type": "library",
  4145. "extra": {
  4146. "branch-alias": {
  4147. "dev-master": "2.0.x-dev"
  4148. }
  4149. },
  4150. "autoload": {
  4151. "psr-4": {
  4152. "Psr\\Http\\Message\\": "src/"
  4153. }
  4154. },
  4155. "notification-url": "https://packagist.org/downloads/",
  4156. "license": [
  4157. "MIT"
  4158. ],
  4159. "authors": [
  4160. {
  4161. "name": "PHP-FIG",
  4162. "homepage": "https://www.php-fig.org/"
  4163. }
  4164. ],
  4165. "description": "Common interface for HTTP messages",
  4166. "homepage": "https://github.com/php-fig/http-message",
  4167. "keywords": [
  4168. "http",
  4169. "http-message",
  4170. "psr",
  4171. "psr-7",
  4172. "request",
  4173. "response"
  4174. ],
  4175. "support": {
  4176. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4177. },
  4178. "time": "2023-04-04T09:54:51+00:00"
  4179. },
  4180. {
  4181. "name": "psr/log",
  4182. "version": "3.0.0",
  4183. "source": {
  4184. "type": "git",
  4185. "url": "https://github.com/php-fig/log.git",
  4186. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  4187. },
  4188. "dist": {
  4189. "type": "zip",
  4190. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4191. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4192. "shasum": ""
  4193. },
  4194. "require": {
  4195. "php": ">=8.0.0"
  4196. },
  4197. "type": "library",
  4198. "extra": {
  4199. "branch-alias": {
  4200. "dev-master": "3.x-dev"
  4201. }
  4202. },
  4203. "autoload": {
  4204. "psr-4": {
  4205. "Psr\\Log\\": "src"
  4206. }
  4207. },
  4208. "notification-url": "https://packagist.org/downloads/",
  4209. "license": [
  4210. "MIT"
  4211. ],
  4212. "authors": [
  4213. {
  4214. "name": "PHP-FIG",
  4215. "homepage": "https://www.php-fig.org/"
  4216. }
  4217. ],
  4218. "description": "Common interface for logging libraries",
  4219. "homepage": "https://github.com/php-fig/log",
  4220. "keywords": [
  4221. "log",
  4222. "psr",
  4223. "psr-3"
  4224. ],
  4225. "support": {
  4226. "source": "https://github.com/php-fig/log/tree/3.0.0"
  4227. },
  4228. "time": "2021-07-14T16:46:02+00:00"
  4229. },
  4230. {
  4231. "name": "psr/simple-cache",
  4232. "version": "3.0.0",
  4233. "source": {
  4234. "type": "git",
  4235. "url": "https://github.com/php-fig/simple-cache.git",
  4236. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4237. },
  4238. "dist": {
  4239. "type": "zip",
  4240. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4241. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4242. "shasum": ""
  4243. },
  4244. "require": {
  4245. "php": ">=8.0.0"
  4246. },
  4247. "type": "library",
  4248. "extra": {
  4249. "branch-alias": {
  4250. "dev-master": "3.0.x-dev"
  4251. }
  4252. },
  4253. "autoload": {
  4254. "psr-4": {
  4255. "Psr\\SimpleCache\\": "src/"
  4256. }
  4257. },
  4258. "notification-url": "https://packagist.org/downloads/",
  4259. "license": [
  4260. "MIT"
  4261. ],
  4262. "authors": [
  4263. {
  4264. "name": "PHP-FIG",
  4265. "homepage": "https://www.php-fig.org/"
  4266. }
  4267. ],
  4268. "description": "Common interfaces for simple caching",
  4269. "keywords": [
  4270. "cache",
  4271. "caching",
  4272. "psr",
  4273. "psr-16",
  4274. "simple-cache"
  4275. ],
  4276. "support": {
  4277. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4278. },
  4279. "time": "2021-10-29T13:26:27+00:00"
  4280. },
  4281. {
  4282. "name": "psy/psysh",
  4283. "version": "v0.11.18",
  4284. "source": {
  4285. "type": "git",
  4286. "url": "https://github.com/bobthecow/psysh.git",
  4287. "reference": "4f00ee9e236fa6a48f4560d1300b9c961a70a7ec"
  4288. },
  4289. "dist": {
  4290. "type": "zip",
  4291. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/4f00ee9e236fa6a48f4560d1300b9c961a70a7ec",
  4292. "reference": "4f00ee9e236fa6a48f4560d1300b9c961a70a7ec",
  4293. "shasum": ""
  4294. },
  4295. "require": {
  4296. "ext-json": "*",
  4297. "ext-tokenizer": "*",
  4298. "nikic/php-parser": "^4.0 || ^3.1",
  4299. "php": "^8.0 || ^7.0.8",
  4300. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4301. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4302. },
  4303. "conflict": {
  4304. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4305. },
  4306. "require-dev": {
  4307. "bamarni/composer-bin-plugin": "^1.2"
  4308. },
  4309. "suggest": {
  4310. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4311. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4312. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4313. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4314. },
  4315. "bin": [
  4316. "bin/psysh"
  4317. ],
  4318. "type": "library",
  4319. "extra": {
  4320. "branch-alias": {
  4321. "dev-main": "0.11.x-dev"
  4322. }
  4323. },
  4324. "autoload": {
  4325. "files": [
  4326. "src/functions.php"
  4327. ],
  4328. "psr-4": {
  4329. "Psy\\": "src/"
  4330. }
  4331. },
  4332. "notification-url": "https://packagist.org/downloads/",
  4333. "license": [
  4334. "MIT"
  4335. ],
  4336. "authors": [
  4337. {
  4338. "name": "Justin Hileman",
  4339. "email": "justin@justinhileman.info",
  4340. "homepage": "http://justinhileman.com"
  4341. }
  4342. ],
  4343. "description": "An interactive shell for modern PHP.",
  4344. "homepage": "http://psysh.org",
  4345. "keywords": [
  4346. "REPL",
  4347. "console",
  4348. "interactive",
  4349. "shell"
  4350. ],
  4351. "support": {
  4352. "issues": "https://github.com/bobthecow/psysh/issues",
  4353. "source": "https://github.com/bobthecow/psysh/tree/v0.11.18"
  4354. },
  4355. "time": "2023-05-23T02:31:11+00:00"
  4356. },
  4357. {
  4358. "name": "ralouphie/getallheaders",
  4359. "version": "3.0.3",
  4360. "source": {
  4361. "type": "git",
  4362. "url": "https://github.com/ralouphie/getallheaders.git",
  4363. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4364. },
  4365. "dist": {
  4366. "type": "zip",
  4367. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4368. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4369. "shasum": ""
  4370. },
  4371. "require": {
  4372. "php": ">=5.6"
  4373. },
  4374. "require-dev": {
  4375. "php-coveralls/php-coveralls": "^2.1",
  4376. "phpunit/phpunit": "^5 || ^6.5"
  4377. },
  4378. "type": "library",
  4379. "autoload": {
  4380. "files": [
  4381. "src/getallheaders.php"
  4382. ]
  4383. },
  4384. "notification-url": "https://packagist.org/downloads/",
  4385. "license": [
  4386. "MIT"
  4387. ],
  4388. "authors": [
  4389. {
  4390. "name": "Ralph Khattar",
  4391. "email": "ralph.khattar@gmail.com"
  4392. }
  4393. ],
  4394. "description": "A polyfill for getallheaders.",
  4395. "support": {
  4396. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4397. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4398. },
  4399. "time": "2019-03-08T08:55:37+00:00"
  4400. },
  4401. {
  4402. "name": "ramsey/collection",
  4403. "version": "2.0.0",
  4404. "source": {
  4405. "type": "git",
  4406. "url": "https://github.com/ramsey/collection.git",
  4407. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4408. },
  4409. "dist": {
  4410. "type": "zip",
  4411. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4412. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4413. "shasum": ""
  4414. },
  4415. "require": {
  4416. "php": "^8.1"
  4417. },
  4418. "require-dev": {
  4419. "captainhook/plugin-composer": "^5.3",
  4420. "ergebnis/composer-normalize": "^2.28.3",
  4421. "fakerphp/faker": "^1.21",
  4422. "hamcrest/hamcrest-php": "^2.0",
  4423. "jangregor/phpstan-prophecy": "^1.0",
  4424. "mockery/mockery": "^1.5",
  4425. "php-parallel-lint/php-console-highlighter": "^1.0",
  4426. "php-parallel-lint/php-parallel-lint": "^1.3",
  4427. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4428. "phpspec/prophecy-phpunit": "^2.0",
  4429. "phpstan/extension-installer": "^1.2",
  4430. "phpstan/phpstan": "^1.9",
  4431. "phpstan/phpstan-mockery": "^1.1",
  4432. "phpstan/phpstan-phpunit": "^1.3",
  4433. "phpunit/phpunit": "^9.5",
  4434. "psalm/plugin-mockery": "^1.1",
  4435. "psalm/plugin-phpunit": "^0.18.4",
  4436. "ramsey/coding-standard": "^2.0.3",
  4437. "ramsey/conventional-commits": "^1.3",
  4438. "vimeo/psalm": "^5.4"
  4439. },
  4440. "type": "library",
  4441. "extra": {
  4442. "captainhook": {
  4443. "force-install": true
  4444. },
  4445. "ramsey/conventional-commits": {
  4446. "configFile": "conventional-commits.json"
  4447. }
  4448. },
  4449. "autoload": {
  4450. "psr-4": {
  4451. "Ramsey\\Collection\\": "src/"
  4452. }
  4453. },
  4454. "notification-url": "https://packagist.org/downloads/",
  4455. "license": [
  4456. "MIT"
  4457. ],
  4458. "authors": [
  4459. {
  4460. "name": "Ben Ramsey",
  4461. "email": "ben@benramsey.com",
  4462. "homepage": "https://benramsey.com"
  4463. }
  4464. ],
  4465. "description": "A PHP library for representing and manipulating collections.",
  4466. "keywords": [
  4467. "array",
  4468. "collection",
  4469. "hash",
  4470. "map",
  4471. "queue",
  4472. "set"
  4473. ],
  4474. "support": {
  4475. "issues": "https://github.com/ramsey/collection/issues",
  4476. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4477. },
  4478. "funding": [
  4479. {
  4480. "url": "https://github.com/ramsey",
  4481. "type": "github"
  4482. },
  4483. {
  4484. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4485. "type": "tidelift"
  4486. }
  4487. ],
  4488. "time": "2022-12-31T21:50:55+00:00"
  4489. },
  4490. {
  4491. "name": "ramsey/uuid",
  4492. "version": "4.7.4",
  4493. "source": {
  4494. "type": "git",
  4495. "url": "https://github.com/ramsey/uuid.git",
  4496. "reference": "60a4c63ab724854332900504274f6150ff26d286"
  4497. },
  4498. "dist": {
  4499. "type": "zip",
  4500. "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
  4501. "reference": "60a4c63ab724854332900504274f6150ff26d286",
  4502. "shasum": ""
  4503. },
  4504. "require": {
  4505. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  4506. "ext-json": "*",
  4507. "php": "^8.0",
  4508. "ramsey/collection": "^1.2 || ^2.0"
  4509. },
  4510. "replace": {
  4511. "rhumsaa/uuid": "self.version"
  4512. },
  4513. "require-dev": {
  4514. "captainhook/captainhook": "^5.10",
  4515. "captainhook/plugin-composer": "^5.3",
  4516. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4517. "doctrine/annotations": "^1.8",
  4518. "ergebnis/composer-normalize": "^2.15",
  4519. "mockery/mockery": "^1.3",
  4520. "paragonie/random-lib": "^2",
  4521. "php-mock/php-mock": "^2.2",
  4522. "php-mock/php-mock-mockery": "^1.3",
  4523. "php-parallel-lint/php-parallel-lint": "^1.1",
  4524. "phpbench/phpbench": "^1.0",
  4525. "phpstan/extension-installer": "^1.1",
  4526. "phpstan/phpstan": "^1.8",
  4527. "phpstan/phpstan-mockery": "^1.1",
  4528. "phpstan/phpstan-phpunit": "^1.1",
  4529. "phpunit/phpunit": "^8.5 || ^9",
  4530. "ramsey/composer-repl": "^1.4",
  4531. "slevomat/coding-standard": "^8.4",
  4532. "squizlabs/php_codesniffer": "^3.5",
  4533. "vimeo/psalm": "^4.9"
  4534. },
  4535. "suggest": {
  4536. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4537. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4538. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4539. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4540. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4541. },
  4542. "type": "library",
  4543. "extra": {
  4544. "captainhook": {
  4545. "force-install": true
  4546. }
  4547. },
  4548. "autoload": {
  4549. "files": [
  4550. "src/functions.php"
  4551. ],
  4552. "psr-4": {
  4553. "Ramsey\\Uuid\\": "src/"
  4554. }
  4555. },
  4556. "notification-url": "https://packagist.org/downloads/",
  4557. "license": [
  4558. "MIT"
  4559. ],
  4560. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4561. "keywords": [
  4562. "guid",
  4563. "identifier",
  4564. "uuid"
  4565. ],
  4566. "support": {
  4567. "issues": "https://github.com/ramsey/uuid/issues",
  4568. "source": "https://github.com/ramsey/uuid/tree/4.7.4"
  4569. },
  4570. "funding": [
  4571. {
  4572. "url": "https://github.com/ramsey",
  4573. "type": "github"
  4574. },
  4575. {
  4576. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4577. "type": "tidelift"
  4578. }
  4579. ],
  4580. "time": "2023-04-15T23:01:58+00:00"
  4581. },
  4582. {
  4583. "name": "ryangjchandler/blade-capture-directive",
  4584. "version": "v0.3.0",
  4585. "source": {
  4586. "type": "git",
  4587. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  4588. "reference": "62fd2ecb50b938a46025093bcb64fcaddd531f89"
  4589. },
  4590. "dist": {
  4591. "type": "zip",
  4592. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/62fd2ecb50b938a46025093bcb64fcaddd531f89",
  4593. "reference": "62fd2ecb50b938a46025093bcb64fcaddd531f89",
  4594. "shasum": ""
  4595. },
  4596. "require": {
  4597. "illuminate/contracts": "^9.0|^10.0",
  4598. "php": "^8.0",
  4599. "spatie/laravel-package-tools": "^1.9.2"
  4600. },
  4601. "require-dev": {
  4602. "nunomaduro/collision": "^6.0|^7.0",
  4603. "nunomaduro/larastan": "^2.0",
  4604. "orchestra/testbench": "^7.22|^8.0",
  4605. "pestphp/pest": "^1.21",
  4606. "pestphp/pest-plugin-laravel": "^1.1",
  4607. "phpstan/extension-installer": "^1.1",
  4608. "phpstan/phpstan-deprecation-rules": "^1.0",
  4609. "phpstan/phpstan-phpunit": "^1.0",
  4610. "phpunit/phpunit": "^9.5",
  4611. "spatie/laravel-ray": "^1.26"
  4612. },
  4613. "type": "library",
  4614. "extra": {
  4615. "laravel": {
  4616. "providers": [
  4617. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  4618. ],
  4619. "aliases": {
  4620. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  4621. }
  4622. }
  4623. },
  4624. "autoload": {
  4625. "psr-4": {
  4626. "RyanChandler\\BladeCaptureDirective\\": "src",
  4627. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  4628. }
  4629. },
  4630. "notification-url": "https://packagist.org/downloads/",
  4631. "license": [
  4632. "MIT"
  4633. ],
  4634. "authors": [
  4635. {
  4636. "name": "Ryan Chandler",
  4637. "email": "support@ryangjchandler.co.uk",
  4638. "role": "Developer"
  4639. }
  4640. ],
  4641. "description": "Create inline partials in your Blade templates with ease.",
  4642. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  4643. "keywords": [
  4644. "blade-capture-directive",
  4645. "laravel",
  4646. "ryangjchandler"
  4647. ],
  4648. "support": {
  4649. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  4650. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v0.3.0"
  4651. },
  4652. "funding": [
  4653. {
  4654. "url": "https://github.com/ryangjchandler",
  4655. "type": "github"
  4656. }
  4657. ],
  4658. "time": "2023-02-14T16:54:54+00:00"
  4659. },
  4660. {
  4661. "name": "spatie/invade",
  4662. "version": "1.1.1",
  4663. "source": {
  4664. "type": "git",
  4665. "url": "https://github.com/spatie/invade.git",
  4666. "reference": "d0a9c895a96152549d478a7e3420e19039eef038"
  4667. },
  4668. "dist": {
  4669. "type": "zip",
  4670. "url": "https://api.github.com/repos/spatie/invade/zipball/d0a9c895a96152549d478a7e3420e19039eef038",
  4671. "reference": "d0a9c895a96152549d478a7e3420e19039eef038",
  4672. "shasum": ""
  4673. },
  4674. "require": {
  4675. "php": "^8.0"
  4676. },
  4677. "require-dev": {
  4678. "pestphp/pest": "^1.20",
  4679. "phpstan/phpstan": "^1.4",
  4680. "spatie/ray": "^1.28"
  4681. },
  4682. "type": "library",
  4683. "extra": {
  4684. "phpstan": {
  4685. "includes": [
  4686. "phpstan-extension.neon"
  4687. ]
  4688. }
  4689. },
  4690. "autoload": {
  4691. "files": [
  4692. "src/functions.php"
  4693. ],
  4694. "psr-4": {
  4695. "Spatie\\Invade\\": "src"
  4696. }
  4697. },
  4698. "notification-url": "https://packagist.org/downloads/",
  4699. "license": [
  4700. "MIT"
  4701. ],
  4702. "authors": [
  4703. {
  4704. "name": "Freek Van der Herten",
  4705. "email": "freek@spatie.be",
  4706. "role": "Developer"
  4707. }
  4708. ],
  4709. "description": "A PHP function to work with private properties and methods",
  4710. "homepage": "https://github.com/spatie/invade",
  4711. "keywords": [
  4712. "invade",
  4713. "spatie"
  4714. ],
  4715. "support": {
  4716. "source": "https://github.com/spatie/invade/tree/1.1.1"
  4717. },
  4718. "funding": [
  4719. {
  4720. "url": "https://github.com/spatie",
  4721. "type": "github"
  4722. }
  4723. ],
  4724. "time": "2022-07-05T09:31:00+00:00"
  4725. },
  4726. {
  4727. "name": "spatie/laravel-package-tools",
  4728. "version": "1.15.0",
  4729. "source": {
  4730. "type": "git",
  4731. "url": "https://github.com/spatie/laravel-package-tools.git",
  4732. "reference": "efab1844b8826443135201c4443690f032c3d533"
  4733. },
  4734. "dist": {
  4735. "type": "zip",
  4736. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/efab1844b8826443135201c4443690f032c3d533",
  4737. "reference": "efab1844b8826443135201c4443690f032c3d533",
  4738. "shasum": ""
  4739. },
  4740. "require": {
  4741. "illuminate/contracts": "^9.28|^10.0",
  4742. "php": "^8.0"
  4743. },
  4744. "require-dev": {
  4745. "mockery/mockery": "^1.5",
  4746. "orchestra/testbench": "^7.7|^8.0",
  4747. "pestphp/pest": "^1.22",
  4748. "phpunit/phpunit": "^9.5.24",
  4749. "spatie/pest-plugin-test-time": "^1.1"
  4750. },
  4751. "type": "library",
  4752. "autoload": {
  4753. "psr-4": {
  4754. "Spatie\\LaravelPackageTools\\": "src"
  4755. }
  4756. },
  4757. "notification-url": "https://packagist.org/downloads/",
  4758. "license": [
  4759. "MIT"
  4760. ],
  4761. "authors": [
  4762. {
  4763. "name": "Freek Van der Herten",
  4764. "email": "freek@spatie.be",
  4765. "role": "Developer"
  4766. }
  4767. ],
  4768. "description": "Tools for creating Laravel packages",
  4769. "homepage": "https://github.com/spatie/laravel-package-tools",
  4770. "keywords": [
  4771. "laravel-package-tools",
  4772. "spatie"
  4773. ],
  4774. "support": {
  4775. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  4776. "source": "https://github.com/spatie/laravel-package-tools/tree/1.15.0"
  4777. },
  4778. "funding": [
  4779. {
  4780. "url": "https://github.com/spatie",
  4781. "type": "github"
  4782. }
  4783. ],
  4784. "time": "2023-04-27T08:09:01+00:00"
  4785. },
  4786. {
  4787. "name": "symfony/console",
  4788. "version": "v6.2.10",
  4789. "source": {
  4790. "type": "git",
  4791. "url": "https://github.com/symfony/console.git",
  4792. "reference": "12288d9f4500f84a4d02254d4aa968b15488476f"
  4793. },
  4794. "dist": {
  4795. "type": "zip",
  4796. "url": "https://api.github.com/repos/symfony/console/zipball/12288d9f4500f84a4d02254d4aa968b15488476f",
  4797. "reference": "12288d9f4500f84a4d02254d4aa968b15488476f",
  4798. "shasum": ""
  4799. },
  4800. "require": {
  4801. "php": ">=8.1",
  4802. "symfony/deprecation-contracts": "^2.1|^3",
  4803. "symfony/polyfill-mbstring": "~1.0",
  4804. "symfony/service-contracts": "^1.1|^2|^3",
  4805. "symfony/string": "^5.4|^6.0"
  4806. },
  4807. "conflict": {
  4808. "symfony/dependency-injection": "<5.4",
  4809. "symfony/dotenv": "<5.4",
  4810. "symfony/event-dispatcher": "<5.4",
  4811. "symfony/lock": "<5.4",
  4812. "symfony/process": "<5.4"
  4813. },
  4814. "provide": {
  4815. "psr/log-implementation": "1.0|2.0|3.0"
  4816. },
  4817. "require-dev": {
  4818. "psr/log": "^1|^2|^3",
  4819. "symfony/config": "^5.4|^6.0",
  4820. "symfony/dependency-injection": "^5.4|^6.0",
  4821. "symfony/event-dispatcher": "^5.4|^6.0",
  4822. "symfony/lock": "^5.4|^6.0",
  4823. "symfony/process": "^5.4|^6.0",
  4824. "symfony/var-dumper": "^5.4|^6.0"
  4825. },
  4826. "suggest": {
  4827. "psr/log": "For using the console logger",
  4828. "symfony/event-dispatcher": "",
  4829. "symfony/lock": "",
  4830. "symfony/process": ""
  4831. },
  4832. "type": "library",
  4833. "autoload": {
  4834. "psr-4": {
  4835. "Symfony\\Component\\Console\\": ""
  4836. },
  4837. "exclude-from-classmap": [
  4838. "/Tests/"
  4839. ]
  4840. },
  4841. "notification-url": "https://packagist.org/downloads/",
  4842. "license": [
  4843. "MIT"
  4844. ],
  4845. "authors": [
  4846. {
  4847. "name": "Fabien Potencier",
  4848. "email": "fabien@symfony.com"
  4849. },
  4850. {
  4851. "name": "Symfony Community",
  4852. "homepage": "https://symfony.com/contributors"
  4853. }
  4854. ],
  4855. "description": "Eases the creation of beautiful and testable command line interfaces",
  4856. "homepage": "https://symfony.com",
  4857. "keywords": [
  4858. "cli",
  4859. "command-line",
  4860. "console",
  4861. "terminal"
  4862. ],
  4863. "support": {
  4864. "source": "https://github.com/symfony/console/tree/v6.2.10"
  4865. },
  4866. "funding": [
  4867. {
  4868. "url": "https://symfony.com/sponsor",
  4869. "type": "custom"
  4870. },
  4871. {
  4872. "url": "https://github.com/fabpot",
  4873. "type": "github"
  4874. },
  4875. {
  4876. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4877. "type": "tidelift"
  4878. }
  4879. ],
  4880. "time": "2023-04-28T13:37:43+00:00"
  4881. },
  4882. {
  4883. "name": "symfony/css-selector",
  4884. "version": "v6.2.7",
  4885. "source": {
  4886. "type": "git",
  4887. "url": "https://github.com/symfony/css-selector.git",
  4888. "reference": "aedf3cb0f5b929ec255d96bbb4909e9932c769e0"
  4889. },
  4890. "dist": {
  4891. "type": "zip",
  4892. "url": "https://api.github.com/repos/symfony/css-selector/zipball/aedf3cb0f5b929ec255d96bbb4909e9932c769e0",
  4893. "reference": "aedf3cb0f5b929ec255d96bbb4909e9932c769e0",
  4894. "shasum": ""
  4895. },
  4896. "require": {
  4897. "php": ">=8.1"
  4898. },
  4899. "type": "library",
  4900. "autoload": {
  4901. "psr-4": {
  4902. "Symfony\\Component\\CssSelector\\": ""
  4903. },
  4904. "exclude-from-classmap": [
  4905. "/Tests/"
  4906. ]
  4907. },
  4908. "notification-url": "https://packagist.org/downloads/",
  4909. "license": [
  4910. "MIT"
  4911. ],
  4912. "authors": [
  4913. {
  4914. "name": "Fabien Potencier",
  4915. "email": "fabien@symfony.com"
  4916. },
  4917. {
  4918. "name": "Jean-François Simon",
  4919. "email": "jeanfrancois.simon@sensiolabs.com"
  4920. },
  4921. {
  4922. "name": "Symfony Community",
  4923. "homepage": "https://symfony.com/contributors"
  4924. }
  4925. ],
  4926. "description": "Converts CSS selectors to XPath expressions",
  4927. "homepage": "https://symfony.com",
  4928. "support": {
  4929. "source": "https://github.com/symfony/css-selector/tree/v6.2.7"
  4930. },
  4931. "funding": [
  4932. {
  4933. "url": "https://symfony.com/sponsor",
  4934. "type": "custom"
  4935. },
  4936. {
  4937. "url": "https://github.com/fabpot",
  4938. "type": "github"
  4939. },
  4940. {
  4941. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4942. "type": "tidelift"
  4943. }
  4944. ],
  4945. "time": "2023-02-14T08:44:56+00:00"
  4946. },
  4947. {
  4948. "name": "symfony/deprecation-contracts",
  4949. "version": "v3.2.1",
  4950. "source": {
  4951. "type": "git",
  4952. "url": "https://github.com/symfony/deprecation-contracts.git",
  4953. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e"
  4954. },
  4955. "dist": {
  4956. "type": "zip",
  4957. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  4958. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  4959. "shasum": ""
  4960. },
  4961. "require": {
  4962. "php": ">=8.1"
  4963. },
  4964. "type": "library",
  4965. "extra": {
  4966. "branch-alias": {
  4967. "dev-main": "3.3-dev"
  4968. },
  4969. "thanks": {
  4970. "name": "symfony/contracts",
  4971. "url": "https://github.com/symfony/contracts"
  4972. }
  4973. },
  4974. "autoload": {
  4975. "files": [
  4976. "function.php"
  4977. ]
  4978. },
  4979. "notification-url": "https://packagist.org/downloads/",
  4980. "license": [
  4981. "MIT"
  4982. ],
  4983. "authors": [
  4984. {
  4985. "name": "Nicolas Grekas",
  4986. "email": "p@tchwork.com"
  4987. },
  4988. {
  4989. "name": "Symfony Community",
  4990. "homepage": "https://symfony.com/contributors"
  4991. }
  4992. ],
  4993. "description": "A generic function and convention to trigger deprecation notices",
  4994. "homepage": "https://symfony.com",
  4995. "support": {
  4996. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.1"
  4997. },
  4998. "funding": [
  4999. {
  5000. "url": "https://symfony.com/sponsor",
  5001. "type": "custom"
  5002. },
  5003. {
  5004. "url": "https://github.com/fabpot",
  5005. "type": "github"
  5006. },
  5007. {
  5008. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5009. "type": "tidelift"
  5010. }
  5011. ],
  5012. "time": "2023-03-01T10:25:55+00:00"
  5013. },
  5014. {
  5015. "name": "symfony/error-handler",
  5016. "version": "v6.2.10",
  5017. "source": {
  5018. "type": "git",
  5019. "url": "https://github.com/symfony/error-handler.git",
  5020. "reference": "8b7e9f124640cb0611624a9383176c3e5f7d8cfb"
  5021. },
  5022. "dist": {
  5023. "type": "zip",
  5024. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8b7e9f124640cb0611624a9383176c3e5f7d8cfb",
  5025. "reference": "8b7e9f124640cb0611624a9383176c3e5f7d8cfb",
  5026. "shasum": ""
  5027. },
  5028. "require": {
  5029. "php": ">=8.1",
  5030. "psr/log": "^1|^2|^3",
  5031. "symfony/var-dumper": "^5.4|^6.0"
  5032. },
  5033. "require-dev": {
  5034. "symfony/deprecation-contracts": "^2.1|^3",
  5035. "symfony/http-kernel": "^5.4|^6.0",
  5036. "symfony/serializer": "^5.4|^6.0"
  5037. },
  5038. "bin": [
  5039. "Resources/bin/patch-type-declarations"
  5040. ],
  5041. "type": "library",
  5042. "autoload": {
  5043. "psr-4": {
  5044. "Symfony\\Component\\ErrorHandler\\": ""
  5045. },
  5046. "exclude-from-classmap": [
  5047. "/Tests/"
  5048. ]
  5049. },
  5050. "notification-url": "https://packagist.org/downloads/",
  5051. "license": [
  5052. "MIT"
  5053. ],
  5054. "authors": [
  5055. {
  5056. "name": "Fabien Potencier",
  5057. "email": "fabien@symfony.com"
  5058. },
  5059. {
  5060. "name": "Symfony Community",
  5061. "homepage": "https://symfony.com/contributors"
  5062. }
  5063. ],
  5064. "description": "Provides tools to manage errors and ease debugging PHP code",
  5065. "homepage": "https://symfony.com",
  5066. "support": {
  5067. "source": "https://github.com/symfony/error-handler/tree/v6.2.10"
  5068. },
  5069. "funding": [
  5070. {
  5071. "url": "https://symfony.com/sponsor",
  5072. "type": "custom"
  5073. },
  5074. {
  5075. "url": "https://github.com/fabpot",
  5076. "type": "github"
  5077. },
  5078. {
  5079. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5080. "type": "tidelift"
  5081. }
  5082. ],
  5083. "time": "2023-04-18T13:46:08+00:00"
  5084. },
  5085. {
  5086. "name": "symfony/event-dispatcher",
  5087. "version": "v6.2.8",
  5088. "source": {
  5089. "type": "git",
  5090. "url": "https://github.com/symfony/event-dispatcher.git",
  5091. "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339"
  5092. },
  5093. "dist": {
  5094. "type": "zip",
  5095. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
  5096. "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
  5097. "shasum": ""
  5098. },
  5099. "require": {
  5100. "php": ">=8.1",
  5101. "symfony/event-dispatcher-contracts": "^2|^3"
  5102. },
  5103. "conflict": {
  5104. "symfony/dependency-injection": "<5.4"
  5105. },
  5106. "provide": {
  5107. "psr/event-dispatcher-implementation": "1.0",
  5108. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5109. },
  5110. "require-dev": {
  5111. "psr/log": "^1|^2|^3",
  5112. "symfony/config": "^5.4|^6.0",
  5113. "symfony/dependency-injection": "^5.4|^6.0",
  5114. "symfony/error-handler": "^5.4|^6.0",
  5115. "symfony/expression-language": "^5.4|^6.0",
  5116. "symfony/http-foundation": "^5.4|^6.0",
  5117. "symfony/service-contracts": "^1.1|^2|^3",
  5118. "symfony/stopwatch": "^5.4|^6.0"
  5119. },
  5120. "suggest": {
  5121. "symfony/dependency-injection": "",
  5122. "symfony/http-kernel": ""
  5123. },
  5124. "type": "library",
  5125. "autoload": {
  5126. "psr-4": {
  5127. "Symfony\\Component\\EventDispatcher\\": ""
  5128. },
  5129. "exclude-from-classmap": [
  5130. "/Tests/"
  5131. ]
  5132. },
  5133. "notification-url": "https://packagist.org/downloads/",
  5134. "license": [
  5135. "MIT"
  5136. ],
  5137. "authors": [
  5138. {
  5139. "name": "Fabien Potencier",
  5140. "email": "fabien@symfony.com"
  5141. },
  5142. {
  5143. "name": "Symfony Community",
  5144. "homepage": "https://symfony.com/contributors"
  5145. }
  5146. ],
  5147. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5148. "homepage": "https://symfony.com",
  5149. "support": {
  5150. "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.8"
  5151. },
  5152. "funding": [
  5153. {
  5154. "url": "https://symfony.com/sponsor",
  5155. "type": "custom"
  5156. },
  5157. {
  5158. "url": "https://github.com/fabpot",
  5159. "type": "github"
  5160. },
  5161. {
  5162. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5163. "type": "tidelift"
  5164. }
  5165. ],
  5166. "time": "2023-03-20T16:06:02+00:00"
  5167. },
  5168. {
  5169. "name": "symfony/event-dispatcher-contracts",
  5170. "version": "v3.2.1",
  5171. "source": {
  5172. "type": "git",
  5173. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5174. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd"
  5175. },
  5176. "dist": {
  5177. "type": "zip",
  5178. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  5179. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  5180. "shasum": ""
  5181. },
  5182. "require": {
  5183. "php": ">=8.1",
  5184. "psr/event-dispatcher": "^1"
  5185. },
  5186. "suggest": {
  5187. "symfony/event-dispatcher-implementation": ""
  5188. },
  5189. "type": "library",
  5190. "extra": {
  5191. "branch-alias": {
  5192. "dev-main": "3.3-dev"
  5193. },
  5194. "thanks": {
  5195. "name": "symfony/contracts",
  5196. "url": "https://github.com/symfony/contracts"
  5197. }
  5198. },
  5199. "autoload": {
  5200. "psr-4": {
  5201. "Symfony\\Contracts\\EventDispatcher\\": ""
  5202. }
  5203. },
  5204. "notification-url": "https://packagist.org/downloads/",
  5205. "license": [
  5206. "MIT"
  5207. ],
  5208. "authors": [
  5209. {
  5210. "name": "Nicolas Grekas",
  5211. "email": "p@tchwork.com"
  5212. },
  5213. {
  5214. "name": "Symfony Community",
  5215. "homepage": "https://symfony.com/contributors"
  5216. }
  5217. ],
  5218. "description": "Generic abstractions related to dispatching event",
  5219. "homepage": "https://symfony.com",
  5220. "keywords": [
  5221. "abstractions",
  5222. "contracts",
  5223. "decoupling",
  5224. "interfaces",
  5225. "interoperability",
  5226. "standards"
  5227. ],
  5228. "support": {
  5229. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.1"
  5230. },
  5231. "funding": [
  5232. {
  5233. "url": "https://symfony.com/sponsor",
  5234. "type": "custom"
  5235. },
  5236. {
  5237. "url": "https://github.com/fabpot",
  5238. "type": "github"
  5239. },
  5240. {
  5241. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5242. "type": "tidelift"
  5243. }
  5244. ],
  5245. "time": "2023-03-01T10:32:47+00:00"
  5246. },
  5247. {
  5248. "name": "symfony/finder",
  5249. "version": "v6.2.7",
  5250. "source": {
  5251. "type": "git",
  5252. "url": "https://github.com/symfony/finder.git",
  5253. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb"
  5254. },
  5255. "dist": {
  5256. "type": "zip",
  5257. "url": "https://api.github.com/repos/symfony/finder/zipball/20808dc6631aecafbe67c186af5dcb370be3a0eb",
  5258. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb",
  5259. "shasum": ""
  5260. },
  5261. "require": {
  5262. "php": ">=8.1"
  5263. },
  5264. "require-dev": {
  5265. "symfony/filesystem": "^6.0"
  5266. },
  5267. "type": "library",
  5268. "autoload": {
  5269. "psr-4": {
  5270. "Symfony\\Component\\Finder\\": ""
  5271. },
  5272. "exclude-from-classmap": [
  5273. "/Tests/"
  5274. ]
  5275. },
  5276. "notification-url": "https://packagist.org/downloads/",
  5277. "license": [
  5278. "MIT"
  5279. ],
  5280. "authors": [
  5281. {
  5282. "name": "Fabien Potencier",
  5283. "email": "fabien@symfony.com"
  5284. },
  5285. {
  5286. "name": "Symfony Community",
  5287. "homepage": "https://symfony.com/contributors"
  5288. }
  5289. ],
  5290. "description": "Finds files and directories via an intuitive fluent interface",
  5291. "homepage": "https://symfony.com",
  5292. "support": {
  5293. "source": "https://github.com/symfony/finder/tree/v6.2.7"
  5294. },
  5295. "funding": [
  5296. {
  5297. "url": "https://symfony.com/sponsor",
  5298. "type": "custom"
  5299. },
  5300. {
  5301. "url": "https://github.com/fabpot",
  5302. "type": "github"
  5303. },
  5304. {
  5305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5306. "type": "tidelift"
  5307. }
  5308. ],
  5309. "time": "2023-02-16T09:57:23+00:00"
  5310. },
  5311. {
  5312. "name": "symfony/http-foundation",
  5313. "version": "v6.2.10",
  5314. "source": {
  5315. "type": "git",
  5316. "url": "https://github.com/symfony/http-foundation.git",
  5317. "reference": "49adbb92bcb4e3c2943719d2756271e8b9602acc"
  5318. },
  5319. "dist": {
  5320. "type": "zip",
  5321. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/49adbb92bcb4e3c2943719d2756271e8b9602acc",
  5322. "reference": "49adbb92bcb4e3c2943719d2756271e8b9602acc",
  5323. "shasum": ""
  5324. },
  5325. "require": {
  5326. "php": ">=8.1",
  5327. "symfony/deprecation-contracts": "^2.1|^3",
  5328. "symfony/polyfill-mbstring": "~1.1"
  5329. },
  5330. "conflict": {
  5331. "symfony/cache": "<6.2"
  5332. },
  5333. "require-dev": {
  5334. "predis/predis": "~1.0",
  5335. "symfony/cache": "^5.4|^6.0",
  5336. "symfony/dependency-injection": "^5.4|^6.0",
  5337. "symfony/expression-language": "^5.4|^6.0",
  5338. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5339. "symfony/mime": "^5.4|^6.0",
  5340. "symfony/rate-limiter": "^5.2|^6.0"
  5341. },
  5342. "suggest": {
  5343. "symfony/mime": "To use the file extension guesser"
  5344. },
  5345. "type": "library",
  5346. "autoload": {
  5347. "psr-4": {
  5348. "Symfony\\Component\\HttpFoundation\\": ""
  5349. },
  5350. "exclude-from-classmap": [
  5351. "/Tests/"
  5352. ]
  5353. },
  5354. "notification-url": "https://packagist.org/downloads/",
  5355. "license": [
  5356. "MIT"
  5357. ],
  5358. "authors": [
  5359. {
  5360. "name": "Fabien Potencier",
  5361. "email": "fabien@symfony.com"
  5362. },
  5363. {
  5364. "name": "Symfony Community",
  5365. "homepage": "https://symfony.com/contributors"
  5366. }
  5367. ],
  5368. "description": "Defines an object-oriented layer for the HTTP specification",
  5369. "homepage": "https://symfony.com",
  5370. "support": {
  5371. "source": "https://github.com/symfony/http-foundation/tree/v6.2.10"
  5372. },
  5373. "funding": [
  5374. {
  5375. "url": "https://symfony.com/sponsor",
  5376. "type": "custom"
  5377. },
  5378. {
  5379. "url": "https://github.com/fabpot",
  5380. "type": "github"
  5381. },
  5382. {
  5383. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5384. "type": "tidelift"
  5385. }
  5386. ],
  5387. "time": "2023-04-18T13:46:08+00:00"
  5388. },
  5389. {
  5390. "name": "symfony/http-kernel",
  5391. "version": "v6.2.10",
  5392. "source": {
  5393. "type": "git",
  5394. "url": "https://github.com/symfony/http-kernel.git",
  5395. "reference": "81064a65a5496f17d2b6984f6519406f98864215"
  5396. },
  5397. "dist": {
  5398. "type": "zip",
  5399. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/81064a65a5496f17d2b6984f6519406f98864215",
  5400. "reference": "81064a65a5496f17d2b6984f6519406f98864215",
  5401. "shasum": ""
  5402. },
  5403. "require": {
  5404. "php": ">=8.1",
  5405. "psr/log": "^1|^2|^3",
  5406. "symfony/deprecation-contracts": "^2.1|^3",
  5407. "symfony/error-handler": "^6.1",
  5408. "symfony/event-dispatcher": "^5.4|^6.0",
  5409. "symfony/http-foundation": "^5.4.21|^6.2.7",
  5410. "symfony/polyfill-ctype": "^1.8"
  5411. },
  5412. "conflict": {
  5413. "symfony/browser-kit": "<5.4",
  5414. "symfony/cache": "<5.4",
  5415. "symfony/config": "<6.1",
  5416. "symfony/console": "<5.4",
  5417. "symfony/dependency-injection": "<6.2",
  5418. "symfony/doctrine-bridge": "<5.4",
  5419. "symfony/form": "<5.4",
  5420. "symfony/http-client": "<5.4",
  5421. "symfony/mailer": "<5.4",
  5422. "symfony/messenger": "<5.4",
  5423. "symfony/translation": "<5.4",
  5424. "symfony/twig-bridge": "<5.4",
  5425. "symfony/validator": "<5.4",
  5426. "twig/twig": "<2.13"
  5427. },
  5428. "provide": {
  5429. "psr/log-implementation": "1.0|2.0|3.0"
  5430. },
  5431. "require-dev": {
  5432. "psr/cache": "^1.0|^2.0|^3.0",
  5433. "symfony/browser-kit": "^5.4|^6.0",
  5434. "symfony/config": "^6.1",
  5435. "symfony/console": "^5.4|^6.0",
  5436. "symfony/css-selector": "^5.4|^6.0",
  5437. "symfony/dependency-injection": "^6.2",
  5438. "symfony/dom-crawler": "^5.4|^6.0",
  5439. "symfony/expression-language": "^5.4|^6.0",
  5440. "symfony/finder": "^5.4|^6.0",
  5441. "symfony/http-client-contracts": "^1.1|^2|^3",
  5442. "symfony/process": "^5.4|^6.0",
  5443. "symfony/routing": "^5.4|^6.0",
  5444. "symfony/stopwatch": "^5.4|^6.0",
  5445. "symfony/translation": "^5.4|^6.0",
  5446. "symfony/translation-contracts": "^1.1|^2|^3",
  5447. "symfony/uid": "^5.4|^6.0",
  5448. "twig/twig": "^2.13|^3.0.4"
  5449. },
  5450. "suggest": {
  5451. "symfony/browser-kit": "",
  5452. "symfony/config": "",
  5453. "symfony/console": "",
  5454. "symfony/dependency-injection": ""
  5455. },
  5456. "type": "library",
  5457. "autoload": {
  5458. "psr-4": {
  5459. "Symfony\\Component\\HttpKernel\\": ""
  5460. },
  5461. "exclude-from-classmap": [
  5462. "/Tests/"
  5463. ]
  5464. },
  5465. "notification-url": "https://packagist.org/downloads/",
  5466. "license": [
  5467. "MIT"
  5468. ],
  5469. "authors": [
  5470. {
  5471. "name": "Fabien Potencier",
  5472. "email": "fabien@symfony.com"
  5473. },
  5474. {
  5475. "name": "Symfony Community",
  5476. "homepage": "https://symfony.com/contributors"
  5477. }
  5478. ],
  5479. "description": "Provides a structured process for converting a Request into a Response",
  5480. "homepage": "https://symfony.com",
  5481. "support": {
  5482. "source": "https://github.com/symfony/http-kernel/tree/v6.2.10"
  5483. },
  5484. "funding": [
  5485. {
  5486. "url": "https://symfony.com/sponsor",
  5487. "type": "custom"
  5488. },
  5489. {
  5490. "url": "https://github.com/fabpot",
  5491. "type": "github"
  5492. },
  5493. {
  5494. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5495. "type": "tidelift"
  5496. }
  5497. ],
  5498. "time": "2023-04-28T13:50:28+00:00"
  5499. },
  5500. {
  5501. "name": "symfony/mailer",
  5502. "version": "v6.2.8",
  5503. "source": {
  5504. "type": "git",
  5505. "url": "https://github.com/symfony/mailer.git",
  5506. "reference": "bfcfa015c67e19c6fdb7ca6fe70700af1e740a17"
  5507. },
  5508. "dist": {
  5509. "type": "zip",
  5510. "url": "https://api.github.com/repos/symfony/mailer/zipball/bfcfa015c67e19c6fdb7ca6fe70700af1e740a17",
  5511. "reference": "bfcfa015c67e19c6fdb7ca6fe70700af1e740a17",
  5512. "shasum": ""
  5513. },
  5514. "require": {
  5515. "egulias/email-validator": "^2.1.10|^3|^4",
  5516. "php": ">=8.1",
  5517. "psr/event-dispatcher": "^1",
  5518. "psr/log": "^1|^2|^3",
  5519. "symfony/event-dispatcher": "^5.4|^6.0",
  5520. "symfony/mime": "^6.2",
  5521. "symfony/service-contracts": "^1.1|^2|^3"
  5522. },
  5523. "conflict": {
  5524. "symfony/http-kernel": "<5.4",
  5525. "symfony/messenger": "<6.2",
  5526. "symfony/mime": "<6.2",
  5527. "symfony/twig-bridge": "<6.2.1"
  5528. },
  5529. "require-dev": {
  5530. "symfony/console": "^5.4|^6.0",
  5531. "symfony/http-client": "^5.4|^6.0",
  5532. "symfony/messenger": "^6.2",
  5533. "symfony/twig-bridge": "^6.2"
  5534. },
  5535. "type": "library",
  5536. "autoload": {
  5537. "psr-4": {
  5538. "Symfony\\Component\\Mailer\\": ""
  5539. },
  5540. "exclude-from-classmap": [
  5541. "/Tests/"
  5542. ]
  5543. },
  5544. "notification-url": "https://packagist.org/downloads/",
  5545. "license": [
  5546. "MIT"
  5547. ],
  5548. "authors": [
  5549. {
  5550. "name": "Fabien Potencier",
  5551. "email": "fabien@symfony.com"
  5552. },
  5553. {
  5554. "name": "Symfony Community",
  5555. "homepage": "https://symfony.com/contributors"
  5556. }
  5557. ],
  5558. "description": "Helps sending emails",
  5559. "homepage": "https://symfony.com",
  5560. "support": {
  5561. "source": "https://github.com/symfony/mailer/tree/v6.2.8"
  5562. },
  5563. "funding": [
  5564. {
  5565. "url": "https://symfony.com/sponsor",
  5566. "type": "custom"
  5567. },
  5568. {
  5569. "url": "https://github.com/fabpot",
  5570. "type": "github"
  5571. },
  5572. {
  5573. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5574. "type": "tidelift"
  5575. }
  5576. ],
  5577. "time": "2023-03-14T15:00:05+00:00"
  5578. },
  5579. {
  5580. "name": "symfony/mime",
  5581. "version": "v6.2.10",
  5582. "source": {
  5583. "type": "git",
  5584. "url": "https://github.com/symfony/mime.git",
  5585. "reference": "b6c137fc53a9f7c4c951cd3f362b3734c7a97723"
  5586. },
  5587. "dist": {
  5588. "type": "zip",
  5589. "url": "https://api.github.com/repos/symfony/mime/zipball/b6c137fc53a9f7c4c951cd3f362b3734c7a97723",
  5590. "reference": "b6c137fc53a9f7c4c951cd3f362b3734c7a97723",
  5591. "shasum": ""
  5592. },
  5593. "require": {
  5594. "php": ">=8.1",
  5595. "symfony/polyfill-intl-idn": "^1.10",
  5596. "symfony/polyfill-mbstring": "^1.0"
  5597. },
  5598. "conflict": {
  5599. "egulias/email-validator": "~3.0.0",
  5600. "phpdocumentor/reflection-docblock": "<3.2.2",
  5601. "phpdocumentor/type-resolver": "<1.4.0",
  5602. "symfony/mailer": "<5.4",
  5603. "symfony/serializer": "<6.2"
  5604. },
  5605. "require-dev": {
  5606. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5607. "league/html-to-markdown": "^5.0",
  5608. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5609. "symfony/dependency-injection": "^5.4|^6.0",
  5610. "symfony/property-access": "^5.4|^6.0",
  5611. "symfony/property-info": "^5.4|^6.0",
  5612. "symfony/serializer": "^6.2"
  5613. },
  5614. "type": "library",
  5615. "autoload": {
  5616. "psr-4": {
  5617. "Symfony\\Component\\Mime\\": ""
  5618. },
  5619. "exclude-from-classmap": [
  5620. "/Tests/"
  5621. ]
  5622. },
  5623. "notification-url": "https://packagist.org/downloads/",
  5624. "license": [
  5625. "MIT"
  5626. ],
  5627. "authors": [
  5628. {
  5629. "name": "Fabien Potencier",
  5630. "email": "fabien@symfony.com"
  5631. },
  5632. {
  5633. "name": "Symfony Community",
  5634. "homepage": "https://symfony.com/contributors"
  5635. }
  5636. ],
  5637. "description": "Allows manipulating MIME messages",
  5638. "homepage": "https://symfony.com",
  5639. "keywords": [
  5640. "mime",
  5641. "mime-type"
  5642. ],
  5643. "support": {
  5644. "source": "https://github.com/symfony/mime/tree/v6.2.10"
  5645. },
  5646. "funding": [
  5647. {
  5648. "url": "https://symfony.com/sponsor",
  5649. "type": "custom"
  5650. },
  5651. {
  5652. "url": "https://github.com/fabpot",
  5653. "type": "github"
  5654. },
  5655. {
  5656. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5657. "type": "tidelift"
  5658. }
  5659. ],
  5660. "time": "2023-04-19T09:54:16+00:00"
  5661. },
  5662. {
  5663. "name": "symfony/polyfill-ctype",
  5664. "version": "v1.27.0",
  5665. "source": {
  5666. "type": "git",
  5667. "url": "https://github.com/symfony/polyfill-ctype.git",
  5668. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  5669. },
  5670. "dist": {
  5671. "type": "zip",
  5672. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  5673. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  5674. "shasum": ""
  5675. },
  5676. "require": {
  5677. "php": ">=7.1"
  5678. },
  5679. "provide": {
  5680. "ext-ctype": "*"
  5681. },
  5682. "suggest": {
  5683. "ext-ctype": "For best performance"
  5684. },
  5685. "type": "library",
  5686. "extra": {
  5687. "branch-alias": {
  5688. "dev-main": "1.27-dev"
  5689. },
  5690. "thanks": {
  5691. "name": "symfony/polyfill",
  5692. "url": "https://github.com/symfony/polyfill"
  5693. }
  5694. },
  5695. "autoload": {
  5696. "files": [
  5697. "bootstrap.php"
  5698. ],
  5699. "psr-4": {
  5700. "Symfony\\Polyfill\\Ctype\\": ""
  5701. }
  5702. },
  5703. "notification-url": "https://packagist.org/downloads/",
  5704. "license": [
  5705. "MIT"
  5706. ],
  5707. "authors": [
  5708. {
  5709. "name": "Gert de Pagter",
  5710. "email": "BackEndTea@gmail.com"
  5711. },
  5712. {
  5713. "name": "Symfony Community",
  5714. "homepage": "https://symfony.com/contributors"
  5715. }
  5716. ],
  5717. "description": "Symfony polyfill for ctype functions",
  5718. "homepage": "https://symfony.com",
  5719. "keywords": [
  5720. "compatibility",
  5721. "ctype",
  5722. "polyfill",
  5723. "portable"
  5724. ],
  5725. "support": {
  5726. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  5727. },
  5728. "funding": [
  5729. {
  5730. "url": "https://symfony.com/sponsor",
  5731. "type": "custom"
  5732. },
  5733. {
  5734. "url": "https://github.com/fabpot",
  5735. "type": "github"
  5736. },
  5737. {
  5738. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5739. "type": "tidelift"
  5740. }
  5741. ],
  5742. "time": "2022-11-03T14:55:06+00:00"
  5743. },
  5744. {
  5745. "name": "symfony/polyfill-intl-grapheme",
  5746. "version": "v1.27.0",
  5747. "source": {
  5748. "type": "git",
  5749. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5750. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  5751. },
  5752. "dist": {
  5753. "type": "zip",
  5754. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  5755. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  5756. "shasum": ""
  5757. },
  5758. "require": {
  5759. "php": ">=7.1"
  5760. },
  5761. "suggest": {
  5762. "ext-intl": "For best performance"
  5763. },
  5764. "type": "library",
  5765. "extra": {
  5766. "branch-alias": {
  5767. "dev-main": "1.27-dev"
  5768. },
  5769. "thanks": {
  5770. "name": "symfony/polyfill",
  5771. "url": "https://github.com/symfony/polyfill"
  5772. }
  5773. },
  5774. "autoload": {
  5775. "files": [
  5776. "bootstrap.php"
  5777. ],
  5778. "psr-4": {
  5779. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5780. }
  5781. },
  5782. "notification-url": "https://packagist.org/downloads/",
  5783. "license": [
  5784. "MIT"
  5785. ],
  5786. "authors": [
  5787. {
  5788. "name": "Nicolas Grekas",
  5789. "email": "p@tchwork.com"
  5790. },
  5791. {
  5792. "name": "Symfony Community",
  5793. "homepage": "https://symfony.com/contributors"
  5794. }
  5795. ],
  5796. "description": "Symfony polyfill for intl's grapheme_* functions",
  5797. "homepage": "https://symfony.com",
  5798. "keywords": [
  5799. "compatibility",
  5800. "grapheme",
  5801. "intl",
  5802. "polyfill",
  5803. "portable",
  5804. "shim"
  5805. ],
  5806. "support": {
  5807. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  5808. },
  5809. "funding": [
  5810. {
  5811. "url": "https://symfony.com/sponsor",
  5812. "type": "custom"
  5813. },
  5814. {
  5815. "url": "https://github.com/fabpot",
  5816. "type": "github"
  5817. },
  5818. {
  5819. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5820. "type": "tidelift"
  5821. }
  5822. ],
  5823. "time": "2022-11-03T14:55:06+00:00"
  5824. },
  5825. {
  5826. "name": "symfony/polyfill-intl-idn",
  5827. "version": "v1.27.0",
  5828. "source": {
  5829. "type": "git",
  5830. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5831. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  5832. },
  5833. "dist": {
  5834. "type": "zip",
  5835. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  5836. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  5837. "shasum": ""
  5838. },
  5839. "require": {
  5840. "php": ">=7.1",
  5841. "symfony/polyfill-intl-normalizer": "^1.10",
  5842. "symfony/polyfill-php72": "^1.10"
  5843. },
  5844. "suggest": {
  5845. "ext-intl": "For best performance"
  5846. },
  5847. "type": "library",
  5848. "extra": {
  5849. "branch-alias": {
  5850. "dev-main": "1.27-dev"
  5851. },
  5852. "thanks": {
  5853. "name": "symfony/polyfill",
  5854. "url": "https://github.com/symfony/polyfill"
  5855. }
  5856. },
  5857. "autoload": {
  5858. "files": [
  5859. "bootstrap.php"
  5860. ],
  5861. "psr-4": {
  5862. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5863. }
  5864. },
  5865. "notification-url": "https://packagist.org/downloads/",
  5866. "license": [
  5867. "MIT"
  5868. ],
  5869. "authors": [
  5870. {
  5871. "name": "Laurent Bassin",
  5872. "email": "laurent@bassin.info"
  5873. },
  5874. {
  5875. "name": "Trevor Rowbotham",
  5876. "email": "trevor.rowbotham@pm.me"
  5877. },
  5878. {
  5879. "name": "Symfony Community",
  5880. "homepage": "https://symfony.com/contributors"
  5881. }
  5882. ],
  5883. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5884. "homepage": "https://symfony.com",
  5885. "keywords": [
  5886. "compatibility",
  5887. "idn",
  5888. "intl",
  5889. "polyfill",
  5890. "portable",
  5891. "shim"
  5892. ],
  5893. "support": {
  5894. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  5895. },
  5896. "funding": [
  5897. {
  5898. "url": "https://symfony.com/sponsor",
  5899. "type": "custom"
  5900. },
  5901. {
  5902. "url": "https://github.com/fabpot",
  5903. "type": "github"
  5904. },
  5905. {
  5906. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5907. "type": "tidelift"
  5908. }
  5909. ],
  5910. "time": "2022-11-03T14:55:06+00:00"
  5911. },
  5912. {
  5913. "name": "symfony/polyfill-intl-normalizer",
  5914. "version": "v1.27.0",
  5915. "source": {
  5916. "type": "git",
  5917. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5918. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  5919. },
  5920. "dist": {
  5921. "type": "zip",
  5922. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5923. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5924. "shasum": ""
  5925. },
  5926. "require": {
  5927. "php": ">=7.1"
  5928. },
  5929. "suggest": {
  5930. "ext-intl": "For best performance"
  5931. },
  5932. "type": "library",
  5933. "extra": {
  5934. "branch-alias": {
  5935. "dev-main": "1.27-dev"
  5936. },
  5937. "thanks": {
  5938. "name": "symfony/polyfill",
  5939. "url": "https://github.com/symfony/polyfill"
  5940. }
  5941. },
  5942. "autoload": {
  5943. "files": [
  5944. "bootstrap.php"
  5945. ],
  5946. "psr-4": {
  5947. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5948. },
  5949. "classmap": [
  5950. "Resources/stubs"
  5951. ]
  5952. },
  5953. "notification-url": "https://packagist.org/downloads/",
  5954. "license": [
  5955. "MIT"
  5956. ],
  5957. "authors": [
  5958. {
  5959. "name": "Nicolas Grekas",
  5960. "email": "p@tchwork.com"
  5961. },
  5962. {
  5963. "name": "Symfony Community",
  5964. "homepage": "https://symfony.com/contributors"
  5965. }
  5966. ],
  5967. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5968. "homepage": "https://symfony.com",
  5969. "keywords": [
  5970. "compatibility",
  5971. "intl",
  5972. "normalizer",
  5973. "polyfill",
  5974. "portable",
  5975. "shim"
  5976. ],
  5977. "support": {
  5978. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  5979. },
  5980. "funding": [
  5981. {
  5982. "url": "https://symfony.com/sponsor",
  5983. "type": "custom"
  5984. },
  5985. {
  5986. "url": "https://github.com/fabpot",
  5987. "type": "github"
  5988. },
  5989. {
  5990. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5991. "type": "tidelift"
  5992. }
  5993. ],
  5994. "time": "2022-11-03T14:55:06+00:00"
  5995. },
  5996. {
  5997. "name": "symfony/polyfill-mbstring",
  5998. "version": "v1.27.0",
  5999. "source": {
  6000. "type": "git",
  6001. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6002. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  6003. },
  6004. "dist": {
  6005. "type": "zip",
  6006. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  6007. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  6008. "shasum": ""
  6009. },
  6010. "require": {
  6011. "php": ">=7.1"
  6012. },
  6013. "provide": {
  6014. "ext-mbstring": "*"
  6015. },
  6016. "suggest": {
  6017. "ext-mbstring": "For best performance"
  6018. },
  6019. "type": "library",
  6020. "extra": {
  6021. "branch-alias": {
  6022. "dev-main": "1.27-dev"
  6023. },
  6024. "thanks": {
  6025. "name": "symfony/polyfill",
  6026. "url": "https://github.com/symfony/polyfill"
  6027. }
  6028. },
  6029. "autoload": {
  6030. "files": [
  6031. "bootstrap.php"
  6032. ],
  6033. "psr-4": {
  6034. "Symfony\\Polyfill\\Mbstring\\": ""
  6035. }
  6036. },
  6037. "notification-url": "https://packagist.org/downloads/",
  6038. "license": [
  6039. "MIT"
  6040. ],
  6041. "authors": [
  6042. {
  6043. "name": "Nicolas Grekas",
  6044. "email": "p@tchwork.com"
  6045. },
  6046. {
  6047. "name": "Symfony Community",
  6048. "homepage": "https://symfony.com/contributors"
  6049. }
  6050. ],
  6051. "description": "Symfony polyfill for the Mbstring extension",
  6052. "homepage": "https://symfony.com",
  6053. "keywords": [
  6054. "compatibility",
  6055. "mbstring",
  6056. "polyfill",
  6057. "portable",
  6058. "shim"
  6059. ],
  6060. "support": {
  6061. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  6062. },
  6063. "funding": [
  6064. {
  6065. "url": "https://symfony.com/sponsor",
  6066. "type": "custom"
  6067. },
  6068. {
  6069. "url": "https://github.com/fabpot",
  6070. "type": "github"
  6071. },
  6072. {
  6073. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6074. "type": "tidelift"
  6075. }
  6076. ],
  6077. "time": "2022-11-03T14:55:06+00:00"
  6078. },
  6079. {
  6080. "name": "symfony/polyfill-php72",
  6081. "version": "v1.27.0",
  6082. "source": {
  6083. "type": "git",
  6084. "url": "https://github.com/symfony/polyfill-php72.git",
  6085. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  6086. },
  6087. "dist": {
  6088. "type": "zip",
  6089. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  6090. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  6091. "shasum": ""
  6092. },
  6093. "require": {
  6094. "php": ">=7.1"
  6095. },
  6096. "type": "library",
  6097. "extra": {
  6098. "branch-alias": {
  6099. "dev-main": "1.27-dev"
  6100. },
  6101. "thanks": {
  6102. "name": "symfony/polyfill",
  6103. "url": "https://github.com/symfony/polyfill"
  6104. }
  6105. },
  6106. "autoload": {
  6107. "files": [
  6108. "bootstrap.php"
  6109. ],
  6110. "psr-4": {
  6111. "Symfony\\Polyfill\\Php72\\": ""
  6112. }
  6113. },
  6114. "notification-url": "https://packagist.org/downloads/",
  6115. "license": [
  6116. "MIT"
  6117. ],
  6118. "authors": [
  6119. {
  6120. "name": "Nicolas Grekas",
  6121. "email": "p@tchwork.com"
  6122. },
  6123. {
  6124. "name": "Symfony Community",
  6125. "homepage": "https://symfony.com/contributors"
  6126. }
  6127. ],
  6128. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6129. "homepage": "https://symfony.com",
  6130. "keywords": [
  6131. "compatibility",
  6132. "polyfill",
  6133. "portable",
  6134. "shim"
  6135. ],
  6136. "support": {
  6137. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  6138. },
  6139. "funding": [
  6140. {
  6141. "url": "https://symfony.com/sponsor",
  6142. "type": "custom"
  6143. },
  6144. {
  6145. "url": "https://github.com/fabpot",
  6146. "type": "github"
  6147. },
  6148. {
  6149. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6150. "type": "tidelift"
  6151. }
  6152. ],
  6153. "time": "2022-11-03T14:55:06+00:00"
  6154. },
  6155. {
  6156. "name": "symfony/polyfill-php80",
  6157. "version": "v1.27.0",
  6158. "source": {
  6159. "type": "git",
  6160. "url": "https://github.com/symfony/polyfill-php80.git",
  6161. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  6162. },
  6163. "dist": {
  6164. "type": "zip",
  6165. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  6166. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  6167. "shasum": ""
  6168. },
  6169. "require": {
  6170. "php": ">=7.1"
  6171. },
  6172. "type": "library",
  6173. "extra": {
  6174. "branch-alias": {
  6175. "dev-main": "1.27-dev"
  6176. },
  6177. "thanks": {
  6178. "name": "symfony/polyfill",
  6179. "url": "https://github.com/symfony/polyfill"
  6180. }
  6181. },
  6182. "autoload": {
  6183. "files": [
  6184. "bootstrap.php"
  6185. ],
  6186. "psr-4": {
  6187. "Symfony\\Polyfill\\Php80\\": ""
  6188. },
  6189. "classmap": [
  6190. "Resources/stubs"
  6191. ]
  6192. },
  6193. "notification-url": "https://packagist.org/downloads/",
  6194. "license": [
  6195. "MIT"
  6196. ],
  6197. "authors": [
  6198. {
  6199. "name": "Ion Bazan",
  6200. "email": "ion.bazan@gmail.com"
  6201. },
  6202. {
  6203. "name": "Nicolas Grekas",
  6204. "email": "p@tchwork.com"
  6205. },
  6206. {
  6207. "name": "Symfony Community",
  6208. "homepage": "https://symfony.com/contributors"
  6209. }
  6210. ],
  6211. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6212. "homepage": "https://symfony.com",
  6213. "keywords": [
  6214. "compatibility",
  6215. "polyfill",
  6216. "portable",
  6217. "shim"
  6218. ],
  6219. "support": {
  6220. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  6221. },
  6222. "funding": [
  6223. {
  6224. "url": "https://symfony.com/sponsor",
  6225. "type": "custom"
  6226. },
  6227. {
  6228. "url": "https://github.com/fabpot",
  6229. "type": "github"
  6230. },
  6231. {
  6232. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6233. "type": "tidelift"
  6234. }
  6235. ],
  6236. "time": "2022-11-03T14:55:06+00:00"
  6237. },
  6238. {
  6239. "name": "symfony/polyfill-uuid",
  6240. "version": "v1.27.0",
  6241. "source": {
  6242. "type": "git",
  6243. "url": "https://github.com/symfony/polyfill-uuid.git",
  6244. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166"
  6245. },
  6246. "dist": {
  6247. "type": "zip",
  6248. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166",
  6249. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166",
  6250. "shasum": ""
  6251. },
  6252. "require": {
  6253. "php": ">=7.1"
  6254. },
  6255. "provide": {
  6256. "ext-uuid": "*"
  6257. },
  6258. "suggest": {
  6259. "ext-uuid": "For best performance"
  6260. },
  6261. "type": "library",
  6262. "extra": {
  6263. "branch-alias": {
  6264. "dev-main": "1.27-dev"
  6265. },
  6266. "thanks": {
  6267. "name": "symfony/polyfill",
  6268. "url": "https://github.com/symfony/polyfill"
  6269. }
  6270. },
  6271. "autoload": {
  6272. "files": [
  6273. "bootstrap.php"
  6274. ],
  6275. "psr-4": {
  6276. "Symfony\\Polyfill\\Uuid\\": ""
  6277. }
  6278. },
  6279. "notification-url": "https://packagist.org/downloads/",
  6280. "license": [
  6281. "MIT"
  6282. ],
  6283. "authors": [
  6284. {
  6285. "name": "Grégoire Pineau",
  6286. "email": "lyrixx@lyrixx.info"
  6287. },
  6288. {
  6289. "name": "Symfony Community",
  6290. "homepage": "https://symfony.com/contributors"
  6291. }
  6292. ],
  6293. "description": "Symfony polyfill for uuid functions",
  6294. "homepage": "https://symfony.com",
  6295. "keywords": [
  6296. "compatibility",
  6297. "polyfill",
  6298. "portable",
  6299. "uuid"
  6300. ],
  6301. "support": {
  6302. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0"
  6303. },
  6304. "funding": [
  6305. {
  6306. "url": "https://symfony.com/sponsor",
  6307. "type": "custom"
  6308. },
  6309. {
  6310. "url": "https://github.com/fabpot",
  6311. "type": "github"
  6312. },
  6313. {
  6314. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6315. "type": "tidelift"
  6316. }
  6317. ],
  6318. "time": "2022-11-03T14:55:06+00:00"
  6319. },
  6320. {
  6321. "name": "symfony/process",
  6322. "version": "v6.2.10",
  6323. "source": {
  6324. "type": "git",
  6325. "url": "https://github.com/symfony/process.git",
  6326. "reference": "b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e"
  6327. },
  6328. "dist": {
  6329. "type": "zip",
  6330. "url": "https://api.github.com/repos/symfony/process/zipball/b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e",
  6331. "reference": "b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e",
  6332. "shasum": ""
  6333. },
  6334. "require": {
  6335. "php": ">=8.1"
  6336. },
  6337. "type": "library",
  6338. "autoload": {
  6339. "psr-4": {
  6340. "Symfony\\Component\\Process\\": ""
  6341. },
  6342. "exclude-from-classmap": [
  6343. "/Tests/"
  6344. ]
  6345. },
  6346. "notification-url": "https://packagist.org/downloads/",
  6347. "license": [
  6348. "MIT"
  6349. ],
  6350. "authors": [
  6351. {
  6352. "name": "Fabien Potencier",
  6353. "email": "fabien@symfony.com"
  6354. },
  6355. {
  6356. "name": "Symfony Community",
  6357. "homepage": "https://symfony.com/contributors"
  6358. }
  6359. ],
  6360. "description": "Executes commands in sub-processes",
  6361. "homepage": "https://symfony.com",
  6362. "support": {
  6363. "source": "https://github.com/symfony/process/tree/v6.2.10"
  6364. },
  6365. "funding": [
  6366. {
  6367. "url": "https://symfony.com/sponsor",
  6368. "type": "custom"
  6369. },
  6370. {
  6371. "url": "https://github.com/fabpot",
  6372. "type": "github"
  6373. },
  6374. {
  6375. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6376. "type": "tidelift"
  6377. }
  6378. ],
  6379. "time": "2023-04-18T13:56:57+00:00"
  6380. },
  6381. {
  6382. "name": "symfony/routing",
  6383. "version": "v6.2.8",
  6384. "source": {
  6385. "type": "git",
  6386. "url": "https://github.com/symfony/routing.git",
  6387. "reference": "69062e2823f03b82265d73a966999660f0e1e404"
  6388. },
  6389. "dist": {
  6390. "type": "zip",
  6391. "url": "https://api.github.com/repos/symfony/routing/zipball/69062e2823f03b82265d73a966999660f0e1e404",
  6392. "reference": "69062e2823f03b82265d73a966999660f0e1e404",
  6393. "shasum": ""
  6394. },
  6395. "require": {
  6396. "php": ">=8.1"
  6397. },
  6398. "conflict": {
  6399. "doctrine/annotations": "<1.12",
  6400. "symfony/config": "<6.2",
  6401. "symfony/dependency-injection": "<5.4",
  6402. "symfony/yaml": "<5.4"
  6403. },
  6404. "require-dev": {
  6405. "doctrine/annotations": "^1.12|^2",
  6406. "psr/log": "^1|^2|^3",
  6407. "symfony/config": "^6.2",
  6408. "symfony/dependency-injection": "^5.4|^6.0",
  6409. "symfony/expression-language": "^5.4|^6.0",
  6410. "symfony/http-foundation": "^5.4|^6.0",
  6411. "symfony/yaml": "^5.4|^6.0"
  6412. },
  6413. "suggest": {
  6414. "symfony/config": "For using the all-in-one router or any loader",
  6415. "symfony/expression-language": "For using expression matching",
  6416. "symfony/http-foundation": "For using a Symfony Request object",
  6417. "symfony/yaml": "For using the YAML loader"
  6418. },
  6419. "type": "library",
  6420. "autoload": {
  6421. "psr-4": {
  6422. "Symfony\\Component\\Routing\\": ""
  6423. },
  6424. "exclude-from-classmap": [
  6425. "/Tests/"
  6426. ]
  6427. },
  6428. "notification-url": "https://packagist.org/downloads/",
  6429. "license": [
  6430. "MIT"
  6431. ],
  6432. "authors": [
  6433. {
  6434. "name": "Fabien Potencier",
  6435. "email": "fabien@symfony.com"
  6436. },
  6437. {
  6438. "name": "Symfony Community",
  6439. "homepage": "https://symfony.com/contributors"
  6440. }
  6441. ],
  6442. "description": "Maps an HTTP request to a set of configuration variables",
  6443. "homepage": "https://symfony.com",
  6444. "keywords": [
  6445. "router",
  6446. "routing",
  6447. "uri",
  6448. "url"
  6449. ],
  6450. "support": {
  6451. "source": "https://github.com/symfony/routing/tree/v6.2.8"
  6452. },
  6453. "funding": [
  6454. {
  6455. "url": "https://symfony.com/sponsor",
  6456. "type": "custom"
  6457. },
  6458. {
  6459. "url": "https://github.com/fabpot",
  6460. "type": "github"
  6461. },
  6462. {
  6463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6464. "type": "tidelift"
  6465. }
  6466. ],
  6467. "time": "2023-03-14T15:00:05+00:00"
  6468. },
  6469. {
  6470. "name": "symfony/service-contracts",
  6471. "version": "v3.2.1",
  6472. "source": {
  6473. "type": "git",
  6474. "url": "https://github.com/symfony/service-contracts.git",
  6475. "reference": "a8c9cedf55f314f3a186041d19537303766df09a"
  6476. },
  6477. "dist": {
  6478. "type": "zip",
  6479. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a8c9cedf55f314f3a186041d19537303766df09a",
  6480. "reference": "a8c9cedf55f314f3a186041d19537303766df09a",
  6481. "shasum": ""
  6482. },
  6483. "require": {
  6484. "php": ">=8.1",
  6485. "psr/container": "^2.0"
  6486. },
  6487. "conflict": {
  6488. "ext-psr": "<1.1|>=2"
  6489. },
  6490. "suggest": {
  6491. "symfony/service-implementation": ""
  6492. },
  6493. "type": "library",
  6494. "extra": {
  6495. "branch-alias": {
  6496. "dev-main": "3.3-dev"
  6497. },
  6498. "thanks": {
  6499. "name": "symfony/contracts",
  6500. "url": "https://github.com/symfony/contracts"
  6501. }
  6502. },
  6503. "autoload": {
  6504. "psr-4": {
  6505. "Symfony\\Contracts\\Service\\": ""
  6506. },
  6507. "exclude-from-classmap": [
  6508. "/Test/"
  6509. ]
  6510. },
  6511. "notification-url": "https://packagist.org/downloads/",
  6512. "license": [
  6513. "MIT"
  6514. ],
  6515. "authors": [
  6516. {
  6517. "name": "Nicolas Grekas",
  6518. "email": "p@tchwork.com"
  6519. },
  6520. {
  6521. "name": "Symfony Community",
  6522. "homepage": "https://symfony.com/contributors"
  6523. }
  6524. ],
  6525. "description": "Generic abstractions related to writing services",
  6526. "homepage": "https://symfony.com",
  6527. "keywords": [
  6528. "abstractions",
  6529. "contracts",
  6530. "decoupling",
  6531. "interfaces",
  6532. "interoperability",
  6533. "standards"
  6534. ],
  6535. "support": {
  6536. "source": "https://github.com/symfony/service-contracts/tree/v3.2.1"
  6537. },
  6538. "funding": [
  6539. {
  6540. "url": "https://symfony.com/sponsor",
  6541. "type": "custom"
  6542. },
  6543. {
  6544. "url": "https://github.com/fabpot",
  6545. "type": "github"
  6546. },
  6547. {
  6548. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6549. "type": "tidelift"
  6550. }
  6551. ],
  6552. "time": "2023-03-01T10:32:47+00:00"
  6553. },
  6554. {
  6555. "name": "symfony/string",
  6556. "version": "v6.2.8",
  6557. "source": {
  6558. "type": "git",
  6559. "url": "https://github.com/symfony/string.git",
  6560. "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef"
  6561. },
  6562. "dist": {
  6563. "type": "zip",
  6564. "url": "https://api.github.com/repos/symfony/string/zipball/193e83bbd6617d6b2151c37fff10fa7168ebddef",
  6565. "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef",
  6566. "shasum": ""
  6567. },
  6568. "require": {
  6569. "php": ">=8.1",
  6570. "symfony/polyfill-ctype": "~1.8",
  6571. "symfony/polyfill-intl-grapheme": "~1.0",
  6572. "symfony/polyfill-intl-normalizer": "~1.0",
  6573. "symfony/polyfill-mbstring": "~1.0"
  6574. },
  6575. "conflict": {
  6576. "symfony/translation-contracts": "<2.0"
  6577. },
  6578. "require-dev": {
  6579. "symfony/error-handler": "^5.4|^6.0",
  6580. "symfony/http-client": "^5.4|^6.0",
  6581. "symfony/intl": "^6.2",
  6582. "symfony/translation-contracts": "^2.0|^3.0",
  6583. "symfony/var-exporter": "^5.4|^6.0"
  6584. },
  6585. "type": "library",
  6586. "autoload": {
  6587. "files": [
  6588. "Resources/functions.php"
  6589. ],
  6590. "psr-4": {
  6591. "Symfony\\Component\\String\\": ""
  6592. },
  6593. "exclude-from-classmap": [
  6594. "/Tests/"
  6595. ]
  6596. },
  6597. "notification-url": "https://packagist.org/downloads/",
  6598. "license": [
  6599. "MIT"
  6600. ],
  6601. "authors": [
  6602. {
  6603. "name": "Nicolas Grekas",
  6604. "email": "p@tchwork.com"
  6605. },
  6606. {
  6607. "name": "Symfony Community",
  6608. "homepage": "https://symfony.com/contributors"
  6609. }
  6610. ],
  6611. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6612. "homepage": "https://symfony.com",
  6613. "keywords": [
  6614. "grapheme",
  6615. "i18n",
  6616. "string",
  6617. "unicode",
  6618. "utf-8",
  6619. "utf8"
  6620. ],
  6621. "support": {
  6622. "source": "https://github.com/symfony/string/tree/v6.2.8"
  6623. },
  6624. "funding": [
  6625. {
  6626. "url": "https://symfony.com/sponsor",
  6627. "type": "custom"
  6628. },
  6629. {
  6630. "url": "https://github.com/fabpot",
  6631. "type": "github"
  6632. },
  6633. {
  6634. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6635. "type": "tidelift"
  6636. }
  6637. ],
  6638. "time": "2023-03-20T16:06:02+00:00"
  6639. },
  6640. {
  6641. "name": "symfony/translation",
  6642. "version": "v6.2.8",
  6643. "source": {
  6644. "type": "git",
  6645. "url": "https://github.com/symfony/translation.git",
  6646. "reference": "817535dbb1721df8b3a8f2489dc7e50bcd6209b5"
  6647. },
  6648. "dist": {
  6649. "type": "zip",
  6650. "url": "https://api.github.com/repos/symfony/translation/zipball/817535dbb1721df8b3a8f2489dc7e50bcd6209b5",
  6651. "reference": "817535dbb1721df8b3a8f2489dc7e50bcd6209b5",
  6652. "shasum": ""
  6653. },
  6654. "require": {
  6655. "php": ">=8.1",
  6656. "symfony/polyfill-mbstring": "~1.0",
  6657. "symfony/translation-contracts": "^2.3|^3.0"
  6658. },
  6659. "conflict": {
  6660. "symfony/config": "<5.4",
  6661. "symfony/console": "<5.4",
  6662. "symfony/dependency-injection": "<5.4",
  6663. "symfony/http-kernel": "<5.4",
  6664. "symfony/twig-bundle": "<5.4",
  6665. "symfony/yaml": "<5.4"
  6666. },
  6667. "provide": {
  6668. "symfony/translation-implementation": "2.3|3.0"
  6669. },
  6670. "require-dev": {
  6671. "nikic/php-parser": "^4.13",
  6672. "psr/log": "^1|^2|^3",
  6673. "symfony/config": "^5.4|^6.0",
  6674. "symfony/console": "^5.4|^6.0",
  6675. "symfony/dependency-injection": "^5.4|^6.0",
  6676. "symfony/finder": "^5.4|^6.0",
  6677. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6678. "symfony/http-kernel": "^5.4|^6.0",
  6679. "symfony/intl": "^5.4|^6.0",
  6680. "symfony/polyfill-intl-icu": "^1.21",
  6681. "symfony/routing": "^5.4|^6.0",
  6682. "symfony/service-contracts": "^1.1.2|^2|^3",
  6683. "symfony/yaml": "^5.4|^6.0"
  6684. },
  6685. "suggest": {
  6686. "nikic/php-parser": "To use PhpAstExtractor",
  6687. "psr/log-implementation": "To use logging capability in translator",
  6688. "symfony/config": "",
  6689. "symfony/yaml": ""
  6690. },
  6691. "type": "library",
  6692. "autoload": {
  6693. "files": [
  6694. "Resources/functions.php"
  6695. ],
  6696. "psr-4": {
  6697. "Symfony\\Component\\Translation\\": ""
  6698. },
  6699. "exclude-from-classmap": [
  6700. "/Tests/"
  6701. ]
  6702. },
  6703. "notification-url": "https://packagist.org/downloads/",
  6704. "license": [
  6705. "MIT"
  6706. ],
  6707. "authors": [
  6708. {
  6709. "name": "Fabien Potencier",
  6710. "email": "fabien@symfony.com"
  6711. },
  6712. {
  6713. "name": "Symfony Community",
  6714. "homepage": "https://symfony.com/contributors"
  6715. }
  6716. ],
  6717. "description": "Provides tools to internationalize your application",
  6718. "homepage": "https://symfony.com",
  6719. "support": {
  6720. "source": "https://github.com/symfony/translation/tree/v6.2.8"
  6721. },
  6722. "funding": [
  6723. {
  6724. "url": "https://symfony.com/sponsor",
  6725. "type": "custom"
  6726. },
  6727. {
  6728. "url": "https://github.com/fabpot",
  6729. "type": "github"
  6730. },
  6731. {
  6732. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6733. "type": "tidelift"
  6734. }
  6735. ],
  6736. "time": "2023-03-31T09:14:44+00:00"
  6737. },
  6738. {
  6739. "name": "symfony/translation-contracts",
  6740. "version": "v3.2.1",
  6741. "source": {
  6742. "type": "git",
  6743. "url": "https://github.com/symfony/translation-contracts.git",
  6744. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8"
  6745. },
  6746. "dist": {
  6747. "type": "zip",
  6748. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dfec258b9dd17a6b24420d464c43bffe347441c8",
  6749. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8",
  6750. "shasum": ""
  6751. },
  6752. "require": {
  6753. "php": ">=8.1"
  6754. },
  6755. "suggest": {
  6756. "symfony/translation-implementation": ""
  6757. },
  6758. "type": "library",
  6759. "extra": {
  6760. "branch-alias": {
  6761. "dev-main": "3.3-dev"
  6762. },
  6763. "thanks": {
  6764. "name": "symfony/contracts",
  6765. "url": "https://github.com/symfony/contracts"
  6766. }
  6767. },
  6768. "autoload": {
  6769. "psr-4": {
  6770. "Symfony\\Contracts\\Translation\\": ""
  6771. },
  6772. "exclude-from-classmap": [
  6773. "/Test/"
  6774. ]
  6775. },
  6776. "notification-url": "https://packagist.org/downloads/",
  6777. "license": [
  6778. "MIT"
  6779. ],
  6780. "authors": [
  6781. {
  6782. "name": "Nicolas Grekas",
  6783. "email": "p@tchwork.com"
  6784. },
  6785. {
  6786. "name": "Symfony Community",
  6787. "homepage": "https://symfony.com/contributors"
  6788. }
  6789. ],
  6790. "description": "Generic abstractions related to translation",
  6791. "homepage": "https://symfony.com",
  6792. "keywords": [
  6793. "abstractions",
  6794. "contracts",
  6795. "decoupling",
  6796. "interfaces",
  6797. "interoperability",
  6798. "standards"
  6799. ],
  6800. "support": {
  6801. "source": "https://github.com/symfony/translation-contracts/tree/v3.2.1"
  6802. },
  6803. "funding": [
  6804. {
  6805. "url": "https://symfony.com/sponsor",
  6806. "type": "custom"
  6807. },
  6808. {
  6809. "url": "https://github.com/fabpot",
  6810. "type": "github"
  6811. },
  6812. {
  6813. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6814. "type": "tidelift"
  6815. }
  6816. ],
  6817. "time": "2023-03-01T10:32:47+00:00"
  6818. },
  6819. {
  6820. "name": "symfony/uid",
  6821. "version": "v6.2.7",
  6822. "source": {
  6823. "type": "git",
  6824. "url": "https://github.com/symfony/uid.git",
  6825. "reference": "d30c72a63897cfa043e1de4d4dd2ffa9ecefcdc0"
  6826. },
  6827. "dist": {
  6828. "type": "zip",
  6829. "url": "https://api.github.com/repos/symfony/uid/zipball/d30c72a63897cfa043e1de4d4dd2ffa9ecefcdc0",
  6830. "reference": "d30c72a63897cfa043e1de4d4dd2ffa9ecefcdc0",
  6831. "shasum": ""
  6832. },
  6833. "require": {
  6834. "php": ">=8.1",
  6835. "symfony/polyfill-uuid": "^1.15"
  6836. },
  6837. "require-dev": {
  6838. "symfony/console": "^5.4|^6.0"
  6839. },
  6840. "type": "library",
  6841. "autoload": {
  6842. "psr-4": {
  6843. "Symfony\\Component\\Uid\\": ""
  6844. },
  6845. "exclude-from-classmap": [
  6846. "/Tests/"
  6847. ]
  6848. },
  6849. "notification-url": "https://packagist.org/downloads/",
  6850. "license": [
  6851. "MIT"
  6852. ],
  6853. "authors": [
  6854. {
  6855. "name": "Grégoire Pineau",
  6856. "email": "lyrixx@lyrixx.info"
  6857. },
  6858. {
  6859. "name": "Nicolas Grekas",
  6860. "email": "p@tchwork.com"
  6861. },
  6862. {
  6863. "name": "Symfony Community",
  6864. "homepage": "https://symfony.com/contributors"
  6865. }
  6866. ],
  6867. "description": "Provides an object-oriented API to generate and represent UIDs",
  6868. "homepage": "https://symfony.com",
  6869. "keywords": [
  6870. "UID",
  6871. "ulid",
  6872. "uuid"
  6873. ],
  6874. "support": {
  6875. "source": "https://github.com/symfony/uid/tree/v6.2.7"
  6876. },
  6877. "funding": [
  6878. {
  6879. "url": "https://symfony.com/sponsor",
  6880. "type": "custom"
  6881. },
  6882. {
  6883. "url": "https://github.com/fabpot",
  6884. "type": "github"
  6885. },
  6886. {
  6887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6888. "type": "tidelift"
  6889. }
  6890. ],
  6891. "time": "2023-02-14T08:44:56+00:00"
  6892. },
  6893. {
  6894. "name": "symfony/var-dumper",
  6895. "version": "v6.2.10",
  6896. "source": {
  6897. "type": "git",
  6898. "url": "https://github.com/symfony/var-dumper.git",
  6899. "reference": "41a750a23412ca76fdbbf5096943b4134272c1ab"
  6900. },
  6901. "dist": {
  6902. "type": "zip",
  6903. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/41a750a23412ca76fdbbf5096943b4134272c1ab",
  6904. "reference": "41a750a23412ca76fdbbf5096943b4134272c1ab",
  6905. "shasum": ""
  6906. },
  6907. "require": {
  6908. "php": ">=8.1",
  6909. "symfony/polyfill-mbstring": "~1.0"
  6910. },
  6911. "conflict": {
  6912. "phpunit/phpunit": "<5.4.3",
  6913. "symfony/console": "<5.4"
  6914. },
  6915. "require-dev": {
  6916. "ext-iconv": "*",
  6917. "symfony/console": "^5.4|^6.0",
  6918. "symfony/process": "^5.4|^6.0",
  6919. "symfony/uid": "^5.4|^6.0",
  6920. "twig/twig": "^2.13|^3.0.4"
  6921. },
  6922. "suggest": {
  6923. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6924. "ext-intl": "To show region name in time zone dump",
  6925. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6926. },
  6927. "bin": [
  6928. "Resources/bin/var-dump-server"
  6929. ],
  6930. "type": "library",
  6931. "autoload": {
  6932. "files": [
  6933. "Resources/functions/dump.php"
  6934. ],
  6935. "psr-4": {
  6936. "Symfony\\Component\\VarDumper\\": ""
  6937. },
  6938. "exclude-from-classmap": [
  6939. "/Tests/"
  6940. ]
  6941. },
  6942. "notification-url": "https://packagist.org/downloads/",
  6943. "license": [
  6944. "MIT"
  6945. ],
  6946. "authors": [
  6947. {
  6948. "name": "Nicolas Grekas",
  6949. "email": "p@tchwork.com"
  6950. },
  6951. {
  6952. "name": "Symfony Community",
  6953. "homepage": "https://symfony.com/contributors"
  6954. }
  6955. ],
  6956. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6957. "homepage": "https://symfony.com",
  6958. "keywords": [
  6959. "debug",
  6960. "dump"
  6961. ],
  6962. "support": {
  6963. "source": "https://github.com/symfony/var-dumper/tree/v6.2.10"
  6964. },
  6965. "funding": [
  6966. {
  6967. "url": "https://symfony.com/sponsor",
  6968. "type": "custom"
  6969. },
  6970. {
  6971. "url": "https://github.com/fabpot",
  6972. "type": "github"
  6973. },
  6974. {
  6975. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6976. "type": "tidelift"
  6977. }
  6978. ],
  6979. "time": "2023-04-18T13:46:08+00:00"
  6980. },
  6981. {
  6982. "name": "tgalopin/html-sanitizer",
  6983. "version": "1.5.0",
  6984. "source": {
  6985. "type": "git",
  6986. "url": "https://github.com/tgalopin/html-sanitizer.git",
  6987. "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913"
  6988. },
  6989. "dist": {
  6990. "type": "zip",
  6991. "url": "https://api.github.com/repos/tgalopin/html-sanitizer/zipball/5d02dcb6f2ea4f505731eac440798caa1b3b0913",
  6992. "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913",
  6993. "shasum": ""
  6994. },
  6995. "require": {
  6996. "ext-dom": "*",
  6997. "league/uri-parser": "^1.4.1",
  6998. "masterminds/html5": "^2.4",
  6999. "php": ">=7.1",
  7000. "psr/log": "^1.0|^2.0|^3.0"
  7001. },
  7002. "require-dev": {
  7003. "phpunit/phpunit": "^7.4",
  7004. "symfony/var-dumper": "^4.1"
  7005. },
  7006. "type": "library",
  7007. "autoload": {
  7008. "psr-4": {
  7009. "HtmlSanitizer\\": "src"
  7010. }
  7011. },
  7012. "notification-url": "https://packagist.org/downloads/",
  7013. "license": [
  7014. "MIT"
  7015. ],
  7016. "authors": [
  7017. {
  7018. "name": "Titouan Galopin",
  7019. "email": "galopintitouan@gmail.com"
  7020. }
  7021. ],
  7022. "description": "Sanitize untrustworthy HTML user input",
  7023. "support": {
  7024. "issues": "https://github.com/tgalopin/html-sanitizer/issues",
  7025. "source": "https://github.com/tgalopin/html-sanitizer/tree/1.5.0"
  7026. },
  7027. "abandoned": "symfony/html-sanitizer",
  7028. "time": "2021-09-14T08:27:50+00:00"
  7029. },
  7030. {
  7031. "name": "tijsverkoyen/css-to-inline-styles",
  7032. "version": "2.2.6",
  7033. "source": {
  7034. "type": "git",
  7035. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7036. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  7037. },
  7038. "dist": {
  7039. "type": "zip",
  7040. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7041. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7042. "shasum": ""
  7043. },
  7044. "require": {
  7045. "ext-dom": "*",
  7046. "ext-libxml": "*",
  7047. "php": "^5.5 || ^7.0 || ^8.0",
  7048. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7049. },
  7050. "require-dev": {
  7051. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7052. },
  7053. "type": "library",
  7054. "extra": {
  7055. "branch-alias": {
  7056. "dev-master": "2.2.x-dev"
  7057. }
  7058. },
  7059. "autoload": {
  7060. "psr-4": {
  7061. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7062. }
  7063. },
  7064. "notification-url": "https://packagist.org/downloads/",
  7065. "license": [
  7066. "BSD-3-Clause"
  7067. ],
  7068. "authors": [
  7069. {
  7070. "name": "Tijs Verkoyen",
  7071. "email": "css_to_inline_styles@verkoyen.eu",
  7072. "role": "Developer"
  7073. }
  7074. ],
  7075. "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.",
  7076. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7077. "support": {
  7078. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7079. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  7080. },
  7081. "time": "2023-01-03T09:29:04+00:00"
  7082. },
  7083. {
  7084. "name": "vlucas/phpdotenv",
  7085. "version": "v5.5.0",
  7086. "source": {
  7087. "type": "git",
  7088. "url": "https://github.com/vlucas/phpdotenv.git",
  7089. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  7090. },
  7091. "dist": {
  7092. "type": "zip",
  7093. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  7094. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  7095. "shasum": ""
  7096. },
  7097. "require": {
  7098. "ext-pcre": "*",
  7099. "graham-campbell/result-type": "^1.0.2",
  7100. "php": "^7.1.3 || ^8.0",
  7101. "phpoption/phpoption": "^1.8",
  7102. "symfony/polyfill-ctype": "^1.23",
  7103. "symfony/polyfill-mbstring": "^1.23.1",
  7104. "symfony/polyfill-php80": "^1.23.1"
  7105. },
  7106. "require-dev": {
  7107. "bamarni/composer-bin-plugin": "^1.4.1",
  7108. "ext-filter": "*",
  7109. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  7110. },
  7111. "suggest": {
  7112. "ext-filter": "Required to use the boolean validator."
  7113. },
  7114. "type": "library",
  7115. "extra": {
  7116. "bamarni-bin": {
  7117. "bin-links": true,
  7118. "forward-command": true
  7119. },
  7120. "branch-alias": {
  7121. "dev-master": "5.5-dev"
  7122. }
  7123. },
  7124. "autoload": {
  7125. "psr-4": {
  7126. "Dotenv\\": "src/"
  7127. }
  7128. },
  7129. "notification-url": "https://packagist.org/downloads/",
  7130. "license": [
  7131. "BSD-3-Clause"
  7132. ],
  7133. "authors": [
  7134. {
  7135. "name": "Graham Campbell",
  7136. "email": "hello@gjcampbell.co.uk",
  7137. "homepage": "https://github.com/GrahamCampbell"
  7138. },
  7139. {
  7140. "name": "Vance Lucas",
  7141. "email": "vance@vancelucas.com",
  7142. "homepage": "https://github.com/vlucas"
  7143. }
  7144. ],
  7145. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7146. "keywords": [
  7147. "dotenv",
  7148. "env",
  7149. "environment"
  7150. ],
  7151. "support": {
  7152. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7153. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  7154. },
  7155. "funding": [
  7156. {
  7157. "url": "https://github.com/GrahamCampbell",
  7158. "type": "github"
  7159. },
  7160. {
  7161. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7162. "type": "tidelift"
  7163. }
  7164. ],
  7165. "time": "2022-10-16T01:01:54+00:00"
  7166. },
  7167. {
  7168. "name": "voku/portable-ascii",
  7169. "version": "2.0.1",
  7170. "source": {
  7171. "type": "git",
  7172. "url": "https://github.com/voku/portable-ascii.git",
  7173. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  7174. },
  7175. "dist": {
  7176. "type": "zip",
  7177. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  7178. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  7179. "shasum": ""
  7180. },
  7181. "require": {
  7182. "php": ">=7.0.0"
  7183. },
  7184. "require-dev": {
  7185. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7186. },
  7187. "suggest": {
  7188. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7189. },
  7190. "type": "library",
  7191. "autoload": {
  7192. "psr-4": {
  7193. "voku\\": "src/voku/"
  7194. }
  7195. },
  7196. "notification-url": "https://packagist.org/downloads/",
  7197. "license": [
  7198. "MIT"
  7199. ],
  7200. "authors": [
  7201. {
  7202. "name": "Lars Moelleken",
  7203. "homepage": "http://www.moelleken.org/"
  7204. }
  7205. ],
  7206. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7207. "homepage": "https://github.com/voku/portable-ascii",
  7208. "keywords": [
  7209. "ascii",
  7210. "clean",
  7211. "php"
  7212. ],
  7213. "support": {
  7214. "issues": "https://github.com/voku/portable-ascii/issues",
  7215. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  7216. },
  7217. "funding": [
  7218. {
  7219. "url": "https://www.paypal.me/moelleken",
  7220. "type": "custom"
  7221. },
  7222. {
  7223. "url": "https://github.com/voku",
  7224. "type": "github"
  7225. },
  7226. {
  7227. "url": "https://opencollective.com/portable-ascii",
  7228. "type": "open_collective"
  7229. },
  7230. {
  7231. "url": "https://www.patreon.com/voku",
  7232. "type": "patreon"
  7233. },
  7234. {
  7235. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7236. "type": "tidelift"
  7237. }
  7238. ],
  7239. "time": "2022-03-08T17:03:00+00:00"
  7240. },
  7241. {
  7242. "name": "webmozart/assert",
  7243. "version": "1.11.0",
  7244. "source": {
  7245. "type": "git",
  7246. "url": "https://github.com/webmozarts/assert.git",
  7247. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7248. },
  7249. "dist": {
  7250. "type": "zip",
  7251. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7252. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7253. "shasum": ""
  7254. },
  7255. "require": {
  7256. "ext-ctype": "*",
  7257. "php": "^7.2 || ^8.0"
  7258. },
  7259. "conflict": {
  7260. "phpstan/phpstan": "<0.12.20",
  7261. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7262. },
  7263. "require-dev": {
  7264. "phpunit/phpunit": "^8.5.13"
  7265. },
  7266. "type": "library",
  7267. "extra": {
  7268. "branch-alias": {
  7269. "dev-master": "1.10-dev"
  7270. }
  7271. },
  7272. "autoload": {
  7273. "psr-4": {
  7274. "Webmozart\\Assert\\": "src/"
  7275. }
  7276. },
  7277. "notification-url": "https://packagist.org/downloads/",
  7278. "license": [
  7279. "MIT"
  7280. ],
  7281. "authors": [
  7282. {
  7283. "name": "Bernhard Schussek",
  7284. "email": "bschussek@gmail.com"
  7285. }
  7286. ],
  7287. "description": "Assertions to validate method input/output with nice error messages.",
  7288. "keywords": [
  7289. "assert",
  7290. "check",
  7291. "validate"
  7292. ],
  7293. "support": {
  7294. "issues": "https://github.com/webmozarts/assert/issues",
  7295. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7296. },
  7297. "time": "2022-06-03T18:03:27+00:00"
  7298. }
  7299. ],
  7300. "packages-dev": [
  7301. {
  7302. "name": "doctrine/cache",
  7303. "version": "2.2.0",
  7304. "source": {
  7305. "type": "git",
  7306. "url": "https://github.com/doctrine/cache.git",
  7307. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  7308. },
  7309. "dist": {
  7310. "type": "zip",
  7311. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  7312. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  7313. "shasum": ""
  7314. },
  7315. "require": {
  7316. "php": "~7.1 || ^8.0"
  7317. },
  7318. "conflict": {
  7319. "doctrine/common": ">2.2,<2.4"
  7320. },
  7321. "require-dev": {
  7322. "cache/integration-tests": "dev-master",
  7323. "doctrine/coding-standard": "^9",
  7324. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  7325. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  7326. "symfony/cache": "^4.4 || ^5.4 || ^6",
  7327. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  7328. },
  7329. "type": "library",
  7330. "autoload": {
  7331. "psr-4": {
  7332. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  7333. }
  7334. },
  7335. "notification-url": "https://packagist.org/downloads/",
  7336. "license": [
  7337. "MIT"
  7338. ],
  7339. "authors": [
  7340. {
  7341. "name": "Guilherme Blanco",
  7342. "email": "guilhermeblanco@gmail.com"
  7343. },
  7344. {
  7345. "name": "Roman Borschel",
  7346. "email": "roman@code-factory.org"
  7347. },
  7348. {
  7349. "name": "Benjamin Eberlei",
  7350. "email": "kontakt@beberlei.de"
  7351. },
  7352. {
  7353. "name": "Jonathan Wage",
  7354. "email": "jonwage@gmail.com"
  7355. },
  7356. {
  7357. "name": "Johannes Schmitt",
  7358. "email": "schmittjoh@gmail.com"
  7359. }
  7360. ],
  7361. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  7362. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  7363. "keywords": [
  7364. "abstraction",
  7365. "apcu",
  7366. "cache",
  7367. "caching",
  7368. "couchdb",
  7369. "memcached",
  7370. "php",
  7371. "redis",
  7372. "xcache"
  7373. ],
  7374. "support": {
  7375. "issues": "https://github.com/doctrine/cache/issues",
  7376. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  7377. },
  7378. "funding": [
  7379. {
  7380. "url": "https://www.doctrine-project.org/sponsorship.html",
  7381. "type": "custom"
  7382. },
  7383. {
  7384. "url": "https://www.patreon.com/phpdoctrine",
  7385. "type": "patreon"
  7386. },
  7387. {
  7388. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  7389. "type": "tidelift"
  7390. }
  7391. ],
  7392. "time": "2022-05-20T20:07:39+00:00"
  7393. },
  7394. {
  7395. "name": "doctrine/dbal",
  7396. "version": "3.6.2",
  7397. "source": {
  7398. "type": "git",
  7399. "url": "https://github.com/doctrine/dbal.git",
  7400. "reference": "b4bd1cfbd2b916951696d82e57d054394d84864c"
  7401. },
  7402. "dist": {
  7403. "type": "zip",
  7404. "url": "https://api.github.com/repos/doctrine/dbal/zipball/b4bd1cfbd2b916951696d82e57d054394d84864c",
  7405. "reference": "b4bd1cfbd2b916951696d82e57d054394d84864c",
  7406. "shasum": ""
  7407. },
  7408. "require": {
  7409. "composer-runtime-api": "^2",
  7410. "doctrine/cache": "^1.11|^2.0",
  7411. "doctrine/deprecations": "^0.5.3|^1",
  7412. "doctrine/event-manager": "^1|^2",
  7413. "php": "^7.4 || ^8.0",
  7414. "psr/cache": "^1|^2|^3",
  7415. "psr/log": "^1|^2|^3"
  7416. },
  7417. "require-dev": {
  7418. "doctrine/coding-standard": "11.1.0",
  7419. "fig/log-test": "^1",
  7420. "jetbrains/phpstorm-stubs": "2022.3",
  7421. "phpstan/phpstan": "1.10.9",
  7422. "phpstan/phpstan-strict-rules": "^1.5",
  7423. "phpunit/phpunit": "9.6.6",
  7424. "psalm/plugin-phpunit": "0.18.4",
  7425. "squizlabs/php_codesniffer": "3.7.2",
  7426. "symfony/cache": "^5.4|^6.0",
  7427. "symfony/console": "^4.4|^5.4|^6.0",
  7428. "vimeo/psalm": "4.30.0"
  7429. },
  7430. "suggest": {
  7431. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  7432. },
  7433. "bin": [
  7434. "bin/doctrine-dbal"
  7435. ],
  7436. "type": "library",
  7437. "autoload": {
  7438. "psr-4": {
  7439. "Doctrine\\DBAL\\": "src"
  7440. }
  7441. },
  7442. "notification-url": "https://packagist.org/downloads/",
  7443. "license": [
  7444. "MIT"
  7445. ],
  7446. "authors": [
  7447. {
  7448. "name": "Guilherme Blanco",
  7449. "email": "guilhermeblanco@gmail.com"
  7450. },
  7451. {
  7452. "name": "Roman Borschel",
  7453. "email": "roman@code-factory.org"
  7454. },
  7455. {
  7456. "name": "Benjamin Eberlei",
  7457. "email": "kontakt@beberlei.de"
  7458. },
  7459. {
  7460. "name": "Jonathan Wage",
  7461. "email": "jonwage@gmail.com"
  7462. }
  7463. ],
  7464. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  7465. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  7466. "keywords": [
  7467. "abstraction",
  7468. "database",
  7469. "db2",
  7470. "dbal",
  7471. "mariadb",
  7472. "mssql",
  7473. "mysql",
  7474. "oci8",
  7475. "oracle",
  7476. "pdo",
  7477. "pgsql",
  7478. "postgresql",
  7479. "queryobject",
  7480. "sasql",
  7481. "sql",
  7482. "sqlite",
  7483. "sqlserver",
  7484. "sqlsrv"
  7485. ],
  7486. "support": {
  7487. "issues": "https://github.com/doctrine/dbal/issues",
  7488. "source": "https://github.com/doctrine/dbal/tree/3.6.2"
  7489. },
  7490. "funding": [
  7491. {
  7492. "url": "https://www.doctrine-project.org/sponsorship.html",
  7493. "type": "custom"
  7494. },
  7495. {
  7496. "url": "https://www.patreon.com/phpdoctrine",
  7497. "type": "patreon"
  7498. },
  7499. {
  7500. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  7501. "type": "tidelift"
  7502. }
  7503. ],
  7504. "time": "2023-04-14T07:25:38+00:00"
  7505. },
  7506. {
  7507. "name": "doctrine/deprecations",
  7508. "version": "v1.0.0",
  7509. "source": {
  7510. "type": "git",
  7511. "url": "https://github.com/doctrine/deprecations.git",
  7512. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  7513. },
  7514. "dist": {
  7515. "type": "zip",
  7516. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  7517. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  7518. "shasum": ""
  7519. },
  7520. "require": {
  7521. "php": "^7.1|^8.0"
  7522. },
  7523. "require-dev": {
  7524. "doctrine/coding-standard": "^9",
  7525. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  7526. "psr/log": "^1|^2|^3"
  7527. },
  7528. "suggest": {
  7529. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  7530. },
  7531. "type": "library",
  7532. "autoload": {
  7533. "psr-4": {
  7534. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  7535. }
  7536. },
  7537. "notification-url": "https://packagist.org/downloads/",
  7538. "license": [
  7539. "MIT"
  7540. ],
  7541. "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.",
  7542. "homepage": "https://www.doctrine-project.org/",
  7543. "support": {
  7544. "issues": "https://github.com/doctrine/deprecations/issues",
  7545. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  7546. },
  7547. "time": "2022-05-02T15:47:09+00:00"
  7548. },
  7549. {
  7550. "name": "doctrine/event-manager",
  7551. "version": "2.0.0",
  7552. "source": {
  7553. "type": "git",
  7554. "url": "https://github.com/doctrine/event-manager.git",
  7555. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  7556. },
  7557. "dist": {
  7558. "type": "zip",
  7559. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  7560. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  7561. "shasum": ""
  7562. },
  7563. "require": {
  7564. "php": "^8.1"
  7565. },
  7566. "conflict": {
  7567. "doctrine/common": "<2.9"
  7568. },
  7569. "require-dev": {
  7570. "doctrine/coding-standard": "^10",
  7571. "phpstan/phpstan": "^1.8.8",
  7572. "phpunit/phpunit": "^9.5",
  7573. "vimeo/psalm": "^4.28"
  7574. },
  7575. "type": "library",
  7576. "autoload": {
  7577. "psr-4": {
  7578. "Doctrine\\Common\\": "src"
  7579. }
  7580. },
  7581. "notification-url": "https://packagist.org/downloads/",
  7582. "license": [
  7583. "MIT"
  7584. ],
  7585. "authors": [
  7586. {
  7587. "name": "Guilherme Blanco",
  7588. "email": "guilhermeblanco@gmail.com"
  7589. },
  7590. {
  7591. "name": "Roman Borschel",
  7592. "email": "roman@code-factory.org"
  7593. },
  7594. {
  7595. "name": "Benjamin Eberlei",
  7596. "email": "kontakt@beberlei.de"
  7597. },
  7598. {
  7599. "name": "Jonathan Wage",
  7600. "email": "jonwage@gmail.com"
  7601. },
  7602. {
  7603. "name": "Johannes Schmitt",
  7604. "email": "schmittjoh@gmail.com"
  7605. },
  7606. {
  7607. "name": "Marco Pivetta",
  7608. "email": "ocramius@gmail.com"
  7609. }
  7610. ],
  7611. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  7612. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  7613. "keywords": [
  7614. "event",
  7615. "event dispatcher",
  7616. "event manager",
  7617. "event system",
  7618. "events"
  7619. ],
  7620. "support": {
  7621. "issues": "https://github.com/doctrine/event-manager/issues",
  7622. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  7623. },
  7624. "funding": [
  7625. {
  7626. "url": "https://www.doctrine-project.org/sponsorship.html",
  7627. "type": "custom"
  7628. },
  7629. {
  7630. "url": "https://www.patreon.com/phpdoctrine",
  7631. "type": "patreon"
  7632. },
  7633. {
  7634. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  7635. "type": "tidelift"
  7636. }
  7637. ],
  7638. "time": "2022-10-12T20:59:15+00:00"
  7639. },
  7640. {
  7641. "name": "fakerphp/faker",
  7642. "version": "v1.22.0",
  7643. "source": {
  7644. "type": "git",
  7645. "url": "https://github.com/FakerPHP/Faker.git",
  7646. "reference": "f85772abd508bd04e20bb4b1bbe260a68d0066d2"
  7647. },
  7648. "dist": {
  7649. "type": "zip",
  7650. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/f85772abd508bd04e20bb4b1bbe260a68d0066d2",
  7651. "reference": "f85772abd508bd04e20bb4b1bbe260a68d0066d2",
  7652. "shasum": ""
  7653. },
  7654. "require": {
  7655. "php": "^7.4 || ^8.0",
  7656. "psr/container": "^1.0 || ^2.0",
  7657. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  7658. },
  7659. "conflict": {
  7660. "fzaninotto/faker": "*"
  7661. },
  7662. "require-dev": {
  7663. "bamarni/composer-bin-plugin": "^1.4.1",
  7664. "doctrine/persistence": "^1.3 || ^2.0",
  7665. "ext-intl": "*",
  7666. "phpunit/phpunit": "^9.5.26",
  7667. "symfony/phpunit-bridge": "^5.4.16"
  7668. },
  7669. "suggest": {
  7670. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  7671. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  7672. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  7673. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  7674. "ext-mbstring": "Required for multibyte Unicode string functionality."
  7675. },
  7676. "type": "library",
  7677. "extra": {
  7678. "branch-alias": {
  7679. "dev-main": "v1.21-dev"
  7680. }
  7681. },
  7682. "autoload": {
  7683. "psr-4": {
  7684. "Faker\\": "src/Faker/"
  7685. }
  7686. },
  7687. "notification-url": "https://packagist.org/downloads/",
  7688. "license": [
  7689. "MIT"
  7690. ],
  7691. "authors": [
  7692. {
  7693. "name": "François Zaninotto"
  7694. }
  7695. ],
  7696. "description": "Faker is a PHP library that generates fake data for you.",
  7697. "keywords": [
  7698. "data",
  7699. "faker",
  7700. "fixtures"
  7701. ],
  7702. "support": {
  7703. "issues": "https://github.com/FakerPHP/Faker/issues",
  7704. "source": "https://github.com/FakerPHP/Faker/tree/v1.22.0"
  7705. },
  7706. "time": "2023-05-14T12:31:37+00:00"
  7707. },
  7708. {
  7709. "name": "filp/whoops",
  7710. "version": "2.15.2",
  7711. "source": {
  7712. "type": "git",
  7713. "url": "https://github.com/filp/whoops.git",
  7714. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73"
  7715. },
  7716. "dist": {
  7717. "type": "zip",
  7718. "url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  7719. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  7720. "shasum": ""
  7721. },
  7722. "require": {
  7723. "php": "^5.5.9 || ^7.0 || ^8.0",
  7724. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  7725. },
  7726. "require-dev": {
  7727. "mockery/mockery": "^0.9 || ^1.0",
  7728. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  7729. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  7730. },
  7731. "suggest": {
  7732. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  7733. "whoops/soap": "Formats errors as SOAP responses"
  7734. },
  7735. "type": "library",
  7736. "extra": {
  7737. "branch-alias": {
  7738. "dev-master": "2.7-dev"
  7739. }
  7740. },
  7741. "autoload": {
  7742. "psr-4": {
  7743. "Whoops\\": "src/Whoops/"
  7744. }
  7745. },
  7746. "notification-url": "https://packagist.org/downloads/",
  7747. "license": [
  7748. "MIT"
  7749. ],
  7750. "authors": [
  7751. {
  7752. "name": "Filipe Dobreira",
  7753. "homepage": "https://github.com/filp",
  7754. "role": "Developer"
  7755. }
  7756. ],
  7757. "description": "php error handling for cool kids",
  7758. "homepage": "https://filp.github.io/whoops/",
  7759. "keywords": [
  7760. "error",
  7761. "exception",
  7762. "handling",
  7763. "library",
  7764. "throwable",
  7765. "whoops"
  7766. ],
  7767. "support": {
  7768. "issues": "https://github.com/filp/whoops/issues",
  7769. "source": "https://github.com/filp/whoops/tree/2.15.2"
  7770. },
  7771. "funding": [
  7772. {
  7773. "url": "https://github.com/denis-sokolov",
  7774. "type": "github"
  7775. }
  7776. ],
  7777. "time": "2023-04-12T12:00:00+00:00"
  7778. },
  7779. {
  7780. "name": "hamcrest/hamcrest-php",
  7781. "version": "v2.0.1",
  7782. "source": {
  7783. "type": "git",
  7784. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7785. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7786. },
  7787. "dist": {
  7788. "type": "zip",
  7789. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7790. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7791. "shasum": ""
  7792. },
  7793. "require": {
  7794. "php": "^5.3|^7.0|^8.0"
  7795. },
  7796. "replace": {
  7797. "cordoval/hamcrest-php": "*",
  7798. "davedevelopment/hamcrest-php": "*",
  7799. "kodova/hamcrest-php": "*"
  7800. },
  7801. "require-dev": {
  7802. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7803. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7804. },
  7805. "type": "library",
  7806. "extra": {
  7807. "branch-alias": {
  7808. "dev-master": "2.1-dev"
  7809. }
  7810. },
  7811. "autoload": {
  7812. "classmap": [
  7813. "hamcrest"
  7814. ]
  7815. },
  7816. "notification-url": "https://packagist.org/downloads/",
  7817. "license": [
  7818. "BSD-3-Clause"
  7819. ],
  7820. "description": "This is the PHP port of Hamcrest Matchers",
  7821. "keywords": [
  7822. "test"
  7823. ],
  7824. "support": {
  7825. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7826. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7827. },
  7828. "time": "2020-07-09T08:09:16+00:00"
  7829. },
  7830. {
  7831. "name": "laravel/pint",
  7832. "version": "v1.10.0",
  7833. "source": {
  7834. "type": "git",
  7835. "url": "https://github.com/laravel/pint.git",
  7836. "reference": "c7a01fa9bdd79819e7a2f1ba63ac1b02e6692dbc"
  7837. },
  7838. "dist": {
  7839. "type": "zip",
  7840. "url": "https://api.github.com/repos/laravel/pint/zipball/c7a01fa9bdd79819e7a2f1ba63ac1b02e6692dbc",
  7841. "reference": "c7a01fa9bdd79819e7a2f1ba63ac1b02e6692dbc",
  7842. "shasum": ""
  7843. },
  7844. "require": {
  7845. "ext-json": "*",
  7846. "ext-mbstring": "*",
  7847. "ext-tokenizer": "*",
  7848. "ext-xml": "*",
  7849. "php": "^8.1.0"
  7850. },
  7851. "require-dev": {
  7852. "friendsofphp/php-cs-fixer": "^3.16.0",
  7853. "illuminate/view": "^10.5.1",
  7854. "laravel-zero/framework": "^10.0.2",
  7855. "mockery/mockery": "^1.5.1",
  7856. "nunomaduro/larastan": "^2.5.1",
  7857. "nunomaduro/termwind": "^1.15.1",
  7858. "pestphp/pest": "^2.4.0"
  7859. },
  7860. "bin": [
  7861. "builds/pint"
  7862. ],
  7863. "type": "project",
  7864. "autoload": {
  7865. "psr-4": {
  7866. "App\\": "app/",
  7867. "Database\\Seeders\\": "database/seeders/",
  7868. "Database\\Factories\\": "database/factories/"
  7869. }
  7870. },
  7871. "notification-url": "https://packagist.org/downloads/",
  7872. "license": [
  7873. "MIT"
  7874. ],
  7875. "authors": [
  7876. {
  7877. "name": "Nuno Maduro",
  7878. "email": "enunomaduro@gmail.com"
  7879. }
  7880. ],
  7881. "description": "An opinionated code formatter for PHP.",
  7882. "homepage": "https://laravel.com",
  7883. "keywords": [
  7884. "format",
  7885. "formatter",
  7886. "lint",
  7887. "linter",
  7888. "php"
  7889. ],
  7890. "support": {
  7891. "issues": "https://github.com/laravel/pint/issues",
  7892. "source": "https://github.com/laravel/pint"
  7893. },
  7894. "time": "2023-04-25T14:52:30+00:00"
  7895. },
  7896. {
  7897. "name": "laravel/sail",
  7898. "version": "v1.22.0",
  7899. "source": {
  7900. "type": "git",
  7901. "url": "https://github.com/laravel/sail.git",
  7902. "reference": "923e1e112b6a8598664dbb0ee79dd3137f1c9d56"
  7903. },
  7904. "dist": {
  7905. "type": "zip",
  7906. "url": "https://api.github.com/repos/laravel/sail/zipball/923e1e112b6a8598664dbb0ee79dd3137f1c9d56",
  7907. "reference": "923e1e112b6a8598664dbb0ee79dd3137f1c9d56",
  7908. "shasum": ""
  7909. },
  7910. "require": {
  7911. "illuminate/console": "^8.0|^9.0|^10.0",
  7912. "illuminate/contracts": "^8.0|^9.0|^10.0",
  7913. "illuminate/support": "^8.0|^9.0|^10.0",
  7914. "php": "^8.0",
  7915. "symfony/yaml": "^6.0"
  7916. },
  7917. "require-dev": {
  7918. "orchestra/testbench": "^6.0|^7.0|^8.0",
  7919. "phpstan/phpstan": "^1.10"
  7920. },
  7921. "bin": [
  7922. "bin/sail"
  7923. ],
  7924. "type": "library",
  7925. "extra": {
  7926. "branch-alias": {
  7927. "dev-master": "1.x-dev"
  7928. },
  7929. "laravel": {
  7930. "providers": [
  7931. "Laravel\\Sail\\SailServiceProvider"
  7932. ]
  7933. }
  7934. },
  7935. "autoload": {
  7936. "psr-4": {
  7937. "Laravel\\Sail\\": "src/"
  7938. }
  7939. },
  7940. "notification-url": "https://packagist.org/downloads/",
  7941. "license": [
  7942. "MIT"
  7943. ],
  7944. "authors": [
  7945. {
  7946. "name": "Taylor Otwell",
  7947. "email": "taylor@laravel.com"
  7948. }
  7949. ],
  7950. "description": "Docker files for running a basic Laravel application.",
  7951. "keywords": [
  7952. "docker",
  7953. "laravel"
  7954. ],
  7955. "support": {
  7956. "issues": "https://github.com/laravel/sail/issues",
  7957. "source": "https://github.com/laravel/sail"
  7958. },
  7959. "time": "2023-05-04T14:52:56+00:00"
  7960. },
  7961. {
  7962. "name": "mockery/mockery",
  7963. "version": "1.5.1",
  7964. "source": {
  7965. "type": "git",
  7966. "url": "https://github.com/mockery/mockery.git",
  7967. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  7968. },
  7969. "dist": {
  7970. "type": "zip",
  7971. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  7972. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  7973. "shasum": ""
  7974. },
  7975. "require": {
  7976. "hamcrest/hamcrest-php": "^2.0.1",
  7977. "lib-pcre": ">=7.0",
  7978. "php": "^7.3 || ^8.0"
  7979. },
  7980. "conflict": {
  7981. "phpunit/phpunit": "<8.0"
  7982. },
  7983. "require-dev": {
  7984. "phpunit/phpunit": "^8.5 || ^9.3"
  7985. },
  7986. "type": "library",
  7987. "extra": {
  7988. "branch-alias": {
  7989. "dev-master": "1.4.x-dev"
  7990. }
  7991. },
  7992. "autoload": {
  7993. "psr-0": {
  7994. "Mockery": "library/"
  7995. }
  7996. },
  7997. "notification-url": "https://packagist.org/downloads/",
  7998. "license": [
  7999. "BSD-3-Clause"
  8000. ],
  8001. "authors": [
  8002. {
  8003. "name": "Pádraic Brady",
  8004. "email": "padraic.brady@gmail.com",
  8005. "homepage": "http://blog.astrumfutura.com"
  8006. },
  8007. {
  8008. "name": "Dave Marshall",
  8009. "email": "dave.marshall@atstsolutions.co.uk",
  8010. "homepage": "http://davedevelopment.co.uk"
  8011. }
  8012. ],
  8013. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8014. "homepage": "https://github.com/mockery/mockery",
  8015. "keywords": [
  8016. "BDD",
  8017. "TDD",
  8018. "library",
  8019. "mock",
  8020. "mock objects",
  8021. "mockery",
  8022. "stub",
  8023. "test",
  8024. "test double",
  8025. "testing"
  8026. ],
  8027. "support": {
  8028. "issues": "https://github.com/mockery/mockery/issues",
  8029. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  8030. },
  8031. "time": "2022-09-07T15:32:08+00:00"
  8032. },
  8033. {
  8034. "name": "myclabs/deep-copy",
  8035. "version": "1.11.1",
  8036. "source": {
  8037. "type": "git",
  8038. "url": "https://github.com/myclabs/DeepCopy.git",
  8039. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8040. },
  8041. "dist": {
  8042. "type": "zip",
  8043. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8044. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8045. "shasum": ""
  8046. },
  8047. "require": {
  8048. "php": "^7.1 || ^8.0"
  8049. },
  8050. "conflict": {
  8051. "doctrine/collections": "<1.6.8",
  8052. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8053. },
  8054. "require-dev": {
  8055. "doctrine/collections": "^1.6.8",
  8056. "doctrine/common": "^2.13.3 || ^3.2.2",
  8057. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8058. },
  8059. "type": "library",
  8060. "autoload": {
  8061. "files": [
  8062. "src/DeepCopy/deep_copy.php"
  8063. ],
  8064. "psr-4": {
  8065. "DeepCopy\\": "src/DeepCopy/"
  8066. }
  8067. },
  8068. "notification-url": "https://packagist.org/downloads/",
  8069. "license": [
  8070. "MIT"
  8071. ],
  8072. "description": "Create deep copies (clones) of your objects",
  8073. "keywords": [
  8074. "clone",
  8075. "copy",
  8076. "duplicate",
  8077. "object",
  8078. "object graph"
  8079. ],
  8080. "support": {
  8081. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8082. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8083. },
  8084. "funding": [
  8085. {
  8086. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8087. "type": "tidelift"
  8088. }
  8089. ],
  8090. "time": "2023-03-08T13:26:56+00:00"
  8091. },
  8092. {
  8093. "name": "nunomaduro/collision",
  8094. "version": "v7.5.2",
  8095. "source": {
  8096. "type": "git",
  8097. "url": "https://github.com/nunomaduro/collision.git",
  8098. "reference": "76b3cabda0aabda455fc3b9db6c3615f5a87c7ff"
  8099. },
  8100. "dist": {
  8101. "type": "zip",
  8102. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/76b3cabda0aabda455fc3b9db6c3615f5a87c7ff",
  8103. "reference": "76b3cabda0aabda455fc3b9db6c3615f5a87c7ff",
  8104. "shasum": ""
  8105. },
  8106. "require": {
  8107. "filp/whoops": "^2.15.2",
  8108. "nunomaduro/termwind": "^1.15.1",
  8109. "php": "^8.1.0",
  8110. "symfony/console": "^6.2.8"
  8111. },
  8112. "conflict": {
  8113. "phpunit/phpunit": "<10.1.2"
  8114. },
  8115. "require-dev": {
  8116. "brianium/paratest": "^7.1.3",
  8117. "laravel/framework": "^10.8.0",
  8118. "laravel/pint": "^1.9.0",
  8119. "laravel/sail": "^1.21.4",
  8120. "laravel/sanctum": "^3.2.1",
  8121. "laravel/tinker": "^2.8.1",
  8122. "nunomaduro/larastan": "^2.6.0",
  8123. "orchestra/testbench-core": "^8.5.0",
  8124. "pestphp/pest": "^2.5.2",
  8125. "phpunit/phpunit": "^10.1.1",
  8126. "sebastian/environment": "^6.0.1",
  8127. "spatie/laravel-ignition": "^2.1.0"
  8128. },
  8129. "type": "library",
  8130. "extra": {
  8131. "laravel": {
  8132. "providers": [
  8133. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8134. ]
  8135. }
  8136. },
  8137. "autoload": {
  8138. "files": [
  8139. "./src/Adapters/Phpunit/Autoload.php"
  8140. ],
  8141. "psr-4": {
  8142. "NunoMaduro\\Collision\\": "src/"
  8143. }
  8144. },
  8145. "notification-url": "https://packagist.org/downloads/",
  8146. "license": [
  8147. "MIT"
  8148. ],
  8149. "authors": [
  8150. {
  8151. "name": "Nuno Maduro",
  8152. "email": "enunomaduro@gmail.com"
  8153. }
  8154. ],
  8155. "description": "Cli error handling for console/command-line PHP applications.",
  8156. "keywords": [
  8157. "artisan",
  8158. "cli",
  8159. "command-line",
  8160. "console",
  8161. "error",
  8162. "handling",
  8163. "laravel",
  8164. "laravel-zero",
  8165. "php",
  8166. "symfony"
  8167. ],
  8168. "support": {
  8169. "issues": "https://github.com/nunomaduro/collision/issues",
  8170. "source": "https://github.com/nunomaduro/collision"
  8171. },
  8172. "funding": [
  8173. {
  8174. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8175. "type": "custom"
  8176. },
  8177. {
  8178. "url": "https://github.com/nunomaduro",
  8179. "type": "github"
  8180. },
  8181. {
  8182. "url": "https://www.patreon.com/nunomaduro",
  8183. "type": "patreon"
  8184. }
  8185. ],
  8186. "time": "2023-04-22T22:12:40+00:00"
  8187. },
  8188. {
  8189. "name": "phar-io/manifest",
  8190. "version": "2.0.3",
  8191. "source": {
  8192. "type": "git",
  8193. "url": "https://github.com/phar-io/manifest.git",
  8194. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8195. },
  8196. "dist": {
  8197. "type": "zip",
  8198. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8199. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8200. "shasum": ""
  8201. },
  8202. "require": {
  8203. "ext-dom": "*",
  8204. "ext-phar": "*",
  8205. "ext-xmlwriter": "*",
  8206. "phar-io/version": "^3.0.1",
  8207. "php": "^7.2 || ^8.0"
  8208. },
  8209. "type": "library",
  8210. "extra": {
  8211. "branch-alias": {
  8212. "dev-master": "2.0.x-dev"
  8213. }
  8214. },
  8215. "autoload": {
  8216. "classmap": [
  8217. "src/"
  8218. ]
  8219. },
  8220. "notification-url": "https://packagist.org/downloads/",
  8221. "license": [
  8222. "BSD-3-Clause"
  8223. ],
  8224. "authors": [
  8225. {
  8226. "name": "Arne Blankerts",
  8227. "email": "arne@blankerts.de",
  8228. "role": "Developer"
  8229. },
  8230. {
  8231. "name": "Sebastian Heuer",
  8232. "email": "sebastian@phpeople.de",
  8233. "role": "Developer"
  8234. },
  8235. {
  8236. "name": "Sebastian Bergmann",
  8237. "email": "sebastian@phpunit.de",
  8238. "role": "Developer"
  8239. }
  8240. ],
  8241. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8242. "support": {
  8243. "issues": "https://github.com/phar-io/manifest/issues",
  8244. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8245. },
  8246. "time": "2021-07-20T11:28:43+00:00"
  8247. },
  8248. {
  8249. "name": "phar-io/version",
  8250. "version": "3.2.1",
  8251. "source": {
  8252. "type": "git",
  8253. "url": "https://github.com/phar-io/version.git",
  8254. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8255. },
  8256. "dist": {
  8257. "type": "zip",
  8258. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8259. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8260. "shasum": ""
  8261. },
  8262. "require": {
  8263. "php": "^7.2 || ^8.0"
  8264. },
  8265. "type": "library",
  8266. "autoload": {
  8267. "classmap": [
  8268. "src/"
  8269. ]
  8270. },
  8271. "notification-url": "https://packagist.org/downloads/",
  8272. "license": [
  8273. "BSD-3-Clause"
  8274. ],
  8275. "authors": [
  8276. {
  8277. "name": "Arne Blankerts",
  8278. "email": "arne@blankerts.de",
  8279. "role": "Developer"
  8280. },
  8281. {
  8282. "name": "Sebastian Heuer",
  8283. "email": "sebastian@phpeople.de",
  8284. "role": "Developer"
  8285. },
  8286. {
  8287. "name": "Sebastian Bergmann",
  8288. "email": "sebastian@phpunit.de",
  8289. "role": "Developer"
  8290. }
  8291. ],
  8292. "description": "Library for handling version information and constraints",
  8293. "support": {
  8294. "issues": "https://github.com/phar-io/version/issues",
  8295. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8296. },
  8297. "time": "2022-02-21T01:04:05+00:00"
  8298. },
  8299. {
  8300. "name": "phpunit/php-code-coverage",
  8301. "version": "10.1.2",
  8302. "source": {
  8303. "type": "git",
  8304. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8305. "reference": "db1497ec8dd382e82c962f7abbe0320e4882ee4e"
  8306. },
  8307. "dist": {
  8308. "type": "zip",
  8309. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/db1497ec8dd382e82c962f7abbe0320e4882ee4e",
  8310. "reference": "db1497ec8dd382e82c962f7abbe0320e4882ee4e",
  8311. "shasum": ""
  8312. },
  8313. "require": {
  8314. "ext-dom": "*",
  8315. "ext-libxml": "*",
  8316. "ext-xmlwriter": "*",
  8317. "nikic/php-parser": "^4.15",
  8318. "php": ">=8.1",
  8319. "phpunit/php-file-iterator": "^4.0",
  8320. "phpunit/php-text-template": "^3.0",
  8321. "sebastian/code-unit-reverse-lookup": "^3.0",
  8322. "sebastian/complexity": "^3.0",
  8323. "sebastian/environment": "^6.0",
  8324. "sebastian/lines-of-code": "^2.0",
  8325. "sebastian/version": "^4.0",
  8326. "theseer/tokenizer": "^1.2.0"
  8327. },
  8328. "require-dev": {
  8329. "phpunit/phpunit": "^10.1"
  8330. },
  8331. "suggest": {
  8332. "ext-pcov": "PHP extension that provides line coverage",
  8333. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8334. },
  8335. "type": "library",
  8336. "extra": {
  8337. "branch-alias": {
  8338. "dev-main": "10.1-dev"
  8339. }
  8340. },
  8341. "autoload": {
  8342. "classmap": [
  8343. "src/"
  8344. ]
  8345. },
  8346. "notification-url": "https://packagist.org/downloads/",
  8347. "license": [
  8348. "BSD-3-Clause"
  8349. ],
  8350. "authors": [
  8351. {
  8352. "name": "Sebastian Bergmann",
  8353. "email": "sebastian@phpunit.de",
  8354. "role": "lead"
  8355. }
  8356. ],
  8357. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8358. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8359. "keywords": [
  8360. "coverage",
  8361. "testing",
  8362. "xunit"
  8363. ],
  8364. "support": {
  8365. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8366. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8367. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.2"
  8368. },
  8369. "funding": [
  8370. {
  8371. "url": "https://github.com/sebastianbergmann",
  8372. "type": "github"
  8373. }
  8374. ],
  8375. "time": "2023-05-22T09:04:27+00:00"
  8376. },
  8377. {
  8378. "name": "phpunit/php-file-iterator",
  8379. "version": "4.0.2",
  8380. "source": {
  8381. "type": "git",
  8382. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8383. "reference": "5647d65443818959172645e7ed999217360654b6"
  8384. },
  8385. "dist": {
  8386. "type": "zip",
  8387. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/5647d65443818959172645e7ed999217360654b6",
  8388. "reference": "5647d65443818959172645e7ed999217360654b6",
  8389. "shasum": ""
  8390. },
  8391. "require": {
  8392. "php": ">=8.1"
  8393. },
  8394. "require-dev": {
  8395. "phpunit/phpunit": "^10.0"
  8396. },
  8397. "type": "library",
  8398. "extra": {
  8399. "branch-alias": {
  8400. "dev-main": "4.0-dev"
  8401. }
  8402. },
  8403. "autoload": {
  8404. "classmap": [
  8405. "src/"
  8406. ]
  8407. },
  8408. "notification-url": "https://packagist.org/downloads/",
  8409. "license": [
  8410. "BSD-3-Clause"
  8411. ],
  8412. "authors": [
  8413. {
  8414. "name": "Sebastian Bergmann",
  8415. "email": "sebastian@phpunit.de",
  8416. "role": "lead"
  8417. }
  8418. ],
  8419. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8420. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8421. "keywords": [
  8422. "filesystem",
  8423. "iterator"
  8424. ],
  8425. "support": {
  8426. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8427. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8428. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.0.2"
  8429. },
  8430. "funding": [
  8431. {
  8432. "url": "https://github.com/sebastianbergmann",
  8433. "type": "github"
  8434. }
  8435. ],
  8436. "time": "2023-05-07T09:13:23+00:00"
  8437. },
  8438. {
  8439. "name": "phpunit/php-invoker",
  8440. "version": "4.0.0",
  8441. "source": {
  8442. "type": "git",
  8443. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8444. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8445. },
  8446. "dist": {
  8447. "type": "zip",
  8448. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8449. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8450. "shasum": ""
  8451. },
  8452. "require": {
  8453. "php": ">=8.1"
  8454. },
  8455. "require-dev": {
  8456. "ext-pcntl": "*",
  8457. "phpunit/phpunit": "^10.0"
  8458. },
  8459. "suggest": {
  8460. "ext-pcntl": "*"
  8461. },
  8462. "type": "library",
  8463. "extra": {
  8464. "branch-alias": {
  8465. "dev-main": "4.0-dev"
  8466. }
  8467. },
  8468. "autoload": {
  8469. "classmap": [
  8470. "src/"
  8471. ]
  8472. },
  8473. "notification-url": "https://packagist.org/downloads/",
  8474. "license": [
  8475. "BSD-3-Clause"
  8476. ],
  8477. "authors": [
  8478. {
  8479. "name": "Sebastian Bergmann",
  8480. "email": "sebastian@phpunit.de",
  8481. "role": "lead"
  8482. }
  8483. ],
  8484. "description": "Invoke callables with a timeout",
  8485. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8486. "keywords": [
  8487. "process"
  8488. ],
  8489. "support": {
  8490. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8491. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8492. },
  8493. "funding": [
  8494. {
  8495. "url": "https://github.com/sebastianbergmann",
  8496. "type": "github"
  8497. }
  8498. ],
  8499. "time": "2023-02-03T06:56:09+00:00"
  8500. },
  8501. {
  8502. "name": "phpunit/php-text-template",
  8503. "version": "3.0.0",
  8504. "source": {
  8505. "type": "git",
  8506. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8507. "reference": "9f3d3709577a527025f55bcf0f7ab8052c8bb37d"
  8508. },
  8509. "dist": {
  8510. "type": "zip",
  8511. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/9f3d3709577a527025f55bcf0f7ab8052c8bb37d",
  8512. "reference": "9f3d3709577a527025f55bcf0f7ab8052c8bb37d",
  8513. "shasum": ""
  8514. },
  8515. "require": {
  8516. "php": ">=8.1"
  8517. },
  8518. "require-dev": {
  8519. "phpunit/phpunit": "^10.0"
  8520. },
  8521. "type": "library",
  8522. "extra": {
  8523. "branch-alias": {
  8524. "dev-main": "3.0-dev"
  8525. }
  8526. },
  8527. "autoload": {
  8528. "classmap": [
  8529. "src/"
  8530. ]
  8531. },
  8532. "notification-url": "https://packagist.org/downloads/",
  8533. "license": [
  8534. "BSD-3-Clause"
  8535. ],
  8536. "authors": [
  8537. {
  8538. "name": "Sebastian Bergmann",
  8539. "email": "sebastian@phpunit.de",
  8540. "role": "lead"
  8541. }
  8542. ],
  8543. "description": "Simple template engine.",
  8544. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8545. "keywords": [
  8546. "template"
  8547. ],
  8548. "support": {
  8549. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8550. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.0"
  8551. },
  8552. "funding": [
  8553. {
  8554. "url": "https://github.com/sebastianbergmann",
  8555. "type": "github"
  8556. }
  8557. ],
  8558. "time": "2023-02-03T06:56:46+00:00"
  8559. },
  8560. {
  8561. "name": "phpunit/php-timer",
  8562. "version": "6.0.0",
  8563. "source": {
  8564. "type": "git",
  8565. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8566. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8567. },
  8568. "dist": {
  8569. "type": "zip",
  8570. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8571. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8572. "shasum": ""
  8573. },
  8574. "require": {
  8575. "php": ">=8.1"
  8576. },
  8577. "require-dev": {
  8578. "phpunit/phpunit": "^10.0"
  8579. },
  8580. "type": "library",
  8581. "extra": {
  8582. "branch-alias": {
  8583. "dev-main": "6.0-dev"
  8584. }
  8585. },
  8586. "autoload": {
  8587. "classmap": [
  8588. "src/"
  8589. ]
  8590. },
  8591. "notification-url": "https://packagist.org/downloads/",
  8592. "license": [
  8593. "BSD-3-Clause"
  8594. ],
  8595. "authors": [
  8596. {
  8597. "name": "Sebastian Bergmann",
  8598. "email": "sebastian@phpunit.de",
  8599. "role": "lead"
  8600. }
  8601. ],
  8602. "description": "Utility class for timing",
  8603. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8604. "keywords": [
  8605. "timer"
  8606. ],
  8607. "support": {
  8608. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8609. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8610. },
  8611. "funding": [
  8612. {
  8613. "url": "https://github.com/sebastianbergmann",
  8614. "type": "github"
  8615. }
  8616. ],
  8617. "time": "2023-02-03T06:57:52+00:00"
  8618. },
  8619. {
  8620. "name": "phpunit/phpunit",
  8621. "version": "10.1.3",
  8622. "source": {
  8623. "type": "git",
  8624. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8625. "reference": "2379ebafc1737e71cdc84f402acb6b7f04198b9d"
  8626. },
  8627. "dist": {
  8628. "type": "zip",
  8629. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/2379ebafc1737e71cdc84f402acb6b7f04198b9d",
  8630. "reference": "2379ebafc1737e71cdc84f402acb6b7f04198b9d",
  8631. "shasum": ""
  8632. },
  8633. "require": {
  8634. "ext-dom": "*",
  8635. "ext-json": "*",
  8636. "ext-libxml": "*",
  8637. "ext-mbstring": "*",
  8638. "ext-xml": "*",
  8639. "ext-xmlwriter": "*",
  8640. "myclabs/deep-copy": "^1.10.1",
  8641. "phar-io/manifest": "^2.0.3",
  8642. "phar-io/version": "^3.0.2",
  8643. "php": ">=8.1",
  8644. "phpunit/php-code-coverage": "^10.1.1",
  8645. "phpunit/php-file-iterator": "^4.0",
  8646. "phpunit/php-invoker": "^4.0",
  8647. "phpunit/php-text-template": "^3.0",
  8648. "phpunit/php-timer": "^6.0",
  8649. "sebastian/cli-parser": "^2.0",
  8650. "sebastian/code-unit": "^2.0",
  8651. "sebastian/comparator": "^5.0",
  8652. "sebastian/diff": "^5.0",
  8653. "sebastian/environment": "^6.0",
  8654. "sebastian/exporter": "^5.0",
  8655. "sebastian/global-state": "^6.0",
  8656. "sebastian/object-enumerator": "^5.0",
  8657. "sebastian/recursion-context": "^5.0",
  8658. "sebastian/type": "^4.0",
  8659. "sebastian/version": "^4.0"
  8660. },
  8661. "suggest": {
  8662. "ext-soap": "To be able to generate mocks based on WSDL files"
  8663. },
  8664. "bin": [
  8665. "phpunit"
  8666. ],
  8667. "type": "library",
  8668. "extra": {
  8669. "branch-alias": {
  8670. "dev-main": "10.1-dev"
  8671. }
  8672. },
  8673. "autoload": {
  8674. "files": [
  8675. "src/Framework/Assert/Functions.php"
  8676. ],
  8677. "classmap": [
  8678. "src/"
  8679. ]
  8680. },
  8681. "notification-url": "https://packagist.org/downloads/",
  8682. "license": [
  8683. "BSD-3-Clause"
  8684. ],
  8685. "authors": [
  8686. {
  8687. "name": "Sebastian Bergmann",
  8688. "email": "sebastian@phpunit.de",
  8689. "role": "lead"
  8690. }
  8691. ],
  8692. "description": "The PHP Unit Testing framework.",
  8693. "homepage": "https://phpunit.de/",
  8694. "keywords": [
  8695. "phpunit",
  8696. "testing",
  8697. "xunit"
  8698. ],
  8699. "support": {
  8700. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8701. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8702. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.1.3"
  8703. },
  8704. "funding": [
  8705. {
  8706. "url": "https://phpunit.de/sponsors.html",
  8707. "type": "custom"
  8708. },
  8709. {
  8710. "url": "https://github.com/sebastianbergmann",
  8711. "type": "github"
  8712. },
  8713. {
  8714. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8715. "type": "tidelift"
  8716. }
  8717. ],
  8718. "time": "2023-05-11T05:16:22+00:00"
  8719. },
  8720. {
  8721. "name": "psr/cache",
  8722. "version": "3.0.0",
  8723. "source": {
  8724. "type": "git",
  8725. "url": "https://github.com/php-fig/cache.git",
  8726. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  8727. },
  8728. "dist": {
  8729. "type": "zip",
  8730. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8731. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8732. "shasum": ""
  8733. },
  8734. "require": {
  8735. "php": ">=8.0.0"
  8736. },
  8737. "type": "library",
  8738. "extra": {
  8739. "branch-alias": {
  8740. "dev-master": "1.0.x-dev"
  8741. }
  8742. },
  8743. "autoload": {
  8744. "psr-4": {
  8745. "Psr\\Cache\\": "src/"
  8746. }
  8747. },
  8748. "notification-url": "https://packagist.org/downloads/",
  8749. "license": [
  8750. "MIT"
  8751. ],
  8752. "authors": [
  8753. {
  8754. "name": "PHP-FIG",
  8755. "homepage": "https://www.php-fig.org/"
  8756. }
  8757. ],
  8758. "description": "Common interface for caching libraries",
  8759. "keywords": [
  8760. "cache",
  8761. "psr",
  8762. "psr-6"
  8763. ],
  8764. "support": {
  8765. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  8766. },
  8767. "time": "2021-02-03T23:26:27+00:00"
  8768. },
  8769. {
  8770. "name": "sebastian/cli-parser",
  8771. "version": "2.0.0",
  8772. "source": {
  8773. "type": "git",
  8774. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8775. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae"
  8776. },
  8777. "dist": {
  8778. "type": "zip",
  8779. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/efdc130dbbbb8ef0b545a994fd811725c5282cae",
  8780. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae",
  8781. "shasum": ""
  8782. },
  8783. "require": {
  8784. "php": ">=8.1"
  8785. },
  8786. "require-dev": {
  8787. "phpunit/phpunit": "^10.0"
  8788. },
  8789. "type": "library",
  8790. "extra": {
  8791. "branch-alias": {
  8792. "dev-main": "2.0-dev"
  8793. }
  8794. },
  8795. "autoload": {
  8796. "classmap": [
  8797. "src/"
  8798. ]
  8799. },
  8800. "notification-url": "https://packagist.org/downloads/",
  8801. "license": [
  8802. "BSD-3-Clause"
  8803. ],
  8804. "authors": [
  8805. {
  8806. "name": "Sebastian Bergmann",
  8807. "email": "sebastian@phpunit.de",
  8808. "role": "lead"
  8809. }
  8810. ],
  8811. "description": "Library for parsing CLI options",
  8812. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8813. "support": {
  8814. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8815. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.0"
  8816. },
  8817. "funding": [
  8818. {
  8819. "url": "https://github.com/sebastianbergmann",
  8820. "type": "github"
  8821. }
  8822. ],
  8823. "time": "2023-02-03T06:58:15+00:00"
  8824. },
  8825. {
  8826. "name": "sebastian/code-unit",
  8827. "version": "2.0.0",
  8828. "source": {
  8829. "type": "git",
  8830. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8831. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  8832. },
  8833. "dist": {
  8834. "type": "zip",
  8835. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  8836. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8837. "shasum": ""
  8838. },
  8839. "require": {
  8840. "php": ">=8.1"
  8841. },
  8842. "require-dev": {
  8843. "phpunit/phpunit": "^10.0"
  8844. },
  8845. "type": "library",
  8846. "extra": {
  8847. "branch-alias": {
  8848. "dev-main": "2.0-dev"
  8849. }
  8850. },
  8851. "autoload": {
  8852. "classmap": [
  8853. "src/"
  8854. ]
  8855. },
  8856. "notification-url": "https://packagist.org/downloads/",
  8857. "license": [
  8858. "BSD-3-Clause"
  8859. ],
  8860. "authors": [
  8861. {
  8862. "name": "Sebastian Bergmann",
  8863. "email": "sebastian@phpunit.de",
  8864. "role": "lead"
  8865. }
  8866. ],
  8867. "description": "Collection of value objects that represent the PHP code units",
  8868. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8869. "support": {
  8870. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8871. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  8872. },
  8873. "funding": [
  8874. {
  8875. "url": "https://github.com/sebastianbergmann",
  8876. "type": "github"
  8877. }
  8878. ],
  8879. "time": "2023-02-03T06:58:43+00:00"
  8880. },
  8881. {
  8882. "name": "sebastian/code-unit-reverse-lookup",
  8883. "version": "3.0.0",
  8884. "source": {
  8885. "type": "git",
  8886. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8887. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  8888. },
  8889. "dist": {
  8890. "type": "zip",
  8891. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8892. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8893. "shasum": ""
  8894. },
  8895. "require": {
  8896. "php": ">=8.1"
  8897. },
  8898. "require-dev": {
  8899. "phpunit/phpunit": "^10.0"
  8900. },
  8901. "type": "library",
  8902. "extra": {
  8903. "branch-alias": {
  8904. "dev-main": "3.0-dev"
  8905. }
  8906. },
  8907. "autoload": {
  8908. "classmap": [
  8909. "src/"
  8910. ]
  8911. },
  8912. "notification-url": "https://packagist.org/downloads/",
  8913. "license": [
  8914. "BSD-3-Clause"
  8915. ],
  8916. "authors": [
  8917. {
  8918. "name": "Sebastian Bergmann",
  8919. "email": "sebastian@phpunit.de"
  8920. }
  8921. ],
  8922. "description": "Looks up which function or method a line of code belongs to",
  8923. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8924. "support": {
  8925. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8926. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  8927. },
  8928. "funding": [
  8929. {
  8930. "url": "https://github.com/sebastianbergmann",
  8931. "type": "github"
  8932. }
  8933. ],
  8934. "time": "2023-02-03T06:59:15+00:00"
  8935. },
  8936. {
  8937. "name": "sebastian/comparator",
  8938. "version": "5.0.0",
  8939. "source": {
  8940. "type": "git",
  8941. "url": "https://github.com/sebastianbergmann/comparator.git",
  8942. "reference": "72f01e6586e0caf6af81297897bd112eb7e9627c"
  8943. },
  8944. "dist": {
  8945. "type": "zip",
  8946. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/72f01e6586e0caf6af81297897bd112eb7e9627c",
  8947. "reference": "72f01e6586e0caf6af81297897bd112eb7e9627c",
  8948. "shasum": ""
  8949. },
  8950. "require": {
  8951. "ext-dom": "*",
  8952. "ext-mbstring": "*",
  8953. "php": ">=8.1",
  8954. "sebastian/diff": "^5.0",
  8955. "sebastian/exporter": "^5.0"
  8956. },
  8957. "require-dev": {
  8958. "phpunit/phpunit": "^10.0"
  8959. },
  8960. "type": "library",
  8961. "extra": {
  8962. "branch-alias": {
  8963. "dev-main": "5.0-dev"
  8964. }
  8965. },
  8966. "autoload": {
  8967. "classmap": [
  8968. "src/"
  8969. ]
  8970. },
  8971. "notification-url": "https://packagist.org/downloads/",
  8972. "license": [
  8973. "BSD-3-Clause"
  8974. ],
  8975. "authors": [
  8976. {
  8977. "name": "Sebastian Bergmann",
  8978. "email": "sebastian@phpunit.de"
  8979. },
  8980. {
  8981. "name": "Jeff Welch",
  8982. "email": "whatthejeff@gmail.com"
  8983. },
  8984. {
  8985. "name": "Volker Dusch",
  8986. "email": "github@wallbash.com"
  8987. },
  8988. {
  8989. "name": "Bernhard Schussek",
  8990. "email": "bschussek@2bepublished.at"
  8991. }
  8992. ],
  8993. "description": "Provides the functionality to compare PHP values for equality",
  8994. "homepage": "https://github.com/sebastianbergmann/comparator",
  8995. "keywords": [
  8996. "comparator",
  8997. "compare",
  8998. "equality"
  8999. ],
  9000. "support": {
  9001. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9002. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.0"
  9003. },
  9004. "funding": [
  9005. {
  9006. "url": "https://github.com/sebastianbergmann",
  9007. "type": "github"
  9008. }
  9009. ],
  9010. "time": "2023-02-03T07:07:16+00:00"
  9011. },
  9012. {
  9013. "name": "sebastian/complexity",
  9014. "version": "3.0.0",
  9015. "source": {
  9016. "type": "git",
  9017. "url": "https://github.com/sebastianbergmann/complexity.git",
  9018. "reference": "e67d240970c9dc7ea7b2123a6d520e334dd61dc6"
  9019. },
  9020. "dist": {
  9021. "type": "zip",
  9022. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/e67d240970c9dc7ea7b2123a6d520e334dd61dc6",
  9023. "reference": "e67d240970c9dc7ea7b2123a6d520e334dd61dc6",
  9024. "shasum": ""
  9025. },
  9026. "require": {
  9027. "nikic/php-parser": "^4.10",
  9028. "php": ">=8.1"
  9029. },
  9030. "require-dev": {
  9031. "phpunit/phpunit": "^10.0"
  9032. },
  9033. "type": "library",
  9034. "extra": {
  9035. "branch-alias": {
  9036. "dev-main": "3.0-dev"
  9037. }
  9038. },
  9039. "autoload": {
  9040. "classmap": [
  9041. "src/"
  9042. ]
  9043. },
  9044. "notification-url": "https://packagist.org/downloads/",
  9045. "license": [
  9046. "BSD-3-Clause"
  9047. ],
  9048. "authors": [
  9049. {
  9050. "name": "Sebastian Bergmann",
  9051. "email": "sebastian@phpunit.de",
  9052. "role": "lead"
  9053. }
  9054. ],
  9055. "description": "Library for calculating the complexity of PHP code units",
  9056. "homepage": "https://github.com/sebastianbergmann/complexity",
  9057. "support": {
  9058. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9059. "source": "https://github.com/sebastianbergmann/complexity/tree/3.0.0"
  9060. },
  9061. "funding": [
  9062. {
  9063. "url": "https://github.com/sebastianbergmann",
  9064. "type": "github"
  9065. }
  9066. ],
  9067. "time": "2023-02-03T06:59:47+00:00"
  9068. },
  9069. {
  9070. "name": "sebastian/diff",
  9071. "version": "5.0.3",
  9072. "source": {
  9073. "type": "git",
  9074. "url": "https://github.com/sebastianbergmann/diff.git",
  9075. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b"
  9076. },
  9077. "dist": {
  9078. "type": "zip",
  9079. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  9080. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  9081. "shasum": ""
  9082. },
  9083. "require": {
  9084. "php": ">=8.1"
  9085. },
  9086. "require-dev": {
  9087. "phpunit/phpunit": "^10.0",
  9088. "symfony/process": "^4.2 || ^5"
  9089. },
  9090. "type": "library",
  9091. "extra": {
  9092. "branch-alias": {
  9093. "dev-main": "5.0-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. },
  9110. {
  9111. "name": "Kore Nordmann",
  9112. "email": "mail@kore-nordmann.de"
  9113. }
  9114. ],
  9115. "description": "Diff implementation",
  9116. "homepage": "https://github.com/sebastianbergmann/diff",
  9117. "keywords": [
  9118. "diff",
  9119. "udiff",
  9120. "unidiff",
  9121. "unified diff"
  9122. ],
  9123. "support": {
  9124. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9125. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9126. "source": "https://github.com/sebastianbergmann/diff/tree/5.0.3"
  9127. },
  9128. "funding": [
  9129. {
  9130. "url": "https://github.com/sebastianbergmann",
  9131. "type": "github"
  9132. }
  9133. ],
  9134. "time": "2023-05-01T07:48:21+00:00"
  9135. },
  9136. {
  9137. "name": "sebastian/environment",
  9138. "version": "6.0.1",
  9139. "source": {
  9140. "type": "git",
  9141. "url": "https://github.com/sebastianbergmann/environment.git",
  9142. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951"
  9143. },
  9144. "dist": {
  9145. "type": "zip",
  9146. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951",
  9147. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951",
  9148. "shasum": ""
  9149. },
  9150. "require": {
  9151. "php": ">=8.1"
  9152. },
  9153. "require-dev": {
  9154. "phpunit/phpunit": "^10.0"
  9155. },
  9156. "suggest": {
  9157. "ext-posix": "*"
  9158. },
  9159. "type": "library",
  9160. "extra": {
  9161. "branch-alias": {
  9162. "dev-main": "6.0-dev"
  9163. }
  9164. },
  9165. "autoload": {
  9166. "classmap": [
  9167. "src/"
  9168. ]
  9169. },
  9170. "notification-url": "https://packagist.org/downloads/",
  9171. "license": [
  9172. "BSD-3-Clause"
  9173. ],
  9174. "authors": [
  9175. {
  9176. "name": "Sebastian Bergmann",
  9177. "email": "sebastian@phpunit.de"
  9178. }
  9179. ],
  9180. "description": "Provides functionality to handle HHVM/PHP environments",
  9181. "homepage": "https://github.com/sebastianbergmann/environment",
  9182. "keywords": [
  9183. "Xdebug",
  9184. "environment",
  9185. "hhvm"
  9186. ],
  9187. "support": {
  9188. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9189. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9190. "source": "https://github.com/sebastianbergmann/environment/tree/6.0.1"
  9191. },
  9192. "funding": [
  9193. {
  9194. "url": "https://github.com/sebastianbergmann",
  9195. "type": "github"
  9196. }
  9197. ],
  9198. "time": "2023-04-11T05:39:26+00:00"
  9199. },
  9200. {
  9201. "name": "sebastian/exporter",
  9202. "version": "5.0.0",
  9203. "source": {
  9204. "type": "git",
  9205. "url": "https://github.com/sebastianbergmann/exporter.git",
  9206. "reference": "f3ec4bf931c0b31e5b413f5b4fc970a7d03338c0"
  9207. },
  9208. "dist": {
  9209. "type": "zip",
  9210. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/f3ec4bf931c0b31e5b413f5b4fc970a7d03338c0",
  9211. "reference": "f3ec4bf931c0b31e5b413f5b4fc970a7d03338c0",
  9212. "shasum": ""
  9213. },
  9214. "require": {
  9215. "ext-mbstring": "*",
  9216. "php": ">=8.1",
  9217. "sebastian/recursion-context": "^5.0"
  9218. },
  9219. "require-dev": {
  9220. "phpunit/phpunit": "^10.0"
  9221. },
  9222. "type": "library",
  9223. "extra": {
  9224. "branch-alias": {
  9225. "dev-main": "5.0-dev"
  9226. }
  9227. },
  9228. "autoload": {
  9229. "classmap": [
  9230. "src/"
  9231. ]
  9232. },
  9233. "notification-url": "https://packagist.org/downloads/",
  9234. "license": [
  9235. "BSD-3-Clause"
  9236. ],
  9237. "authors": [
  9238. {
  9239. "name": "Sebastian Bergmann",
  9240. "email": "sebastian@phpunit.de"
  9241. },
  9242. {
  9243. "name": "Jeff Welch",
  9244. "email": "whatthejeff@gmail.com"
  9245. },
  9246. {
  9247. "name": "Volker Dusch",
  9248. "email": "github@wallbash.com"
  9249. },
  9250. {
  9251. "name": "Adam Harvey",
  9252. "email": "aharvey@php.net"
  9253. },
  9254. {
  9255. "name": "Bernhard Schussek",
  9256. "email": "bschussek@gmail.com"
  9257. }
  9258. ],
  9259. "description": "Provides the functionality to export PHP variables for visualization",
  9260. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9261. "keywords": [
  9262. "export",
  9263. "exporter"
  9264. ],
  9265. "support": {
  9266. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9267. "source": "https://github.com/sebastianbergmann/exporter/tree/5.0.0"
  9268. },
  9269. "funding": [
  9270. {
  9271. "url": "https://github.com/sebastianbergmann",
  9272. "type": "github"
  9273. }
  9274. ],
  9275. "time": "2023-02-03T07:06:49+00:00"
  9276. },
  9277. {
  9278. "name": "sebastian/global-state",
  9279. "version": "6.0.0",
  9280. "source": {
  9281. "type": "git",
  9282. "url": "https://github.com/sebastianbergmann/global-state.git",
  9283. "reference": "aab257c712de87b90194febd52e4d184551c2d44"
  9284. },
  9285. "dist": {
  9286. "type": "zip",
  9287. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/aab257c712de87b90194febd52e4d184551c2d44",
  9288. "reference": "aab257c712de87b90194febd52e4d184551c2d44",
  9289. "shasum": ""
  9290. },
  9291. "require": {
  9292. "php": ">=8.1",
  9293. "sebastian/object-reflector": "^3.0",
  9294. "sebastian/recursion-context": "^5.0"
  9295. },
  9296. "require-dev": {
  9297. "ext-dom": "*",
  9298. "phpunit/phpunit": "^10.0"
  9299. },
  9300. "type": "library",
  9301. "extra": {
  9302. "branch-alias": {
  9303. "dev-main": "6.0-dev"
  9304. }
  9305. },
  9306. "autoload": {
  9307. "classmap": [
  9308. "src/"
  9309. ]
  9310. },
  9311. "notification-url": "https://packagist.org/downloads/",
  9312. "license": [
  9313. "BSD-3-Clause"
  9314. ],
  9315. "authors": [
  9316. {
  9317. "name": "Sebastian Bergmann",
  9318. "email": "sebastian@phpunit.de"
  9319. }
  9320. ],
  9321. "description": "Snapshotting of global state",
  9322. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9323. "keywords": [
  9324. "global state"
  9325. ],
  9326. "support": {
  9327. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9328. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.0"
  9329. },
  9330. "funding": [
  9331. {
  9332. "url": "https://github.com/sebastianbergmann",
  9333. "type": "github"
  9334. }
  9335. ],
  9336. "time": "2023-02-03T07:07:38+00:00"
  9337. },
  9338. {
  9339. "name": "sebastian/lines-of-code",
  9340. "version": "2.0.0",
  9341. "source": {
  9342. "type": "git",
  9343. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9344. "reference": "17c4d940ecafb3d15d2cf916f4108f664e28b130"
  9345. },
  9346. "dist": {
  9347. "type": "zip",
  9348. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/17c4d940ecafb3d15d2cf916f4108f664e28b130",
  9349. "reference": "17c4d940ecafb3d15d2cf916f4108f664e28b130",
  9350. "shasum": ""
  9351. },
  9352. "require": {
  9353. "nikic/php-parser": "^4.10",
  9354. "php": ">=8.1"
  9355. },
  9356. "require-dev": {
  9357. "phpunit/phpunit": "^10.0"
  9358. },
  9359. "type": "library",
  9360. "extra": {
  9361. "branch-alias": {
  9362. "dev-main": "2.0-dev"
  9363. }
  9364. },
  9365. "autoload": {
  9366. "classmap": [
  9367. "src/"
  9368. ]
  9369. },
  9370. "notification-url": "https://packagist.org/downloads/",
  9371. "license": [
  9372. "BSD-3-Clause"
  9373. ],
  9374. "authors": [
  9375. {
  9376. "name": "Sebastian Bergmann",
  9377. "email": "sebastian@phpunit.de",
  9378. "role": "lead"
  9379. }
  9380. ],
  9381. "description": "Library for counting the lines of code in PHP source code",
  9382. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9383. "support": {
  9384. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9385. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.0"
  9386. },
  9387. "funding": [
  9388. {
  9389. "url": "https://github.com/sebastianbergmann",
  9390. "type": "github"
  9391. }
  9392. ],
  9393. "time": "2023-02-03T07:08:02+00:00"
  9394. },
  9395. {
  9396. "name": "sebastian/object-enumerator",
  9397. "version": "5.0.0",
  9398. "source": {
  9399. "type": "git",
  9400. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9401. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9402. },
  9403. "dist": {
  9404. "type": "zip",
  9405. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9406. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9407. "shasum": ""
  9408. },
  9409. "require": {
  9410. "php": ">=8.1",
  9411. "sebastian/object-reflector": "^3.0",
  9412. "sebastian/recursion-context": "^5.0"
  9413. },
  9414. "require-dev": {
  9415. "phpunit/phpunit": "^10.0"
  9416. },
  9417. "type": "library",
  9418. "extra": {
  9419. "branch-alias": {
  9420. "dev-main": "5.0-dev"
  9421. }
  9422. },
  9423. "autoload": {
  9424. "classmap": [
  9425. "src/"
  9426. ]
  9427. },
  9428. "notification-url": "https://packagist.org/downloads/",
  9429. "license": [
  9430. "BSD-3-Clause"
  9431. ],
  9432. "authors": [
  9433. {
  9434. "name": "Sebastian Bergmann",
  9435. "email": "sebastian@phpunit.de"
  9436. }
  9437. ],
  9438. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9439. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9440. "support": {
  9441. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9442. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9443. },
  9444. "funding": [
  9445. {
  9446. "url": "https://github.com/sebastianbergmann",
  9447. "type": "github"
  9448. }
  9449. ],
  9450. "time": "2023-02-03T07:08:32+00:00"
  9451. },
  9452. {
  9453. "name": "sebastian/object-reflector",
  9454. "version": "3.0.0",
  9455. "source": {
  9456. "type": "git",
  9457. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9458. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9459. },
  9460. "dist": {
  9461. "type": "zip",
  9462. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9463. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9464. "shasum": ""
  9465. },
  9466. "require": {
  9467. "php": ">=8.1"
  9468. },
  9469. "require-dev": {
  9470. "phpunit/phpunit": "^10.0"
  9471. },
  9472. "type": "library",
  9473. "extra": {
  9474. "branch-alias": {
  9475. "dev-main": "3.0-dev"
  9476. }
  9477. },
  9478. "autoload": {
  9479. "classmap": [
  9480. "src/"
  9481. ]
  9482. },
  9483. "notification-url": "https://packagist.org/downloads/",
  9484. "license": [
  9485. "BSD-3-Clause"
  9486. ],
  9487. "authors": [
  9488. {
  9489. "name": "Sebastian Bergmann",
  9490. "email": "sebastian@phpunit.de"
  9491. }
  9492. ],
  9493. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9494. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9495. "support": {
  9496. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9497. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9498. },
  9499. "funding": [
  9500. {
  9501. "url": "https://github.com/sebastianbergmann",
  9502. "type": "github"
  9503. }
  9504. ],
  9505. "time": "2023-02-03T07:06:18+00:00"
  9506. },
  9507. {
  9508. "name": "sebastian/recursion-context",
  9509. "version": "5.0.0",
  9510. "source": {
  9511. "type": "git",
  9512. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9513. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9514. },
  9515. "dist": {
  9516. "type": "zip",
  9517. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9518. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9519. "shasum": ""
  9520. },
  9521. "require": {
  9522. "php": ">=8.1"
  9523. },
  9524. "require-dev": {
  9525. "phpunit/phpunit": "^10.0"
  9526. },
  9527. "type": "library",
  9528. "extra": {
  9529. "branch-alias": {
  9530. "dev-main": "5.0-dev"
  9531. }
  9532. },
  9533. "autoload": {
  9534. "classmap": [
  9535. "src/"
  9536. ]
  9537. },
  9538. "notification-url": "https://packagist.org/downloads/",
  9539. "license": [
  9540. "BSD-3-Clause"
  9541. ],
  9542. "authors": [
  9543. {
  9544. "name": "Sebastian Bergmann",
  9545. "email": "sebastian@phpunit.de"
  9546. },
  9547. {
  9548. "name": "Jeff Welch",
  9549. "email": "whatthejeff@gmail.com"
  9550. },
  9551. {
  9552. "name": "Adam Harvey",
  9553. "email": "aharvey@php.net"
  9554. }
  9555. ],
  9556. "description": "Provides functionality to recursively process PHP variables",
  9557. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9558. "support": {
  9559. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9560. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9561. },
  9562. "funding": [
  9563. {
  9564. "url": "https://github.com/sebastianbergmann",
  9565. "type": "github"
  9566. }
  9567. ],
  9568. "time": "2023-02-03T07:05:40+00:00"
  9569. },
  9570. {
  9571. "name": "sebastian/type",
  9572. "version": "4.0.0",
  9573. "source": {
  9574. "type": "git",
  9575. "url": "https://github.com/sebastianbergmann/type.git",
  9576. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9577. },
  9578. "dist": {
  9579. "type": "zip",
  9580. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9581. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9582. "shasum": ""
  9583. },
  9584. "require": {
  9585. "php": ">=8.1"
  9586. },
  9587. "require-dev": {
  9588. "phpunit/phpunit": "^10.0"
  9589. },
  9590. "type": "library",
  9591. "extra": {
  9592. "branch-alias": {
  9593. "dev-main": "4.0-dev"
  9594. }
  9595. },
  9596. "autoload": {
  9597. "classmap": [
  9598. "src/"
  9599. ]
  9600. },
  9601. "notification-url": "https://packagist.org/downloads/",
  9602. "license": [
  9603. "BSD-3-Clause"
  9604. ],
  9605. "authors": [
  9606. {
  9607. "name": "Sebastian Bergmann",
  9608. "email": "sebastian@phpunit.de",
  9609. "role": "lead"
  9610. }
  9611. ],
  9612. "description": "Collection of value objects that represent the types of the PHP type system",
  9613. "homepage": "https://github.com/sebastianbergmann/type",
  9614. "support": {
  9615. "issues": "https://github.com/sebastianbergmann/type/issues",
  9616. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9617. },
  9618. "funding": [
  9619. {
  9620. "url": "https://github.com/sebastianbergmann",
  9621. "type": "github"
  9622. }
  9623. ],
  9624. "time": "2023-02-03T07:10:45+00:00"
  9625. },
  9626. {
  9627. "name": "sebastian/version",
  9628. "version": "4.0.1",
  9629. "source": {
  9630. "type": "git",
  9631. "url": "https://github.com/sebastianbergmann/version.git",
  9632. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9633. },
  9634. "dist": {
  9635. "type": "zip",
  9636. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9637. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9638. "shasum": ""
  9639. },
  9640. "require": {
  9641. "php": ">=8.1"
  9642. },
  9643. "type": "library",
  9644. "extra": {
  9645. "branch-alias": {
  9646. "dev-main": "4.0-dev"
  9647. }
  9648. },
  9649. "autoload": {
  9650. "classmap": [
  9651. "src/"
  9652. ]
  9653. },
  9654. "notification-url": "https://packagist.org/downloads/",
  9655. "license": [
  9656. "BSD-3-Clause"
  9657. ],
  9658. "authors": [
  9659. {
  9660. "name": "Sebastian Bergmann",
  9661. "email": "sebastian@phpunit.de",
  9662. "role": "lead"
  9663. }
  9664. ],
  9665. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9666. "homepage": "https://github.com/sebastianbergmann/version",
  9667. "support": {
  9668. "issues": "https://github.com/sebastianbergmann/version/issues",
  9669. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9670. },
  9671. "funding": [
  9672. {
  9673. "url": "https://github.com/sebastianbergmann",
  9674. "type": "github"
  9675. }
  9676. ],
  9677. "time": "2023-02-07T11:34:05+00:00"
  9678. },
  9679. {
  9680. "name": "spatie/backtrace",
  9681. "version": "1.4.0",
  9682. "source": {
  9683. "type": "git",
  9684. "url": "https://github.com/spatie/backtrace.git",
  9685. "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c"
  9686. },
  9687. "dist": {
  9688. "type": "zip",
  9689. "url": "https://api.github.com/repos/spatie/backtrace/zipball/ec4dd16476b802dbdc6b4467f84032837e316b8c",
  9690. "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c",
  9691. "shasum": ""
  9692. },
  9693. "require": {
  9694. "php": "^7.3|^8.0"
  9695. },
  9696. "require-dev": {
  9697. "ext-json": "*",
  9698. "phpunit/phpunit": "^9.3",
  9699. "spatie/phpunit-snapshot-assertions": "^4.2",
  9700. "symfony/var-dumper": "^5.1"
  9701. },
  9702. "type": "library",
  9703. "autoload": {
  9704. "psr-4": {
  9705. "Spatie\\Backtrace\\": "src"
  9706. }
  9707. },
  9708. "notification-url": "https://packagist.org/downloads/",
  9709. "license": [
  9710. "MIT"
  9711. ],
  9712. "authors": [
  9713. {
  9714. "name": "Freek Van de Herten",
  9715. "email": "freek@spatie.be",
  9716. "homepage": "https://spatie.be",
  9717. "role": "Developer"
  9718. }
  9719. ],
  9720. "description": "A better backtrace",
  9721. "homepage": "https://github.com/spatie/backtrace",
  9722. "keywords": [
  9723. "Backtrace",
  9724. "spatie"
  9725. ],
  9726. "support": {
  9727. "source": "https://github.com/spatie/backtrace/tree/1.4.0"
  9728. },
  9729. "funding": [
  9730. {
  9731. "url": "https://github.com/sponsors/spatie",
  9732. "type": "github"
  9733. },
  9734. {
  9735. "url": "https://spatie.be/open-source/support-us",
  9736. "type": "other"
  9737. }
  9738. ],
  9739. "time": "2023-03-04T08:57:24+00:00"
  9740. },
  9741. {
  9742. "name": "spatie/flare-client-php",
  9743. "version": "1.3.6",
  9744. "source": {
  9745. "type": "git",
  9746. "url": "https://github.com/spatie/flare-client-php.git",
  9747. "reference": "530ac81255af79f114344286e4275f8869c671e2"
  9748. },
  9749. "dist": {
  9750. "type": "zip",
  9751. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/530ac81255af79f114344286e4275f8869c671e2",
  9752. "reference": "530ac81255af79f114344286e4275f8869c671e2",
  9753. "shasum": ""
  9754. },
  9755. "require": {
  9756. "illuminate/pipeline": "^8.0|^9.0|^10.0",
  9757. "php": "^8.0",
  9758. "spatie/backtrace": "^1.2",
  9759. "symfony/http-foundation": "^5.0|^6.0",
  9760. "symfony/mime": "^5.2|^6.0",
  9761. "symfony/process": "^5.2|^6.0",
  9762. "symfony/var-dumper": "^5.2|^6.0"
  9763. },
  9764. "require-dev": {
  9765. "dms/phpunit-arraysubset-asserts": "^0.3.0",
  9766. "pestphp/pest": "^1.20",
  9767. "phpstan/extension-installer": "^1.1",
  9768. "phpstan/phpstan-deprecation-rules": "^1.0",
  9769. "phpstan/phpstan-phpunit": "^1.0",
  9770. "spatie/phpunit-snapshot-assertions": "^4.0"
  9771. },
  9772. "type": "library",
  9773. "extra": {
  9774. "branch-alias": {
  9775. "dev-main": "1.1.x-dev"
  9776. }
  9777. },
  9778. "autoload": {
  9779. "files": [
  9780. "src/helpers.php"
  9781. ],
  9782. "psr-4": {
  9783. "Spatie\\FlareClient\\": "src"
  9784. }
  9785. },
  9786. "notification-url": "https://packagist.org/downloads/",
  9787. "license": [
  9788. "MIT"
  9789. ],
  9790. "description": "Send PHP errors to Flare",
  9791. "homepage": "https://github.com/spatie/flare-client-php",
  9792. "keywords": [
  9793. "exception",
  9794. "flare",
  9795. "reporting",
  9796. "spatie"
  9797. ],
  9798. "support": {
  9799. "issues": "https://github.com/spatie/flare-client-php/issues",
  9800. "source": "https://github.com/spatie/flare-client-php/tree/1.3.6"
  9801. },
  9802. "funding": [
  9803. {
  9804. "url": "https://github.com/spatie",
  9805. "type": "github"
  9806. }
  9807. ],
  9808. "time": "2023-04-12T07:57:12+00:00"
  9809. },
  9810. {
  9811. "name": "spatie/ignition",
  9812. "version": "1.7.0",
  9813. "source": {
  9814. "type": "git",
  9815. "url": "https://github.com/spatie/ignition.git",
  9816. "reference": "f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78"
  9817. },
  9818. "dist": {
  9819. "type": "zip",
  9820. "url": "https://api.github.com/repos/spatie/ignition/zipball/f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78",
  9821. "reference": "f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78",
  9822. "shasum": ""
  9823. },
  9824. "require": {
  9825. "ext-json": "*",
  9826. "ext-mbstring": "*",
  9827. "php": "^8.0",
  9828. "spatie/backtrace": "^1.4",
  9829. "spatie/flare-client-php": "^1.1",
  9830. "symfony/console": "^5.4|^6.0",
  9831. "symfony/var-dumper": "^5.4|^6.0"
  9832. },
  9833. "require-dev": {
  9834. "illuminate/cache": "^9.52",
  9835. "mockery/mockery": "^1.4",
  9836. "pestphp/pest": "^1.20",
  9837. "phpstan/extension-installer": "^1.1",
  9838. "phpstan/phpstan-deprecation-rules": "^1.0",
  9839. "phpstan/phpstan-phpunit": "^1.0",
  9840. "psr/simple-cache-implementation": "*",
  9841. "symfony/cache": "^6.2",
  9842. "symfony/process": "^5.4|^6.0",
  9843. "vlucas/phpdotenv": "^5.5"
  9844. },
  9845. "suggest": {
  9846. "openai-php/client": "Require get solutions from OpenAI",
  9847. "simple-cache-implementation": "To cache solutions from OpenAI"
  9848. },
  9849. "type": "library",
  9850. "extra": {
  9851. "branch-alias": {
  9852. "dev-main": "1.5.x-dev"
  9853. }
  9854. },
  9855. "autoload": {
  9856. "psr-4": {
  9857. "Spatie\\Ignition\\": "src"
  9858. }
  9859. },
  9860. "notification-url": "https://packagist.org/downloads/",
  9861. "license": [
  9862. "MIT"
  9863. ],
  9864. "authors": [
  9865. {
  9866. "name": "Spatie",
  9867. "email": "info@spatie.be",
  9868. "role": "Developer"
  9869. }
  9870. ],
  9871. "description": "A beautiful error page for PHP applications.",
  9872. "homepage": "https://flareapp.io/ignition",
  9873. "keywords": [
  9874. "error",
  9875. "flare",
  9876. "laravel",
  9877. "page"
  9878. ],
  9879. "support": {
  9880. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  9881. "forum": "https://twitter.com/flareappio",
  9882. "issues": "https://github.com/spatie/ignition/issues",
  9883. "source": "https://github.com/spatie/ignition"
  9884. },
  9885. "funding": [
  9886. {
  9887. "url": "https://github.com/spatie",
  9888. "type": "github"
  9889. }
  9890. ],
  9891. "time": "2023-05-04T13:20:26+00:00"
  9892. },
  9893. {
  9894. "name": "spatie/laravel-ignition",
  9895. "version": "2.1.2",
  9896. "source": {
  9897. "type": "git",
  9898. "url": "https://github.com/spatie/laravel-ignition.git",
  9899. "reference": "2f99fa6b732a6049e78ed34e4608ce589605ae54"
  9900. },
  9901. "dist": {
  9902. "type": "zip",
  9903. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/2f99fa6b732a6049e78ed34e4608ce589605ae54",
  9904. "reference": "2f99fa6b732a6049e78ed34e4608ce589605ae54",
  9905. "shasum": ""
  9906. },
  9907. "require": {
  9908. "ext-curl": "*",
  9909. "ext-json": "*",
  9910. "ext-mbstring": "*",
  9911. "illuminate/support": "^10.0",
  9912. "php": "^8.1",
  9913. "spatie/flare-client-php": "^1.3.5",
  9914. "spatie/ignition": "^1.5.0",
  9915. "symfony/console": "^6.2.3",
  9916. "symfony/var-dumper": "^6.2.3"
  9917. },
  9918. "require-dev": {
  9919. "livewire/livewire": "^2.11",
  9920. "mockery/mockery": "^1.5.1",
  9921. "openai-php/client": "^0.3.4",
  9922. "orchestra/testbench": "^8.0",
  9923. "pestphp/pest": "^1.22.3",
  9924. "phpstan/extension-installer": "^1.2",
  9925. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  9926. "phpstan/phpstan-phpunit": "^1.3.3",
  9927. "vlucas/phpdotenv": "^5.5"
  9928. },
  9929. "suggest": {
  9930. "openai-php/client": "Require get solutions from OpenAI",
  9931. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  9932. },
  9933. "type": "library",
  9934. "extra": {
  9935. "laravel": {
  9936. "providers": [
  9937. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  9938. ],
  9939. "aliases": {
  9940. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  9941. }
  9942. }
  9943. },
  9944. "autoload": {
  9945. "files": [
  9946. "src/helpers.php"
  9947. ],
  9948. "psr-4": {
  9949. "Spatie\\LaravelIgnition\\": "src"
  9950. }
  9951. },
  9952. "notification-url": "https://packagist.org/downloads/",
  9953. "license": [
  9954. "MIT"
  9955. ],
  9956. "authors": [
  9957. {
  9958. "name": "Spatie",
  9959. "email": "info@spatie.be",
  9960. "role": "Developer"
  9961. }
  9962. ],
  9963. "description": "A beautiful error page for Laravel applications.",
  9964. "homepage": "https://flareapp.io/ignition",
  9965. "keywords": [
  9966. "error",
  9967. "flare",
  9968. "laravel",
  9969. "page"
  9970. ],
  9971. "support": {
  9972. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  9973. "forum": "https://twitter.com/flareappio",
  9974. "issues": "https://github.com/spatie/laravel-ignition/issues",
  9975. "source": "https://github.com/spatie/laravel-ignition"
  9976. },
  9977. "funding": [
  9978. {
  9979. "url": "https://github.com/spatie",
  9980. "type": "github"
  9981. }
  9982. ],
  9983. "time": "2023-05-09T07:19:31+00:00"
  9984. },
  9985. {
  9986. "name": "symfony/yaml",
  9987. "version": "v6.2.10",
  9988. "source": {
  9989. "type": "git",
  9990. "url": "https://github.com/symfony/yaml.git",
  9991. "reference": "61916f3861b1e9705b18cfde723921a71dd1559d"
  9992. },
  9993. "dist": {
  9994. "type": "zip",
  9995. "url": "https://api.github.com/repos/symfony/yaml/zipball/61916f3861b1e9705b18cfde723921a71dd1559d",
  9996. "reference": "61916f3861b1e9705b18cfde723921a71dd1559d",
  9997. "shasum": ""
  9998. },
  9999. "require": {
  10000. "php": ">=8.1",
  10001. "symfony/polyfill-ctype": "^1.8"
  10002. },
  10003. "conflict": {
  10004. "symfony/console": "<5.4"
  10005. },
  10006. "require-dev": {
  10007. "symfony/console": "^5.4|^6.0"
  10008. },
  10009. "suggest": {
  10010. "symfony/console": "For validating YAML files using the lint command"
  10011. },
  10012. "bin": [
  10013. "Resources/bin/yaml-lint"
  10014. ],
  10015. "type": "library",
  10016. "autoload": {
  10017. "psr-4": {
  10018. "Symfony\\Component\\Yaml\\": ""
  10019. },
  10020. "exclude-from-classmap": [
  10021. "/Tests/"
  10022. ]
  10023. },
  10024. "notification-url": "https://packagist.org/downloads/",
  10025. "license": [
  10026. "MIT"
  10027. ],
  10028. "authors": [
  10029. {
  10030. "name": "Fabien Potencier",
  10031. "email": "fabien@symfony.com"
  10032. },
  10033. {
  10034. "name": "Symfony Community",
  10035. "homepage": "https://symfony.com/contributors"
  10036. }
  10037. ],
  10038. "description": "Loads and dumps YAML files",
  10039. "homepage": "https://symfony.com",
  10040. "support": {
  10041. "source": "https://github.com/symfony/yaml/tree/v6.2.10"
  10042. },
  10043. "funding": [
  10044. {
  10045. "url": "https://symfony.com/sponsor",
  10046. "type": "custom"
  10047. },
  10048. {
  10049. "url": "https://github.com/fabpot",
  10050. "type": "github"
  10051. },
  10052. {
  10053. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10054. "type": "tidelift"
  10055. }
  10056. ],
  10057. "time": "2023-04-28T13:25:36+00:00"
  10058. },
  10059. {
  10060. "name": "theseer/tokenizer",
  10061. "version": "1.2.1",
  10062. "source": {
  10063. "type": "git",
  10064. "url": "https://github.com/theseer/tokenizer.git",
  10065. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10066. },
  10067. "dist": {
  10068. "type": "zip",
  10069. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10070. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10071. "shasum": ""
  10072. },
  10073. "require": {
  10074. "ext-dom": "*",
  10075. "ext-tokenizer": "*",
  10076. "ext-xmlwriter": "*",
  10077. "php": "^7.2 || ^8.0"
  10078. },
  10079. "type": "library",
  10080. "autoload": {
  10081. "classmap": [
  10082. "src/"
  10083. ]
  10084. },
  10085. "notification-url": "https://packagist.org/downloads/",
  10086. "license": [
  10087. "BSD-3-Clause"
  10088. ],
  10089. "authors": [
  10090. {
  10091. "name": "Arne Blankerts",
  10092. "email": "arne@blankerts.de",
  10093. "role": "Developer"
  10094. }
  10095. ],
  10096. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10097. "support": {
  10098. "issues": "https://github.com/theseer/tokenizer/issues",
  10099. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10100. },
  10101. "funding": [
  10102. {
  10103. "url": "https://github.com/theseer",
  10104. "type": "github"
  10105. }
  10106. ],
  10107. "time": "2021-07-28T10:34:58+00:00"
  10108. }
  10109. ],
  10110. "aliases": [],
  10111. "minimum-stability": "stable",
  10112. "stability-flags": [],
  10113. "prefer-stable": true,
  10114. "prefer-lowest": false,
  10115. "platform": {
  10116. "php": "^8.1"
  10117. },
  10118. "platform-dev": [],
  10119. "plugin-api-version": "2.3.0"
  10120. }