composer.lock 406 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305
  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": "b71ad790bb42865ebba9dda6ff4c221f",
  8. "packages": [
  9. {
  10. "name": "0.0.0/composer-include-files",
  11. "version": "1.6.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/hopeseekr-contribs/composer-include-files.git",
  15. "reference": "0e77aa7a723ac7a32a6b4f4ce4666872a642e845"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/hopeseekr-contribs/composer-include-files/zipball/0e77aa7a723ac7a32a6b4f4ce4666872a642e845",
  20. "reference": "0e77aa7a723ac7a32a6b4f4ce4666872a642e845",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "composer-plugin-api": "^1.0 || ^2.0"
  25. },
  26. "require-dev": {
  27. "composer/composer": "^2.0"
  28. },
  29. "type": "composer-plugin",
  30. "extra": {
  31. "class": "ComposerIncludeFiles\\Plugin"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "ComposerIncludeFiles\\": "src"
  36. }
  37. },
  38. "notification-url": "https://packagist.org/downloads/",
  39. "license": [
  40. "MIT"
  41. ],
  42. "authors": [
  43. {
  44. "name": "Tim Robertson",
  45. "email": "funkjedi@gmail.com"
  46. },
  47. {
  48. "name": "Theodore R. Smith",
  49. "email": "theodore@phpexperts.pro"
  50. }
  51. ],
  52. "description": "Include files at a higher priority than autoload files. Useful for overriding Laravel helpers.",
  53. "homepage": "https://github.com/funkjedi/composer-include-files",
  54. "keywords": [
  55. "autoload",
  56. "composer"
  57. ],
  58. "support": {
  59. "source": "https://github.com/hopeseekr-contribs/composer-include-files/tree/1.6.1"
  60. },
  61. "time": "2022-06-18T07:04:13+00:00"
  62. },
  63. {
  64. "name": "appslabke/lara-izitoast",
  65. "version": "v1.1.1",
  66. "source": {
  67. "type": "git",
  68. "url": "https://github.com/AppsLab-KE/lara-izitoast.git",
  69. "reference": "9636c4c3b28855c5d9c6169a10499f6b59568e0a"
  70. },
  71. "dist": {
  72. "type": "zip",
  73. "url": "https://api.github.com/repos/AppsLab-KE/lara-izitoast/zipball/9636c4c3b28855c5d9c6169a10499f6b59568e0a",
  74. "reference": "9636c4c3b28855c5d9c6169a10499f6b59568e0a",
  75. "shasum": ""
  76. },
  77. "require": {
  78. "php": ">=5.6"
  79. },
  80. "type": "library",
  81. "extra": {
  82. "laravel": {
  83. "providers": [
  84. "LaraIzitoast\\LaraIzitoastServiceProvider"
  85. ]
  86. }
  87. },
  88. "autoload": {
  89. "files": [
  90. "lara-izitoast/src/helpers.php"
  91. ],
  92. "psr-4": {
  93. "LaraIzitoast\\": "lara-izitoast/src/"
  94. }
  95. },
  96. "notification-url": "https://packagist.org/downloads/",
  97. "license": [
  98. "MIT"
  99. ],
  100. "authors": [
  101. {
  102. "name": "MARVIN COLLINS",
  103. "email": "marvin@appslab.co.ke"
  104. }
  105. ],
  106. "description": "Simplified wrapper for izitoast javascript notification library",
  107. "support": {
  108. "issues": "https://github.com/AppsLab-KE/lara-izitoast/issues",
  109. "source": "https://github.com/AppsLab-KE/lara-izitoast/tree/v1.1.1"
  110. },
  111. "time": "2019-01-31T12:43:02+00:00"
  112. },
  113. {
  114. "name": "asm89/stack-cors",
  115. "version": "v2.2.0",
  116. "source": {
  117. "type": "git",
  118. "url": "https://github.com/asm89/stack-cors.git",
  119. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea"
  120. },
  121. "dist": {
  122. "type": "zip",
  123. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea",
  124. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea",
  125. "shasum": ""
  126. },
  127. "require": {
  128. "php": "^7.3|^8.0",
  129. "symfony/http-foundation": "^5.3|^6|^7",
  130. "symfony/http-kernel": "^5.3|^6|^7"
  131. },
  132. "require-dev": {
  133. "phpunit/phpunit": "^9",
  134. "squizlabs/php_codesniffer": "^3.5"
  135. },
  136. "type": "library",
  137. "extra": {
  138. "branch-alias": {
  139. "dev-master": "2.2-dev"
  140. }
  141. },
  142. "autoload": {
  143. "psr-4": {
  144. "Asm89\\Stack\\": "src/"
  145. }
  146. },
  147. "notification-url": "https://packagist.org/downloads/",
  148. "license": [
  149. "MIT"
  150. ],
  151. "authors": [
  152. {
  153. "name": "Alexander",
  154. "email": "iam.asm89@gmail.com"
  155. }
  156. ],
  157. "description": "Cross-origin resource sharing library and stack middleware",
  158. "homepage": "https://github.com/asm89/stack-cors",
  159. "keywords": [
  160. "cors",
  161. "stack"
  162. ],
  163. "support": {
  164. "issues": "https://github.com/asm89/stack-cors/issues",
  165. "source": "https://github.com/asm89/stack-cors/tree/v2.2.0"
  166. },
  167. "time": "2023-11-14T13:51:46+00:00"
  168. },
  169. {
  170. "name": "aws/aws-crt-php",
  171. "version": "v1.2.6",
  172. "source": {
  173. "type": "git",
  174. "url": "https://github.com/awslabs/aws-crt-php.git",
  175. "reference": "a63485b65b6b3367039306496d49737cf1995408"
  176. },
  177. "dist": {
  178. "type": "zip",
  179. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/a63485b65b6b3367039306496d49737cf1995408",
  180. "reference": "a63485b65b6b3367039306496d49737cf1995408",
  181. "shasum": ""
  182. },
  183. "require": {
  184. "php": ">=5.5"
  185. },
  186. "require-dev": {
  187. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  188. "yoast/phpunit-polyfills": "^1.0"
  189. },
  190. "suggest": {
  191. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  192. },
  193. "type": "library",
  194. "autoload": {
  195. "classmap": [
  196. "src/"
  197. ]
  198. },
  199. "notification-url": "https://packagist.org/downloads/",
  200. "license": [
  201. "Apache-2.0"
  202. ],
  203. "authors": [
  204. {
  205. "name": "AWS SDK Common Runtime Team",
  206. "email": "aws-sdk-common-runtime@amazon.com"
  207. }
  208. ],
  209. "description": "AWS Common Runtime for PHP",
  210. "homepage": "https://github.com/awslabs/aws-crt-php",
  211. "keywords": [
  212. "amazon",
  213. "aws",
  214. "crt",
  215. "sdk"
  216. ],
  217. "support": {
  218. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  219. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.6"
  220. },
  221. "time": "2024-06-13T17:21:28+00:00"
  222. },
  223. {
  224. "name": "aws/aws-sdk-php",
  225. "version": "3.321.13",
  226. "source": {
  227. "type": "git",
  228. "url": "https://github.com/aws/aws-sdk-php.git",
  229. "reference": "6330c3367f303ef4430fca605df9e411abe34d48"
  230. },
  231. "dist": {
  232. "type": "zip",
  233. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/6330c3367f303ef4430fca605df9e411abe34d48",
  234. "reference": "6330c3367f303ef4430fca605df9e411abe34d48",
  235. "shasum": ""
  236. },
  237. "require": {
  238. "aws/aws-crt-php": "^1.2.3",
  239. "ext-json": "*",
  240. "ext-pcre": "*",
  241. "ext-simplexml": "*",
  242. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  243. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  244. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  245. "mtdowling/jmespath.php": "^2.6",
  246. "php": ">=7.2.5",
  247. "psr/http-message": "^1.0 || ^2.0"
  248. },
  249. "require-dev": {
  250. "andrewsville/php-token-reflection": "^1.4",
  251. "aws/aws-php-sns-message-validator": "~1.0",
  252. "behat/behat": "~3.0",
  253. "composer/composer": "^1.10.22",
  254. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  255. "doctrine/cache": "~1.4",
  256. "ext-dom": "*",
  257. "ext-openssl": "*",
  258. "ext-pcntl": "*",
  259. "ext-sockets": "*",
  260. "nette/neon": "^2.3",
  261. "paragonie/random_compat": ">= 2",
  262. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  263. "psr/cache": "^1.0",
  264. "psr/simple-cache": "^1.0",
  265. "sebastian/comparator": "^1.2.3 || ^4.0",
  266. "yoast/phpunit-polyfills": "^1.0"
  267. },
  268. "suggest": {
  269. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  270. "doctrine/cache": "To use the DoctrineCacheAdapter",
  271. "ext-curl": "To send requests using cURL",
  272. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  273. "ext-sockets": "To use client-side monitoring"
  274. },
  275. "type": "library",
  276. "extra": {
  277. "branch-alias": {
  278. "dev-master": "3.0-dev"
  279. }
  280. },
  281. "autoload": {
  282. "files": [
  283. "src/functions.php"
  284. ],
  285. "psr-4": {
  286. "Aws\\": "src/"
  287. },
  288. "exclude-from-classmap": [
  289. "src/data/"
  290. ]
  291. },
  292. "notification-url": "https://packagist.org/downloads/",
  293. "license": [
  294. "Apache-2.0"
  295. ],
  296. "authors": [
  297. {
  298. "name": "Amazon Web Services",
  299. "homepage": "http://aws.amazon.com"
  300. }
  301. ],
  302. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  303. "homepage": "http://aws.amazon.com/sdkforphp",
  304. "keywords": [
  305. "amazon",
  306. "aws",
  307. "cloud",
  308. "dynamodb",
  309. "ec2",
  310. "glacier",
  311. "s3",
  312. "sdk"
  313. ],
  314. "support": {
  315. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  316. "issues": "https://github.com/aws/aws-sdk-php/issues",
  317. "source": "https://github.com/aws/aws-sdk-php/tree/3.321.13"
  318. },
  319. "time": "2024-09-17T18:08:34+00:00"
  320. },
  321. {
  322. "name": "bacon/bacon-qr-code",
  323. "version": "2.0.8",
  324. "source": {
  325. "type": "git",
  326. "url": "https://github.com/Bacon/BaconQrCode.git",
  327. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  328. },
  329. "dist": {
  330. "type": "zip",
  331. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  332. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  333. "shasum": ""
  334. },
  335. "require": {
  336. "dasprid/enum": "^1.0.3",
  337. "ext-iconv": "*",
  338. "php": "^7.1 || ^8.0"
  339. },
  340. "require-dev": {
  341. "phly/keep-a-changelog": "^2.1",
  342. "phpunit/phpunit": "^7 | ^8 | ^9",
  343. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  344. "squizlabs/php_codesniffer": "^3.4"
  345. },
  346. "suggest": {
  347. "ext-imagick": "to generate QR code images"
  348. },
  349. "type": "library",
  350. "autoload": {
  351. "psr-4": {
  352. "BaconQrCode\\": "src/"
  353. }
  354. },
  355. "notification-url": "https://packagist.org/downloads/",
  356. "license": [
  357. "BSD-2-Clause"
  358. ],
  359. "authors": [
  360. {
  361. "name": "Ben Scholzen 'DASPRiD'",
  362. "email": "mail@dasprids.de",
  363. "homepage": "https://dasprids.de/",
  364. "role": "Developer"
  365. }
  366. ],
  367. "description": "BaconQrCode is a QR code generator for PHP.",
  368. "homepage": "https://github.com/Bacon/BaconQrCode",
  369. "support": {
  370. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  371. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  372. },
  373. "time": "2022-12-07T17:46:57+00:00"
  374. },
  375. {
  376. "name": "barryvdh/laravel-dompdf",
  377. "version": "v0.9.0",
  378. "source": {
  379. "type": "git",
  380. "url": "https://github.com/barryvdh/laravel-dompdf.git",
  381. "reference": "5b99e1f94157d74e450f4c97e8444fcaffa2144b"
  382. },
  383. "dist": {
  384. "type": "zip",
  385. "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/5b99e1f94157d74e450f4c97e8444fcaffa2144b",
  386. "reference": "5b99e1f94157d74e450f4c97e8444fcaffa2144b",
  387. "shasum": ""
  388. },
  389. "require": {
  390. "dompdf/dompdf": "^1",
  391. "illuminate/support": "^5.5|^6|^7|^8",
  392. "php": "^7.1 || ^8.0"
  393. },
  394. "type": "library",
  395. "extra": {
  396. "branch-alias": {
  397. "dev-master": "0.9-dev"
  398. },
  399. "laravel": {
  400. "providers": [
  401. "Barryvdh\\DomPDF\\ServiceProvider"
  402. ],
  403. "aliases": {
  404. "PDF": "Barryvdh\\DomPDF\\Facade"
  405. }
  406. }
  407. },
  408. "autoload": {
  409. "psr-4": {
  410. "Barryvdh\\DomPDF\\": "src"
  411. }
  412. },
  413. "notification-url": "https://packagist.org/downloads/",
  414. "license": [
  415. "MIT"
  416. ],
  417. "authors": [
  418. {
  419. "name": "Barry vd. Heuvel",
  420. "email": "barryvdh@gmail.com"
  421. }
  422. ],
  423. "description": "A DOMPDF Wrapper for Laravel",
  424. "keywords": [
  425. "dompdf",
  426. "laravel",
  427. "pdf"
  428. ],
  429. "support": {
  430. "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
  431. "source": "https://github.com/barryvdh/laravel-dompdf/tree/v0.9.0"
  432. },
  433. "funding": [
  434. {
  435. "url": "https://github.com/barryvdh",
  436. "type": "github"
  437. }
  438. ],
  439. "time": "2020-12-27T12:05:53+00:00"
  440. },
  441. {
  442. "name": "brick/math",
  443. "version": "0.9.3",
  444. "source": {
  445. "type": "git",
  446. "url": "https://github.com/brick/math.git",
  447. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  448. },
  449. "dist": {
  450. "type": "zip",
  451. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  452. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  453. "shasum": ""
  454. },
  455. "require": {
  456. "ext-json": "*",
  457. "php": "^7.1 || ^8.0"
  458. },
  459. "require-dev": {
  460. "php-coveralls/php-coveralls": "^2.2",
  461. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  462. "vimeo/psalm": "4.9.2"
  463. },
  464. "type": "library",
  465. "autoload": {
  466. "psr-4": {
  467. "Brick\\Math\\": "src/"
  468. }
  469. },
  470. "notification-url": "https://packagist.org/downloads/",
  471. "license": [
  472. "MIT"
  473. ],
  474. "description": "Arbitrary-precision arithmetic library",
  475. "keywords": [
  476. "Arbitrary-precision",
  477. "BigInteger",
  478. "BigRational",
  479. "arithmetic",
  480. "bigdecimal",
  481. "bignum",
  482. "brick",
  483. "math"
  484. ],
  485. "support": {
  486. "issues": "https://github.com/brick/math/issues",
  487. "source": "https://github.com/brick/math/tree/0.9.3"
  488. },
  489. "funding": [
  490. {
  491. "url": "https://github.com/BenMorel",
  492. "type": "github"
  493. },
  494. {
  495. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  496. "type": "tidelift"
  497. }
  498. ],
  499. "time": "2021-08-15T20:50:18+00:00"
  500. },
  501. {
  502. "name": "carbonphp/carbon-doctrine-types",
  503. "version": "1.0.0",
  504. "source": {
  505. "type": "git",
  506. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  507. "reference": "3c430083d0b41ceed84ecccf9dac613241d7305d"
  508. },
  509. "dist": {
  510. "type": "zip",
  511. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/3c430083d0b41ceed84ecccf9dac613241d7305d",
  512. "reference": "3c430083d0b41ceed84ecccf9dac613241d7305d",
  513. "shasum": ""
  514. },
  515. "require": {
  516. "php": "^7.1.8 || ^8.0"
  517. },
  518. "conflict": {
  519. "doctrine/dbal": ">=3.7.0"
  520. },
  521. "require-dev": {
  522. "doctrine/dbal": ">=2.0.0",
  523. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  524. "phpunit/phpunit": "^10.3"
  525. },
  526. "type": "library",
  527. "autoload": {
  528. "psr-4": {
  529. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  530. }
  531. },
  532. "notification-url": "https://packagist.org/downloads/",
  533. "license": [
  534. "MIT"
  535. ],
  536. "authors": [
  537. {
  538. "name": "KyleKatarn",
  539. "email": "kylekatarnls@gmail.com"
  540. }
  541. ],
  542. "description": "Types to use Carbon in Doctrine",
  543. "keywords": [
  544. "carbon",
  545. "date",
  546. "datetime",
  547. "doctrine",
  548. "time"
  549. ],
  550. "support": {
  551. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  552. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/1.0.0"
  553. },
  554. "funding": [
  555. {
  556. "url": "https://github.com/kylekatarnls",
  557. "type": "github"
  558. },
  559. {
  560. "url": "https://opencollective.com/Carbon",
  561. "type": "open_collective"
  562. },
  563. {
  564. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  565. "type": "tidelift"
  566. }
  567. ],
  568. "time": "2023-10-01T12:35:29+00:00"
  569. },
  570. {
  571. "name": "codezero/browser-locale",
  572. "version": "3.4.0",
  573. "source": {
  574. "type": "git",
  575. "url": "https://github.com/codezero-be/browser-locale.git",
  576. "reference": "dd6c50e5557b06b57960df6db7f52e85ef683e5e"
  577. },
  578. "dist": {
  579. "type": "zip",
  580. "url": "https://api.github.com/repos/codezero-be/browser-locale/zipball/dd6c50e5557b06b57960df6db7f52e85ef683e5e",
  581. "reference": "dd6c50e5557b06b57960df6db7f52e85ef683e5e",
  582. "shasum": ""
  583. },
  584. "require": {
  585. "php": "^7.0|^8.0"
  586. },
  587. "require-dev": {
  588. "mockery/mockery": "^1.3.3",
  589. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  590. },
  591. "type": "library",
  592. "extra": {
  593. "laravel": {
  594. "providers": [
  595. "CodeZero\\BrowserLocale\\Laravel\\BrowserLocaleServiceProvider"
  596. ]
  597. }
  598. },
  599. "autoload": {
  600. "psr-4": {
  601. "CodeZero\\BrowserLocale\\": "src/"
  602. }
  603. },
  604. "notification-url": "https://packagist.org/downloads/",
  605. "license": [
  606. "MIT"
  607. ],
  608. "authors": [
  609. {
  610. "name": "Ivan Vermeyen",
  611. "email": "ivan@codezero.be"
  612. }
  613. ],
  614. "description": "Get the most preferred locales from your visitor's browser.",
  615. "keywords": [
  616. "browser",
  617. "country",
  618. "detect",
  619. "language",
  620. "locale",
  621. "php",
  622. "website"
  623. ],
  624. "support": {
  625. "issues": "https://github.com/codezero-be/browser-locale/issues",
  626. "source": "https://github.com/codezero-be/browser-locale/tree/3.4.0"
  627. },
  628. "funding": [
  629. {
  630. "url": "https://paypal.me/ivanvermeyen",
  631. "type": "custom"
  632. },
  633. {
  634. "url": "https://ko-fi.com/ivanvermeyen",
  635. "type": "ko_fi"
  636. }
  637. ],
  638. "time": "2024-03-02T12:51:17+00:00"
  639. },
  640. {
  641. "name": "codezero/laravel-localized-routes",
  642. "version": "2.10.2",
  643. "source": {
  644. "type": "git",
  645. "url": "https://github.com/codezero-be/laravel-localized-routes.git",
  646. "reference": "2fbc95f0c5283b5cf6d35414a80318f38f0ce527"
  647. },
  648. "dist": {
  649. "type": "zip",
  650. "url": "https://api.github.com/repos/codezero-be/laravel-localized-routes/zipball/2fbc95f0c5283b5cf6d35414a80318f38f0ce527",
  651. "reference": "2fbc95f0c5283b5cf6d35414a80318f38f0ce527",
  652. "shasum": ""
  653. },
  654. "require": {
  655. "0.0.0/composer-include-files": "^1.5",
  656. "codezero/laravel-localizer": "^1.1",
  657. "illuminate/support": "^5.6|^6.0|^7.0|^8.0|^9.0|^10.0",
  658. "php": "^7.1|^8.0"
  659. },
  660. "require-dev": {
  661. "mockery/mockery": "^1.3.3",
  662. "orchestra/testbench": "^3.6|^4.0|^5.0|^6.0|^7.0|^8.0",
  663. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  664. },
  665. "type": "library",
  666. "extra": {
  667. "laravel": {
  668. "providers": [
  669. "CodeZero\\LocalizedRoutes\\LocalizedRoutesServiceProvider"
  670. ]
  671. },
  672. "include_files": [
  673. "src/helpers.php"
  674. ]
  675. },
  676. "autoload": {
  677. "psr-4": {
  678. "CodeZero\\LocalizedRoutes\\": "src"
  679. }
  680. },
  681. "notification-url": "https://packagist.org/downloads/",
  682. "license": [
  683. "MIT"
  684. ],
  685. "authors": [
  686. {
  687. "name": "Ivan Vermeyen",
  688. "email": "ivan@codezero.be"
  689. }
  690. ],
  691. "description": "A convenient way to set up, manage and use localized routes in a Laravel app.",
  692. "keywords": [
  693. "country",
  694. "language",
  695. "laravel",
  696. "locale",
  697. "localization",
  698. "php",
  699. "routes",
  700. "routing",
  701. "translation"
  702. ],
  703. "support": {
  704. "issues": "https://github.com/codezero-be/laravel-localized-routes/issues",
  705. "source": "https://github.com/codezero-be/laravel-localized-routes/tree/2.10.2"
  706. },
  707. "funding": [
  708. {
  709. "url": "https://paypal.me/ivanvermeyen",
  710. "type": "custom"
  711. },
  712. {
  713. "url": "https://ko-fi.com/ivanvermeyen",
  714. "type": "ko_fi"
  715. }
  716. ],
  717. "time": "2023-04-06T21:16:42+00:00"
  718. },
  719. {
  720. "name": "codezero/laravel-localizer",
  721. "version": "1.8.1",
  722. "source": {
  723. "type": "git",
  724. "url": "https://github.com/codezero-be/laravel-localizer.git",
  725. "reference": "7c03cc0aea0a0047a2d40e4dc39547f4a198555e"
  726. },
  727. "dist": {
  728. "type": "zip",
  729. "url": "https://api.github.com/repos/codezero-be/laravel-localizer/zipball/7c03cc0aea0a0047a2d40e4dc39547f4a198555e",
  730. "reference": "7c03cc0aea0a0047a2d40e4dc39547f4a198555e",
  731. "shasum": ""
  732. },
  733. "require": {
  734. "codezero/browser-locale": "^3.0",
  735. "illuminate/support": "^5.6|^6.0|^7.0|^8.0|^9.0|^10.0",
  736. "php": "^7.1|^8.0"
  737. },
  738. "require-dev": {
  739. "mockery/mockery": "^1.3.3",
  740. "orchestra/testbench": "^3.6|^4.0|^5.0|^6.0|^7.0|^8.0",
  741. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  742. },
  743. "type": "library",
  744. "extra": {
  745. "laravel": {
  746. "providers": [
  747. "CodeZero\\Localizer\\LocalizerServiceProvider"
  748. ]
  749. }
  750. },
  751. "autoload": {
  752. "psr-4": {
  753. "CodeZero\\Localizer\\": "src"
  754. }
  755. },
  756. "notification-url": "https://packagist.org/downloads/",
  757. "license": [
  758. "MIT"
  759. ],
  760. "authors": [
  761. {
  762. "name": "Ivan Vermeyen",
  763. "email": "ivan@codezero.be"
  764. }
  765. ],
  766. "description": "Automatically detect and set an app locale that matches your visitor's preference.",
  767. "keywords": [
  768. "browser",
  769. "cookie",
  770. "country",
  771. "detect",
  772. "language",
  773. "laravel",
  774. "locale",
  775. "localization",
  776. "php",
  777. "session"
  778. ],
  779. "support": {
  780. "issues": "https://github.com/codezero-be/laravel-localizer/issues",
  781. "source": "https://github.com/codezero-be/laravel-localizer/tree/1.8.1"
  782. },
  783. "funding": [
  784. {
  785. "url": "https://paypal.me/ivanvermeyen",
  786. "type": "custom"
  787. },
  788. {
  789. "url": "https://ko-fi.com/ivanvermeyen",
  790. "type": "ko_fi"
  791. }
  792. ],
  793. "time": "2023-03-11T22:28:31+00:00"
  794. },
  795. {
  796. "name": "composer/semver",
  797. "version": "3.4.2",
  798. "source": {
  799. "type": "git",
  800. "url": "https://github.com/composer/semver.git",
  801. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6"
  802. },
  803. "dist": {
  804. "type": "zip",
  805. "url": "https://api.github.com/repos/composer/semver/zipball/c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  806. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  807. "shasum": ""
  808. },
  809. "require": {
  810. "php": "^5.3.2 || ^7.0 || ^8.0"
  811. },
  812. "require-dev": {
  813. "phpstan/phpstan": "^1.4",
  814. "symfony/phpunit-bridge": "^4.2 || ^5"
  815. },
  816. "type": "library",
  817. "extra": {
  818. "branch-alias": {
  819. "dev-main": "3.x-dev"
  820. }
  821. },
  822. "autoload": {
  823. "psr-4": {
  824. "Composer\\Semver\\": "src"
  825. }
  826. },
  827. "notification-url": "https://packagist.org/downloads/",
  828. "license": [
  829. "MIT"
  830. ],
  831. "authors": [
  832. {
  833. "name": "Nils Adermann",
  834. "email": "naderman@naderman.de",
  835. "homepage": "http://www.naderman.de"
  836. },
  837. {
  838. "name": "Jordi Boggiano",
  839. "email": "j.boggiano@seld.be",
  840. "homepage": "http://seld.be"
  841. },
  842. {
  843. "name": "Rob Bast",
  844. "email": "rob.bast@gmail.com",
  845. "homepage": "http://robbast.nl"
  846. }
  847. ],
  848. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  849. "keywords": [
  850. "semantic",
  851. "semver",
  852. "validation",
  853. "versioning"
  854. ],
  855. "support": {
  856. "irc": "ircs://irc.libera.chat:6697/composer",
  857. "issues": "https://github.com/composer/semver/issues",
  858. "source": "https://github.com/composer/semver/tree/3.4.2"
  859. },
  860. "funding": [
  861. {
  862. "url": "https://packagist.com",
  863. "type": "custom"
  864. },
  865. {
  866. "url": "https://github.com/composer",
  867. "type": "github"
  868. },
  869. {
  870. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  871. "type": "tidelift"
  872. }
  873. ],
  874. "time": "2024-07-12T11:35:52+00:00"
  875. },
  876. {
  877. "name": "dasprid/enum",
  878. "version": "1.0.6",
  879. "source": {
  880. "type": "git",
  881. "url": "https://github.com/DASPRiD/Enum.git",
  882. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90"
  883. },
  884. "dist": {
  885. "type": "zip",
  886. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  887. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  888. "shasum": ""
  889. },
  890. "require": {
  891. "php": ">=7.1 <9.0"
  892. },
  893. "require-dev": {
  894. "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
  895. "squizlabs/php_codesniffer": "*"
  896. },
  897. "type": "library",
  898. "autoload": {
  899. "psr-4": {
  900. "DASPRiD\\Enum\\": "src/"
  901. }
  902. },
  903. "notification-url": "https://packagist.org/downloads/",
  904. "license": [
  905. "BSD-2-Clause"
  906. ],
  907. "authors": [
  908. {
  909. "name": "Ben Scholzen 'DASPRiD'",
  910. "email": "mail@dasprids.de",
  911. "homepage": "https://dasprids.de/",
  912. "role": "Developer"
  913. }
  914. ],
  915. "description": "PHP 7.1 enum implementation",
  916. "keywords": [
  917. "enum",
  918. "map"
  919. ],
  920. "support": {
  921. "issues": "https://github.com/DASPRiD/Enum/issues",
  922. "source": "https://github.com/DASPRiD/Enum/tree/1.0.6"
  923. },
  924. "time": "2024-08-09T14:30:48+00:00"
  925. },
  926. {
  927. "name": "doctrine/inflector",
  928. "version": "2.0.10",
  929. "source": {
  930. "type": "git",
  931. "url": "https://github.com/doctrine/inflector.git",
  932. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  933. },
  934. "dist": {
  935. "type": "zip",
  936. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  937. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  938. "shasum": ""
  939. },
  940. "require": {
  941. "php": "^7.2 || ^8.0"
  942. },
  943. "require-dev": {
  944. "doctrine/coding-standard": "^11.0",
  945. "phpstan/phpstan": "^1.8",
  946. "phpstan/phpstan-phpunit": "^1.1",
  947. "phpstan/phpstan-strict-rules": "^1.3",
  948. "phpunit/phpunit": "^8.5 || ^9.5",
  949. "vimeo/psalm": "^4.25 || ^5.4"
  950. },
  951. "type": "library",
  952. "autoload": {
  953. "psr-4": {
  954. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  955. }
  956. },
  957. "notification-url": "https://packagist.org/downloads/",
  958. "license": [
  959. "MIT"
  960. ],
  961. "authors": [
  962. {
  963. "name": "Guilherme Blanco",
  964. "email": "guilhermeblanco@gmail.com"
  965. },
  966. {
  967. "name": "Roman Borschel",
  968. "email": "roman@code-factory.org"
  969. },
  970. {
  971. "name": "Benjamin Eberlei",
  972. "email": "kontakt@beberlei.de"
  973. },
  974. {
  975. "name": "Jonathan Wage",
  976. "email": "jonwage@gmail.com"
  977. },
  978. {
  979. "name": "Johannes Schmitt",
  980. "email": "schmittjoh@gmail.com"
  981. }
  982. ],
  983. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  984. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  985. "keywords": [
  986. "inflection",
  987. "inflector",
  988. "lowercase",
  989. "manipulation",
  990. "php",
  991. "plural",
  992. "singular",
  993. "strings",
  994. "uppercase",
  995. "words"
  996. ],
  997. "support": {
  998. "issues": "https://github.com/doctrine/inflector/issues",
  999. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1000. },
  1001. "funding": [
  1002. {
  1003. "url": "https://www.doctrine-project.org/sponsorship.html",
  1004. "type": "custom"
  1005. },
  1006. {
  1007. "url": "https://www.patreon.com/phpdoctrine",
  1008. "type": "patreon"
  1009. },
  1010. {
  1011. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1012. "type": "tidelift"
  1013. }
  1014. ],
  1015. "time": "2024-02-18T20:23:39+00:00"
  1016. },
  1017. {
  1018. "name": "doctrine/lexer",
  1019. "version": "1.2.3",
  1020. "source": {
  1021. "type": "git",
  1022. "url": "https://github.com/doctrine/lexer.git",
  1023. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1024. },
  1025. "dist": {
  1026. "type": "zip",
  1027. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1028. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1029. "shasum": ""
  1030. },
  1031. "require": {
  1032. "php": "^7.1 || ^8.0"
  1033. },
  1034. "require-dev": {
  1035. "doctrine/coding-standard": "^9.0",
  1036. "phpstan/phpstan": "^1.3",
  1037. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1038. "vimeo/psalm": "^4.11"
  1039. },
  1040. "type": "library",
  1041. "autoload": {
  1042. "psr-4": {
  1043. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1044. }
  1045. },
  1046. "notification-url": "https://packagist.org/downloads/",
  1047. "license": [
  1048. "MIT"
  1049. ],
  1050. "authors": [
  1051. {
  1052. "name": "Guilherme Blanco",
  1053. "email": "guilhermeblanco@gmail.com"
  1054. },
  1055. {
  1056. "name": "Roman Borschel",
  1057. "email": "roman@code-factory.org"
  1058. },
  1059. {
  1060. "name": "Johannes Schmitt",
  1061. "email": "schmittjoh@gmail.com"
  1062. }
  1063. ],
  1064. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1065. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1066. "keywords": [
  1067. "annotations",
  1068. "docblock",
  1069. "lexer",
  1070. "parser",
  1071. "php"
  1072. ],
  1073. "support": {
  1074. "issues": "https://github.com/doctrine/lexer/issues",
  1075. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1076. },
  1077. "funding": [
  1078. {
  1079. "url": "https://www.doctrine-project.org/sponsorship.html",
  1080. "type": "custom"
  1081. },
  1082. {
  1083. "url": "https://www.patreon.com/phpdoctrine",
  1084. "type": "patreon"
  1085. },
  1086. {
  1087. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1088. "type": "tidelift"
  1089. }
  1090. ],
  1091. "time": "2022-02-28T11:07:21+00:00"
  1092. },
  1093. {
  1094. "name": "dompdf/dompdf",
  1095. "version": "v1.2.2",
  1096. "source": {
  1097. "type": "git",
  1098. "url": "https://github.com/dompdf/dompdf.git",
  1099. "reference": "5031045d9640b38cfc14aac9667470df09c9e090"
  1100. },
  1101. "dist": {
  1102. "type": "zip",
  1103. "url": "https://api.github.com/repos/dompdf/dompdf/zipball/5031045d9640b38cfc14aac9667470df09c9e090",
  1104. "reference": "5031045d9640b38cfc14aac9667470df09c9e090",
  1105. "shasum": ""
  1106. },
  1107. "require": {
  1108. "ext-dom": "*",
  1109. "ext-mbstring": "*",
  1110. "phenx/php-font-lib": "^0.5.4",
  1111. "phenx/php-svg-lib": "^0.3.3 || ^0.4.0",
  1112. "php": "^7.1 || ^8.0"
  1113. },
  1114. "require-dev": {
  1115. "ext-json": "*",
  1116. "ext-zip": "*",
  1117. "mockery/mockery": "^1.3",
  1118. "phpunit/phpunit": "^7.5 || ^8 || ^9",
  1119. "squizlabs/php_codesniffer": "^3.5"
  1120. },
  1121. "suggest": {
  1122. "ext-gd": "Needed to process images",
  1123. "ext-gmagick": "Improves image processing performance",
  1124. "ext-imagick": "Improves image processing performance",
  1125. "ext-zlib": "Needed for pdf stream compression"
  1126. },
  1127. "type": "library",
  1128. "autoload": {
  1129. "psr-4": {
  1130. "Dompdf\\": "src/"
  1131. },
  1132. "classmap": [
  1133. "lib/"
  1134. ]
  1135. },
  1136. "notification-url": "https://packagist.org/downloads/",
  1137. "license": [
  1138. "LGPL-2.1"
  1139. ],
  1140. "authors": [
  1141. {
  1142. "name": "Fabien Ménager",
  1143. "email": "fabien.menager@gmail.com"
  1144. },
  1145. {
  1146. "name": "Brian Sweeney",
  1147. "email": "eclecticgeek@gmail.com"
  1148. },
  1149. {
  1150. "name": "Gabriel Bull",
  1151. "email": "me@gabrielbull.com"
  1152. }
  1153. ],
  1154. "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
  1155. "homepage": "https://github.com/dompdf/dompdf",
  1156. "support": {
  1157. "issues": "https://github.com/dompdf/dompdf/issues",
  1158. "source": "https://github.com/dompdf/dompdf/tree/v1.2.2"
  1159. },
  1160. "time": "2022-04-27T13:50:54+00:00"
  1161. },
  1162. {
  1163. "name": "dragonmantank/cron-expression",
  1164. "version": "v3.3.3",
  1165. "source": {
  1166. "type": "git",
  1167. "url": "https://github.com/dragonmantank/cron-expression.git",
  1168. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  1169. },
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1173. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "php": "^7.2|^8.0",
  1178. "webmozart/assert": "^1.0"
  1179. },
  1180. "replace": {
  1181. "mtdowling/cron-expression": "^1.0"
  1182. },
  1183. "require-dev": {
  1184. "phpstan/extension-installer": "^1.0",
  1185. "phpstan/phpstan": "^1.0",
  1186. "phpstan/phpstan-webmozart-assert": "^1.0",
  1187. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1188. },
  1189. "type": "library",
  1190. "autoload": {
  1191. "psr-4": {
  1192. "Cron\\": "src/Cron/"
  1193. }
  1194. },
  1195. "notification-url": "https://packagist.org/downloads/",
  1196. "license": [
  1197. "MIT"
  1198. ],
  1199. "authors": [
  1200. {
  1201. "name": "Chris Tankersley",
  1202. "email": "chris@ctankersley.com",
  1203. "homepage": "https://github.com/dragonmantank"
  1204. }
  1205. ],
  1206. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1207. "keywords": [
  1208. "cron",
  1209. "schedule"
  1210. ],
  1211. "support": {
  1212. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1213. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1214. },
  1215. "funding": [
  1216. {
  1217. "url": "https://github.com/dragonmantank",
  1218. "type": "github"
  1219. }
  1220. ],
  1221. "time": "2023-08-10T19:36:49+00:00"
  1222. },
  1223. {
  1224. "name": "egulias/email-validator",
  1225. "version": "2.1.25",
  1226. "source": {
  1227. "type": "git",
  1228. "url": "https://github.com/egulias/EmailValidator.git",
  1229. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1230. },
  1231. "dist": {
  1232. "type": "zip",
  1233. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1234. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1235. "shasum": ""
  1236. },
  1237. "require": {
  1238. "doctrine/lexer": "^1.0.1",
  1239. "php": ">=5.5",
  1240. "symfony/polyfill-intl-idn": "^1.10"
  1241. },
  1242. "require-dev": {
  1243. "dominicsayers/isemail": "^3.0.7",
  1244. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1245. "satooshi/php-coveralls": "^1.0.1"
  1246. },
  1247. "suggest": {
  1248. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1249. },
  1250. "type": "library",
  1251. "extra": {
  1252. "branch-alias": {
  1253. "dev-master": "2.1.x-dev"
  1254. }
  1255. },
  1256. "autoload": {
  1257. "psr-4": {
  1258. "Egulias\\EmailValidator\\": "src"
  1259. }
  1260. },
  1261. "notification-url": "https://packagist.org/downloads/",
  1262. "license": [
  1263. "MIT"
  1264. ],
  1265. "authors": [
  1266. {
  1267. "name": "Eduardo Gulias Davis"
  1268. }
  1269. ],
  1270. "description": "A library for validating emails against several RFCs",
  1271. "homepage": "https://github.com/egulias/EmailValidator",
  1272. "keywords": [
  1273. "email",
  1274. "emailvalidation",
  1275. "emailvalidator",
  1276. "validation",
  1277. "validator"
  1278. ],
  1279. "support": {
  1280. "issues": "https://github.com/egulias/EmailValidator/issues",
  1281. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1282. },
  1283. "funding": [
  1284. {
  1285. "url": "https://github.com/egulias",
  1286. "type": "github"
  1287. }
  1288. ],
  1289. "time": "2020-12-29T14:50:06+00:00"
  1290. },
  1291. {
  1292. "name": "elasticsearch/elasticsearch",
  1293. "version": "v7.17.2",
  1294. "source": {
  1295. "type": "git",
  1296. "url": "https://github.com/elastic/elasticsearch-php.git",
  1297. "reference": "2d302233f2bb0926812d82823bb820d405e130fc"
  1298. },
  1299. "dist": {
  1300. "type": "zip",
  1301. "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/2d302233f2bb0926812d82823bb820d405e130fc",
  1302. "reference": "2d302233f2bb0926812d82823bb820d405e130fc",
  1303. "shasum": ""
  1304. },
  1305. "require": {
  1306. "ext-json": ">=1.3.7",
  1307. "ezimuel/ringphp": "^1.1.2",
  1308. "php": "^7.3 || ^8.0",
  1309. "psr/log": "^1|^2|^3"
  1310. },
  1311. "require-dev": {
  1312. "ext-yaml": "*",
  1313. "ext-zip": "*",
  1314. "mockery/mockery": "^1.2",
  1315. "phpstan/phpstan": "^1.10",
  1316. "phpunit/phpunit": "^9.3",
  1317. "squizlabs/php_codesniffer": "^3.4",
  1318. "symfony/finder": "~4.0"
  1319. },
  1320. "suggest": {
  1321. "ext-curl": "*",
  1322. "monolog/monolog": "Allows for client-level logging and tracing"
  1323. },
  1324. "type": "library",
  1325. "autoload": {
  1326. "files": [
  1327. "src/autoload.php"
  1328. ],
  1329. "psr-4": {
  1330. "Elasticsearch\\": "src/Elasticsearch/"
  1331. }
  1332. },
  1333. "notification-url": "https://packagist.org/downloads/",
  1334. "license": [
  1335. "Apache-2.0",
  1336. "LGPL-2.1-only"
  1337. ],
  1338. "authors": [
  1339. {
  1340. "name": "Zachary Tong"
  1341. },
  1342. {
  1343. "name": "Enrico Zimuel"
  1344. }
  1345. ],
  1346. "description": "PHP Client for Elasticsearch",
  1347. "keywords": [
  1348. "client",
  1349. "elasticsearch",
  1350. "search"
  1351. ],
  1352. "support": {
  1353. "issues": "https://github.com/elastic/elasticsearch-php/issues",
  1354. "source": "https://github.com/elastic/elasticsearch-php/tree/v7.17.2"
  1355. },
  1356. "time": "2023-04-21T15:31:12+00:00"
  1357. },
  1358. {
  1359. "name": "eusonlito/laravel-meta",
  1360. "version": "v3.3.0",
  1361. "source": {
  1362. "type": "git",
  1363. "url": "https://github.com/eusonlito/laravel-Meta.git",
  1364. "reference": "00f5f3e58b3d3bd381ebbd3f3e1e1df02f0a9367"
  1365. },
  1366. "dist": {
  1367. "type": "zip",
  1368. "url": "https://api.github.com/repos/eusonlito/laravel-Meta/zipball/00f5f3e58b3d3bd381ebbd3f3e1e1df02f0a9367",
  1369. "reference": "00f5f3e58b3d3bd381ebbd3f3e1e1df02f0a9367",
  1370. "shasum": ""
  1371. },
  1372. "require": {
  1373. "php": ">=5.6"
  1374. },
  1375. "require-dev": {
  1376. "phpunit/phpunit": "^9.3"
  1377. },
  1378. "type": "library",
  1379. "extra": {
  1380. "laravel": {
  1381. "providers": [
  1382. "Eusonlito\\LaravelMeta\\MetaServiceProvider"
  1383. ],
  1384. "aliases": {
  1385. "Meta": "Eusonlito\\LaravelMeta\\Facade"
  1386. }
  1387. }
  1388. },
  1389. "autoload": {
  1390. "psr-4": {
  1391. "Eusonlito\\LaravelMeta\\": "src/Eusonlito/LaravelMeta/"
  1392. }
  1393. },
  1394. "notification-url": "https://packagist.org/downloads/",
  1395. "license": [
  1396. "MIT"
  1397. ],
  1398. "authors": [
  1399. {
  1400. "name": "Lito",
  1401. "email": "lito@eordes.com"
  1402. }
  1403. ],
  1404. "description": "A package to manage Header Meta Tags",
  1405. "keywords": [
  1406. "head",
  1407. "laravel",
  1408. "meta",
  1409. "tags"
  1410. ],
  1411. "support": {
  1412. "issues": "https://github.com/eusonlito/laravel-Meta/issues",
  1413. "source": "https://github.com/eusonlito/laravel-Meta/tree/v3.3.0"
  1414. },
  1415. "time": "2023-09-03T12:07:38+00:00"
  1416. },
  1417. {
  1418. "name": "ezimuel/guzzlestreams",
  1419. "version": "3.1.0",
  1420. "source": {
  1421. "type": "git",
  1422. "url": "https://github.com/ezimuel/guzzlestreams.git",
  1423. "reference": "b4b5a025dfee70d6cd34c780e07330eb93d5b997"
  1424. },
  1425. "dist": {
  1426. "type": "zip",
  1427. "url": "https://api.github.com/repos/ezimuel/guzzlestreams/zipball/b4b5a025dfee70d6cd34c780e07330eb93d5b997",
  1428. "reference": "b4b5a025dfee70d6cd34c780e07330eb93d5b997",
  1429. "shasum": ""
  1430. },
  1431. "require": {
  1432. "php": ">=5.4.0"
  1433. },
  1434. "require-dev": {
  1435. "phpunit/phpunit": "~9.0"
  1436. },
  1437. "type": "library",
  1438. "extra": {
  1439. "branch-alias": {
  1440. "dev-master": "3.0-dev"
  1441. }
  1442. },
  1443. "autoload": {
  1444. "psr-4": {
  1445. "GuzzleHttp\\Stream\\": "src/"
  1446. }
  1447. },
  1448. "notification-url": "https://packagist.org/downloads/",
  1449. "license": [
  1450. "MIT"
  1451. ],
  1452. "authors": [
  1453. {
  1454. "name": "Michael Dowling",
  1455. "email": "mtdowling@gmail.com",
  1456. "homepage": "https://github.com/mtdowling"
  1457. }
  1458. ],
  1459. "description": "Fork of guzzle/streams (abandoned) to be used with elasticsearch-php",
  1460. "homepage": "http://guzzlephp.org/",
  1461. "keywords": [
  1462. "Guzzle",
  1463. "stream"
  1464. ],
  1465. "support": {
  1466. "source": "https://github.com/ezimuel/guzzlestreams/tree/3.1.0"
  1467. },
  1468. "time": "2022-10-24T12:58:50+00:00"
  1469. },
  1470. {
  1471. "name": "ezimuel/ringphp",
  1472. "version": "1.2.2",
  1473. "source": {
  1474. "type": "git",
  1475. "url": "https://github.com/ezimuel/ringphp.git",
  1476. "reference": "7887fc8488013065f72f977dcb281994f5fde9f4"
  1477. },
  1478. "dist": {
  1479. "type": "zip",
  1480. "url": "https://api.github.com/repos/ezimuel/ringphp/zipball/7887fc8488013065f72f977dcb281994f5fde9f4",
  1481. "reference": "7887fc8488013065f72f977dcb281994f5fde9f4",
  1482. "shasum": ""
  1483. },
  1484. "require": {
  1485. "ezimuel/guzzlestreams": "^3.0.1",
  1486. "php": ">=5.4.0",
  1487. "react/promise": "~2.0"
  1488. },
  1489. "replace": {
  1490. "guzzlehttp/ringphp": "self.version"
  1491. },
  1492. "require-dev": {
  1493. "ext-curl": "*",
  1494. "phpunit/phpunit": "~9.0"
  1495. },
  1496. "suggest": {
  1497. "ext-curl": "Guzzle will use specific adapters if cURL is present"
  1498. },
  1499. "type": "library",
  1500. "extra": {
  1501. "branch-alias": {
  1502. "dev-master": "1.1-dev"
  1503. }
  1504. },
  1505. "autoload": {
  1506. "psr-4": {
  1507. "GuzzleHttp\\Ring\\": "src/"
  1508. }
  1509. },
  1510. "notification-url": "https://packagist.org/downloads/",
  1511. "license": [
  1512. "MIT"
  1513. ],
  1514. "authors": [
  1515. {
  1516. "name": "Michael Dowling",
  1517. "email": "mtdowling@gmail.com",
  1518. "homepage": "https://github.com/mtdowling"
  1519. }
  1520. ],
  1521. "description": "Fork of guzzle/RingPHP (abandoned) to be used with elasticsearch-php",
  1522. "support": {
  1523. "source": "https://github.com/ezimuel/ringphp/tree/1.2.2"
  1524. },
  1525. "time": "2022-12-07T11:28:53+00:00"
  1526. },
  1527. {
  1528. "name": "ezyang/htmlpurifier",
  1529. "version": "v4.17.0",
  1530. "source": {
  1531. "type": "git",
  1532. "url": "https://github.com/ezyang/htmlpurifier.git",
  1533. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c"
  1534. },
  1535. "dist": {
  1536. "type": "zip",
  1537. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  1538. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  1539. "shasum": ""
  1540. },
  1541. "require": {
  1542. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  1543. },
  1544. "require-dev": {
  1545. "cerdic/css-tidy": "^1.7 || ^2.0",
  1546. "simpletest/simpletest": "dev-master"
  1547. },
  1548. "suggest": {
  1549. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1550. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1551. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1552. "ext-tidy": "Used for pretty-printing HTML"
  1553. },
  1554. "type": "library",
  1555. "autoload": {
  1556. "files": [
  1557. "library/HTMLPurifier.composer.php"
  1558. ],
  1559. "psr-0": {
  1560. "HTMLPurifier": "library/"
  1561. },
  1562. "exclude-from-classmap": [
  1563. "/library/HTMLPurifier/Language/"
  1564. ]
  1565. },
  1566. "notification-url": "https://packagist.org/downloads/",
  1567. "license": [
  1568. "LGPL-2.1-or-later"
  1569. ],
  1570. "authors": [
  1571. {
  1572. "name": "Edward Z. Yang",
  1573. "email": "admin@htmlpurifier.org",
  1574. "homepage": "http://ezyang.com"
  1575. }
  1576. ],
  1577. "description": "Standards compliant HTML filter written in PHP",
  1578. "homepage": "http://htmlpurifier.org/",
  1579. "keywords": [
  1580. "html"
  1581. ],
  1582. "support": {
  1583. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1584. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.17.0"
  1585. },
  1586. "time": "2023-11-17T15:01:25+00:00"
  1587. },
  1588. {
  1589. "name": "fideloper/proxy",
  1590. "version": "4.4.2",
  1591. "source": {
  1592. "type": "git",
  1593. "url": "https://github.com/fideloper/TrustedProxy.git",
  1594. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  1595. },
  1596. "dist": {
  1597. "type": "zip",
  1598. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1599. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1600. "shasum": ""
  1601. },
  1602. "require": {
  1603. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1604. "php": ">=5.4.0"
  1605. },
  1606. "require-dev": {
  1607. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1608. "mockery/mockery": "^1.0",
  1609. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1610. },
  1611. "type": "library",
  1612. "extra": {
  1613. "laravel": {
  1614. "providers": [
  1615. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1616. ]
  1617. }
  1618. },
  1619. "autoload": {
  1620. "psr-4": {
  1621. "Fideloper\\Proxy\\": "src/"
  1622. }
  1623. },
  1624. "notification-url": "https://packagist.org/downloads/",
  1625. "license": [
  1626. "MIT"
  1627. ],
  1628. "authors": [
  1629. {
  1630. "name": "Chris Fidao",
  1631. "email": "fideloper@gmail.com"
  1632. }
  1633. ],
  1634. "description": "Set trusted proxies for Laravel",
  1635. "keywords": [
  1636. "load balancing",
  1637. "proxy",
  1638. "trusted proxy"
  1639. ],
  1640. "support": {
  1641. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1642. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  1643. },
  1644. "time": "2022-02-09T13:33:34+00:00"
  1645. },
  1646. {
  1647. "name": "firebase/php-jwt",
  1648. "version": "v5.5.1",
  1649. "source": {
  1650. "type": "git",
  1651. "url": "https://github.com/firebase/php-jwt.git",
  1652. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6"
  1653. },
  1654. "dist": {
  1655. "type": "zip",
  1656. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6",
  1657. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6",
  1658. "shasum": ""
  1659. },
  1660. "require": {
  1661. "php": ">=5.3.0"
  1662. },
  1663. "require-dev": {
  1664. "phpunit/phpunit": ">=4.8 <=9"
  1665. },
  1666. "suggest": {
  1667. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1668. },
  1669. "type": "library",
  1670. "autoload": {
  1671. "psr-4": {
  1672. "Firebase\\JWT\\": "src"
  1673. }
  1674. },
  1675. "notification-url": "https://packagist.org/downloads/",
  1676. "license": [
  1677. "BSD-3-Clause"
  1678. ],
  1679. "authors": [
  1680. {
  1681. "name": "Neuman Vong",
  1682. "email": "neuman+pear@twilio.com",
  1683. "role": "Developer"
  1684. },
  1685. {
  1686. "name": "Anant Narayanan",
  1687. "email": "anant@php.net",
  1688. "role": "Developer"
  1689. }
  1690. ],
  1691. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1692. "homepage": "https://github.com/firebase/php-jwt",
  1693. "keywords": [
  1694. "jwt",
  1695. "php"
  1696. ],
  1697. "support": {
  1698. "issues": "https://github.com/firebase/php-jwt/issues",
  1699. "source": "https://github.com/firebase/php-jwt/tree/v5.5.1"
  1700. },
  1701. "time": "2021-11-08T20:18:51+00:00"
  1702. },
  1703. {
  1704. "name": "fruitcake/laravel-cors",
  1705. "version": "v2.2.0",
  1706. "source": {
  1707. "type": "git",
  1708. "url": "https://github.com/fruitcake/laravel-cors.git",
  1709. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1710. },
  1711. "dist": {
  1712. "type": "zip",
  1713. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1714. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1715. "shasum": ""
  1716. },
  1717. "require": {
  1718. "asm89/stack-cors": "^2.0.1",
  1719. "illuminate/contracts": "^6|^7|^8|^9",
  1720. "illuminate/support": "^6|^7|^8|^9",
  1721. "php": ">=7.2"
  1722. },
  1723. "require-dev": {
  1724. "laravel/framework": "^6|^7.24|^8",
  1725. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1726. "phpunit/phpunit": "^6|^7|^8|^9",
  1727. "squizlabs/php_codesniffer": "^3.5"
  1728. },
  1729. "type": "library",
  1730. "extra": {
  1731. "branch-alias": {
  1732. "dev-master": "2.1-dev"
  1733. },
  1734. "laravel": {
  1735. "providers": [
  1736. "Fruitcake\\Cors\\CorsServiceProvider"
  1737. ]
  1738. }
  1739. },
  1740. "autoload": {
  1741. "psr-4": {
  1742. "Fruitcake\\Cors\\": "src/"
  1743. }
  1744. },
  1745. "notification-url": "https://packagist.org/downloads/",
  1746. "license": [
  1747. "MIT"
  1748. ],
  1749. "authors": [
  1750. {
  1751. "name": "Fruitcake",
  1752. "homepage": "https://fruitcake.nl"
  1753. },
  1754. {
  1755. "name": "Barry vd. Heuvel",
  1756. "email": "barryvdh@gmail.com"
  1757. }
  1758. ],
  1759. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1760. "keywords": [
  1761. "api",
  1762. "cors",
  1763. "crossdomain",
  1764. "laravel"
  1765. ],
  1766. "support": {
  1767. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1768. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1769. },
  1770. "funding": [
  1771. {
  1772. "url": "https://fruitcake.nl",
  1773. "type": "custom"
  1774. },
  1775. {
  1776. "url": "https://github.com/barryvdh",
  1777. "type": "github"
  1778. }
  1779. ],
  1780. "abandoned": true,
  1781. "time": "2022-02-23T14:25:13+00:00"
  1782. },
  1783. {
  1784. "name": "gettext/gettext",
  1785. "version": "v3.6.1",
  1786. "source": {
  1787. "type": "git",
  1788. "url": "https://github.com/php-gettext/Gettext.git",
  1789. "reference": "cd3be64443551e3a693117c4bccbe53e36282456"
  1790. },
  1791. "dist": {
  1792. "type": "zip",
  1793. "url": "https://api.github.com/repos/php-gettext/Gettext/zipball/cd3be64443551e3a693117c4bccbe53e36282456",
  1794. "reference": "cd3be64443551e3a693117c4bccbe53e36282456",
  1795. "shasum": ""
  1796. },
  1797. "require": {
  1798. "gettext/languages": "2.*",
  1799. "php": ">=5.3.0"
  1800. },
  1801. "require-dev": {
  1802. "illuminate/view": "*",
  1803. "symfony/yaml": "~2",
  1804. "twig/extensions": "*",
  1805. "twig/twig": "*"
  1806. },
  1807. "suggest": {
  1808. "illuminate/view": "Is necessary if you want to use the Blade extractor",
  1809. "symfony/yaml": "Is necessary if you want to use the Yaml extractor/generator",
  1810. "twig/extensions": "Is necessary if you want to use the Twig extractor",
  1811. "twig/twig": "Is necessary if you want to use the Twig extractor"
  1812. },
  1813. "type": "library",
  1814. "autoload": {
  1815. "psr-4": {
  1816. "Gettext\\": "src"
  1817. }
  1818. },
  1819. "notification-url": "https://packagist.org/downloads/",
  1820. "license": [
  1821. "MIT"
  1822. ],
  1823. "authors": [
  1824. {
  1825. "name": "Oscar Otero",
  1826. "email": "oom@oscarotero.com",
  1827. "homepage": "http://oscarotero.com",
  1828. "role": "Developer"
  1829. }
  1830. ],
  1831. "description": "PHP gettext manager",
  1832. "homepage": "https://github.com/oscarotero/Gettext",
  1833. "keywords": [
  1834. "JS",
  1835. "gettext",
  1836. "i18n",
  1837. "mo",
  1838. "po",
  1839. "translation"
  1840. ],
  1841. "support": {
  1842. "email": "oom@oscarotero.com",
  1843. "issues": "https://github.com/oscarotero/Gettext/issues",
  1844. "source": "https://github.com/php-gettext/Gettext/tree/v3.6.1"
  1845. },
  1846. "time": "2016-08-01T18:09:57+00:00"
  1847. },
  1848. {
  1849. "name": "gettext/languages",
  1850. "version": "2.10.0",
  1851. "source": {
  1852. "type": "git",
  1853. "url": "https://github.com/php-gettext/Languages.git",
  1854. "reference": "4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab"
  1855. },
  1856. "dist": {
  1857. "type": "zip",
  1858. "url": "https://api.github.com/repos/php-gettext/Languages/zipball/4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab",
  1859. "reference": "4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab",
  1860. "shasum": ""
  1861. },
  1862. "require": {
  1863. "php": ">=5.3"
  1864. },
  1865. "require-dev": {
  1866. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.4"
  1867. },
  1868. "bin": [
  1869. "bin/export-plural-rules"
  1870. ],
  1871. "type": "library",
  1872. "autoload": {
  1873. "psr-4": {
  1874. "Gettext\\Languages\\": "src/"
  1875. }
  1876. },
  1877. "notification-url": "https://packagist.org/downloads/",
  1878. "license": [
  1879. "MIT"
  1880. ],
  1881. "authors": [
  1882. {
  1883. "name": "Michele Locati",
  1884. "email": "mlocati@gmail.com",
  1885. "role": "Developer"
  1886. }
  1887. ],
  1888. "description": "gettext languages with plural rules",
  1889. "homepage": "https://github.com/php-gettext/Languages",
  1890. "keywords": [
  1891. "cldr",
  1892. "i18n",
  1893. "internationalization",
  1894. "l10n",
  1895. "language",
  1896. "languages",
  1897. "localization",
  1898. "php",
  1899. "plural",
  1900. "plural rules",
  1901. "plurals",
  1902. "translate",
  1903. "translations",
  1904. "unicode"
  1905. ],
  1906. "support": {
  1907. "issues": "https://github.com/php-gettext/Languages/issues",
  1908. "source": "https://github.com/php-gettext/Languages/tree/2.10.0"
  1909. },
  1910. "funding": [
  1911. {
  1912. "url": "https://paypal.me/mlocati",
  1913. "type": "custom"
  1914. },
  1915. {
  1916. "url": "https://github.com/mlocati",
  1917. "type": "github"
  1918. }
  1919. ],
  1920. "time": "2022-10-18T15:00:10+00:00"
  1921. },
  1922. {
  1923. "name": "google/auth",
  1924. "version": "v1.26.0",
  1925. "source": {
  1926. "type": "git",
  1927. "url": "https://github.com/googleapis/google-auth-library-php.git",
  1928. "reference": "f1f0d0319e2e7750ebfaa523c78819792a9ed9f7"
  1929. },
  1930. "dist": {
  1931. "type": "zip",
  1932. "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/f1f0d0319e2e7750ebfaa523c78819792a9ed9f7",
  1933. "reference": "f1f0d0319e2e7750ebfaa523c78819792a9ed9f7",
  1934. "shasum": ""
  1935. },
  1936. "require": {
  1937. "firebase/php-jwt": "^5.5||^6.0",
  1938. "guzzlehttp/guzzle": "^6.2.1|^7.0",
  1939. "guzzlehttp/psr7": "^1.7|^2.0",
  1940. "php": "^7.1||^8.0",
  1941. "psr/cache": "^1.0|^2.0|^3.0",
  1942. "psr/http-message": "^1.0"
  1943. },
  1944. "require-dev": {
  1945. "guzzlehttp/promises": "0.1.1|^1.3",
  1946. "kelvinmo/simplejwt": "0.7.0",
  1947. "phpseclib/phpseclib": "^2.0.31||^3.0",
  1948. "phpspec/prophecy-phpunit": "^1.1||^2.0",
  1949. "phpunit/phpunit": "^7.5||^9.0.0",
  1950. "sebastian/comparator": ">=1.2.3",
  1951. "squizlabs/php_codesniffer": "^3.5"
  1952. },
  1953. "suggest": {
  1954. "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
  1955. },
  1956. "type": "library",
  1957. "autoload": {
  1958. "psr-4": {
  1959. "Google\\Auth\\": "src"
  1960. }
  1961. },
  1962. "notification-url": "https://packagist.org/downloads/",
  1963. "license": [
  1964. "Apache-2.0"
  1965. ],
  1966. "description": "Google Auth Library for PHP",
  1967. "homepage": "http://github.com/google/google-auth-library-php",
  1968. "keywords": [
  1969. "Authentication",
  1970. "google",
  1971. "oauth2"
  1972. ],
  1973. "support": {
  1974. "docs": "https://googleapis.github.io/google-auth-library-php/main/",
  1975. "issues": "https://github.com/googleapis/google-auth-library-php/issues",
  1976. "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.26.0"
  1977. },
  1978. "time": "2023-04-05T15:11:57+00:00"
  1979. },
  1980. {
  1981. "name": "google/cloud-core",
  1982. "version": "v1.49.4",
  1983. "source": {
  1984. "type": "git",
  1985. "url": "https://github.com/googleapis/google-cloud-php-core.git",
  1986. "reference": "6723a3fde6cc7a307a21ddbf7fce9cf6fab61833"
  1987. },
  1988. "dist": {
  1989. "type": "zip",
  1990. "url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/6723a3fde6cc7a307a21ddbf7fce9cf6fab61833",
  1991. "reference": "6723a3fde6cc7a307a21ddbf7fce9cf6fab61833",
  1992. "shasum": ""
  1993. },
  1994. "require": {
  1995. "google/auth": "^1.18",
  1996. "guzzlehttp/guzzle": "^5.3|^6.5.7|^7.4.4",
  1997. "guzzlehttp/promises": "^1.3",
  1998. "guzzlehttp/psr7": "^1.7|^2.0",
  1999. "monolog/monolog": "^1.1|^2.0|^3.0",
  2000. "php": ">=5.6",
  2001. "psr/http-message": "^1.0",
  2002. "rize/uri-template": "~0.3"
  2003. },
  2004. "require-dev": {
  2005. "erusev/parsedown": "^1.6",
  2006. "google/cloud-common-protos": "^0.3",
  2007. "google/gax": "^1.9",
  2008. "opis/closure": "^3",
  2009. "phpdocumentor/reflection": "^3.0||^4.0||^5.3",
  2010. "phpspec/prophecy": "^1.10.3",
  2011. "phpunit/phpunit": "^4.8|^5.0|^8.0",
  2012. "squizlabs/php_codesniffer": "2.*",
  2013. "yoast/phpunit-polyfills": "^1.0"
  2014. },
  2015. "suggest": {
  2016. "opis/closure": "May be used to serialize closures to process jobs in the batch daemon. Please require version ^3.",
  2017. "symfony/lock": "Required for the Spanner cached based session pool. Please require the following commit: 3.3.x-dev#1ba6ac9"
  2018. },
  2019. "bin": [
  2020. "bin/google-cloud-batch"
  2021. ],
  2022. "type": "library",
  2023. "extra": {
  2024. "component": {
  2025. "id": "cloud-core",
  2026. "target": "googleapis/google-cloud-php-core.git",
  2027. "path": "Core",
  2028. "entry": "src/ServiceBuilder.php"
  2029. }
  2030. },
  2031. "autoload": {
  2032. "psr-4": {
  2033. "Google\\Cloud\\Core\\": "src"
  2034. }
  2035. },
  2036. "notification-url": "https://packagist.org/downloads/",
  2037. "license": [
  2038. "Apache-2.0"
  2039. ],
  2040. "description": "Google Cloud PHP shared dependency, providing functionality useful to all components.",
  2041. "support": {
  2042. "source": "https://github.com/googleapis/google-cloud-php-core/tree/v1.49.4"
  2043. },
  2044. "time": "2023-04-07T21:48:59+00:00"
  2045. },
  2046. {
  2047. "name": "google/cloud-vision",
  2048. "version": "v1.6.5",
  2049. "source": {
  2050. "type": "git",
  2051. "url": "https://github.com/googleapis/google-cloud-php-vision.git",
  2052. "reference": "e49b477a21c112382f985ee061235b029defd996"
  2053. },
  2054. "dist": {
  2055. "type": "zip",
  2056. "url": "https://api.github.com/repos/googleapis/google-cloud-php-vision/zipball/e49b477a21c112382f985ee061235b029defd996",
  2057. "reference": "e49b477a21c112382f985ee061235b029defd996",
  2058. "shasum": ""
  2059. },
  2060. "require": {
  2061. "google/cloud-core": "^1.43",
  2062. "google/gax": "^1.1"
  2063. },
  2064. "require-dev": {
  2065. "erusev/parsedown": "^1.6",
  2066. "google/cloud-storage": "^1.12",
  2067. "phpdocumentor/reflection": "^3.0||^4.0",
  2068. "phpspec/prophecy": "^1.10.3",
  2069. "phpunit/phpunit": "^4.8|^5.0|^8.0",
  2070. "squizlabs/php_codesniffer": "2.*",
  2071. "yoast/phpunit-polyfills": "^1.0"
  2072. },
  2073. "suggest": {
  2074. "ext-grpc": "The gRPC extension enables use of the performant gRPC transport",
  2075. "ext-protobuf": "Provides a significant increase in throughput over the pure PHP protobuf implementation. See https://cloud.google.com/php/grpc for installation instructions.",
  2076. "google/cloud-storage": "Annotate images stored in Google Cloud Storage"
  2077. },
  2078. "type": "library",
  2079. "extra": {
  2080. "component": {
  2081. "id": "cloud-vision",
  2082. "target": "googleapis/google-cloud-php-vision.git",
  2083. "path": "Vision",
  2084. "entry": "src/VisionClient.php"
  2085. }
  2086. },
  2087. "autoload": {
  2088. "psr-4": {
  2089. "Google\\Cloud\\Vision\\": "src",
  2090. "GPBMetadata\\Google\\Cloud\\Vision\\": "metadata"
  2091. }
  2092. },
  2093. "notification-url": "https://packagist.org/downloads/",
  2094. "license": [
  2095. "Apache-2.0"
  2096. ],
  2097. "description": "Cloud Vision Client for PHP",
  2098. "support": {
  2099. "source": "https://github.com/googleapis/google-cloud-php-vision/tree/v1.6.5"
  2100. },
  2101. "time": "2023-03-25T14:54:11+00:00"
  2102. },
  2103. {
  2104. "name": "google/common-protos",
  2105. "version": "v3.2.0",
  2106. "source": {
  2107. "type": "git",
  2108. "url": "https://github.com/googleapis/common-protos-php.git",
  2109. "reference": "57d4ad36cc48cc0369123042908013ef2a86bb98"
  2110. },
  2111. "dist": {
  2112. "type": "zip",
  2113. "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/57d4ad36cc48cc0369123042908013ef2a86bb98",
  2114. "reference": "57d4ad36cc48cc0369123042908013ef2a86bb98",
  2115. "shasum": ""
  2116. },
  2117. "require": {
  2118. "google/protobuf": "^3.6.1"
  2119. },
  2120. "require-dev": {
  2121. "phpunit/phpunit": "^4.8.36||^8.5",
  2122. "sami/sami": "*"
  2123. },
  2124. "type": "library",
  2125. "autoload": {
  2126. "psr-4": {
  2127. "Google\\Api\\": "src/Api",
  2128. "Google\\Iam\\": "src/Iam",
  2129. "Google\\Rpc\\": "src/Rpc",
  2130. "Google\\Type\\": "src/Type",
  2131. "Google\\Cloud\\": "src/Cloud",
  2132. "GPBMetadata\\Google\\Api\\": "metadata/Api",
  2133. "GPBMetadata\\Google\\Iam\\": "metadata/Iam",
  2134. "GPBMetadata\\Google\\Rpc\\": "metadata/Rpc",
  2135. "GPBMetadata\\Google\\Type\\": "metadata/Type",
  2136. "GPBMetadata\\Google\\Cloud\\": "metadata/Cloud",
  2137. "GPBMetadata\\Google\\Logging\\": "metadata/Logging"
  2138. }
  2139. },
  2140. "notification-url": "https://packagist.org/downloads/",
  2141. "license": [
  2142. "Apache-2.0"
  2143. ],
  2144. "description": "Google API Common Protos for PHP",
  2145. "homepage": "https://github.com/googleapis/common-protos-php",
  2146. "keywords": [
  2147. "google"
  2148. ],
  2149. "support": {
  2150. "issues": "https://github.com/googleapis/common-protos-php/issues",
  2151. "source": "https://github.com/googleapis/common-protos-php/tree/v3.2.0"
  2152. },
  2153. "time": "2023-01-12T16:51:46+00:00"
  2154. },
  2155. {
  2156. "name": "google/gax",
  2157. "version": "v1.19.1",
  2158. "source": {
  2159. "type": "git",
  2160. "url": "https://github.com/googleapis/gax-php.git",
  2161. "reference": "30f6b307faa9858bf58d967664467098dbbc354f"
  2162. },
  2163. "dist": {
  2164. "type": "zip",
  2165. "url": "https://api.github.com/repos/googleapis/gax-php/zipball/30f6b307faa9858bf58d967664467098dbbc354f",
  2166. "reference": "30f6b307faa9858bf58d967664467098dbbc354f",
  2167. "shasum": ""
  2168. },
  2169. "require": {
  2170. "google/auth": "1.19.1||^1.25.0",
  2171. "google/common-protos": "^1.3.1||^2.0||^3.0",
  2172. "google/grpc-gcp": "^0.2",
  2173. "google/longrunning": "^0.2",
  2174. "google/protobuf": "^3.21.4",
  2175. "grpc/grpc": "^1.13",
  2176. "guzzlehttp/promises": "^1.3",
  2177. "guzzlehttp/psr7": "^1.7.0||^2",
  2178. "php": ">=7.0"
  2179. },
  2180. "conflict": {
  2181. "ext-protobuf": "<3.7.0"
  2182. },
  2183. "require-dev": {
  2184. "phpspec/prophecy": "^1.10",
  2185. "phpunit/phpunit": "^5.5||^8.5",
  2186. "squizlabs/php_codesniffer": "3.*",
  2187. "yoast/phpunit-polyfills": "^1.0"
  2188. },
  2189. "type": "library",
  2190. "autoload": {
  2191. "psr-4": {
  2192. "Google\\ApiCore\\": "src",
  2193. "GPBMetadata\\ApiCore\\": "metadata/ApiCore"
  2194. }
  2195. },
  2196. "notification-url": "https://packagist.org/downloads/",
  2197. "license": [
  2198. "BSD-3-Clause"
  2199. ],
  2200. "description": "Google API Core for PHP",
  2201. "homepage": "https://github.com/googleapis/gax-php",
  2202. "keywords": [
  2203. "google"
  2204. ],
  2205. "support": {
  2206. "issues": "https://github.com/googleapis/gax-php/issues",
  2207. "source": "https://github.com/googleapis/gax-php/tree/v1.19.1"
  2208. },
  2209. "time": "2023-03-16T19:58:19+00:00"
  2210. },
  2211. {
  2212. "name": "google/grpc-gcp",
  2213. "version": "v0.2.1",
  2214. "source": {
  2215. "type": "git",
  2216. "url": "https://github.com/GoogleCloudPlatform/grpc-gcp-php.git",
  2217. "reference": "899d0112812a812df7692617a59f4076f0d01719"
  2218. },
  2219. "dist": {
  2220. "type": "zip",
  2221. "url": "https://api.github.com/repos/GoogleCloudPlatform/grpc-gcp-php/zipball/899d0112812a812df7692617a59f4076f0d01719",
  2222. "reference": "899d0112812a812df7692617a59f4076f0d01719",
  2223. "shasum": ""
  2224. },
  2225. "require": {
  2226. "google/auth": "^1.3",
  2227. "google/protobuf": "^v3.3.0",
  2228. "grpc/grpc": "^v1.13.0",
  2229. "php": ">=5.5.0",
  2230. "psr/cache": "^1.0.1||^2.0.0||^3.0.0"
  2231. },
  2232. "require-dev": {
  2233. "google/cloud-spanner": "^1.7",
  2234. "phpunit/phpunit": "4.8.36"
  2235. },
  2236. "type": "library",
  2237. "autoload": {
  2238. "psr-4": {
  2239. "Grpc\\Gcp\\": "src/"
  2240. },
  2241. "classmap": [
  2242. "src/generated/"
  2243. ]
  2244. },
  2245. "notification-url": "https://packagist.org/downloads/",
  2246. "license": [
  2247. "Apache-2.0"
  2248. ],
  2249. "description": "gRPC GCP library for channel management",
  2250. "support": {
  2251. "issues": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/issues",
  2252. "source": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/tree/v0.2.1"
  2253. },
  2254. "time": "2022-10-11T15:54:47+00:00"
  2255. },
  2256. {
  2257. "name": "google/longrunning",
  2258. "version": "v0.2.6",
  2259. "source": {
  2260. "type": "git",
  2261. "url": "https://github.com/googleapis/php-longrunning.git",
  2262. "reference": "9689b4db54cf4cf8186118d9d59aa9ba35bb5842"
  2263. },
  2264. "dist": {
  2265. "type": "zip",
  2266. "url": "https://api.github.com/repos/googleapis/php-longrunning/zipball/9689b4db54cf4cf8186118d9d59aa9ba35bb5842",
  2267. "reference": "9689b4db54cf4cf8186118d9d59aa9ba35bb5842",
  2268. "shasum": ""
  2269. },
  2270. "require-dev": {
  2271. "google/gax": "^1.13.0",
  2272. "phpunit/phpunit": "^9.0"
  2273. },
  2274. "type": "library",
  2275. "extra": {
  2276. "component": {
  2277. "id": "longrunning",
  2278. "path": "LongRunning",
  2279. "entry": null,
  2280. "target": "googleapis/php-longrunning"
  2281. }
  2282. },
  2283. "autoload": {
  2284. "psr-4": {
  2285. "Google\\LongRunning\\": "src/LongRunning",
  2286. "Google\\ApiCore\\LongRunning\\": "src/ApiCore/LongRunning",
  2287. "GPBMetadata\\Google\\Longrunning\\": "metadata/Longrunning"
  2288. }
  2289. },
  2290. "notification-url": "https://packagist.org/downloads/",
  2291. "license": [
  2292. "Apache-2.0"
  2293. ],
  2294. "description": "Google LongRunning Client for PHP",
  2295. "support": {
  2296. "source": "https://github.com/googleapis/php-longrunning/tree/v0.2.6"
  2297. },
  2298. "time": "2023-04-21T14:12:59+00:00"
  2299. },
  2300. {
  2301. "name": "google/protobuf",
  2302. "version": "v3.25.4",
  2303. "source": {
  2304. "type": "git",
  2305. "url": "https://github.com/protocolbuffers/protobuf-php.git",
  2306. "reference": "749f6c8e99a7fe51d096c2db656a4af9a46a6b5e"
  2307. },
  2308. "dist": {
  2309. "type": "zip",
  2310. "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/749f6c8e99a7fe51d096c2db656a4af9a46a6b5e",
  2311. "reference": "749f6c8e99a7fe51d096c2db656a4af9a46a6b5e",
  2312. "shasum": ""
  2313. },
  2314. "require": {
  2315. "php": ">=7.0.0"
  2316. },
  2317. "require-dev": {
  2318. "phpunit/phpunit": ">=5.0.0"
  2319. },
  2320. "suggest": {
  2321. "ext-bcmath": "Need to support JSON deserialization"
  2322. },
  2323. "type": "library",
  2324. "autoload": {
  2325. "psr-4": {
  2326. "Google\\Protobuf\\": "src/Google/Protobuf",
  2327. "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf"
  2328. }
  2329. },
  2330. "notification-url": "https://packagist.org/downloads/",
  2331. "license": [
  2332. "BSD-3-Clause"
  2333. ],
  2334. "description": "proto library for PHP",
  2335. "homepage": "https://developers.google.com/protocol-buffers/",
  2336. "keywords": [
  2337. "proto"
  2338. ],
  2339. "support": {
  2340. "source": "https://github.com/protocolbuffers/protobuf-php/tree/v3.25.4"
  2341. },
  2342. "time": "2024-07-24T17:10:25+00:00"
  2343. },
  2344. {
  2345. "name": "graham-campbell/result-type",
  2346. "version": "v1.1.3",
  2347. "source": {
  2348. "type": "git",
  2349. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2350. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  2351. },
  2352. "dist": {
  2353. "type": "zip",
  2354. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  2355. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  2356. "shasum": ""
  2357. },
  2358. "require": {
  2359. "php": "^7.2.5 || ^8.0",
  2360. "phpoption/phpoption": "^1.9.3"
  2361. },
  2362. "require-dev": {
  2363. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  2364. },
  2365. "type": "library",
  2366. "autoload": {
  2367. "psr-4": {
  2368. "GrahamCampbell\\ResultType\\": "src/"
  2369. }
  2370. },
  2371. "notification-url": "https://packagist.org/downloads/",
  2372. "license": [
  2373. "MIT"
  2374. ],
  2375. "authors": [
  2376. {
  2377. "name": "Graham Campbell",
  2378. "email": "hello@gjcampbell.co.uk",
  2379. "homepage": "https://github.com/GrahamCampbell"
  2380. }
  2381. ],
  2382. "description": "An Implementation Of The Result Type",
  2383. "keywords": [
  2384. "Graham Campbell",
  2385. "GrahamCampbell",
  2386. "Result Type",
  2387. "Result-Type",
  2388. "result"
  2389. ],
  2390. "support": {
  2391. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2392. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  2393. },
  2394. "funding": [
  2395. {
  2396. "url": "https://github.com/GrahamCampbell",
  2397. "type": "github"
  2398. },
  2399. {
  2400. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2401. "type": "tidelift"
  2402. }
  2403. ],
  2404. "time": "2024-07-20T21:45:45+00:00"
  2405. },
  2406. {
  2407. "name": "grpc/grpc",
  2408. "version": "1.57.0",
  2409. "source": {
  2410. "type": "git",
  2411. "url": "https://github.com/grpc/grpc-php.git",
  2412. "reference": "b610c42022ed3a22f831439cb93802f2a4502fdf"
  2413. },
  2414. "dist": {
  2415. "type": "zip",
  2416. "url": "https://api.github.com/repos/grpc/grpc-php/zipball/b610c42022ed3a22f831439cb93802f2a4502fdf",
  2417. "reference": "b610c42022ed3a22f831439cb93802f2a4502fdf",
  2418. "shasum": ""
  2419. },
  2420. "require": {
  2421. "php": ">=7.0.0"
  2422. },
  2423. "require-dev": {
  2424. "google/auth": "^v1.3.0"
  2425. },
  2426. "suggest": {
  2427. "ext-protobuf": "For better performance, install the protobuf C extension.",
  2428. "google/protobuf": "To get started using grpc quickly, install the native protobuf library."
  2429. },
  2430. "type": "library",
  2431. "autoload": {
  2432. "psr-4": {
  2433. "Grpc\\": "src/lib/"
  2434. }
  2435. },
  2436. "notification-url": "https://packagist.org/downloads/",
  2437. "license": [
  2438. "Apache-2.0"
  2439. ],
  2440. "description": "gRPC library for PHP",
  2441. "homepage": "https://grpc.io",
  2442. "keywords": [
  2443. "rpc"
  2444. ],
  2445. "support": {
  2446. "source": "https://github.com/grpc/grpc-php/tree/v1.57.0"
  2447. },
  2448. "time": "2023-08-14T23:57:54+00:00"
  2449. },
  2450. {
  2451. "name": "guzzlehttp/guzzle",
  2452. "version": "7.9.2",
  2453. "source": {
  2454. "type": "git",
  2455. "url": "https://github.com/guzzle/guzzle.git",
  2456. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  2457. },
  2458. "dist": {
  2459. "type": "zip",
  2460. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  2461. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  2462. "shasum": ""
  2463. },
  2464. "require": {
  2465. "ext-json": "*",
  2466. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  2467. "guzzlehttp/psr7": "^2.7.0",
  2468. "php": "^7.2.5 || ^8.0",
  2469. "psr/http-client": "^1.0",
  2470. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2471. },
  2472. "provide": {
  2473. "psr/http-client-implementation": "1.0"
  2474. },
  2475. "require-dev": {
  2476. "bamarni/composer-bin-plugin": "^1.8.2",
  2477. "ext-curl": "*",
  2478. "guzzle/client-integration-tests": "3.0.2",
  2479. "php-http/message-factory": "^1.1",
  2480. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  2481. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2482. },
  2483. "suggest": {
  2484. "ext-curl": "Required for CURL handler support",
  2485. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2486. "psr/log": "Required for using the Log middleware"
  2487. },
  2488. "type": "library",
  2489. "extra": {
  2490. "bamarni-bin": {
  2491. "bin-links": true,
  2492. "forward-command": false
  2493. }
  2494. },
  2495. "autoload": {
  2496. "files": [
  2497. "src/functions_include.php"
  2498. ],
  2499. "psr-4": {
  2500. "GuzzleHttp\\": "src/"
  2501. }
  2502. },
  2503. "notification-url": "https://packagist.org/downloads/",
  2504. "license": [
  2505. "MIT"
  2506. ],
  2507. "authors": [
  2508. {
  2509. "name": "Graham Campbell",
  2510. "email": "hello@gjcampbell.co.uk",
  2511. "homepage": "https://github.com/GrahamCampbell"
  2512. },
  2513. {
  2514. "name": "Michael Dowling",
  2515. "email": "mtdowling@gmail.com",
  2516. "homepage": "https://github.com/mtdowling"
  2517. },
  2518. {
  2519. "name": "Jeremy Lindblom",
  2520. "email": "jeremeamia@gmail.com",
  2521. "homepage": "https://github.com/jeremeamia"
  2522. },
  2523. {
  2524. "name": "George Mponos",
  2525. "email": "gmponos@gmail.com",
  2526. "homepage": "https://github.com/gmponos"
  2527. },
  2528. {
  2529. "name": "Tobias Nyholm",
  2530. "email": "tobias.nyholm@gmail.com",
  2531. "homepage": "https://github.com/Nyholm"
  2532. },
  2533. {
  2534. "name": "Márk Sági-Kazár",
  2535. "email": "mark.sagikazar@gmail.com",
  2536. "homepage": "https://github.com/sagikazarmark"
  2537. },
  2538. {
  2539. "name": "Tobias Schultze",
  2540. "email": "webmaster@tubo-world.de",
  2541. "homepage": "https://github.com/Tobion"
  2542. }
  2543. ],
  2544. "description": "Guzzle is a PHP HTTP client library",
  2545. "keywords": [
  2546. "client",
  2547. "curl",
  2548. "framework",
  2549. "http",
  2550. "http client",
  2551. "psr-18",
  2552. "psr-7",
  2553. "rest",
  2554. "web service"
  2555. ],
  2556. "support": {
  2557. "issues": "https://github.com/guzzle/guzzle/issues",
  2558. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  2559. },
  2560. "funding": [
  2561. {
  2562. "url": "https://github.com/GrahamCampbell",
  2563. "type": "github"
  2564. },
  2565. {
  2566. "url": "https://github.com/Nyholm",
  2567. "type": "github"
  2568. },
  2569. {
  2570. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2571. "type": "tidelift"
  2572. }
  2573. ],
  2574. "time": "2024-07-24T11:22:20+00:00"
  2575. },
  2576. {
  2577. "name": "guzzlehttp/promises",
  2578. "version": "1.5.3",
  2579. "source": {
  2580. "type": "git",
  2581. "url": "https://github.com/guzzle/promises.git",
  2582. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  2583. },
  2584. "dist": {
  2585. "type": "zip",
  2586. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  2587. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  2588. "shasum": ""
  2589. },
  2590. "require": {
  2591. "php": ">=5.5"
  2592. },
  2593. "require-dev": {
  2594. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  2595. },
  2596. "type": "library",
  2597. "autoload": {
  2598. "files": [
  2599. "src/functions_include.php"
  2600. ],
  2601. "psr-4": {
  2602. "GuzzleHttp\\Promise\\": "src/"
  2603. }
  2604. },
  2605. "notification-url": "https://packagist.org/downloads/",
  2606. "license": [
  2607. "MIT"
  2608. ],
  2609. "authors": [
  2610. {
  2611. "name": "Graham Campbell",
  2612. "email": "hello@gjcampbell.co.uk",
  2613. "homepage": "https://github.com/GrahamCampbell"
  2614. },
  2615. {
  2616. "name": "Michael Dowling",
  2617. "email": "mtdowling@gmail.com",
  2618. "homepage": "https://github.com/mtdowling"
  2619. },
  2620. {
  2621. "name": "Tobias Nyholm",
  2622. "email": "tobias.nyholm@gmail.com",
  2623. "homepage": "https://github.com/Nyholm"
  2624. },
  2625. {
  2626. "name": "Tobias Schultze",
  2627. "email": "webmaster@tubo-world.de",
  2628. "homepage": "https://github.com/Tobion"
  2629. }
  2630. ],
  2631. "description": "Guzzle promises library",
  2632. "keywords": [
  2633. "promise"
  2634. ],
  2635. "support": {
  2636. "issues": "https://github.com/guzzle/promises/issues",
  2637. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  2638. },
  2639. "funding": [
  2640. {
  2641. "url": "https://github.com/GrahamCampbell",
  2642. "type": "github"
  2643. },
  2644. {
  2645. "url": "https://github.com/Nyholm",
  2646. "type": "github"
  2647. },
  2648. {
  2649. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2650. "type": "tidelift"
  2651. }
  2652. ],
  2653. "time": "2023-05-21T12:31:43+00:00"
  2654. },
  2655. {
  2656. "name": "guzzlehttp/psr7",
  2657. "version": "2.7.0",
  2658. "source": {
  2659. "type": "git",
  2660. "url": "https://github.com/guzzle/psr7.git",
  2661. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  2662. },
  2663. "dist": {
  2664. "type": "zip",
  2665. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2666. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2667. "shasum": ""
  2668. },
  2669. "require": {
  2670. "php": "^7.2.5 || ^8.0",
  2671. "psr/http-factory": "^1.0",
  2672. "psr/http-message": "^1.1 || ^2.0",
  2673. "ralouphie/getallheaders": "^3.0"
  2674. },
  2675. "provide": {
  2676. "psr/http-factory-implementation": "1.0",
  2677. "psr/http-message-implementation": "1.0"
  2678. },
  2679. "require-dev": {
  2680. "bamarni/composer-bin-plugin": "^1.8.2",
  2681. "http-interop/http-factory-tests": "0.9.0",
  2682. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2683. },
  2684. "suggest": {
  2685. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2686. },
  2687. "type": "library",
  2688. "extra": {
  2689. "bamarni-bin": {
  2690. "bin-links": true,
  2691. "forward-command": false
  2692. }
  2693. },
  2694. "autoload": {
  2695. "psr-4": {
  2696. "GuzzleHttp\\Psr7\\": "src/"
  2697. }
  2698. },
  2699. "notification-url": "https://packagist.org/downloads/",
  2700. "license": [
  2701. "MIT"
  2702. ],
  2703. "authors": [
  2704. {
  2705. "name": "Graham Campbell",
  2706. "email": "hello@gjcampbell.co.uk",
  2707. "homepage": "https://github.com/GrahamCampbell"
  2708. },
  2709. {
  2710. "name": "Michael Dowling",
  2711. "email": "mtdowling@gmail.com",
  2712. "homepage": "https://github.com/mtdowling"
  2713. },
  2714. {
  2715. "name": "George Mponos",
  2716. "email": "gmponos@gmail.com",
  2717. "homepage": "https://github.com/gmponos"
  2718. },
  2719. {
  2720. "name": "Tobias Nyholm",
  2721. "email": "tobias.nyholm@gmail.com",
  2722. "homepage": "https://github.com/Nyholm"
  2723. },
  2724. {
  2725. "name": "Márk Sági-Kazár",
  2726. "email": "mark.sagikazar@gmail.com",
  2727. "homepage": "https://github.com/sagikazarmark"
  2728. },
  2729. {
  2730. "name": "Tobias Schultze",
  2731. "email": "webmaster@tubo-world.de",
  2732. "homepage": "https://github.com/Tobion"
  2733. },
  2734. {
  2735. "name": "Márk Sági-Kazár",
  2736. "email": "mark.sagikazar@gmail.com",
  2737. "homepage": "https://sagikazarmark.hu"
  2738. }
  2739. ],
  2740. "description": "PSR-7 message implementation that also provides common utility methods",
  2741. "keywords": [
  2742. "http",
  2743. "message",
  2744. "psr-7",
  2745. "request",
  2746. "response",
  2747. "stream",
  2748. "uri",
  2749. "url"
  2750. ],
  2751. "support": {
  2752. "issues": "https://github.com/guzzle/psr7/issues",
  2753. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  2754. },
  2755. "funding": [
  2756. {
  2757. "url": "https://github.com/GrahamCampbell",
  2758. "type": "github"
  2759. },
  2760. {
  2761. "url": "https://github.com/Nyholm",
  2762. "type": "github"
  2763. },
  2764. {
  2765. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2766. "type": "tidelift"
  2767. }
  2768. ],
  2769. "time": "2024-07-18T11:15:46+00:00"
  2770. },
  2771. {
  2772. "name": "intervention/image",
  2773. "version": "2.7.2",
  2774. "source": {
  2775. "type": "git",
  2776. "url": "https://github.com/Intervention/image.git",
  2777. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  2778. },
  2779. "dist": {
  2780. "type": "zip",
  2781. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  2782. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  2783. "shasum": ""
  2784. },
  2785. "require": {
  2786. "ext-fileinfo": "*",
  2787. "guzzlehttp/psr7": "~1.1 || ^2.0",
  2788. "php": ">=5.4.0"
  2789. },
  2790. "require-dev": {
  2791. "mockery/mockery": "~0.9.2",
  2792. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  2793. },
  2794. "suggest": {
  2795. "ext-gd": "to use GD library based image processing.",
  2796. "ext-imagick": "to use Imagick based image processing.",
  2797. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2798. },
  2799. "type": "library",
  2800. "extra": {
  2801. "branch-alias": {
  2802. "dev-master": "2.4-dev"
  2803. },
  2804. "laravel": {
  2805. "providers": [
  2806. "Intervention\\Image\\ImageServiceProvider"
  2807. ],
  2808. "aliases": {
  2809. "Image": "Intervention\\Image\\Facades\\Image"
  2810. }
  2811. }
  2812. },
  2813. "autoload": {
  2814. "psr-4": {
  2815. "Intervention\\Image\\": "src/Intervention/Image"
  2816. }
  2817. },
  2818. "notification-url": "https://packagist.org/downloads/",
  2819. "license": [
  2820. "MIT"
  2821. ],
  2822. "authors": [
  2823. {
  2824. "name": "Oliver Vogel",
  2825. "email": "oliver@intervention.io",
  2826. "homepage": "https://intervention.io/"
  2827. }
  2828. ],
  2829. "description": "Image handling and manipulation library with support for Laravel integration",
  2830. "homepage": "http://image.intervention.io/",
  2831. "keywords": [
  2832. "gd",
  2833. "image",
  2834. "imagick",
  2835. "laravel",
  2836. "thumbnail",
  2837. "watermark"
  2838. ],
  2839. "support": {
  2840. "issues": "https://github.com/Intervention/image/issues",
  2841. "source": "https://github.com/Intervention/image/tree/2.7.2"
  2842. },
  2843. "funding": [
  2844. {
  2845. "url": "https://paypal.me/interventionio",
  2846. "type": "custom"
  2847. },
  2848. {
  2849. "url": "https://github.com/Intervention",
  2850. "type": "github"
  2851. }
  2852. ],
  2853. "time": "2022-05-21T17:30:32+00:00"
  2854. },
  2855. {
  2856. "name": "jaybizzle/crawler-detect",
  2857. "version": "v1.2.119",
  2858. "source": {
  2859. "type": "git",
  2860. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  2861. "reference": "275002e22b0333c15a7c6792fdae5d5deefc9ef0"
  2862. },
  2863. "dist": {
  2864. "type": "zip",
  2865. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/275002e22b0333c15a7c6792fdae5d5deefc9ef0",
  2866. "reference": "275002e22b0333c15a7c6792fdae5d5deefc9ef0",
  2867. "shasum": ""
  2868. },
  2869. "require": {
  2870. "php": ">=5.3.0"
  2871. },
  2872. "require-dev": {
  2873. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  2874. },
  2875. "type": "library",
  2876. "autoload": {
  2877. "psr-4": {
  2878. "Jaybizzle\\CrawlerDetect\\": "src/"
  2879. }
  2880. },
  2881. "notification-url": "https://packagist.org/downloads/",
  2882. "license": [
  2883. "MIT"
  2884. ],
  2885. "authors": [
  2886. {
  2887. "name": "Mark Beech",
  2888. "email": "m@rkbee.ch",
  2889. "role": "Developer"
  2890. }
  2891. ],
  2892. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  2893. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  2894. "keywords": [
  2895. "crawler",
  2896. "crawler detect",
  2897. "crawler detector",
  2898. "crawlerdetect",
  2899. "php crawler detect"
  2900. ],
  2901. "support": {
  2902. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  2903. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.119"
  2904. },
  2905. "time": "2024-06-07T07:58:43+00:00"
  2906. },
  2907. {
  2908. "name": "jenssegers/agent",
  2909. "version": "v2.6.4",
  2910. "source": {
  2911. "type": "git",
  2912. "url": "https://github.com/jenssegers/agent.git",
  2913. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  2914. },
  2915. "dist": {
  2916. "type": "zip",
  2917. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  2918. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  2919. "shasum": ""
  2920. },
  2921. "require": {
  2922. "jaybizzle/crawler-detect": "^1.2",
  2923. "mobiledetect/mobiledetectlib": "^2.7.6",
  2924. "php": ">=5.6"
  2925. },
  2926. "require-dev": {
  2927. "php-coveralls/php-coveralls": "^2.1",
  2928. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  2929. },
  2930. "suggest": {
  2931. "illuminate/support": "Required for laravel service providers"
  2932. },
  2933. "type": "library",
  2934. "extra": {
  2935. "branch-alias": {
  2936. "dev-master": "3.0-dev"
  2937. },
  2938. "laravel": {
  2939. "providers": [
  2940. "Jenssegers\\Agent\\AgentServiceProvider"
  2941. ],
  2942. "aliases": {
  2943. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  2944. }
  2945. }
  2946. },
  2947. "autoload": {
  2948. "psr-4": {
  2949. "Jenssegers\\Agent\\": "src/"
  2950. }
  2951. },
  2952. "notification-url": "https://packagist.org/downloads/",
  2953. "license": [
  2954. "MIT"
  2955. ],
  2956. "authors": [
  2957. {
  2958. "name": "Jens Segers",
  2959. "homepage": "https://jenssegers.com"
  2960. }
  2961. ],
  2962. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  2963. "homepage": "https://github.com/jenssegers/agent",
  2964. "keywords": [
  2965. "Agent",
  2966. "browser",
  2967. "desktop",
  2968. "laravel",
  2969. "mobile",
  2970. "platform",
  2971. "user agent",
  2972. "useragent"
  2973. ],
  2974. "support": {
  2975. "issues": "https://github.com/jenssegers/agent/issues",
  2976. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  2977. },
  2978. "funding": [
  2979. {
  2980. "url": "https://github.com/jenssegers",
  2981. "type": "github"
  2982. },
  2983. {
  2984. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  2985. "type": "tidelift"
  2986. }
  2987. ],
  2988. "time": "2020-06-13T08:05:20+00:00"
  2989. },
  2990. {
  2991. "name": "laravel/framework",
  2992. "version": "v8.83.27",
  2993. "source": {
  2994. "type": "git",
  2995. "url": "https://github.com/laravel/framework.git",
  2996. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49"
  2997. },
  2998. "dist": {
  2999. "type": "zip",
  3000. "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  3001. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  3002. "shasum": ""
  3003. },
  3004. "require": {
  3005. "doctrine/inflector": "^1.4|^2.0",
  3006. "dragonmantank/cron-expression": "^3.0.2",
  3007. "egulias/email-validator": "^2.1.10",
  3008. "ext-json": "*",
  3009. "ext-mbstring": "*",
  3010. "ext-openssl": "*",
  3011. "laravel/serializable-closure": "^1.0",
  3012. "league/commonmark": "^1.3|^2.0.2",
  3013. "league/flysystem": "^1.1",
  3014. "monolog/monolog": "^2.0",
  3015. "nesbot/carbon": "^2.53.1",
  3016. "opis/closure": "^3.6",
  3017. "php": "^7.3|^8.0",
  3018. "psr/container": "^1.0",
  3019. "psr/log": "^1.0|^2.0",
  3020. "psr/simple-cache": "^1.0",
  3021. "ramsey/uuid": "^4.2.2",
  3022. "swiftmailer/swiftmailer": "^6.3",
  3023. "symfony/console": "^5.4",
  3024. "symfony/error-handler": "^5.4",
  3025. "symfony/finder": "^5.4",
  3026. "symfony/http-foundation": "^5.4",
  3027. "symfony/http-kernel": "^5.4",
  3028. "symfony/mime": "^5.4",
  3029. "symfony/process": "^5.4",
  3030. "symfony/routing": "^5.4",
  3031. "symfony/var-dumper": "^5.4",
  3032. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  3033. "vlucas/phpdotenv": "^5.4.1",
  3034. "voku/portable-ascii": "^1.6.1"
  3035. },
  3036. "conflict": {
  3037. "tightenco/collect": "<5.5.33"
  3038. },
  3039. "provide": {
  3040. "psr/container-implementation": "1.0",
  3041. "psr/simple-cache-implementation": "1.0"
  3042. },
  3043. "replace": {
  3044. "illuminate/auth": "self.version",
  3045. "illuminate/broadcasting": "self.version",
  3046. "illuminate/bus": "self.version",
  3047. "illuminate/cache": "self.version",
  3048. "illuminate/collections": "self.version",
  3049. "illuminate/config": "self.version",
  3050. "illuminate/console": "self.version",
  3051. "illuminate/container": "self.version",
  3052. "illuminate/contracts": "self.version",
  3053. "illuminate/cookie": "self.version",
  3054. "illuminate/database": "self.version",
  3055. "illuminate/encryption": "self.version",
  3056. "illuminate/events": "self.version",
  3057. "illuminate/filesystem": "self.version",
  3058. "illuminate/hashing": "self.version",
  3059. "illuminate/http": "self.version",
  3060. "illuminate/log": "self.version",
  3061. "illuminate/macroable": "self.version",
  3062. "illuminate/mail": "self.version",
  3063. "illuminate/notifications": "self.version",
  3064. "illuminate/pagination": "self.version",
  3065. "illuminate/pipeline": "self.version",
  3066. "illuminate/queue": "self.version",
  3067. "illuminate/redis": "self.version",
  3068. "illuminate/routing": "self.version",
  3069. "illuminate/session": "self.version",
  3070. "illuminate/support": "self.version",
  3071. "illuminate/testing": "self.version",
  3072. "illuminate/translation": "self.version",
  3073. "illuminate/validation": "self.version",
  3074. "illuminate/view": "self.version"
  3075. },
  3076. "require-dev": {
  3077. "aws/aws-sdk-php": "^3.198.1",
  3078. "doctrine/dbal": "^2.13.3|^3.1.4",
  3079. "filp/whoops": "^2.14.3",
  3080. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  3081. "league/flysystem-cached-adapter": "^1.0",
  3082. "mockery/mockery": "^1.4.4",
  3083. "orchestra/testbench-core": "^6.27",
  3084. "pda/pheanstalk": "^4.0",
  3085. "phpunit/phpunit": "^8.5.19|^9.5.8",
  3086. "predis/predis": "^1.1.9",
  3087. "symfony/cache": "^5.4"
  3088. },
  3089. "suggest": {
  3090. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3091. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  3092. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  3093. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  3094. "ext-bcmath": "Required to use the multiple_of validation rule.",
  3095. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3096. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3097. "ext-memcached": "Required to use the memcache cache driver.",
  3098. "ext-pcntl": "Required to use all features of the queue worker.",
  3099. "ext-posix": "Required to use all features of the queue worker.",
  3100. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  3101. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3102. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3103. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  3104. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3105. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  3106. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  3107. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  3108. "mockery/mockery": "Required to use mocking (^1.4.4).",
  3109. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3110. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  3111. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  3112. "predis/predis": "Required to use the predis connector (^1.1.9).",
  3113. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3114. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  3115. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  3116. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  3117. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  3118. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  3119. },
  3120. "type": "library",
  3121. "extra": {
  3122. "branch-alias": {
  3123. "dev-master": "8.x-dev"
  3124. }
  3125. },
  3126. "autoload": {
  3127. "files": [
  3128. "src/Illuminate/Collections/helpers.php",
  3129. "src/Illuminate/Events/functions.php",
  3130. "src/Illuminate/Foundation/helpers.php",
  3131. "src/Illuminate/Support/helpers.php"
  3132. ],
  3133. "psr-4": {
  3134. "Illuminate\\": "src/Illuminate/",
  3135. "Illuminate\\Support\\": [
  3136. "src/Illuminate/Macroable/",
  3137. "src/Illuminate/Collections/"
  3138. ]
  3139. }
  3140. },
  3141. "notification-url": "https://packagist.org/downloads/",
  3142. "license": [
  3143. "MIT"
  3144. ],
  3145. "authors": [
  3146. {
  3147. "name": "Taylor Otwell",
  3148. "email": "taylor@laravel.com"
  3149. }
  3150. ],
  3151. "description": "The Laravel Framework.",
  3152. "homepage": "https://laravel.com",
  3153. "keywords": [
  3154. "framework",
  3155. "laravel"
  3156. ],
  3157. "support": {
  3158. "issues": "https://github.com/laravel/framework/issues",
  3159. "source": "https://github.com/laravel/framework"
  3160. },
  3161. "time": "2022-12-08T15:28:55+00:00"
  3162. },
  3163. {
  3164. "name": "laravel/serializable-closure",
  3165. "version": "v1.3.4",
  3166. "source": {
  3167. "type": "git",
  3168. "url": "https://github.com/laravel/serializable-closure.git",
  3169. "reference": "61b87392d986dc49ad5ef64e75b1ff5fee24ef81"
  3170. },
  3171. "dist": {
  3172. "type": "zip",
  3173. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/61b87392d986dc49ad5ef64e75b1ff5fee24ef81",
  3174. "reference": "61b87392d986dc49ad5ef64e75b1ff5fee24ef81",
  3175. "shasum": ""
  3176. },
  3177. "require": {
  3178. "php": "^7.3|^8.0"
  3179. },
  3180. "require-dev": {
  3181. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  3182. "nesbot/carbon": "^2.61|^3.0",
  3183. "pestphp/pest": "^1.21.3",
  3184. "phpstan/phpstan": "^1.8.2",
  3185. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  3186. },
  3187. "type": "library",
  3188. "extra": {
  3189. "branch-alias": {
  3190. "dev-master": "1.x-dev"
  3191. }
  3192. },
  3193. "autoload": {
  3194. "psr-4": {
  3195. "Laravel\\SerializableClosure\\": "src/"
  3196. }
  3197. },
  3198. "notification-url": "https://packagist.org/downloads/",
  3199. "license": [
  3200. "MIT"
  3201. ],
  3202. "authors": [
  3203. {
  3204. "name": "Taylor Otwell",
  3205. "email": "taylor@laravel.com"
  3206. },
  3207. {
  3208. "name": "Nuno Maduro",
  3209. "email": "nuno@laravel.com"
  3210. }
  3211. ],
  3212. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3213. "keywords": [
  3214. "closure",
  3215. "laravel",
  3216. "serializable"
  3217. ],
  3218. "support": {
  3219. "issues": "https://github.com/laravel/serializable-closure/issues",
  3220. "source": "https://github.com/laravel/serializable-closure"
  3221. },
  3222. "time": "2024-08-02T07:48:17+00:00"
  3223. },
  3224. {
  3225. "name": "laravel/socialite",
  3226. "version": "v5.12.1",
  3227. "source": {
  3228. "type": "git",
  3229. "url": "https://github.com/laravel/socialite.git",
  3230. "reference": "7dae1b072573809f32ab6dcf4aebb57c8b3e8acf"
  3231. },
  3232. "dist": {
  3233. "type": "zip",
  3234. "url": "https://api.github.com/repos/laravel/socialite/zipball/7dae1b072573809f32ab6dcf4aebb57c8b3e8acf",
  3235. "reference": "7dae1b072573809f32ab6dcf4aebb57c8b3e8acf",
  3236. "shasum": ""
  3237. },
  3238. "require": {
  3239. "ext-json": "*",
  3240. "guzzlehttp/guzzle": "^6.0|^7.0",
  3241. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3242. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3243. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3244. "league/oauth1-client": "^1.10.1",
  3245. "php": "^7.2|^8.0"
  3246. },
  3247. "require-dev": {
  3248. "mockery/mockery": "^1.0",
  3249. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  3250. "phpstan/phpstan": "^1.10",
  3251. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  3252. },
  3253. "type": "library",
  3254. "extra": {
  3255. "branch-alias": {
  3256. "dev-master": "5.x-dev"
  3257. },
  3258. "laravel": {
  3259. "providers": [
  3260. "Laravel\\Socialite\\SocialiteServiceProvider"
  3261. ],
  3262. "aliases": {
  3263. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3264. }
  3265. }
  3266. },
  3267. "autoload": {
  3268. "psr-4": {
  3269. "Laravel\\Socialite\\": "src/"
  3270. }
  3271. },
  3272. "notification-url": "https://packagist.org/downloads/",
  3273. "license": [
  3274. "MIT"
  3275. ],
  3276. "authors": [
  3277. {
  3278. "name": "Taylor Otwell",
  3279. "email": "taylor@laravel.com"
  3280. }
  3281. ],
  3282. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3283. "homepage": "https://laravel.com",
  3284. "keywords": [
  3285. "laravel",
  3286. "oauth"
  3287. ],
  3288. "support": {
  3289. "issues": "https://github.com/laravel/socialite/issues",
  3290. "source": "https://github.com/laravel/socialite"
  3291. },
  3292. "time": "2024-02-16T08:58:20+00:00"
  3293. },
  3294. {
  3295. "name": "laravel/tinker",
  3296. "version": "v2.9.0",
  3297. "source": {
  3298. "type": "git",
  3299. "url": "https://github.com/laravel/tinker.git",
  3300. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
  3301. },
  3302. "dist": {
  3303. "type": "zip",
  3304. "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  3305. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  3306. "shasum": ""
  3307. },
  3308. "require": {
  3309. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3310. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3311. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3312. "php": "^7.2.5|^8.0",
  3313. "psy/psysh": "^0.11.1|^0.12.0",
  3314. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  3315. },
  3316. "require-dev": {
  3317. "mockery/mockery": "~1.3.3|^1.4.2",
  3318. "phpstan/phpstan": "^1.10",
  3319. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3320. },
  3321. "suggest": {
  3322. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  3323. },
  3324. "type": "library",
  3325. "extra": {
  3326. "laravel": {
  3327. "providers": [
  3328. "Laravel\\Tinker\\TinkerServiceProvider"
  3329. ]
  3330. }
  3331. },
  3332. "autoload": {
  3333. "psr-4": {
  3334. "Laravel\\Tinker\\": "src/"
  3335. }
  3336. },
  3337. "notification-url": "https://packagist.org/downloads/",
  3338. "license": [
  3339. "MIT"
  3340. ],
  3341. "authors": [
  3342. {
  3343. "name": "Taylor Otwell",
  3344. "email": "taylor@laravel.com"
  3345. }
  3346. ],
  3347. "description": "Powerful REPL for the Laravel framework.",
  3348. "keywords": [
  3349. "REPL",
  3350. "Tinker",
  3351. "laravel",
  3352. "psysh"
  3353. ],
  3354. "support": {
  3355. "issues": "https://github.com/laravel/tinker/issues",
  3356. "source": "https://github.com/laravel/tinker/tree/v2.9.0"
  3357. },
  3358. "time": "2024-01-04T16:10:04+00:00"
  3359. },
  3360. {
  3361. "name": "laravel/ui",
  3362. "version": "v3.4.6",
  3363. "source": {
  3364. "type": "git",
  3365. "url": "https://github.com/laravel/ui.git",
  3366. "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c"
  3367. },
  3368. "dist": {
  3369. "type": "zip",
  3370. "url": "https://api.github.com/repos/laravel/ui/zipball/65ec5c03f7fee2c8ecae785795b829a15be48c2c",
  3371. "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c",
  3372. "shasum": ""
  3373. },
  3374. "require": {
  3375. "illuminate/console": "^8.42|^9.0",
  3376. "illuminate/filesystem": "^8.42|^9.0",
  3377. "illuminate/support": "^8.82|^9.0",
  3378. "illuminate/validation": "^8.42|^9.0",
  3379. "php": "^7.3|^8.0"
  3380. },
  3381. "require-dev": {
  3382. "orchestra/testbench": "^6.23|^7.0"
  3383. },
  3384. "type": "library",
  3385. "extra": {
  3386. "branch-alias": {
  3387. "dev-master": "3.x-dev"
  3388. },
  3389. "laravel": {
  3390. "providers": [
  3391. "Laravel\\Ui\\UiServiceProvider"
  3392. ]
  3393. }
  3394. },
  3395. "autoload": {
  3396. "psr-4": {
  3397. "Laravel\\Ui\\": "src/",
  3398. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  3399. }
  3400. },
  3401. "notification-url": "https://packagist.org/downloads/",
  3402. "license": [
  3403. "MIT"
  3404. ],
  3405. "authors": [
  3406. {
  3407. "name": "Taylor Otwell",
  3408. "email": "taylor@laravel.com"
  3409. }
  3410. ],
  3411. "description": "Laravel UI utilities and presets.",
  3412. "keywords": [
  3413. "laravel",
  3414. "ui"
  3415. ],
  3416. "support": {
  3417. "source": "https://github.com/laravel/ui/tree/v3.4.6"
  3418. },
  3419. "time": "2022-05-20T13:38:08+00:00"
  3420. },
  3421. {
  3422. "name": "lcobucci/jwt",
  3423. "version": "3.4.6",
  3424. "source": {
  3425. "type": "git",
  3426. "url": "https://github.com/lcobucci/jwt.git",
  3427. "reference": "3ef8657a78278dfeae7707d51747251db4176240"
  3428. },
  3429. "dist": {
  3430. "type": "zip",
  3431. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/3ef8657a78278dfeae7707d51747251db4176240",
  3432. "reference": "3ef8657a78278dfeae7707d51747251db4176240",
  3433. "shasum": ""
  3434. },
  3435. "require": {
  3436. "ext-mbstring": "*",
  3437. "ext-openssl": "*",
  3438. "php": "^5.6 || ^7.0"
  3439. },
  3440. "require-dev": {
  3441. "mikey179/vfsstream": "~1.5",
  3442. "phpmd/phpmd": "~2.2",
  3443. "phpunit/php-invoker": "~1.1",
  3444. "phpunit/phpunit": "^5.7 || ^7.3",
  3445. "squizlabs/php_codesniffer": "~2.3"
  3446. },
  3447. "suggest": {
  3448. "lcobucci/clock": "*"
  3449. },
  3450. "type": "library",
  3451. "extra": {
  3452. "branch-alias": {
  3453. "dev-master": "3.1-dev"
  3454. }
  3455. },
  3456. "autoload": {
  3457. "files": [
  3458. "compat/class-aliases.php",
  3459. "compat/json-exception-polyfill.php",
  3460. "compat/lcobucci-clock-polyfill.php"
  3461. ],
  3462. "psr-4": {
  3463. "Lcobucci\\JWT\\": "src"
  3464. }
  3465. },
  3466. "notification-url": "https://packagist.org/downloads/",
  3467. "license": [
  3468. "BSD-3-Clause"
  3469. ],
  3470. "authors": [
  3471. {
  3472. "name": "Luís Otávio Cobucci Oblonczyk",
  3473. "email": "lcobucci@gmail.com",
  3474. "role": "Developer"
  3475. }
  3476. ],
  3477. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3478. "keywords": [
  3479. "JWS",
  3480. "jwt"
  3481. ],
  3482. "support": {
  3483. "issues": "https://github.com/lcobucci/jwt/issues",
  3484. "source": "https://github.com/lcobucci/jwt/tree/3.4.6"
  3485. },
  3486. "funding": [
  3487. {
  3488. "url": "https://github.com/lcobucci",
  3489. "type": "github"
  3490. },
  3491. {
  3492. "url": "https://www.patreon.com/lcobucci",
  3493. "type": "patreon"
  3494. }
  3495. ],
  3496. "time": "2021-09-28T19:18:28+00:00"
  3497. },
  3498. {
  3499. "name": "league/commonmark",
  3500. "version": "1.6.7",
  3501. "source": {
  3502. "type": "git",
  3503. "url": "https://github.com/thephpleague/commonmark.git",
  3504. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b"
  3505. },
  3506. "dist": {
  3507. "type": "zip",
  3508. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  3509. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  3510. "shasum": ""
  3511. },
  3512. "require": {
  3513. "ext-mbstring": "*",
  3514. "php": "^7.1 || ^8.0"
  3515. },
  3516. "conflict": {
  3517. "scrutinizer/ocular": "1.7.*"
  3518. },
  3519. "require-dev": {
  3520. "cebe/markdown": "~1.0",
  3521. "commonmark/commonmark.js": "0.29.2",
  3522. "erusev/parsedown": "~1.0",
  3523. "ext-json": "*",
  3524. "github/gfm": "0.29.0",
  3525. "michelf/php-markdown": "~1.4",
  3526. "mikehaertl/php-shellcommand": "^1.4",
  3527. "phpstan/phpstan": "^0.12.90",
  3528. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  3529. "scrutinizer/ocular": "^1.5",
  3530. "symfony/finder": "^4.2"
  3531. },
  3532. "bin": [
  3533. "bin/commonmark"
  3534. ],
  3535. "type": "library",
  3536. "autoload": {
  3537. "psr-4": {
  3538. "League\\CommonMark\\": "src"
  3539. }
  3540. },
  3541. "notification-url": "https://packagist.org/downloads/",
  3542. "license": [
  3543. "BSD-3-Clause"
  3544. ],
  3545. "authors": [
  3546. {
  3547. "name": "Colin O'Dell",
  3548. "email": "colinodell@gmail.com",
  3549. "homepage": "https://www.colinodell.com",
  3550. "role": "Lead Developer"
  3551. }
  3552. ],
  3553. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  3554. "homepage": "https://commonmark.thephpleague.com",
  3555. "keywords": [
  3556. "commonmark",
  3557. "flavored",
  3558. "gfm",
  3559. "github",
  3560. "github-flavored",
  3561. "markdown",
  3562. "md",
  3563. "parser"
  3564. ],
  3565. "support": {
  3566. "docs": "https://commonmark.thephpleague.com/",
  3567. "issues": "https://github.com/thephpleague/commonmark/issues",
  3568. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3569. "source": "https://github.com/thephpleague/commonmark"
  3570. },
  3571. "funding": [
  3572. {
  3573. "url": "https://www.colinodell.com/sponsor",
  3574. "type": "custom"
  3575. },
  3576. {
  3577. "url": "https://www.paypal.me/colinpodell/10.00",
  3578. "type": "custom"
  3579. },
  3580. {
  3581. "url": "https://github.com/colinodell",
  3582. "type": "github"
  3583. },
  3584. {
  3585. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3586. "type": "tidelift"
  3587. }
  3588. ],
  3589. "time": "2022-01-13T17:18:13+00:00"
  3590. },
  3591. {
  3592. "name": "league/flysystem",
  3593. "version": "1.1.10",
  3594. "source": {
  3595. "type": "git",
  3596. "url": "https://github.com/thephpleague/flysystem.git",
  3597. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  3598. },
  3599. "dist": {
  3600. "type": "zip",
  3601. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  3602. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  3603. "shasum": ""
  3604. },
  3605. "require": {
  3606. "ext-fileinfo": "*",
  3607. "league/mime-type-detection": "^1.3",
  3608. "php": "^7.2.5 || ^8.0"
  3609. },
  3610. "conflict": {
  3611. "league/flysystem-sftp": "<1.0.6"
  3612. },
  3613. "require-dev": {
  3614. "phpspec/prophecy": "^1.11.1",
  3615. "phpunit/phpunit": "^8.5.8"
  3616. },
  3617. "suggest": {
  3618. "ext-ftp": "Allows you to use FTP server storage",
  3619. "ext-openssl": "Allows you to use FTPS server storage",
  3620. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3621. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3622. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3623. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3624. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3625. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3626. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3627. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3628. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3629. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3630. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3631. },
  3632. "type": "library",
  3633. "extra": {
  3634. "branch-alias": {
  3635. "dev-master": "1.1-dev"
  3636. }
  3637. },
  3638. "autoload": {
  3639. "psr-4": {
  3640. "League\\Flysystem\\": "src/"
  3641. }
  3642. },
  3643. "notification-url": "https://packagist.org/downloads/",
  3644. "license": [
  3645. "MIT"
  3646. ],
  3647. "authors": [
  3648. {
  3649. "name": "Frank de Jonge",
  3650. "email": "info@frenky.net"
  3651. }
  3652. ],
  3653. "description": "Filesystem abstraction: Many filesystems, one API.",
  3654. "keywords": [
  3655. "Cloud Files",
  3656. "WebDAV",
  3657. "abstraction",
  3658. "aws",
  3659. "cloud",
  3660. "copy.com",
  3661. "dropbox",
  3662. "file systems",
  3663. "files",
  3664. "filesystem",
  3665. "filesystems",
  3666. "ftp",
  3667. "rackspace",
  3668. "remote",
  3669. "s3",
  3670. "sftp",
  3671. "storage"
  3672. ],
  3673. "support": {
  3674. "issues": "https://github.com/thephpleague/flysystem/issues",
  3675. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  3676. },
  3677. "funding": [
  3678. {
  3679. "url": "https://offset.earth/frankdejonge",
  3680. "type": "other"
  3681. }
  3682. ],
  3683. "time": "2022-10-04T09:16:37+00:00"
  3684. },
  3685. {
  3686. "name": "league/flysystem-aws-s3-v3",
  3687. "version": "1.0.30",
  3688. "source": {
  3689. "type": "git",
  3690. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  3691. "reference": "af286f291ebab6877bac0c359c6c2cb017eb061d"
  3692. },
  3693. "dist": {
  3694. "type": "zip",
  3695. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/af286f291ebab6877bac0c359c6c2cb017eb061d",
  3696. "reference": "af286f291ebab6877bac0c359c6c2cb017eb061d",
  3697. "shasum": ""
  3698. },
  3699. "require": {
  3700. "aws/aws-sdk-php": "^3.20.0",
  3701. "league/flysystem": "^1.0.40",
  3702. "php": ">=5.5.0"
  3703. },
  3704. "require-dev": {
  3705. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  3706. "phpspec/phpspec": "^2.0.0"
  3707. },
  3708. "type": "library",
  3709. "extra": {
  3710. "branch-alias": {
  3711. "dev-master": "1.0-dev"
  3712. }
  3713. },
  3714. "autoload": {
  3715. "psr-4": {
  3716. "League\\Flysystem\\AwsS3v3\\": "src/"
  3717. }
  3718. },
  3719. "notification-url": "https://packagist.org/downloads/",
  3720. "license": [
  3721. "MIT"
  3722. ],
  3723. "authors": [
  3724. {
  3725. "name": "Frank de Jonge",
  3726. "email": "info@frenky.net"
  3727. }
  3728. ],
  3729. "description": "Flysystem adapter for the AWS S3 SDK v3.x",
  3730. "support": {
  3731. "issues": "https://github.com/thephpleague/flysystem-aws-s3-v3/issues",
  3732. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/1.0.30"
  3733. },
  3734. "funding": [
  3735. {
  3736. "url": "https://offset.earth/frankdejonge",
  3737. "type": "custom"
  3738. },
  3739. {
  3740. "url": "https://github.com/frankdejonge",
  3741. "type": "github"
  3742. },
  3743. {
  3744. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3745. "type": "tidelift"
  3746. }
  3747. ],
  3748. "time": "2022-07-02T13:51:38+00:00"
  3749. },
  3750. {
  3751. "name": "league/mime-type-detection",
  3752. "version": "1.12.0",
  3753. "source": {
  3754. "type": "git",
  3755. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3756. "reference": "c7f2872fb273bf493811473dafc88d60ae829f48"
  3757. },
  3758. "dist": {
  3759. "type": "zip",
  3760. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/c7f2872fb273bf493811473dafc88d60ae829f48",
  3761. "reference": "c7f2872fb273bf493811473dafc88d60ae829f48",
  3762. "shasum": ""
  3763. },
  3764. "require": {
  3765. "ext-fileinfo": "*",
  3766. "php": "^7.2 || ^8.0"
  3767. },
  3768. "require-dev": {
  3769. "friendsofphp/php-cs-fixer": "^3.2",
  3770. "phpstan/phpstan": "^0.12.68",
  3771. "phpunit/phpunit": "^8.5.8 || ^9.3"
  3772. },
  3773. "type": "library",
  3774. "autoload": {
  3775. "psr-4": {
  3776. "League\\MimeTypeDetection\\": "src"
  3777. }
  3778. },
  3779. "notification-url": "https://packagist.org/downloads/",
  3780. "license": [
  3781. "MIT"
  3782. ],
  3783. "authors": [
  3784. {
  3785. "name": "Frank de Jonge",
  3786. "email": "info@frankdejonge.nl"
  3787. }
  3788. ],
  3789. "description": "Mime-type detection for Flysystem",
  3790. "support": {
  3791. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3792. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.12.0"
  3793. },
  3794. "funding": [
  3795. {
  3796. "url": "https://github.com/frankdejonge",
  3797. "type": "github"
  3798. },
  3799. {
  3800. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3801. "type": "tidelift"
  3802. }
  3803. ],
  3804. "time": "2023-08-03T07:14:11+00:00"
  3805. },
  3806. {
  3807. "name": "league/oauth1-client",
  3808. "version": "v1.10.1",
  3809. "source": {
  3810. "type": "git",
  3811. "url": "https://github.com/thephpleague/oauth1-client.git",
  3812. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  3813. },
  3814. "dist": {
  3815. "type": "zip",
  3816. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  3817. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  3818. "shasum": ""
  3819. },
  3820. "require": {
  3821. "ext-json": "*",
  3822. "ext-openssl": "*",
  3823. "guzzlehttp/guzzle": "^6.0|^7.0",
  3824. "guzzlehttp/psr7": "^1.7|^2.0",
  3825. "php": ">=7.1||>=8.0"
  3826. },
  3827. "require-dev": {
  3828. "ext-simplexml": "*",
  3829. "friendsofphp/php-cs-fixer": "^2.17",
  3830. "mockery/mockery": "^1.3.3",
  3831. "phpstan/phpstan": "^0.12.42",
  3832. "phpunit/phpunit": "^7.5||9.5"
  3833. },
  3834. "suggest": {
  3835. "ext-simplexml": "For decoding XML-based responses."
  3836. },
  3837. "type": "library",
  3838. "extra": {
  3839. "branch-alias": {
  3840. "dev-master": "1.0-dev",
  3841. "dev-develop": "2.0-dev"
  3842. }
  3843. },
  3844. "autoload": {
  3845. "psr-4": {
  3846. "League\\OAuth1\\Client\\": "src/"
  3847. }
  3848. },
  3849. "notification-url": "https://packagist.org/downloads/",
  3850. "license": [
  3851. "MIT"
  3852. ],
  3853. "authors": [
  3854. {
  3855. "name": "Ben Corlett",
  3856. "email": "bencorlett@me.com",
  3857. "homepage": "http://www.webcomm.com.au",
  3858. "role": "Developer"
  3859. }
  3860. ],
  3861. "description": "OAuth 1.0 Client Library",
  3862. "keywords": [
  3863. "Authentication",
  3864. "SSO",
  3865. "authorization",
  3866. "bitbucket",
  3867. "identity",
  3868. "idp",
  3869. "oauth",
  3870. "oauth1",
  3871. "single sign on",
  3872. "trello",
  3873. "tumblr",
  3874. "twitter"
  3875. ],
  3876. "support": {
  3877. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  3878. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  3879. },
  3880. "time": "2022-04-15T14:02:14+00:00"
  3881. },
  3882. {
  3883. "name": "maatwebsite/excel",
  3884. "version": "3.1.56",
  3885. "source": {
  3886. "type": "git",
  3887. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  3888. "reference": "0381d0225b42c3f328d90f0dd05ca071fca3953f"
  3889. },
  3890. "dist": {
  3891. "type": "zip",
  3892. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/0381d0225b42c3f328d90f0dd05ca071fca3953f",
  3893. "reference": "0381d0225b42c3f328d90f0dd05ca071fca3953f",
  3894. "shasum": ""
  3895. },
  3896. "require": {
  3897. "composer/semver": "^3.3",
  3898. "ext-json": "*",
  3899. "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0",
  3900. "php": "^7.0||^8.0",
  3901. "phpoffice/phpspreadsheet": "^1.18",
  3902. "psr/simple-cache": "^1.0||^2.0||^3.0"
  3903. },
  3904. "require-dev": {
  3905. "laravel/scout": "^7.0||^8.0||^9.0||^10.0",
  3906. "orchestra/testbench": "^6.0||^7.0||^8.0||^9.0",
  3907. "predis/predis": "^1.1"
  3908. },
  3909. "type": "library",
  3910. "extra": {
  3911. "laravel": {
  3912. "providers": [
  3913. "Maatwebsite\\Excel\\ExcelServiceProvider"
  3914. ],
  3915. "aliases": {
  3916. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  3917. }
  3918. }
  3919. },
  3920. "autoload": {
  3921. "psr-4": {
  3922. "Maatwebsite\\Excel\\": "src/"
  3923. }
  3924. },
  3925. "notification-url": "https://packagist.org/downloads/",
  3926. "license": [
  3927. "MIT"
  3928. ],
  3929. "authors": [
  3930. {
  3931. "name": "Patrick Brouwers",
  3932. "email": "patrick@spartner.nl"
  3933. }
  3934. ],
  3935. "description": "Supercharged Excel exports and imports in Laravel",
  3936. "keywords": [
  3937. "PHPExcel",
  3938. "batch",
  3939. "csv",
  3940. "excel",
  3941. "export",
  3942. "import",
  3943. "laravel",
  3944. "php",
  3945. "phpspreadsheet"
  3946. ],
  3947. "support": {
  3948. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  3949. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.56"
  3950. },
  3951. "funding": [
  3952. {
  3953. "url": "https://laravel-excel.com/commercial-support",
  3954. "type": "custom"
  3955. },
  3956. {
  3957. "url": "https://github.com/patrickbrouwers",
  3958. "type": "github"
  3959. }
  3960. ],
  3961. "time": "2024-08-19T09:40:43+00:00"
  3962. },
  3963. {
  3964. "name": "maennchen/zipstream-php",
  3965. "version": "2.1.0",
  3966. "source": {
  3967. "type": "git",
  3968. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  3969. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  3970. },
  3971. "dist": {
  3972. "type": "zip",
  3973. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  3974. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  3975. "shasum": ""
  3976. },
  3977. "require": {
  3978. "myclabs/php-enum": "^1.5",
  3979. "php": ">= 7.1",
  3980. "psr/http-message": "^1.0",
  3981. "symfony/polyfill-mbstring": "^1.0"
  3982. },
  3983. "require-dev": {
  3984. "ext-zip": "*",
  3985. "guzzlehttp/guzzle": ">= 6.3",
  3986. "mikey179/vfsstream": "^1.6",
  3987. "phpunit/phpunit": ">= 7.5"
  3988. },
  3989. "type": "library",
  3990. "autoload": {
  3991. "psr-4": {
  3992. "ZipStream\\": "src/"
  3993. }
  3994. },
  3995. "notification-url": "https://packagist.org/downloads/",
  3996. "license": [
  3997. "MIT"
  3998. ],
  3999. "authors": [
  4000. {
  4001. "name": "Paul Duncan",
  4002. "email": "pabs@pablotron.org"
  4003. },
  4004. {
  4005. "name": "Jonatan Männchen",
  4006. "email": "jonatan@maennchen.ch"
  4007. },
  4008. {
  4009. "name": "Jesse Donat",
  4010. "email": "donatj@gmail.com"
  4011. },
  4012. {
  4013. "name": "András Kolesár",
  4014. "email": "kolesar@kolesar.hu"
  4015. }
  4016. ],
  4017. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  4018. "keywords": [
  4019. "stream",
  4020. "zip"
  4021. ],
  4022. "support": {
  4023. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  4024. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.1.0"
  4025. },
  4026. "funding": [
  4027. {
  4028. "url": "https://github.com/maennchen",
  4029. "type": "github"
  4030. },
  4031. {
  4032. "url": "https://opencollective.com/zipstream",
  4033. "type": "open_collective"
  4034. }
  4035. ],
  4036. "time": "2020-05-30T13:11:16+00:00"
  4037. },
  4038. {
  4039. "name": "markbaker/complex",
  4040. "version": "3.0.2",
  4041. "source": {
  4042. "type": "git",
  4043. "url": "https://github.com/MarkBaker/PHPComplex.git",
  4044. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  4045. },
  4046. "dist": {
  4047. "type": "zip",
  4048. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  4049. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  4050. "shasum": ""
  4051. },
  4052. "require": {
  4053. "php": "^7.2 || ^8.0"
  4054. },
  4055. "require-dev": {
  4056. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  4057. "phpcompatibility/php-compatibility": "^9.3",
  4058. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  4059. "squizlabs/php_codesniffer": "^3.7"
  4060. },
  4061. "type": "library",
  4062. "autoload": {
  4063. "psr-4": {
  4064. "Complex\\": "classes/src/"
  4065. }
  4066. },
  4067. "notification-url": "https://packagist.org/downloads/",
  4068. "license": [
  4069. "MIT"
  4070. ],
  4071. "authors": [
  4072. {
  4073. "name": "Mark Baker",
  4074. "email": "mark@lange.demon.co.uk"
  4075. }
  4076. ],
  4077. "description": "PHP Class for working with complex numbers",
  4078. "homepage": "https://github.com/MarkBaker/PHPComplex",
  4079. "keywords": [
  4080. "complex",
  4081. "mathematics"
  4082. ],
  4083. "support": {
  4084. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  4085. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  4086. },
  4087. "time": "2022-12-06T16:21:08+00:00"
  4088. },
  4089. {
  4090. "name": "markbaker/matrix",
  4091. "version": "3.0.1",
  4092. "source": {
  4093. "type": "git",
  4094. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  4095. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  4096. },
  4097. "dist": {
  4098. "type": "zip",
  4099. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  4100. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  4101. "shasum": ""
  4102. },
  4103. "require": {
  4104. "php": "^7.1 || ^8.0"
  4105. },
  4106. "require-dev": {
  4107. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  4108. "phpcompatibility/php-compatibility": "^9.3",
  4109. "phpdocumentor/phpdocumentor": "2.*",
  4110. "phploc/phploc": "^4.0",
  4111. "phpmd/phpmd": "2.*",
  4112. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  4113. "sebastian/phpcpd": "^4.0",
  4114. "squizlabs/php_codesniffer": "^3.7"
  4115. },
  4116. "type": "library",
  4117. "autoload": {
  4118. "psr-4": {
  4119. "Matrix\\": "classes/src/"
  4120. }
  4121. },
  4122. "notification-url": "https://packagist.org/downloads/",
  4123. "license": [
  4124. "MIT"
  4125. ],
  4126. "authors": [
  4127. {
  4128. "name": "Mark Baker",
  4129. "email": "mark@demon-angel.eu"
  4130. }
  4131. ],
  4132. "description": "PHP Class for working with matrices",
  4133. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  4134. "keywords": [
  4135. "mathematics",
  4136. "matrix",
  4137. "vector"
  4138. ],
  4139. "support": {
  4140. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  4141. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  4142. },
  4143. "time": "2022-12-02T22:17:43+00:00"
  4144. },
  4145. {
  4146. "name": "mews/captcha",
  4147. "version": "3.3.3",
  4148. "source": {
  4149. "type": "git",
  4150. "url": "https://github.com/mewebstudio/captcha.git",
  4151. "reference": "e996a9a5638296de3e9dac41782dbdcf3d14ce11"
  4152. },
  4153. "dist": {
  4154. "type": "zip",
  4155. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/e996a9a5638296de3e9dac41782dbdcf3d14ce11",
  4156. "reference": "e996a9a5638296de3e9dac41782dbdcf3d14ce11",
  4157. "shasum": ""
  4158. },
  4159. "require": {
  4160. "ext-gd": "*",
  4161. "illuminate/config": "~5|^6|^7|^8|^9|^10|^11",
  4162. "illuminate/filesystem": "~5|^6|^7|^8|^9|^10|^11",
  4163. "illuminate/hashing": "~5|^6|^7|^8|^9|^10|^11",
  4164. "illuminate/session": "~5|^6|^7|^8|^9|^10|^11",
  4165. "illuminate/support": "~5|^6|^7|^8|^9|^10|^11",
  4166. "intervention/image": "~2.5",
  4167. "php": "^7.2|^8.1|^8.2|^8.3"
  4168. },
  4169. "require-dev": {
  4170. "mockery/mockery": "^1.0",
  4171. "phpunit/phpunit": "^8.5|^9.5.10|^10.5"
  4172. },
  4173. "type": "package",
  4174. "extra": {
  4175. "laravel": {
  4176. "providers": [
  4177. "Mews\\Captcha\\CaptchaServiceProvider"
  4178. ],
  4179. "aliases": {
  4180. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  4181. }
  4182. }
  4183. },
  4184. "autoload": {
  4185. "files": [
  4186. "src/helpers.php"
  4187. ],
  4188. "psr-4": {
  4189. "Mews\\Captcha\\": "src/"
  4190. }
  4191. },
  4192. "notification-url": "https://packagist.org/downloads/",
  4193. "license": [
  4194. "MIT"
  4195. ],
  4196. "authors": [
  4197. {
  4198. "name": "Muharrem ERİN",
  4199. "email": "me@mewebstudio.com",
  4200. "homepage": "https://github.com/mewebstudio",
  4201. "role": "Developer"
  4202. }
  4203. ],
  4204. "description": "Laravel 5/6/7/8/9/10/11 Captcha Package",
  4205. "homepage": "https://github.com/mewebstudio/captcha",
  4206. "keywords": [
  4207. "captcha",
  4208. "laravel5 Security",
  4209. "laravel6 Captcha",
  4210. "laravel6 Security"
  4211. ],
  4212. "support": {
  4213. "issues": "https://github.com/mewebstudio/captcha/issues",
  4214. "source": "https://github.com/mewebstudio/captcha/tree/3.3.3"
  4215. },
  4216. "time": "2024-03-20T16:15:48+00:00"
  4217. },
  4218. {
  4219. "name": "mguinea/laravel-robots",
  4220. "version": "3.1.1",
  4221. "source": {
  4222. "type": "git",
  4223. "url": "https://github.com/mguinea/laravel-robots.git",
  4224. "reference": "a8ef40462ca1585d70b1d51648067c15bb6071cf"
  4225. },
  4226. "dist": {
  4227. "type": "zip",
  4228. "url": "https://api.github.com/repos/mguinea/laravel-robots/zipball/a8ef40462ca1585d70b1d51648067c15bb6071cf",
  4229. "reference": "a8ef40462ca1585d70b1d51648067c15bb6071cf",
  4230. "shasum": ""
  4231. },
  4232. "require": {
  4233. "illuminate/database": "^6.0|^7.0|^8.0",
  4234. "php": ">=7.3"
  4235. },
  4236. "require-dev": {
  4237. "orchestra/testbench": "^4.0|^5.0|^6.0",
  4238. "phpunit/phpunit": "^8.0|^9.0"
  4239. },
  4240. "type": "laravel-package",
  4241. "extra": {
  4242. "laravel": {
  4243. "providers": [
  4244. "Mguinea\\Robots\\RobotsServiceProvider"
  4245. ]
  4246. }
  4247. },
  4248. "autoload": {
  4249. "psr-4": {
  4250. "Mguinea\\Robots\\": "src"
  4251. }
  4252. },
  4253. "notification-url": "https://packagist.org/downloads/",
  4254. "license": [
  4255. "MIT"
  4256. ],
  4257. "authors": [
  4258. {
  4259. "name": "Marc Guinea",
  4260. "email": "develop.marcguinea@gmail.com"
  4261. }
  4262. ],
  4263. "description": "Laravel package to manage robots in an easy way",
  4264. "homepage": "https://github.com/mguinea/laravel-robots",
  4265. "keywords": [
  4266. "laravel",
  4267. "robots"
  4268. ],
  4269. "support": {
  4270. "issues": "https://github.com/mguinea/laravel-robots/issues",
  4271. "source": "https://github.com/mguinea/laravel-robots/tree/3.1.1"
  4272. },
  4273. "time": "2021-02-22T21:06:44+00:00"
  4274. },
  4275. {
  4276. "name": "milon/barcode",
  4277. "version": "v10.0.1",
  4278. "source": {
  4279. "type": "git",
  4280. "url": "https://github.com/milon/barcode.git",
  4281. "reference": "e643a713466f0109aa3ad7d29dae4900444187a5"
  4282. },
  4283. "dist": {
  4284. "type": "zip",
  4285. "url": "https://api.github.com/repos/milon/barcode/zipball/e643a713466f0109aa3ad7d29dae4900444187a5",
  4286. "reference": "e643a713466f0109aa3ad7d29dae4900444187a5",
  4287. "shasum": ""
  4288. },
  4289. "require": {
  4290. "illuminate/support": "^7.0|^8.0|^9.0|^10.0",
  4291. "php": "^7.3 | ^8.0"
  4292. },
  4293. "type": "library",
  4294. "extra": {
  4295. "laravel": {
  4296. "providers": [
  4297. "Milon\\Barcode\\BarcodeServiceProvider"
  4298. ],
  4299. "aliases": {
  4300. "DNS1D": "Milon\\Barcode\\Facades\\DNS1DFacade",
  4301. "DNS2D": "Milon\\Barcode\\Facades\\DNS2DFacade"
  4302. }
  4303. }
  4304. },
  4305. "autoload": {
  4306. "psr-0": {
  4307. "Milon\\Barcode": "src/"
  4308. }
  4309. },
  4310. "notification-url": "https://packagist.org/downloads/",
  4311. "license": [
  4312. "LGPL-3.0"
  4313. ],
  4314. "authors": [
  4315. {
  4316. "name": "Nuruzzaman Milon",
  4317. "email": "contact@milon.im"
  4318. }
  4319. ],
  4320. "description": "Barcode generator like Qr Code, PDF417, C39, C39+, C39E, C39E+, C93, S25, S25+, I25, I25+, C128, C128A, C128B, C128C, 2-Digits UPC-Based Extention, 5-Digits UPC-Based Extention, EAN 8, EAN 13, UPC-A, UPC-E, MSI (Variation of Plessey code)",
  4321. "keywords": [
  4322. "CODABAR",
  4323. "CODE 128",
  4324. "CODE 39",
  4325. "barcode",
  4326. "datamatrix",
  4327. "ean",
  4328. "laravel",
  4329. "pdf417",
  4330. "qr code",
  4331. "qrcode"
  4332. ],
  4333. "support": {
  4334. "issues": "https://github.com/milon/barcode/issues",
  4335. "source": "https://github.com/milon/barcode/tree/v10.0.1"
  4336. },
  4337. "funding": [
  4338. {
  4339. "url": "https://paypal.me/nuruzzamanmilon",
  4340. "type": "custom"
  4341. },
  4342. {
  4343. "url": "https://github.com/milon",
  4344. "type": "github"
  4345. }
  4346. ],
  4347. "time": "2023-06-16T13:03:37+00:00"
  4348. },
  4349. {
  4350. "name": "mobiledetect/mobiledetectlib",
  4351. "version": "2.8.45",
  4352. "source": {
  4353. "type": "git",
  4354. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  4355. "reference": "96aaebcf4f50d3d2692ab81d2c5132e425bca266"
  4356. },
  4357. "dist": {
  4358. "type": "zip",
  4359. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/96aaebcf4f50d3d2692ab81d2c5132e425bca266",
  4360. "reference": "96aaebcf4f50d3d2692ab81d2c5132e425bca266",
  4361. "shasum": ""
  4362. },
  4363. "require": {
  4364. "php": ">=5.0.0"
  4365. },
  4366. "require-dev": {
  4367. "phpunit/phpunit": "~4.8.36"
  4368. },
  4369. "type": "library",
  4370. "autoload": {
  4371. "psr-0": {
  4372. "Detection": "namespaced/"
  4373. },
  4374. "classmap": [
  4375. "Mobile_Detect.php"
  4376. ]
  4377. },
  4378. "notification-url": "https://packagist.org/downloads/",
  4379. "license": [
  4380. "MIT"
  4381. ],
  4382. "authors": [
  4383. {
  4384. "name": "Serban Ghita",
  4385. "email": "serbanghita@gmail.com",
  4386. "homepage": "http://mobiledetect.net",
  4387. "role": "Developer"
  4388. }
  4389. ],
  4390. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  4391. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  4392. "keywords": [
  4393. "detect mobile devices",
  4394. "mobile",
  4395. "mobile detect",
  4396. "mobile detector",
  4397. "php mobile detect"
  4398. ],
  4399. "support": {
  4400. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  4401. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.45"
  4402. },
  4403. "funding": [
  4404. {
  4405. "url": "https://github.com/serbanghita",
  4406. "type": "github"
  4407. }
  4408. ],
  4409. "time": "2023-11-07T21:57:25+00:00"
  4410. },
  4411. {
  4412. "name": "monolog/monolog",
  4413. "version": "2.9.3",
  4414. "source": {
  4415. "type": "git",
  4416. "url": "https://github.com/Seldaek/monolog.git",
  4417. "reference": "a30bfe2e142720dfa990d0a7e573997f5d884215"
  4418. },
  4419. "dist": {
  4420. "type": "zip",
  4421. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/a30bfe2e142720dfa990d0a7e573997f5d884215",
  4422. "reference": "a30bfe2e142720dfa990d0a7e573997f5d884215",
  4423. "shasum": ""
  4424. },
  4425. "require": {
  4426. "php": ">=7.2",
  4427. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  4428. },
  4429. "provide": {
  4430. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  4431. },
  4432. "require-dev": {
  4433. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  4434. "doctrine/couchdb": "~1.0@dev",
  4435. "elasticsearch/elasticsearch": "^7 || ^8",
  4436. "ext-json": "*",
  4437. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  4438. "guzzlehttp/guzzle": "^7.4",
  4439. "guzzlehttp/psr7": "^2.2",
  4440. "mongodb/mongodb": "^1.8",
  4441. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4442. "phpspec/prophecy": "^1.15",
  4443. "phpstan/phpstan": "^1.10",
  4444. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  4445. "predis/predis": "^1.1 || ^2.0",
  4446. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  4447. "ruflin/elastica": "^7",
  4448. "swiftmailer/swiftmailer": "^5.3|^6.0",
  4449. "symfony/mailer": "^5.4 || ^6",
  4450. "symfony/mime": "^5.4 || ^6"
  4451. },
  4452. "suggest": {
  4453. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4454. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4455. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4456. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4457. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4458. "ext-mbstring": "Allow to work properly with unicode symbols",
  4459. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4460. "ext-openssl": "Required to send log messages using SSL",
  4461. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4462. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4463. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4464. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4465. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4466. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4467. },
  4468. "type": "library",
  4469. "extra": {
  4470. "branch-alias": {
  4471. "dev-main": "2.x-dev"
  4472. }
  4473. },
  4474. "autoload": {
  4475. "psr-4": {
  4476. "Monolog\\": "src/Monolog"
  4477. }
  4478. },
  4479. "notification-url": "https://packagist.org/downloads/",
  4480. "license": [
  4481. "MIT"
  4482. ],
  4483. "authors": [
  4484. {
  4485. "name": "Jordi Boggiano",
  4486. "email": "j.boggiano@seld.be",
  4487. "homepage": "https://seld.be"
  4488. }
  4489. ],
  4490. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4491. "homepage": "https://github.com/Seldaek/monolog",
  4492. "keywords": [
  4493. "log",
  4494. "logging",
  4495. "psr-3"
  4496. ],
  4497. "support": {
  4498. "issues": "https://github.com/Seldaek/monolog/issues",
  4499. "source": "https://github.com/Seldaek/monolog/tree/2.9.3"
  4500. },
  4501. "funding": [
  4502. {
  4503. "url": "https://github.com/Seldaek",
  4504. "type": "github"
  4505. },
  4506. {
  4507. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4508. "type": "tidelift"
  4509. }
  4510. ],
  4511. "time": "2024-04-12T20:52:51+00:00"
  4512. },
  4513. {
  4514. "name": "mtdowling/jmespath.php",
  4515. "version": "2.8.0",
  4516. "source": {
  4517. "type": "git",
  4518. "url": "https://github.com/jmespath/jmespath.php.git",
  4519. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  4520. },
  4521. "dist": {
  4522. "type": "zip",
  4523. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4524. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4525. "shasum": ""
  4526. },
  4527. "require": {
  4528. "php": "^7.2.5 || ^8.0",
  4529. "symfony/polyfill-mbstring": "^1.17"
  4530. },
  4531. "require-dev": {
  4532. "composer/xdebug-handler": "^3.0.3",
  4533. "phpunit/phpunit": "^8.5.33"
  4534. },
  4535. "bin": [
  4536. "bin/jp.php"
  4537. ],
  4538. "type": "library",
  4539. "extra": {
  4540. "branch-alias": {
  4541. "dev-master": "2.8-dev"
  4542. }
  4543. },
  4544. "autoload": {
  4545. "files": [
  4546. "src/JmesPath.php"
  4547. ],
  4548. "psr-4": {
  4549. "JmesPath\\": "src/"
  4550. }
  4551. },
  4552. "notification-url": "https://packagist.org/downloads/",
  4553. "license": [
  4554. "MIT"
  4555. ],
  4556. "authors": [
  4557. {
  4558. "name": "Graham Campbell",
  4559. "email": "hello@gjcampbell.co.uk",
  4560. "homepage": "https://github.com/GrahamCampbell"
  4561. },
  4562. {
  4563. "name": "Michael Dowling",
  4564. "email": "mtdowling@gmail.com",
  4565. "homepage": "https://github.com/mtdowling"
  4566. }
  4567. ],
  4568. "description": "Declaratively specify how to extract elements from a JSON document",
  4569. "keywords": [
  4570. "json",
  4571. "jsonpath"
  4572. ],
  4573. "support": {
  4574. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4575. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  4576. },
  4577. "time": "2024-09-04T18:46:31+00:00"
  4578. },
  4579. {
  4580. "name": "myclabs/php-enum",
  4581. "version": "1.8.4",
  4582. "source": {
  4583. "type": "git",
  4584. "url": "https://github.com/myclabs/php-enum.git",
  4585. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  4586. },
  4587. "dist": {
  4588. "type": "zip",
  4589. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  4590. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  4591. "shasum": ""
  4592. },
  4593. "require": {
  4594. "ext-json": "*",
  4595. "php": "^7.3 || ^8.0"
  4596. },
  4597. "require-dev": {
  4598. "phpunit/phpunit": "^9.5",
  4599. "squizlabs/php_codesniffer": "1.*",
  4600. "vimeo/psalm": "^4.6.2"
  4601. },
  4602. "type": "library",
  4603. "autoload": {
  4604. "psr-4": {
  4605. "MyCLabs\\Enum\\": "src/"
  4606. },
  4607. "classmap": [
  4608. "stubs/Stringable.php"
  4609. ]
  4610. },
  4611. "notification-url": "https://packagist.org/downloads/",
  4612. "license": [
  4613. "MIT"
  4614. ],
  4615. "authors": [
  4616. {
  4617. "name": "PHP Enum contributors",
  4618. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  4619. }
  4620. ],
  4621. "description": "PHP Enum implementation",
  4622. "homepage": "http://github.com/myclabs/php-enum",
  4623. "keywords": [
  4624. "enum"
  4625. ],
  4626. "support": {
  4627. "issues": "https://github.com/myclabs/php-enum/issues",
  4628. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  4629. },
  4630. "funding": [
  4631. {
  4632. "url": "https://github.com/mnapoli",
  4633. "type": "github"
  4634. },
  4635. {
  4636. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  4637. "type": "tidelift"
  4638. }
  4639. ],
  4640. "time": "2022-08-04T09:53:51+00:00"
  4641. },
  4642. {
  4643. "name": "nesbot/carbon",
  4644. "version": "2.72.5",
  4645. "source": {
  4646. "type": "git",
  4647. "url": "https://github.com/briannesbitt/Carbon.git",
  4648. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4649. },
  4650. "dist": {
  4651. "type": "zip",
  4652. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4653. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4654. "shasum": ""
  4655. },
  4656. "require": {
  4657. "carbonphp/carbon-doctrine-types": "*",
  4658. "ext-json": "*",
  4659. "php": "^7.1.8 || ^8.0",
  4660. "psr/clock": "^1.0",
  4661. "symfony/polyfill-mbstring": "^1.0",
  4662. "symfony/polyfill-php80": "^1.16",
  4663. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4664. },
  4665. "provide": {
  4666. "psr/clock-implementation": "1.0"
  4667. },
  4668. "require-dev": {
  4669. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4670. "doctrine/orm": "^2.7 || ^3.0",
  4671. "friendsofphp/php-cs-fixer": "^3.0",
  4672. "kylekatarnls/multi-tester": "^2.0",
  4673. "ondrejmirtes/better-reflection": "*",
  4674. "phpmd/phpmd": "^2.9",
  4675. "phpstan/extension-installer": "^1.0",
  4676. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4677. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4678. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4679. "squizlabs/php_codesniffer": "^3.4"
  4680. },
  4681. "bin": [
  4682. "bin/carbon"
  4683. ],
  4684. "type": "library",
  4685. "extra": {
  4686. "branch-alias": {
  4687. "dev-master": "3.x-dev",
  4688. "dev-2.x": "2.x-dev"
  4689. },
  4690. "laravel": {
  4691. "providers": [
  4692. "Carbon\\Laravel\\ServiceProvider"
  4693. ]
  4694. },
  4695. "phpstan": {
  4696. "includes": [
  4697. "extension.neon"
  4698. ]
  4699. }
  4700. },
  4701. "autoload": {
  4702. "psr-4": {
  4703. "Carbon\\": "src/Carbon/"
  4704. }
  4705. },
  4706. "notification-url": "https://packagist.org/downloads/",
  4707. "license": [
  4708. "MIT"
  4709. ],
  4710. "authors": [
  4711. {
  4712. "name": "Brian Nesbitt",
  4713. "email": "brian@nesbot.com",
  4714. "homepage": "https://markido.com"
  4715. },
  4716. {
  4717. "name": "kylekatarnls",
  4718. "homepage": "https://github.com/kylekatarnls"
  4719. }
  4720. ],
  4721. "description": "An API extension for DateTime that supports 281 different languages.",
  4722. "homepage": "https://carbon.nesbot.com",
  4723. "keywords": [
  4724. "date",
  4725. "datetime",
  4726. "time"
  4727. ],
  4728. "support": {
  4729. "docs": "https://carbon.nesbot.com/docs",
  4730. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4731. "source": "https://github.com/briannesbitt/Carbon"
  4732. },
  4733. "funding": [
  4734. {
  4735. "url": "https://github.com/sponsors/kylekatarnls",
  4736. "type": "github"
  4737. },
  4738. {
  4739. "url": "https://opencollective.com/Carbon#sponsor",
  4740. "type": "opencollective"
  4741. },
  4742. {
  4743. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4744. "type": "tidelift"
  4745. }
  4746. ],
  4747. "time": "2024-06-03T19:18:41+00:00"
  4748. },
  4749. {
  4750. "name": "nikic/php-parser",
  4751. "version": "v4.19.2",
  4752. "source": {
  4753. "type": "git",
  4754. "url": "https://github.com/nikic/PHP-Parser.git",
  4755. "reference": "0ed4c8949a32986043e977dbe14776c14d644c45"
  4756. },
  4757. "dist": {
  4758. "type": "zip",
  4759. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/0ed4c8949a32986043e977dbe14776c14d644c45",
  4760. "reference": "0ed4c8949a32986043e977dbe14776c14d644c45",
  4761. "shasum": ""
  4762. },
  4763. "require": {
  4764. "ext-tokenizer": "*",
  4765. "php": ">=7.1"
  4766. },
  4767. "require-dev": {
  4768. "ircmaxell/php-yacc": "^0.0.7",
  4769. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4770. },
  4771. "bin": [
  4772. "bin/php-parse"
  4773. ],
  4774. "type": "library",
  4775. "extra": {
  4776. "branch-alias": {
  4777. "dev-master": "4.9-dev"
  4778. }
  4779. },
  4780. "autoload": {
  4781. "psr-4": {
  4782. "PhpParser\\": "lib/PhpParser"
  4783. }
  4784. },
  4785. "notification-url": "https://packagist.org/downloads/",
  4786. "license": [
  4787. "BSD-3-Clause"
  4788. ],
  4789. "authors": [
  4790. {
  4791. "name": "Nikita Popov"
  4792. }
  4793. ],
  4794. "description": "A PHP parser written in PHP",
  4795. "keywords": [
  4796. "parser",
  4797. "php"
  4798. ],
  4799. "support": {
  4800. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4801. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.2"
  4802. },
  4803. "time": "2024-09-17T19:36:00+00:00"
  4804. },
  4805. {
  4806. "name": "opis/closure",
  4807. "version": "3.6.3",
  4808. "source": {
  4809. "type": "git",
  4810. "url": "https://github.com/opis/closure.git",
  4811. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  4812. },
  4813. "dist": {
  4814. "type": "zip",
  4815. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  4816. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  4817. "shasum": ""
  4818. },
  4819. "require": {
  4820. "php": "^5.4 || ^7.0 || ^8.0"
  4821. },
  4822. "require-dev": {
  4823. "jeremeamia/superclosure": "^2.0",
  4824. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  4825. },
  4826. "type": "library",
  4827. "extra": {
  4828. "branch-alias": {
  4829. "dev-master": "3.6.x-dev"
  4830. }
  4831. },
  4832. "autoload": {
  4833. "files": [
  4834. "functions.php"
  4835. ],
  4836. "psr-4": {
  4837. "Opis\\Closure\\": "src/"
  4838. }
  4839. },
  4840. "notification-url": "https://packagist.org/downloads/",
  4841. "license": [
  4842. "MIT"
  4843. ],
  4844. "authors": [
  4845. {
  4846. "name": "Marius Sarca",
  4847. "email": "marius.sarca@gmail.com"
  4848. },
  4849. {
  4850. "name": "Sorin Sarca",
  4851. "email": "sarca_sorin@hotmail.com"
  4852. }
  4853. ],
  4854. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  4855. "homepage": "https://opis.io/closure",
  4856. "keywords": [
  4857. "anonymous functions",
  4858. "closure",
  4859. "function",
  4860. "serializable",
  4861. "serialization",
  4862. "serialize"
  4863. ],
  4864. "support": {
  4865. "issues": "https://github.com/opis/closure/issues",
  4866. "source": "https://github.com/opis/closure/tree/3.6.3"
  4867. },
  4868. "time": "2022-01-27T09:35:39+00:00"
  4869. },
  4870. {
  4871. "name": "phenx/php-font-lib",
  4872. "version": "0.5.6",
  4873. "source": {
  4874. "type": "git",
  4875. "url": "https://github.com/dompdf/php-font-lib.git",
  4876. "reference": "a1681e9793040740a405ac5b189275059e2a9863"
  4877. },
  4878. "dist": {
  4879. "type": "zip",
  4880. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/a1681e9793040740a405ac5b189275059e2a9863",
  4881. "reference": "a1681e9793040740a405ac5b189275059e2a9863",
  4882. "shasum": ""
  4883. },
  4884. "require": {
  4885. "ext-mbstring": "*"
  4886. },
  4887. "require-dev": {
  4888. "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6"
  4889. },
  4890. "type": "library",
  4891. "autoload": {
  4892. "psr-4": {
  4893. "FontLib\\": "src/FontLib"
  4894. }
  4895. },
  4896. "notification-url": "https://packagist.org/downloads/",
  4897. "license": [
  4898. "LGPL-2.1-or-later"
  4899. ],
  4900. "authors": [
  4901. {
  4902. "name": "Fabien Ménager",
  4903. "email": "fabien.menager@gmail.com"
  4904. }
  4905. ],
  4906. "description": "A library to read, parse, export and make subsets of different types of font files.",
  4907. "homepage": "https://github.com/PhenX/php-font-lib",
  4908. "support": {
  4909. "issues": "https://github.com/dompdf/php-font-lib/issues",
  4910. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.6"
  4911. },
  4912. "time": "2024-01-29T14:45:26+00:00"
  4913. },
  4914. {
  4915. "name": "phenx/php-svg-lib",
  4916. "version": "0.4.1",
  4917. "source": {
  4918. "type": "git",
  4919. "url": "https://github.com/dompdf/php-svg-lib.git",
  4920. "reference": "4498b5df7b08e8469f0f8279651ea5de9626ed02"
  4921. },
  4922. "dist": {
  4923. "type": "zip",
  4924. "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/4498b5df7b08e8469f0f8279651ea5de9626ed02",
  4925. "reference": "4498b5df7b08e8469f0f8279651ea5de9626ed02",
  4926. "shasum": ""
  4927. },
  4928. "require": {
  4929. "ext-mbstring": "*",
  4930. "php": "^7.1 || ^7.2 || ^7.3 || ^7.4 || ^8.0",
  4931. "sabberworm/php-css-parser": "^8.4"
  4932. },
  4933. "require-dev": {
  4934. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  4935. },
  4936. "type": "library",
  4937. "autoload": {
  4938. "psr-4": {
  4939. "Svg\\": "src/Svg"
  4940. }
  4941. },
  4942. "notification-url": "https://packagist.org/downloads/",
  4943. "license": [
  4944. "LGPL-3.0"
  4945. ],
  4946. "authors": [
  4947. {
  4948. "name": "Fabien Ménager",
  4949. "email": "fabien.menager@gmail.com"
  4950. }
  4951. ],
  4952. "description": "A library to read, parse and export to PDF SVG files.",
  4953. "homepage": "https://github.com/PhenX/php-svg-lib",
  4954. "support": {
  4955. "issues": "https://github.com/dompdf/php-svg-lib/issues",
  4956. "source": "https://github.com/dompdf/php-svg-lib/tree/0.4.1"
  4957. },
  4958. "time": "2022-03-07T12:52:04+00:00"
  4959. },
  4960. {
  4961. "name": "phpoffice/phpspreadsheet",
  4962. "version": "1.25.2",
  4963. "source": {
  4964. "type": "git",
  4965. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  4966. "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5"
  4967. },
  4968. "dist": {
  4969. "type": "zip",
  4970. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a317a09e7def49852400a4b3eca4a4b0790ceeb5",
  4971. "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5",
  4972. "shasum": ""
  4973. },
  4974. "require": {
  4975. "ext-ctype": "*",
  4976. "ext-dom": "*",
  4977. "ext-fileinfo": "*",
  4978. "ext-gd": "*",
  4979. "ext-iconv": "*",
  4980. "ext-libxml": "*",
  4981. "ext-mbstring": "*",
  4982. "ext-simplexml": "*",
  4983. "ext-xml": "*",
  4984. "ext-xmlreader": "*",
  4985. "ext-xmlwriter": "*",
  4986. "ext-zip": "*",
  4987. "ext-zlib": "*",
  4988. "ezyang/htmlpurifier": "^4.15",
  4989. "maennchen/zipstream-php": "^2.1",
  4990. "markbaker/complex": "^3.0",
  4991. "markbaker/matrix": "^3.0",
  4992. "php": "^7.3 || ^8.0",
  4993. "psr/http-client": "^1.0",
  4994. "psr/http-factory": "^1.0",
  4995. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  4996. },
  4997. "require-dev": {
  4998. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  4999. "dompdf/dompdf": "^1.0 || ^2.0",
  5000. "friendsofphp/php-cs-fixer": "^3.2",
  5001. "mitoteam/jpgraph": "10.2.4",
  5002. "mpdf/mpdf": "8.1.1",
  5003. "phpcompatibility/php-compatibility": "^9.3",
  5004. "phpstan/phpstan": "^1.1",
  5005. "phpstan/phpstan-phpunit": "^1.0",
  5006. "phpunit/phpunit": "^8.5 || ^9.0",
  5007. "squizlabs/php_codesniffer": "^3.7",
  5008. "tecnickcom/tcpdf": "6.5"
  5009. },
  5010. "suggest": {
  5011. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  5012. "ext-intl": "PHP Internationalization Functions",
  5013. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  5014. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  5015. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  5016. },
  5017. "type": "library",
  5018. "autoload": {
  5019. "psr-4": {
  5020. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  5021. }
  5022. },
  5023. "notification-url": "https://packagist.org/downloads/",
  5024. "license": [
  5025. "MIT"
  5026. ],
  5027. "authors": [
  5028. {
  5029. "name": "Maarten Balliauw",
  5030. "homepage": "https://blog.maartenballiauw.be"
  5031. },
  5032. {
  5033. "name": "Mark Baker",
  5034. "homepage": "https://markbakeruk.net"
  5035. },
  5036. {
  5037. "name": "Franck Lefevre",
  5038. "homepage": "https://rootslabs.net"
  5039. },
  5040. {
  5041. "name": "Erik Tilt"
  5042. },
  5043. {
  5044. "name": "Adrien Crivelli"
  5045. }
  5046. ],
  5047. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  5048. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  5049. "keywords": [
  5050. "OpenXML",
  5051. "excel",
  5052. "gnumeric",
  5053. "ods",
  5054. "php",
  5055. "spreadsheet",
  5056. "xls",
  5057. "xlsx"
  5058. ],
  5059. "support": {
  5060. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  5061. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.25.2"
  5062. },
  5063. "time": "2022-09-25T17:21:01+00:00"
  5064. },
  5065. {
  5066. "name": "phpoption/phpoption",
  5067. "version": "1.9.3",
  5068. "source": {
  5069. "type": "git",
  5070. "url": "https://github.com/schmittjoh/php-option.git",
  5071. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5072. },
  5073. "dist": {
  5074. "type": "zip",
  5075. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5076. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5077. "shasum": ""
  5078. },
  5079. "require": {
  5080. "php": "^7.2.5 || ^8.0"
  5081. },
  5082. "require-dev": {
  5083. "bamarni/composer-bin-plugin": "^1.8.2",
  5084. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5085. },
  5086. "type": "library",
  5087. "extra": {
  5088. "bamarni-bin": {
  5089. "bin-links": true,
  5090. "forward-command": false
  5091. },
  5092. "branch-alias": {
  5093. "dev-master": "1.9-dev"
  5094. }
  5095. },
  5096. "autoload": {
  5097. "psr-4": {
  5098. "PhpOption\\": "src/PhpOption/"
  5099. }
  5100. },
  5101. "notification-url": "https://packagist.org/downloads/",
  5102. "license": [
  5103. "Apache-2.0"
  5104. ],
  5105. "authors": [
  5106. {
  5107. "name": "Johannes M. Schmitt",
  5108. "email": "schmittjoh@gmail.com",
  5109. "homepage": "https://github.com/schmittjoh"
  5110. },
  5111. {
  5112. "name": "Graham Campbell",
  5113. "email": "hello@gjcampbell.co.uk",
  5114. "homepage": "https://github.com/GrahamCampbell"
  5115. }
  5116. ],
  5117. "description": "Option Type for PHP",
  5118. "keywords": [
  5119. "language",
  5120. "option",
  5121. "php",
  5122. "type"
  5123. ],
  5124. "support": {
  5125. "issues": "https://github.com/schmittjoh/php-option/issues",
  5126. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5127. },
  5128. "funding": [
  5129. {
  5130. "url": "https://github.com/GrahamCampbell",
  5131. "type": "github"
  5132. },
  5133. {
  5134. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5135. "type": "tidelift"
  5136. }
  5137. ],
  5138. "time": "2024-07-20T21:41:07+00:00"
  5139. },
  5140. {
  5141. "name": "predis/predis",
  5142. "version": "v2.2.2",
  5143. "source": {
  5144. "type": "git",
  5145. "url": "https://github.com/predis/predis.git",
  5146. "reference": "b1d3255ed9ad4d7254f9f9bba386c99f4bb983d1"
  5147. },
  5148. "dist": {
  5149. "type": "zip",
  5150. "url": "https://api.github.com/repos/predis/predis/zipball/b1d3255ed9ad4d7254f9f9bba386c99f4bb983d1",
  5151. "reference": "b1d3255ed9ad4d7254f9f9bba386c99f4bb983d1",
  5152. "shasum": ""
  5153. },
  5154. "require": {
  5155. "php": "^7.2 || ^8.0"
  5156. },
  5157. "require-dev": {
  5158. "friendsofphp/php-cs-fixer": "^3.3",
  5159. "phpstan/phpstan": "^1.9",
  5160. "phpunit/phpunit": "^8.0 || ~9.4.4"
  5161. },
  5162. "suggest": {
  5163. "ext-relay": "Faster connection with in-memory caching (>=0.6.2)"
  5164. },
  5165. "type": "library",
  5166. "autoload": {
  5167. "psr-4": {
  5168. "Predis\\": "src/"
  5169. }
  5170. },
  5171. "notification-url": "https://packagist.org/downloads/",
  5172. "license": [
  5173. "MIT"
  5174. ],
  5175. "authors": [
  5176. {
  5177. "name": "Till Krüss",
  5178. "homepage": "https://till.im",
  5179. "role": "Maintainer"
  5180. }
  5181. ],
  5182. "description": "A flexible and feature-complete Redis client for PHP.",
  5183. "homepage": "http://github.com/predis/predis",
  5184. "keywords": [
  5185. "nosql",
  5186. "predis",
  5187. "redis"
  5188. ],
  5189. "support": {
  5190. "issues": "https://github.com/predis/predis/issues",
  5191. "source": "https://github.com/predis/predis/tree/v2.2.2"
  5192. },
  5193. "funding": [
  5194. {
  5195. "url": "https://github.com/sponsors/tillkruss",
  5196. "type": "github"
  5197. }
  5198. ],
  5199. "time": "2023-09-13T16:42:03+00:00"
  5200. },
  5201. {
  5202. "name": "psr/cache",
  5203. "version": "1.0.1",
  5204. "source": {
  5205. "type": "git",
  5206. "url": "https://github.com/php-fig/cache.git",
  5207. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  5208. },
  5209. "dist": {
  5210. "type": "zip",
  5211. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  5212. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  5213. "shasum": ""
  5214. },
  5215. "require": {
  5216. "php": ">=5.3.0"
  5217. },
  5218. "type": "library",
  5219. "extra": {
  5220. "branch-alias": {
  5221. "dev-master": "1.0.x-dev"
  5222. }
  5223. },
  5224. "autoload": {
  5225. "psr-4": {
  5226. "Psr\\Cache\\": "src/"
  5227. }
  5228. },
  5229. "notification-url": "https://packagist.org/downloads/",
  5230. "license": [
  5231. "MIT"
  5232. ],
  5233. "authors": [
  5234. {
  5235. "name": "PHP-FIG",
  5236. "homepage": "http://www.php-fig.org/"
  5237. }
  5238. ],
  5239. "description": "Common interface for caching libraries",
  5240. "keywords": [
  5241. "cache",
  5242. "psr",
  5243. "psr-6"
  5244. ],
  5245. "support": {
  5246. "source": "https://github.com/php-fig/cache/tree/master"
  5247. },
  5248. "time": "2016-08-06T20:24:11+00:00"
  5249. },
  5250. {
  5251. "name": "psr/clock",
  5252. "version": "1.0.0",
  5253. "source": {
  5254. "type": "git",
  5255. "url": "https://github.com/php-fig/clock.git",
  5256. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5257. },
  5258. "dist": {
  5259. "type": "zip",
  5260. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5261. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5262. "shasum": ""
  5263. },
  5264. "require": {
  5265. "php": "^7.0 || ^8.0"
  5266. },
  5267. "type": "library",
  5268. "autoload": {
  5269. "psr-4": {
  5270. "Psr\\Clock\\": "src/"
  5271. }
  5272. },
  5273. "notification-url": "https://packagist.org/downloads/",
  5274. "license": [
  5275. "MIT"
  5276. ],
  5277. "authors": [
  5278. {
  5279. "name": "PHP-FIG",
  5280. "homepage": "https://www.php-fig.org/"
  5281. }
  5282. ],
  5283. "description": "Common interface for reading the clock.",
  5284. "homepage": "https://github.com/php-fig/clock",
  5285. "keywords": [
  5286. "clock",
  5287. "now",
  5288. "psr",
  5289. "psr-20",
  5290. "time"
  5291. ],
  5292. "support": {
  5293. "issues": "https://github.com/php-fig/clock/issues",
  5294. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5295. },
  5296. "time": "2022-11-25T14:36:26+00:00"
  5297. },
  5298. {
  5299. "name": "psr/container",
  5300. "version": "1.1.1",
  5301. "source": {
  5302. "type": "git",
  5303. "url": "https://github.com/php-fig/container.git",
  5304. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  5305. },
  5306. "dist": {
  5307. "type": "zip",
  5308. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  5309. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  5310. "shasum": ""
  5311. },
  5312. "require": {
  5313. "php": ">=7.2.0"
  5314. },
  5315. "type": "library",
  5316. "autoload": {
  5317. "psr-4": {
  5318. "Psr\\Container\\": "src/"
  5319. }
  5320. },
  5321. "notification-url": "https://packagist.org/downloads/",
  5322. "license": [
  5323. "MIT"
  5324. ],
  5325. "authors": [
  5326. {
  5327. "name": "PHP-FIG",
  5328. "homepage": "https://www.php-fig.org/"
  5329. }
  5330. ],
  5331. "description": "Common Container Interface (PHP FIG PSR-11)",
  5332. "homepage": "https://github.com/php-fig/container",
  5333. "keywords": [
  5334. "PSR-11",
  5335. "container",
  5336. "container-interface",
  5337. "container-interop",
  5338. "psr"
  5339. ],
  5340. "support": {
  5341. "issues": "https://github.com/php-fig/container/issues",
  5342. "source": "https://github.com/php-fig/container/tree/1.1.1"
  5343. },
  5344. "time": "2021-03-05T17:36:06+00:00"
  5345. },
  5346. {
  5347. "name": "psr/event-dispatcher",
  5348. "version": "1.0.0",
  5349. "source": {
  5350. "type": "git",
  5351. "url": "https://github.com/php-fig/event-dispatcher.git",
  5352. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5353. },
  5354. "dist": {
  5355. "type": "zip",
  5356. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5357. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5358. "shasum": ""
  5359. },
  5360. "require": {
  5361. "php": ">=7.2.0"
  5362. },
  5363. "type": "library",
  5364. "extra": {
  5365. "branch-alias": {
  5366. "dev-master": "1.0.x-dev"
  5367. }
  5368. },
  5369. "autoload": {
  5370. "psr-4": {
  5371. "Psr\\EventDispatcher\\": "src/"
  5372. }
  5373. },
  5374. "notification-url": "https://packagist.org/downloads/",
  5375. "license": [
  5376. "MIT"
  5377. ],
  5378. "authors": [
  5379. {
  5380. "name": "PHP-FIG",
  5381. "homepage": "http://www.php-fig.org/"
  5382. }
  5383. ],
  5384. "description": "Standard interfaces for event handling.",
  5385. "keywords": [
  5386. "events",
  5387. "psr",
  5388. "psr-14"
  5389. ],
  5390. "support": {
  5391. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5392. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5393. },
  5394. "time": "2019-01-08T18:20:26+00:00"
  5395. },
  5396. {
  5397. "name": "psr/http-client",
  5398. "version": "1.0.3",
  5399. "source": {
  5400. "type": "git",
  5401. "url": "https://github.com/php-fig/http-client.git",
  5402. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5403. },
  5404. "dist": {
  5405. "type": "zip",
  5406. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5407. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5408. "shasum": ""
  5409. },
  5410. "require": {
  5411. "php": "^7.0 || ^8.0",
  5412. "psr/http-message": "^1.0 || ^2.0"
  5413. },
  5414. "type": "library",
  5415. "extra": {
  5416. "branch-alias": {
  5417. "dev-master": "1.0.x-dev"
  5418. }
  5419. },
  5420. "autoload": {
  5421. "psr-4": {
  5422. "Psr\\Http\\Client\\": "src/"
  5423. }
  5424. },
  5425. "notification-url": "https://packagist.org/downloads/",
  5426. "license": [
  5427. "MIT"
  5428. ],
  5429. "authors": [
  5430. {
  5431. "name": "PHP-FIG",
  5432. "homepage": "https://www.php-fig.org/"
  5433. }
  5434. ],
  5435. "description": "Common interface for HTTP clients",
  5436. "homepage": "https://github.com/php-fig/http-client",
  5437. "keywords": [
  5438. "http",
  5439. "http-client",
  5440. "psr",
  5441. "psr-18"
  5442. ],
  5443. "support": {
  5444. "source": "https://github.com/php-fig/http-client"
  5445. },
  5446. "time": "2023-09-23T14:17:50+00:00"
  5447. },
  5448. {
  5449. "name": "psr/http-factory",
  5450. "version": "1.1.0",
  5451. "source": {
  5452. "type": "git",
  5453. "url": "https://github.com/php-fig/http-factory.git",
  5454. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5455. },
  5456. "dist": {
  5457. "type": "zip",
  5458. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5459. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5460. "shasum": ""
  5461. },
  5462. "require": {
  5463. "php": ">=7.1",
  5464. "psr/http-message": "^1.0 || ^2.0"
  5465. },
  5466. "type": "library",
  5467. "extra": {
  5468. "branch-alias": {
  5469. "dev-master": "1.0.x-dev"
  5470. }
  5471. },
  5472. "autoload": {
  5473. "psr-4": {
  5474. "Psr\\Http\\Message\\": "src/"
  5475. }
  5476. },
  5477. "notification-url": "https://packagist.org/downloads/",
  5478. "license": [
  5479. "MIT"
  5480. ],
  5481. "authors": [
  5482. {
  5483. "name": "PHP-FIG",
  5484. "homepage": "https://www.php-fig.org/"
  5485. }
  5486. ],
  5487. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5488. "keywords": [
  5489. "factory",
  5490. "http",
  5491. "message",
  5492. "psr",
  5493. "psr-17",
  5494. "psr-7",
  5495. "request",
  5496. "response"
  5497. ],
  5498. "support": {
  5499. "source": "https://github.com/php-fig/http-factory"
  5500. },
  5501. "time": "2024-04-15T12:06:14+00:00"
  5502. },
  5503. {
  5504. "name": "psr/http-message",
  5505. "version": "1.1",
  5506. "source": {
  5507. "type": "git",
  5508. "url": "https://github.com/php-fig/http-message.git",
  5509. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  5510. },
  5511. "dist": {
  5512. "type": "zip",
  5513. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  5514. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  5515. "shasum": ""
  5516. },
  5517. "require": {
  5518. "php": "^7.2 || ^8.0"
  5519. },
  5520. "type": "library",
  5521. "extra": {
  5522. "branch-alias": {
  5523. "dev-master": "1.1.x-dev"
  5524. }
  5525. },
  5526. "autoload": {
  5527. "psr-4": {
  5528. "Psr\\Http\\Message\\": "src/"
  5529. }
  5530. },
  5531. "notification-url": "https://packagist.org/downloads/",
  5532. "license": [
  5533. "MIT"
  5534. ],
  5535. "authors": [
  5536. {
  5537. "name": "PHP-FIG",
  5538. "homepage": "http://www.php-fig.org/"
  5539. }
  5540. ],
  5541. "description": "Common interface for HTTP messages",
  5542. "homepage": "https://github.com/php-fig/http-message",
  5543. "keywords": [
  5544. "http",
  5545. "http-message",
  5546. "psr",
  5547. "psr-7",
  5548. "request",
  5549. "response"
  5550. ],
  5551. "support": {
  5552. "source": "https://github.com/php-fig/http-message/tree/1.1"
  5553. },
  5554. "time": "2023-04-04T09:50:52+00:00"
  5555. },
  5556. {
  5557. "name": "psr/log",
  5558. "version": "1.1.4",
  5559. "source": {
  5560. "type": "git",
  5561. "url": "https://github.com/php-fig/log.git",
  5562. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  5563. },
  5564. "dist": {
  5565. "type": "zip",
  5566. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  5567. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  5568. "shasum": ""
  5569. },
  5570. "require": {
  5571. "php": ">=5.3.0"
  5572. },
  5573. "type": "library",
  5574. "extra": {
  5575. "branch-alias": {
  5576. "dev-master": "1.1.x-dev"
  5577. }
  5578. },
  5579. "autoload": {
  5580. "psr-4": {
  5581. "Psr\\Log\\": "Psr/Log/"
  5582. }
  5583. },
  5584. "notification-url": "https://packagist.org/downloads/",
  5585. "license": [
  5586. "MIT"
  5587. ],
  5588. "authors": [
  5589. {
  5590. "name": "PHP-FIG",
  5591. "homepage": "https://www.php-fig.org/"
  5592. }
  5593. ],
  5594. "description": "Common interface for logging libraries",
  5595. "homepage": "https://github.com/php-fig/log",
  5596. "keywords": [
  5597. "log",
  5598. "psr",
  5599. "psr-3"
  5600. ],
  5601. "support": {
  5602. "source": "https://github.com/php-fig/log/tree/1.1.4"
  5603. },
  5604. "time": "2021-05-03T11:20:27+00:00"
  5605. },
  5606. {
  5607. "name": "psr/simple-cache",
  5608. "version": "1.0.1",
  5609. "source": {
  5610. "type": "git",
  5611. "url": "https://github.com/php-fig/simple-cache.git",
  5612. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  5613. },
  5614. "dist": {
  5615. "type": "zip",
  5616. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5617. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5618. "shasum": ""
  5619. },
  5620. "require": {
  5621. "php": ">=5.3.0"
  5622. },
  5623. "type": "library",
  5624. "extra": {
  5625. "branch-alias": {
  5626. "dev-master": "1.0.x-dev"
  5627. }
  5628. },
  5629. "autoload": {
  5630. "psr-4": {
  5631. "Psr\\SimpleCache\\": "src/"
  5632. }
  5633. },
  5634. "notification-url": "https://packagist.org/downloads/",
  5635. "license": [
  5636. "MIT"
  5637. ],
  5638. "authors": [
  5639. {
  5640. "name": "PHP-FIG",
  5641. "homepage": "http://www.php-fig.org/"
  5642. }
  5643. ],
  5644. "description": "Common interfaces for simple caching",
  5645. "keywords": [
  5646. "cache",
  5647. "caching",
  5648. "psr",
  5649. "psr-16",
  5650. "simple-cache"
  5651. ],
  5652. "support": {
  5653. "source": "https://github.com/php-fig/simple-cache/tree/master"
  5654. },
  5655. "time": "2017-10-23T01:57:42+00:00"
  5656. },
  5657. {
  5658. "name": "psy/psysh",
  5659. "version": "v0.11.22",
  5660. "source": {
  5661. "type": "git",
  5662. "url": "https://github.com/bobthecow/psysh.git",
  5663. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
  5664. },
  5665. "dist": {
  5666. "type": "zip",
  5667. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
  5668. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  5669. "shasum": ""
  5670. },
  5671. "require": {
  5672. "ext-json": "*",
  5673. "ext-tokenizer": "*",
  5674. "nikic/php-parser": "^4.0 || ^3.1",
  5675. "php": "^8.0 || ^7.0.8",
  5676. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  5677. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  5678. },
  5679. "conflict": {
  5680. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  5681. },
  5682. "require-dev": {
  5683. "bamarni/composer-bin-plugin": "^1.2"
  5684. },
  5685. "suggest": {
  5686. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5687. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5688. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  5689. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  5690. },
  5691. "bin": [
  5692. "bin/psysh"
  5693. ],
  5694. "type": "library",
  5695. "extra": {
  5696. "branch-alias": {
  5697. "dev-0.11": "0.11.x-dev"
  5698. },
  5699. "bamarni-bin": {
  5700. "bin-links": false,
  5701. "forward-command": false
  5702. }
  5703. },
  5704. "autoload": {
  5705. "files": [
  5706. "src/functions.php"
  5707. ],
  5708. "psr-4": {
  5709. "Psy\\": "src/"
  5710. }
  5711. },
  5712. "notification-url": "https://packagist.org/downloads/",
  5713. "license": [
  5714. "MIT"
  5715. ],
  5716. "authors": [
  5717. {
  5718. "name": "Justin Hileman",
  5719. "email": "justin@justinhileman.info",
  5720. "homepage": "http://justinhileman.com"
  5721. }
  5722. ],
  5723. "description": "An interactive shell for modern PHP.",
  5724. "homepage": "http://psysh.org",
  5725. "keywords": [
  5726. "REPL",
  5727. "console",
  5728. "interactive",
  5729. "shell"
  5730. ],
  5731. "support": {
  5732. "issues": "https://github.com/bobthecow/psysh/issues",
  5733. "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
  5734. },
  5735. "time": "2023-10-14T21:56:36+00:00"
  5736. },
  5737. {
  5738. "name": "ralouphie/getallheaders",
  5739. "version": "3.0.3",
  5740. "source": {
  5741. "type": "git",
  5742. "url": "https://github.com/ralouphie/getallheaders.git",
  5743. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5744. },
  5745. "dist": {
  5746. "type": "zip",
  5747. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5748. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5749. "shasum": ""
  5750. },
  5751. "require": {
  5752. "php": ">=5.6"
  5753. },
  5754. "require-dev": {
  5755. "php-coveralls/php-coveralls": "^2.1",
  5756. "phpunit/phpunit": "^5 || ^6.5"
  5757. },
  5758. "type": "library",
  5759. "autoload": {
  5760. "files": [
  5761. "src/getallheaders.php"
  5762. ]
  5763. },
  5764. "notification-url": "https://packagist.org/downloads/",
  5765. "license": [
  5766. "MIT"
  5767. ],
  5768. "authors": [
  5769. {
  5770. "name": "Ralph Khattar",
  5771. "email": "ralph.khattar@gmail.com"
  5772. }
  5773. ],
  5774. "description": "A polyfill for getallheaders.",
  5775. "support": {
  5776. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5777. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5778. },
  5779. "time": "2019-03-08T08:55:37+00:00"
  5780. },
  5781. {
  5782. "name": "ramsey/collection",
  5783. "version": "1.2.2",
  5784. "source": {
  5785. "type": "git",
  5786. "url": "https://github.com/ramsey/collection.git",
  5787. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  5788. },
  5789. "dist": {
  5790. "type": "zip",
  5791. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  5792. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  5793. "shasum": ""
  5794. },
  5795. "require": {
  5796. "php": "^7.3 || ^8",
  5797. "symfony/polyfill-php81": "^1.23"
  5798. },
  5799. "require-dev": {
  5800. "captainhook/captainhook": "^5.3",
  5801. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5802. "ergebnis/composer-normalize": "^2.6",
  5803. "fakerphp/faker": "^1.5",
  5804. "hamcrest/hamcrest-php": "^2",
  5805. "jangregor/phpstan-prophecy": "^0.8",
  5806. "mockery/mockery": "^1.3",
  5807. "phpspec/prophecy-phpunit": "^2.0",
  5808. "phpstan/extension-installer": "^1",
  5809. "phpstan/phpstan": "^0.12.32",
  5810. "phpstan/phpstan-mockery": "^0.12.5",
  5811. "phpstan/phpstan-phpunit": "^0.12.11",
  5812. "phpunit/phpunit": "^8.5 || ^9",
  5813. "psy/psysh": "^0.10.4",
  5814. "slevomat/coding-standard": "^6.3",
  5815. "squizlabs/php_codesniffer": "^3.5",
  5816. "vimeo/psalm": "^4.4"
  5817. },
  5818. "type": "library",
  5819. "autoload": {
  5820. "psr-4": {
  5821. "Ramsey\\Collection\\": "src/"
  5822. }
  5823. },
  5824. "notification-url": "https://packagist.org/downloads/",
  5825. "license": [
  5826. "MIT"
  5827. ],
  5828. "authors": [
  5829. {
  5830. "name": "Ben Ramsey",
  5831. "email": "ben@benramsey.com",
  5832. "homepage": "https://benramsey.com"
  5833. }
  5834. ],
  5835. "description": "A PHP library for representing and manipulating collections.",
  5836. "keywords": [
  5837. "array",
  5838. "collection",
  5839. "hash",
  5840. "map",
  5841. "queue",
  5842. "set"
  5843. ],
  5844. "support": {
  5845. "issues": "https://github.com/ramsey/collection/issues",
  5846. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  5847. },
  5848. "funding": [
  5849. {
  5850. "url": "https://github.com/ramsey",
  5851. "type": "github"
  5852. },
  5853. {
  5854. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  5855. "type": "tidelift"
  5856. }
  5857. ],
  5858. "time": "2021-10-10T03:01:02+00:00"
  5859. },
  5860. {
  5861. "name": "ramsey/uuid",
  5862. "version": "4.2.3",
  5863. "source": {
  5864. "type": "git",
  5865. "url": "https://github.com/ramsey/uuid.git",
  5866. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  5867. },
  5868. "dist": {
  5869. "type": "zip",
  5870. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  5871. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  5872. "shasum": ""
  5873. },
  5874. "require": {
  5875. "brick/math": "^0.8 || ^0.9",
  5876. "ext-json": "*",
  5877. "php": "^7.2 || ^8.0",
  5878. "ramsey/collection": "^1.0",
  5879. "symfony/polyfill-ctype": "^1.8",
  5880. "symfony/polyfill-php80": "^1.14"
  5881. },
  5882. "replace": {
  5883. "rhumsaa/uuid": "self.version"
  5884. },
  5885. "require-dev": {
  5886. "captainhook/captainhook": "^5.10",
  5887. "captainhook/plugin-composer": "^5.3",
  5888. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5889. "doctrine/annotations": "^1.8",
  5890. "ergebnis/composer-normalize": "^2.15",
  5891. "mockery/mockery": "^1.3",
  5892. "moontoast/math": "^1.1",
  5893. "paragonie/random-lib": "^2",
  5894. "php-mock/php-mock": "^2.2",
  5895. "php-mock/php-mock-mockery": "^1.3",
  5896. "php-parallel-lint/php-parallel-lint": "^1.1",
  5897. "phpbench/phpbench": "^1.0",
  5898. "phpstan/extension-installer": "^1.0",
  5899. "phpstan/phpstan": "^0.12",
  5900. "phpstan/phpstan-mockery": "^0.12",
  5901. "phpstan/phpstan-phpunit": "^0.12",
  5902. "phpunit/phpunit": "^8.5 || ^9",
  5903. "slevomat/coding-standard": "^7.0",
  5904. "squizlabs/php_codesniffer": "^3.5",
  5905. "vimeo/psalm": "^4.9"
  5906. },
  5907. "suggest": {
  5908. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5909. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  5910. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5911. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5912. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5913. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5914. },
  5915. "type": "library",
  5916. "extra": {
  5917. "branch-alias": {
  5918. "dev-main": "4.x-dev"
  5919. },
  5920. "captainhook": {
  5921. "force-install": true
  5922. }
  5923. },
  5924. "autoload": {
  5925. "files": [
  5926. "src/functions.php"
  5927. ],
  5928. "psr-4": {
  5929. "Ramsey\\Uuid\\": "src/"
  5930. }
  5931. },
  5932. "notification-url": "https://packagist.org/downloads/",
  5933. "license": [
  5934. "MIT"
  5935. ],
  5936. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5937. "keywords": [
  5938. "guid",
  5939. "identifier",
  5940. "uuid"
  5941. ],
  5942. "support": {
  5943. "issues": "https://github.com/ramsey/uuid/issues",
  5944. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  5945. },
  5946. "funding": [
  5947. {
  5948. "url": "https://github.com/ramsey",
  5949. "type": "github"
  5950. },
  5951. {
  5952. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  5953. "type": "tidelift"
  5954. }
  5955. ],
  5956. "time": "2021-09-25T23:10:38+00:00"
  5957. },
  5958. {
  5959. "name": "react/promise",
  5960. "version": "v2.11.0",
  5961. "source": {
  5962. "type": "git",
  5963. "url": "https://github.com/reactphp/promise.git",
  5964. "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831"
  5965. },
  5966. "dist": {
  5967. "type": "zip",
  5968. "url": "https://api.github.com/repos/reactphp/promise/zipball/1a8460931ea36dc5c76838fec5734d55c88c6831",
  5969. "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831",
  5970. "shasum": ""
  5971. },
  5972. "require": {
  5973. "php": ">=5.4.0"
  5974. },
  5975. "require-dev": {
  5976. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  5977. },
  5978. "type": "library",
  5979. "autoload": {
  5980. "files": [
  5981. "src/functions_include.php"
  5982. ],
  5983. "psr-4": {
  5984. "React\\Promise\\": "src/"
  5985. }
  5986. },
  5987. "notification-url": "https://packagist.org/downloads/",
  5988. "license": [
  5989. "MIT"
  5990. ],
  5991. "authors": [
  5992. {
  5993. "name": "Jan Sorgalla",
  5994. "email": "jsorgalla@gmail.com",
  5995. "homepage": "https://sorgalla.com/"
  5996. },
  5997. {
  5998. "name": "Christian Lück",
  5999. "email": "christian@clue.engineering",
  6000. "homepage": "https://clue.engineering/"
  6001. },
  6002. {
  6003. "name": "Cees-Jan Kiewiet",
  6004. "email": "reactphp@ceesjankiewiet.nl",
  6005. "homepage": "https://wyrihaximus.net/"
  6006. },
  6007. {
  6008. "name": "Chris Boden",
  6009. "email": "cboden@gmail.com",
  6010. "homepage": "https://cboden.dev/"
  6011. }
  6012. ],
  6013. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  6014. "keywords": [
  6015. "promise",
  6016. "promises"
  6017. ],
  6018. "support": {
  6019. "issues": "https://github.com/reactphp/promise/issues",
  6020. "source": "https://github.com/reactphp/promise/tree/v2.11.0"
  6021. },
  6022. "funding": [
  6023. {
  6024. "url": "https://opencollective.com/reactphp",
  6025. "type": "open_collective"
  6026. }
  6027. ],
  6028. "time": "2023-11-16T16:16:50+00:00"
  6029. },
  6030. {
  6031. "name": "rize/uri-template",
  6032. "version": "0.3.8",
  6033. "source": {
  6034. "type": "git",
  6035. "url": "https://github.com/rize/UriTemplate.git",
  6036. "reference": "34a5b96d0b65a5dddb7d20f09b6527a43faede24"
  6037. },
  6038. "dist": {
  6039. "type": "zip",
  6040. "url": "https://api.github.com/repos/rize/UriTemplate/zipball/34a5b96d0b65a5dddb7d20f09b6527a43faede24",
  6041. "reference": "34a5b96d0b65a5dddb7d20f09b6527a43faede24",
  6042. "shasum": ""
  6043. },
  6044. "require": {
  6045. "php": ">=5.3.0"
  6046. },
  6047. "require-dev": {
  6048. "phpunit/phpunit": "~4.8.36"
  6049. },
  6050. "type": "library",
  6051. "autoload": {
  6052. "psr-4": {
  6053. "Rize\\": "src/Rize"
  6054. }
  6055. },
  6056. "notification-url": "https://packagist.org/downloads/",
  6057. "license": [
  6058. "MIT"
  6059. ],
  6060. "authors": [
  6061. {
  6062. "name": "Marut K",
  6063. "homepage": "http://twitter.com/rezigned"
  6064. }
  6065. ],
  6066. "description": "PHP URI Template (RFC 6570) supports both expansion & extraction",
  6067. "keywords": [
  6068. "RFC 6570",
  6069. "template",
  6070. "uri"
  6071. ],
  6072. "support": {
  6073. "issues": "https://github.com/rize/UriTemplate/issues",
  6074. "source": "https://github.com/rize/UriTemplate/tree/0.3.8"
  6075. },
  6076. "funding": [
  6077. {
  6078. "url": "https://www.paypal.me/rezigned",
  6079. "type": "custom"
  6080. },
  6081. {
  6082. "url": "https://github.com/rezigned",
  6083. "type": "github"
  6084. },
  6085. {
  6086. "url": "https://opencollective.com/rize-uri-template",
  6087. "type": "open_collective"
  6088. }
  6089. ],
  6090. "time": "2024-08-30T07:09:40+00:00"
  6091. },
  6092. {
  6093. "name": "sabberworm/php-css-parser",
  6094. "version": "v8.6.0",
  6095. "source": {
  6096. "type": "git",
  6097. "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git",
  6098. "reference": "d2fb94a9641be84d79c7548c6d39bbebba6e9a70"
  6099. },
  6100. "dist": {
  6101. "type": "zip",
  6102. "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/d2fb94a9641be84d79c7548c6d39bbebba6e9a70",
  6103. "reference": "d2fb94a9641be84d79c7548c6d39bbebba6e9a70",
  6104. "shasum": ""
  6105. },
  6106. "require": {
  6107. "ext-iconv": "*",
  6108. "php": ">=5.6.20"
  6109. },
  6110. "require-dev": {
  6111. "phpunit/phpunit": "^5.7.27"
  6112. },
  6113. "suggest": {
  6114. "ext-mbstring": "for parsing UTF-8 CSS"
  6115. },
  6116. "type": "library",
  6117. "extra": {
  6118. "branch-alias": {
  6119. "dev-main": "9.0.x-dev"
  6120. }
  6121. },
  6122. "autoload": {
  6123. "psr-4": {
  6124. "Sabberworm\\CSS\\": "src/"
  6125. }
  6126. },
  6127. "notification-url": "https://packagist.org/downloads/",
  6128. "license": [
  6129. "MIT"
  6130. ],
  6131. "authors": [
  6132. {
  6133. "name": "Raphael Schweikert"
  6134. },
  6135. {
  6136. "name": "Oliver Klee",
  6137. "email": "github@oliverklee.de"
  6138. },
  6139. {
  6140. "name": "Jake Hotson",
  6141. "email": "jake.github@qzdesign.co.uk"
  6142. }
  6143. ],
  6144. "description": "Parser for CSS Files written in PHP",
  6145. "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  6146. "keywords": [
  6147. "css",
  6148. "parser",
  6149. "stylesheet"
  6150. ],
  6151. "support": {
  6152. "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues",
  6153. "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.6.0"
  6154. },
  6155. "time": "2024-07-01T07:33:21+00:00"
  6156. },
  6157. {
  6158. "name": "simplesoftwareio/simple-qrcode",
  6159. "version": "4.2.0",
  6160. "source": {
  6161. "type": "git",
  6162. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  6163. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537"
  6164. },
  6165. "dist": {
  6166. "type": "zip",
  6167. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/916db7948ca6772d54bb617259c768c9cdc8d537",
  6168. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537",
  6169. "shasum": ""
  6170. },
  6171. "require": {
  6172. "bacon/bacon-qr-code": "^2.0",
  6173. "ext-gd": "*",
  6174. "php": ">=7.2|^8.0"
  6175. },
  6176. "require-dev": {
  6177. "mockery/mockery": "~1",
  6178. "phpunit/phpunit": "~9"
  6179. },
  6180. "suggest": {
  6181. "ext-imagick": "Allows the generation of PNG QrCodes.",
  6182. "illuminate/support": "Allows for use within Laravel."
  6183. },
  6184. "type": "library",
  6185. "extra": {
  6186. "laravel": {
  6187. "providers": [
  6188. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  6189. ],
  6190. "aliases": {
  6191. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  6192. }
  6193. }
  6194. },
  6195. "autoload": {
  6196. "psr-4": {
  6197. "SimpleSoftwareIO\\QrCode\\": "src"
  6198. }
  6199. },
  6200. "notification-url": "https://packagist.org/downloads/",
  6201. "license": [
  6202. "MIT"
  6203. ],
  6204. "authors": [
  6205. {
  6206. "name": "Simple Software LLC",
  6207. "email": "support@simplesoftware.io"
  6208. }
  6209. ],
  6210. "description": "Simple QrCode is a QR code generator made for Laravel.",
  6211. "homepage": "https://www.simplesoftware.io/#/docs/simple-qrcode",
  6212. "keywords": [
  6213. "Simple",
  6214. "generator",
  6215. "laravel",
  6216. "qrcode",
  6217. "wrapper"
  6218. ],
  6219. "support": {
  6220. "issues": "https://github.com/SimpleSoftwareIO/simple-qrcode/issues",
  6221. "source": "https://github.com/SimpleSoftwareIO/simple-qrcode/tree/4.2.0"
  6222. },
  6223. "time": "2021-02-08T20:43:55+00:00"
  6224. },
  6225. {
  6226. "name": "socialiteproviders/apple",
  6227. "version": "4.1.1",
  6228. "source": {
  6229. "type": "git",
  6230. "url": "https://github.com/SocialiteProviders/Apple.git",
  6231. "reference": "b03a927cff27e2ed05b1f923fb70f4160896c483"
  6232. },
  6233. "dist": {
  6234. "type": "zip",
  6235. "url": "https://api.github.com/repos/SocialiteProviders/Apple/zipball/b03a927cff27e2ed05b1f923fb70f4160896c483",
  6236. "reference": "b03a927cff27e2ed05b1f923fb70f4160896c483",
  6237. "shasum": ""
  6238. },
  6239. "require": {
  6240. "ext-json": "*",
  6241. "ext-openssl": "*",
  6242. "firebase/php-jwt": "^5.2",
  6243. "lcobucci/jwt": "^3.4",
  6244. "php": "^7.2 || ^8.0",
  6245. "socialiteproviders/manager": "~4.0"
  6246. },
  6247. "suggest": {
  6248. "ahilmurugesan/socialite-apple-helper": "Automatic Apple client key generation and management."
  6249. },
  6250. "type": "library",
  6251. "autoload": {
  6252. "psr-4": {
  6253. "SocialiteProviders\\Apple\\": ""
  6254. }
  6255. },
  6256. "notification-url": "https://packagist.org/downloads/",
  6257. "license": [
  6258. "MIT"
  6259. ],
  6260. "authors": [
  6261. {
  6262. "name": "Ahilan",
  6263. "email": "ahilmurugesan@gmail.com",
  6264. "role": "Developer"
  6265. },
  6266. {
  6267. "name": "Vamsi Krishna V",
  6268. "email": "vamsi@vonectech.com",
  6269. "homepage": "https://vonectech.com/",
  6270. "role": "Farmer"
  6271. }
  6272. ],
  6273. "description": "Apple OAuth2 Provider for Laravel Socialite",
  6274. "keywords": [
  6275. "apple",
  6276. "apple client key",
  6277. "apple sign in",
  6278. "client key generator",
  6279. "client key refresh",
  6280. "laravel",
  6281. "laravel apple",
  6282. "laravel socialite",
  6283. "sign in with apple",
  6284. "socialite",
  6285. "socialite apple"
  6286. ],
  6287. "support": {
  6288. "source": "https://github.com/SocialiteProviders/Apple/tree/4.1.1"
  6289. },
  6290. "time": "2020-12-03T02:15:50+00:00"
  6291. },
  6292. {
  6293. "name": "socialiteproviders/google",
  6294. "version": "4.1.0",
  6295. "source": {
  6296. "type": "git",
  6297. "url": "https://github.com/SocialiteProviders/Google-Plus.git",
  6298. "reference": "1cb8f6fb2c0dd0fc8b34e95f69865663fdf0b401"
  6299. },
  6300. "dist": {
  6301. "type": "zip",
  6302. "url": "https://api.github.com/repos/SocialiteProviders/Google-Plus/zipball/1cb8f6fb2c0dd0fc8b34e95f69865663fdf0b401",
  6303. "reference": "1cb8f6fb2c0dd0fc8b34e95f69865663fdf0b401",
  6304. "shasum": ""
  6305. },
  6306. "require": {
  6307. "ext-json": "*",
  6308. "php": "^7.2 || ^8.0",
  6309. "socialiteproviders/manager": "~4.0"
  6310. },
  6311. "type": "library",
  6312. "autoload": {
  6313. "psr-4": {
  6314. "SocialiteProviders\\Google\\": ""
  6315. }
  6316. },
  6317. "notification-url": "https://packagist.org/downloads/",
  6318. "license": [
  6319. "MIT"
  6320. ],
  6321. "authors": [
  6322. {
  6323. "name": "xstoop",
  6324. "email": "myenglishnameisx@gmail.com"
  6325. }
  6326. ],
  6327. "description": "Google OAuth2 Provider for Laravel Socialite",
  6328. "support": {
  6329. "source": "https://github.com/SocialiteProviders/Google-Plus/tree/4.1.0"
  6330. },
  6331. "time": "2020-12-01T23:10:59+00:00"
  6332. },
  6333. {
  6334. "name": "socialiteproviders/kakao",
  6335. "version": "4.2.2",
  6336. "source": {
  6337. "type": "git",
  6338. "url": "https://github.com/SocialiteProviders/Kakao.git",
  6339. "reference": "0f1210fc3b82fe4f489388cb5d730351797281ac"
  6340. },
  6341. "dist": {
  6342. "type": "zip",
  6343. "url": "https://api.github.com/repos/SocialiteProviders/Kakao/zipball/0f1210fc3b82fe4f489388cb5d730351797281ac",
  6344. "reference": "0f1210fc3b82fe4f489388cb5d730351797281ac",
  6345. "shasum": ""
  6346. },
  6347. "require": {
  6348. "ext-json": "*",
  6349. "php": "^7.2 || ^8.0",
  6350. "socialiteproviders/manager": "~4.0"
  6351. },
  6352. "type": "library",
  6353. "autoload": {
  6354. "psr-4": {
  6355. "SocialiteProviders\\Kakao\\": ""
  6356. }
  6357. },
  6358. "notification-url": "https://packagist.org/downloads/",
  6359. "license": [
  6360. "MIT"
  6361. ],
  6362. "authors": [
  6363. {
  6364. "name": "Doojin So",
  6365. "email": "sodoojin@gmail.com"
  6366. }
  6367. ],
  6368. "description": "Kakao OAuth2 Provider for Laravel Socialite",
  6369. "support": {
  6370. "source": "https://github.com/SocialiteProviders/Kakao/tree/4.2.2"
  6371. },
  6372. "time": "2021-02-24T22:47:43+00:00"
  6373. },
  6374. {
  6375. "name": "socialiteproviders/manager",
  6376. "version": "v4.1.0",
  6377. "source": {
  6378. "type": "git",
  6379. "url": "https://github.com/SocialiteProviders/Manager.git",
  6380. "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9"
  6381. },
  6382. "dist": {
  6383. "type": "zip",
  6384. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/4e63afbd26dc45ff263591de2a0970436a6a0bf9",
  6385. "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9",
  6386. "shasum": ""
  6387. },
  6388. "require": {
  6389. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0",
  6390. "laravel/socialite": "~4.0 || ~5.0",
  6391. "php": "^7.2 || ^8.0"
  6392. },
  6393. "require-dev": {
  6394. "mockery/mockery": "^1.2",
  6395. "phpunit/phpunit": "^6.0 || ^9.0"
  6396. },
  6397. "type": "library",
  6398. "extra": {
  6399. "laravel": {
  6400. "providers": [
  6401. "SocialiteProviders\\Manager\\ServiceProvider"
  6402. ]
  6403. }
  6404. },
  6405. "autoload": {
  6406. "psr-4": {
  6407. "SocialiteProviders\\Manager\\": "src/"
  6408. }
  6409. },
  6410. "notification-url": "https://packagist.org/downloads/",
  6411. "license": [
  6412. "MIT"
  6413. ],
  6414. "authors": [
  6415. {
  6416. "name": "Andy Wendt",
  6417. "email": "andy@awendt.com"
  6418. },
  6419. {
  6420. "name": "Anton Komarev",
  6421. "email": "a.komarev@cybercog.su"
  6422. },
  6423. {
  6424. "name": "Miguel Piedrafita",
  6425. "email": "soy@miguelpiedrafita.com"
  6426. },
  6427. {
  6428. "name": "atymic",
  6429. "email": "atymicq@gmail.com",
  6430. "homepage": "https://atymic.dev"
  6431. }
  6432. ],
  6433. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  6434. "homepage": "https://socialiteproviders.com",
  6435. "keywords": [
  6436. "laravel",
  6437. "manager",
  6438. "oauth",
  6439. "providers",
  6440. "socialite"
  6441. ],
  6442. "support": {
  6443. "issues": "https://github.com/socialiteproviders/manager/issues",
  6444. "source": "https://github.com/socialiteproviders/manager"
  6445. },
  6446. "time": "2022-01-23T22:40:23+00:00"
  6447. },
  6448. {
  6449. "name": "socialiteproviders/naver",
  6450. "version": "4.1.0",
  6451. "source": {
  6452. "type": "git",
  6453. "url": "https://github.com/SocialiteProviders/Naver.git",
  6454. "reference": "8aea1dc415c2c353eba836e5d3aa91edf884c019"
  6455. },
  6456. "dist": {
  6457. "type": "zip",
  6458. "url": "https://api.github.com/repos/SocialiteProviders/Naver/zipball/8aea1dc415c2c353eba836e5d3aa91edf884c019",
  6459. "reference": "8aea1dc415c2c353eba836e5d3aa91edf884c019",
  6460. "shasum": ""
  6461. },
  6462. "require": {
  6463. "ext-json": "*",
  6464. "ext-libxml": "*",
  6465. "ext-simplexml": "*",
  6466. "php": "^7.2 || ^8.0",
  6467. "socialiteproviders/manager": "~4.0"
  6468. },
  6469. "type": "library",
  6470. "autoload": {
  6471. "psr-4": {
  6472. "SocialiteProviders\\Naver\\": ""
  6473. }
  6474. },
  6475. "notification-url": "https://packagist.org/downloads/",
  6476. "license": [
  6477. "MIT"
  6478. ],
  6479. "authors": [
  6480. {
  6481. "name": "Doojin So",
  6482. "email": "sodoojin@gmail.com"
  6483. }
  6484. ],
  6485. "description": "Naver OAuth2 Provider for Laravel Socialite",
  6486. "support": {
  6487. "source": "https://github.com/SocialiteProviders/Naver/tree/4.1.0"
  6488. },
  6489. "time": "2020-12-01T23:10:59+00:00"
  6490. },
  6491. {
  6492. "name": "swiftmailer/swiftmailer",
  6493. "version": "v6.3.0",
  6494. "source": {
  6495. "type": "git",
  6496. "url": "https://github.com/swiftmailer/swiftmailer.git",
  6497. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  6498. },
  6499. "dist": {
  6500. "type": "zip",
  6501. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6502. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6503. "shasum": ""
  6504. },
  6505. "require": {
  6506. "egulias/email-validator": "^2.0|^3.1",
  6507. "php": ">=7.0.0",
  6508. "symfony/polyfill-iconv": "^1.0",
  6509. "symfony/polyfill-intl-idn": "^1.10",
  6510. "symfony/polyfill-mbstring": "^1.0"
  6511. },
  6512. "require-dev": {
  6513. "mockery/mockery": "^1.0",
  6514. "symfony/phpunit-bridge": "^4.4|^5.4"
  6515. },
  6516. "suggest": {
  6517. "ext-intl": "Needed to support internationalized email addresses"
  6518. },
  6519. "type": "library",
  6520. "extra": {
  6521. "branch-alias": {
  6522. "dev-master": "6.2-dev"
  6523. }
  6524. },
  6525. "autoload": {
  6526. "files": [
  6527. "lib/swift_required.php"
  6528. ]
  6529. },
  6530. "notification-url": "https://packagist.org/downloads/",
  6531. "license": [
  6532. "MIT"
  6533. ],
  6534. "authors": [
  6535. {
  6536. "name": "Chris Corbyn"
  6537. },
  6538. {
  6539. "name": "Fabien Potencier",
  6540. "email": "fabien@symfony.com"
  6541. }
  6542. ],
  6543. "description": "Swiftmailer, free feature-rich PHP mailer",
  6544. "homepage": "https://swiftmailer.symfony.com",
  6545. "keywords": [
  6546. "email",
  6547. "mail",
  6548. "mailer"
  6549. ],
  6550. "support": {
  6551. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  6552. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  6553. },
  6554. "funding": [
  6555. {
  6556. "url": "https://github.com/fabpot",
  6557. "type": "github"
  6558. },
  6559. {
  6560. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  6561. "type": "tidelift"
  6562. }
  6563. ],
  6564. "abandoned": "symfony/mailer",
  6565. "time": "2021-10-18T15:26:12+00:00"
  6566. },
  6567. {
  6568. "name": "symfony/console",
  6569. "version": "v5.4.43",
  6570. "source": {
  6571. "type": "git",
  6572. "url": "https://github.com/symfony/console.git",
  6573. "reference": "e86f8554de667c16dde8aeb89a3990cfde924df9"
  6574. },
  6575. "dist": {
  6576. "type": "zip",
  6577. "url": "https://api.github.com/repos/symfony/console/zipball/e86f8554de667c16dde8aeb89a3990cfde924df9",
  6578. "reference": "e86f8554de667c16dde8aeb89a3990cfde924df9",
  6579. "shasum": ""
  6580. },
  6581. "require": {
  6582. "php": ">=7.2.5",
  6583. "symfony/deprecation-contracts": "^2.1|^3",
  6584. "symfony/polyfill-mbstring": "~1.0",
  6585. "symfony/polyfill-php73": "^1.9",
  6586. "symfony/polyfill-php80": "^1.16",
  6587. "symfony/service-contracts": "^1.1|^2|^3",
  6588. "symfony/string": "^5.1|^6.0"
  6589. },
  6590. "conflict": {
  6591. "psr/log": ">=3",
  6592. "symfony/dependency-injection": "<4.4",
  6593. "symfony/dotenv": "<5.1",
  6594. "symfony/event-dispatcher": "<4.4",
  6595. "symfony/lock": "<4.4",
  6596. "symfony/process": "<4.4"
  6597. },
  6598. "provide": {
  6599. "psr/log-implementation": "1.0|2.0"
  6600. },
  6601. "require-dev": {
  6602. "psr/log": "^1|^2",
  6603. "symfony/config": "^4.4|^5.0|^6.0",
  6604. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6605. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  6606. "symfony/lock": "^4.4|^5.0|^6.0",
  6607. "symfony/process": "^4.4|^5.0|^6.0",
  6608. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6609. },
  6610. "suggest": {
  6611. "psr/log": "For using the console logger",
  6612. "symfony/event-dispatcher": "",
  6613. "symfony/lock": "",
  6614. "symfony/process": ""
  6615. },
  6616. "type": "library",
  6617. "autoload": {
  6618. "psr-4": {
  6619. "Symfony\\Component\\Console\\": ""
  6620. },
  6621. "exclude-from-classmap": [
  6622. "/Tests/"
  6623. ]
  6624. },
  6625. "notification-url": "https://packagist.org/downloads/",
  6626. "license": [
  6627. "MIT"
  6628. ],
  6629. "authors": [
  6630. {
  6631. "name": "Fabien Potencier",
  6632. "email": "fabien@symfony.com"
  6633. },
  6634. {
  6635. "name": "Symfony Community",
  6636. "homepage": "https://symfony.com/contributors"
  6637. }
  6638. ],
  6639. "description": "Eases the creation of beautiful and testable command line interfaces",
  6640. "homepage": "https://symfony.com",
  6641. "keywords": [
  6642. "cli",
  6643. "command-line",
  6644. "console",
  6645. "terminal"
  6646. ],
  6647. "support": {
  6648. "source": "https://github.com/symfony/console/tree/v5.4.43"
  6649. },
  6650. "funding": [
  6651. {
  6652. "url": "https://symfony.com/sponsor",
  6653. "type": "custom"
  6654. },
  6655. {
  6656. "url": "https://github.com/fabpot",
  6657. "type": "github"
  6658. },
  6659. {
  6660. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6661. "type": "tidelift"
  6662. }
  6663. ],
  6664. "time": "2024-08-13T16:31:56+00:00"
  6665. },
  6666. {
  6667. "name": "symfony/css-selector",
  6668. "version": "v5.4.40",
  6669. "source": {
  6670. "type": "git",
  6671. "url": "https://github.com/symfony/css-selector.git",
  6672. "reference": "ea43887e9afd2029509662d4f95e8b5ef6fc9bbb"
  6673. },
  6674. "dist": {
  6675. "type": "zip",
  6676. "url": "https://api.github.com/repos/symfony/css-selector/zipball/ea43887e9afd2029509662d4f95e8b5ef6fc9bbb",
  6677. "reference": "ea43887e9afd2029509662d4f95e8b5ef6fc9bbb",
  6678. "shasum": ""
  6679. },
  6680. "require": {
  6681. "php": ">=7.2.5",
  6682. "symfony/polyfill-php80": "^1.16"
  6683. },
  6684. "type": "library",
  6685. "autoload": {
  6686. "psr-4": {
  6687. "Symfony\\Component\\CssSelector\\": ""
  6688. },
  6689. "exclude-from-classmap": [
  6690. "/Tests/"
  6691. ]
  6692. },
  6693. "notification-url": "https://packagist.org/downloads/",
  6694. "license": [
  6695. "MIT"
  6696. ],
  6697. "authors": [
  6698. {
  6699. "name": "Fabien Potencier",
  6700. "email": "fabien@symfony.com"
  6701. },
  6702. {
  6703. "name": "Jean-François Simon",
  6704. "email": "jeanfrancois.simon@sensiolabs.com"
  6705. },
  6706. {
  6707. "name": "Symfony Community",
  6708. "homepage": "https://symfony.com/contributors"
  6709. }
  6710. ],
  6711. "description": "Converts CSS selectors to XPath expressions",
  6712. "homepage": "https://symfony.com",
  6713. "support": {
  6714. "source": "https://github.com/symfony/css-selector/tree/v5.4.40"
  6715. },
  6716. "funding": [
  6717. {
  6718. "url": "https://symfony.com/sponsor",
  6719. "type": "custom"
  6720. },
  6721. {
  6722. "url": "https://github.com/fabpot",
  6723. "type": "github"
  6724. },
  6725. {
  6726. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6727. "type": "tidelift"
  6728. }
  6729. ],
  6730. "time": "2024-05-31T14:33:22+00:00"
  6731. },
  6732. {
  6733. "name": "symfony/deprecation-contracts",
  6734. "version": "v2.5.3",
  6735. "source": {
  6736. "type": "git",
  6737. "url": "https://github.com/symfony/deprecation-contracts.git",
  6738. "reference": "80d075412b557d41002320b96a096ca65aa2c98d"
  6739. },
  6740. "dist": {
  6741. "type": "zip",
  6742. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d",
  6743. "reference": "80d075412b557d41002320b96a096ca65aa2c98d",
  6744. "shasum": ""
  6745. },
  6746. "require": {
  6747. "php": ">=7.1"
  6748. },
  6749. "type": "library",
  6750. "extra": {
  6751. "branch-alias": {
  6752. "dev-main": "2.5-dev"
  6753. },
  6754. "thanks": {
  6755. "name": "symfony/contracts",
  6756. "url": "https://github.com/symfony/contracts"
  6757. }
  6758. },
  6759. "autoload": {
  6760. "files": [
  6761. "function.php"
  6762. ]
  6763. },
  6764. "notification-url": "https://packagist.org/downloads/",
  6765. "license": [
  6766. "MIT"
  6767. ],
  6768. "authors": [
  6769. {
  6770. "name": "Nicolas Grekas",
  6771. "email": "p@tchwork.com"
  6772. },
  6773. {
  6774. "name": "Symfony Community",
  6775. "homepage": "https://symfony.com/contributors"
  6776. }
  6777. ],
  6778. "description": "A generic function and convention to trigger deprecation notices",
  6779. "homepage": "https://symfony.com",
  6780. "support": {
  6781. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3"
  6782. },
  6783. "funding": [
  6784. {
  6785. "url": "https://symfony.com/sponsor",
  6786. "type": "custom"
  6787. },
  6788. {
  6789. "url": "https://github.com/fabpot",
  6790. "type": "github"
  6791. },
  6792. {
  6793. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6794. "type": "tidelift"
  6795. }
  6796. ],
  6797. "time": "2023-01-24T14:02:46+00:00"
  6798. },
  6799. {
  6800. "name": "symfony/error-handler",
  6801. "version": "v5.4.42",
  6802. "source": {
  6803. "type": "git",
  6804. "url": "https://github.com/symfony/error-handler.git",
  6805. "reference": "db15ba0fd50890156ed40087ccedc7851a1f5b76"
  6806. },
  6807. "dist": {
  6808. "type": "zip",
  6809. "url": "https://api.github.com/repos/symfony/error-handler/zipball/db15ba0fd50890156ed40087ccedc7851a1f5b76",
  6810. "reference": "db15ba0fd50890156ed40087ccedc7851a1f5b76",
  6811. "shasum": ""
  6812. },
  6813. "require": {
  6814. "php": ">=7.2.5",
  6815. "psr/log": "^1|^2|^3",
  6816. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6817. },
  6818. "require-dev": {
  6819. "symfony/deprecation-contracts": "^2.1|^3",
  6820. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6821. "symfony/serializer": "^4.4|^5.0|^6.0"
  6822. },
  6823. "bin": [
  6824. "Resources/bin/patch-type-declarations"
  6825. ],
  6826. "type": "library",
  6827. "autoload": {
  6828. "psr-4": {
  6829. "Symfony\\Component\\ErrorHandler\\": ""
  6830. },
  6831. "exclude-from-classmap": [
  6832. "/Tests/"
  6833. ]
  6834. },
  6835. "notification-url": "https://packagist.org/downloads/",
  6836. "license": [
  6837. "MIT"
  6838. ],
  6839. "authors": [
  6840. {
  6841. "name": "Fabien Potencier",
  6842. "email": "fabien@symfony.com"
  6843. },
  6844. {
  6845. "name": "Symfony Community",
  6846. "homepage": "https://symfony.com/contributors"
  6847. }
  6848. ],
  6849. "description": "Provides tools to manage errors and ease debugging PHP code",
  6850. "homepage": "https://symfony.com",
  6851. "support": {
  6852. "source": "https://github.com/symfony/error-handler/tree/v5.4.42"
  6853. },
  6854. "funding": [
  6855. {
  6856. "url": "https://symfony.com/sponsor",
  6857. "type": "custom"
  6858. },
  6859. {
  6860. "url": "https://github.com/fabpot",
  6861. "type": "github"
  6862. },
  6863. {
  6864. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6865. "type": "tidelift"
  6866. }
  6867. ],
  6868. "time": "2024-07-23T12:34:05+00:00"
  6869. },
  6870. {
  6871. "name": "symfony/event-dispatcher",
  6872. "version": "v5.4.40",
  6873. "source": {
  6874. "type": "git",
  6875. "url": "https://github.com/symfony/event-dispatcher.git",
  6876. "reference": "a54e2a8a114065f31020d6a89ede83e34c3b27a4"
  6877. },
  6878. "dist": {
  6879. "type": "zip",
  6880. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a54e2a8a114065f31020d6a89ede83e34c3b27a4",
  6881. "reference": "a54e2a8a114065f31020d6a89ede83e34c3b27a4",
  6882. "shasum": ""
  6883. },
  6884. "require": {
  6885. "php": ">=7.2.5",
  6886. "symfony/deprecation-contracts": "^2.1|^3",
  6887. "symfony/event-dispatcher-contracts": "^2|^3",
  6888. "symfony/polyfill-php80": "^1.16"
  6889. },
  6890. "conflict": {
  6891. "symfony/dependency-injection": "<4.4"
  6892. },
  6893. "provide": {
  6894. "psr/event-dispatcher-implementation": "1.0",
  6895. "symfony/event-dispatcher-implementation": "2.0"
  6896. },
  6897. "require-dev": {
  6898. "psr/log": "^1|^2|^3",
  6899. "symfony/config": "^4.4|^5.0|^6.0",
  6900. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6901. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6902. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6903. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6904. "symfony/service-contracts": "^1.1|^2|^3",
  6905. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  6906. },
  6907. "suggest": {
  6908. "symfony/dependency-injection": "",
  6909. "symfony/http-kernel": ""
  6910. },
  6911. "type": "library",
  6912. "autoload": {
  6913. "psr-4": {
  6914. "Symfony\\Component\\EventDispatcher\\": ""
  6915. },
  6916. "exclude-from-classmap": [
  6917. "/Tests/"
  6918. ]
  6919. },
  6920. "notification-url": "https://packagist.org/downloads/",
  6921. "license": [
  6922. "MIT"
  6923. ],
  6924. "authors": [
  6925. {
  6926. "name": "Fabien Potencier",
  6927. "email": "fabien@symfony.com"
  6928. },
  6929. {
  6930. "name": "Symfony Community",
  6931. "homepage": "https://symfony.com/contributors"
  6932. }
  6933. ],
  6934. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6935. "homepage": "https://symfony.com",
  6936. "support": {
  6937. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.40"
  6938. },
  6939. "funding": [
  6940. {
  6941. "url": "https://symfony.com/sponsor",
  6942. "type": "custom"
  6943. },
  6944. {
  6945. "url": "https://github.com/fabpot",
  6946. "type": "github"
  6947. },
  6948. {
  6949. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6950. "type": "tidelift"
  6951. }
  6952. ],
  6953. "time": "2024-05-31T14:33:22+00:00"
  6954. },
  6955. {
  6956. "name": "symfony/event-dispatcher-contracts",
  6957. "version": "v2.5.3",
  6958. "source": {
  6959. "type": "git",
  6960. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6961. "reference": "540f4c73e87fd0c71ca44a6aa305d024ac68cb73"
  6962. },
  6963. "dist": {
  6964. "type": "zip",
  6965. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/540f4c73e87fd0c71ca44a6aa305d024ac68cb73",
  6966. "reference": "540f4c73e87fd0c71ca44a6aa305d024ac68cb73",
  6967. "shasum": ""
  6968. },
  6969. "require": {
  6970. "php": ">=7.2.5",
  6971. "psr/event-dispatcher": "^1"
  6972. },
  6973. "suggest": {
  6974. "symfony/event-dispatcher-implementation": ""
  6975. },
  6976. "type": "library",
  6977. "extra": {
  6978. "branch-alias": {
  6979. "dev-main": "2.5-dev"
  6980. },
  6981. "thanks": {
  6982. "name": "symfony/contracts",
  6983. "url": "https://github.com/symfony/contracts"
  6984. }
  6985. },
  6986. "autoload": {
  6987. "psr-4": {
  6988. "Symfony\\Contracts\\EventDispatcher\\": ""
  6989. }
  6990. },
  6991. "notification-url": "https://packagist.org/downloads/",
  6992. "license": [
  6993. "MIT"
  6994. ],
  6995. "authors": [
  6996. {
  6997. "name": "Nicolas Grekas",
  6998. "email": "p@tchwork.com"
  6999. },
  7000. {
  7001. "name": "Symfony Community",
  7002. "homepage": "https://symfony.com/contributors"
  7003. }
  7004. ],
  7005. "description": "Generic abstractions related to dispatching event",
  7006. "homepage": "https://symfony.com",
  7007. "keywords": [
  7008. "abstractions",
  7009. "contracts",
  7010. "decoupling",
  7011. "interfaces",
  7012. "interoperability",
  7013. "standards"
  7014. ],
  7015. "support": {
  7016. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.3"
  7017. },
  7018. "funding": [
  7019. {
  7020. "url": "https://symfony.com/sponsor",
  7021. "type": "custom"
  7022. },
  7023. {
  7024. "url": "https://github.com/fabpot",
  7025. "type": "github"
  7026. },
  7027. {
  7028. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7029. "type": "tidelift"
  7030. }
  7031. ],
  7032. "time": "2024-01-23T13:51:25+00:00"
  7033. },
  7034. {
  7035. "name": "symfony/finder",
  7036. "version": "v5.4.43",
  7037. "source": {
  7038. "type": "git",
  7039. "url": "https://github.com/symfony/finder.git",
  7040. "reference": "ae25a9145a900764158d439653d5630191155ca0"
  7041. },
  7042. "dist": {
  7043. "type": "zip",
  7044. "url": "https://api.github.com/repos/symfony/finder/zipball/ae25a9145a900764158d439653d5630191155ca0",
  7045. "reference": "ae25a9145a900764158d439653d5630191155ca0",
  7046. "shasum": ""
  7047. },
  7048. "require": {
  7049. "php": ">=7.2.5",
  7050. "symfony/deprecation-contracts": "^2.1|^3",
  7051. "symfony/polyfill-php80": "^1.16"
  7052. },
  7053. "type": "library",
  7054. "autoload": {
  7055. "psr-4": {
  7056. "Symfony\\Component\\Finder\\": ""
  7057. },
  7058. "exclude-from-classmap": [
  7059. "/Tests/"
  7060. ]
  7061. },
  7062. "notification-url": "https://packagist.org/downloads/",
  7063. "license": [
  7064. "MIT"
  7065. ],
  7066. "authors": [
  7067. {
  7068. "name": "Fabien Potencier",
  7069. "email": "fabien@symfony.com"
  7070. },
  7071. {
  7072. "name": "Symfony Community",
  7073. "homepage": "https://symfony.com/contributors"
  7074. }
  7075. ],
  7076. "description": "Finds files and directories via an intuitive fluent interface",
  7077. "homepage": "https://symfony.com",
  7078. "support": {
  7079. "source": "https://github.com/symfony/finder/tree/v5.4.43"
  7080. },
  7081. "funding": [
  7082. {
  7083. "url": "https://symfony.com/sponsor",
  7084. "type": "custom"
  7085. },
  7086. {
  7087. "url": "https://github.com/fabpot",
  7088. "type": "github"
  7089. },
  7090. {
  7091. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7092. "type": "tidelift"
  7093. }
  7094. ],
  7095. "time": "2024-08-13T14:03:51+00:00"
  7096. },
  7097. {
  7098. "name": "symfony/http-foundation",
  7099. "version": "v5.4.42",
  7100. "source": {
  7101. "type": "git",
  7102. "url": "https://github.com/symfony/http-foundation.git",
  7103. "reference": "9c375b2abef0b657aa0b7612b763df5c12a465ab"
  7104. },
  7105. "dist": {
  7106. "type": "zip",
  7107. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9c375b2abef0b657aa0b7612b763df5c12a465ab",
  7108. "reference": "9c375b2abef0b657aa0b7612b763df5c12a465ab",
  7109. "shasum": ""
  7110. },
  7111. "require": {
  7112. "php": ">=7.2.5",
  7113. "symfony/deprecation-contracts": "^2.1|^3",
  7114. "symfony/polyfill-mbstring": "~1.1",
  7115. "symfony/polyfill-php80": "^1.16"
  7116. },
  7117. "require-dev": {
  7118. "predis/predis": "^1.0|^2.0",
  7119. "symfony/cache": "^4.4|^5.0|^6.0",
  7120. "symfony/dependency-injection": "^5.4|^6.0",
  7121. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7122. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  7123. "symfony/mime": "^4.4|^5.0|^6.0",
  7124. "symfony/rate-limiter": "^5.2|^6.0"
  7125. },
  7126. "suggest": {
  7127. "symfony/mime": "To use the file extension guesser"
  7128. },
  7129. "type": "library",
  7130. "autoload": {
  7131. "psr-4": {
  7132. "Symfony\\Component\\HttpFoundation\\": ""
  7133. },
  7134. "exclude-from-classmap": [
  7135. "/Tests/"
  7136. ]
  7137. },
  7138. "notification-url": "https://packagist.org/downloads/",
  7139. "license": [
  7140. "MIT"
  7141. ],
  7142. "authors": [
  7143. {
  7144. "name": "Fabien Potencier",
  7145. "email": "fabien@symfony.com"
  7146. },
  7147. {
  7148. "name": "Symfony Community",
  7149. "homepage": "https://symfony.com/contributors"
  7150. }
  7151. ],
  7152. "description": "Defines an object-oriented layer for the HTTP specification",
  7153. "homepage": "https://symfony.com",
  7154. "support": {
  7155. "source": "https://github.com/symfony/http-foundation/tree/v5.4.42"
  7156. },
  7157. "funding": [
  7158. {
  7159. "url": "https://symfony.com/sponsor",
  7160. "type": "custom"
  7161. },
  7162. {
  7163. "url": "https://github.com/fabpot",
  7164. "type": "github"
  7165. },
  7166. {
  7167. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7168. "type": "tidelift"
  7169. }
  7170. ],
  7171. "time": "2024-07-26T11:59:59+00:00"
  7172. },
  7173. {
  7174. "name": "symfony/http-kernel",
  7175. "version": "v5.4.43",
  7176. "source": {
  7177. "type": "git",
  7178. "url": "https://github.com/symfony/http-kernel.git",
  7179. "reference": "83f101ea1122972ffe52d1c1f6957a824c205370"
  7180. },
  7181. "dist": {
  7182. "type": "zip",
  7183. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/83f101ea1122972ffe52d1c1f6957a824c205370",
  7184. "reference": "83f101ea1122972ffe52d1c1f6957a824c205370",
  7185. "shasum": ""
  7186. },
  7187. "require": {
  7188. "php": ">=7.2.5",
  7189. "psr/log": "^1|^2",
  7190. "symfony/deprecation-contracts": "^2.1|^3",
  7191. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7192. "symfony/event-dispatcher": "^5.0|^6.0",
  7193. "symfony/http-foundation": "^5.4.21|^6.2.7",
  7194. "symfony/polyfill-ctype": "^1.8",
  7195. "symfony/polyfill-php73": "^1.9",
  7196. "symfony/polyfill-php80": "^1.16"
  7197. },
  7198. "conflict": {
  7199. "symfony/browser-kit": "<5.4",
  7200. "symfony/cache": "<5.0",
  7201. "symfony/config": "<5.0",
  7202. "symfony/console": "<4.4",
  7203. "symfony/dependency-injection": "<5.3",
  7204. "symfony/doctrine-bridge": "<5.0",
  7205. "symfony/form": "<5.0",
  7206. "symfony/http-client": "<5.0",
  7207. "symfony/mailer": "<5.0",
  7208. "symfony/messenger": "<5.0",
  7209. "symfony/translation": "<5.0",
  7210. "symfony/twig-bridge": "<5.0",
  7211. "symfony/validator": "<5.0",
  7212. "twig/twig": "<2.13"
  7213. },
  7214. "provide": {
  7215. "psr/log-implementation": "1.0|2.0"
  7216. },
  7217. "require-dev": {
  7218. "psr/cache": "^1.0|^2.0|^3.0",
  7219. "symfony/browser-kit": "^5.4|^6.0",
  7220. "symfony/config": "^5.0|^6.0",
  7221. "symfony/console": "^4.4|^5.0|^6.0",
  7222. "symfony/css-selector": "^4.4|^5.0|^6.0",
  7223. "symfony/dependency-injection": "^5.3|^6.0",
  7224. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  7225. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7226. "symfony/finder": "^4.4|^5.0|^6.0",
  7227. "symfony/http-client-contracts": "^1.1|^2|^3",
  7228. "symfony/process": "^4.4|^5.0|^6.0",
  7229. "symfony/routing": "^4.4|^5.0|^6.0",
  7230. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  7231. "symfony/translation": "^4.4|^5.0|^6.0",
  7232. "symfony/translation-contracts": "^1.1|^2|^3",
  7233. "symfony/var-dumper": "^4.4.31|^5.4",
  7234. "twig/twig": "^2.13|^3.0.4"
  7235. },
  7236. "suggest": {
  7237. "symfony/browser-kit": "",
  7238. "symfony/config": "",
  7239. "symfony/console": "",
  7240. "symfony/dependency-injection": ""
  7241. },
  7242. "type": "library",
  7243. "autoload": {
  7244. "psr-4": {
  7245. "Symfony\\Component\\HttpKernel\\": ""
  7246. },
  7247. "exclude-from-classmap": [
  7248. "/Tests/"
  7249. ]
  7250. },
  7251. "notification-url": "https://packagist.org/downloads/",
  7252. "license": [
  7253. "MIT"
  7254. ],
  7255. "authors": [
  7256. {
  7257. "name": "Fabien Potencier",
  7258. "email": "fabien@symfony.com"
  7259. },
  7260. {
  7261. "name": "Symfony Community",
  7262. "homepage": "https://symfony.com/contributors"
  7263. }
  7264. ],
  7265. "description": "Provides a structured process for converting a Request into a Response",
  7266. "homepage": "https://symfony.com",
  7267. "support": {
  7268. "source": "https://github.com/symfony/http-kernel/tree/v5.4.43"
  7269. },
  7270. "funding": [
  7271. {
  7272. "url": "https://symfony.com/sponsor",
  7273. "type": "custom"
  7274. },
  7275. {
  7276. "url": "https://github.com/fabpot",
  7277. "type": "github"
  7278. },
  7279. {
  7280. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7281. "type": "tidelift"
  7282. }
  7283. ],
  7284. "time": "2024-08-30T16:52:25+00:00"
  7285. },
  7286. {
  7287. "name": "symfony/mime",
  7288. "version": "v5.4.43",
  7289. "source": {
  7290. "type": "git",
  7291. "url": "https://github.com/symfony/mime.git",
  7292. "reference": "a02711d6ce461edada8c0f8641aa536709b99b47"
  7293. },
  7294. "dist": {
  7295. "type": "zip",
  7296. "url": "https://api.github.com/repos/symfony/mime/zipball/a02711d6ce461edada8c0f8641aa536709b99b47",
  7297. "reference": "a02711d6ce461edada8c0f8641aa536709b99b47",
  7298. "shasum": ""
  7299. },
  7300. "require": {
  7301. "php": ">=7.2.5",
  7302. "symfony/deprecation-contracts": "^2.1|^3",
  7303. "symfony/polyfill-intl-idn": "^1.10",
  7304. "symfony/polyfill-mbstring": "^1.0",
  7305. "symfony/polyfill-php80": "^1.16"
  7306. },
  7307. "conflict": {
  7308. "egulias/email-validator": "~3.0.0",
  7309. "phpdocumentor/reflection-docblock": "<3.2.2",
  7310. "phpdocumentor/type-resolver": "<1.4.0",
  7311. "symfony/mailer": "<4.4",
  7312. "symfony/serializer": "<5.4.35|>=6,<6.3.12|>=6.4,<6.4.3"
  7313. },
  7314. "require-dev": {
  7315. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7316. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7317. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7318. "symfony/process": "^5.4|^6.4",
  7319. "symfony/property-access": "^4.4|^5.1|^6.0",
  7320. "symfony/property-info": "^4.4|^5.1|^6.0",
  7321. "symfony/serializer": "^5.4.35|~6.3.12|^6.4.3"
  7322. },
  7323. "type": "library",
  7324. "autoload": {
  7325. "psr-4": {
  7326. "Symfony\\Component\\Mime\\": ""
  7327. },
  7328. "exclude-from-classmap": [
  7329. "/Tests/"
  7330. ]
  7331. },
  7332. "notification-url": "https://packagist.org/downloads/",
  7333. "license": [
  7334. "MIT"
  7335. ],
  7336. "authors": [
  7337. {
  7338. "name": "Fabien Potencier",
  7339. "email": "fabien@symfony.com"
  7340. },
  7341. {
  7342. "name": "Symfony Community",
  7343. "homepage": "https://symfony.com/contributors"
  7344. }
  7345. ],
  7346. "description": "Allows manipulating MIME messages",
  7347. "homepage": "https://symfony.com",
  7348. "keywords": [
  7349. "mime",
  7350. "mime-type"
  7351. ],
  7352. "support": {
  7353. "source": "https://github.com/symfony/mime/tree/v5.4.43"
  7354. },
  7355. "funding": [
  7356. {
  7357. "url": "https://symfony.com/sponsor",
  7358. "type": "custom"
  7359. },
  7360. {
  7361. "url": "https://github.com/fabpot",
  7362. "type": "github"
  7363. },
  7364. {
  7365. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7366. "type": "tidelift"
  7367. }
  7368. ],
  7369. "time": "2024-08-13T10:38:38+00:00"
  7370. },
  7371. {
  7372. "name": "symfony/polyfill-ctype",
  7373. "version": "v1.31.0",
  7374. "source": {
  7375. "type": "git",
  7376. "url": "https://github.com/symfony/polyfill-ctype.git",
  7377. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7378. },
  7379. "dist": {
  7380. "type": "zip",
  7381. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7382. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7383. "shasum": ""
  7384. },
  7385. "require": {
  7386. "php": ">=7.2"
  7387. },
  7388. "provide": {
  7389. "ext-ctype": "*"
  7390. },
  7391. "suggest": {
  7392. "ext-ctype": "For best performance"
  7393. },
  7394. "type": "library",
  7395. "extra": {
  7396. "thanks": {
  7397. "name": "symfony/polyfill",
  7398. "url": "https://github.com/symfony/polyfill"
  7399. }
  7400. },
  7401. "autoload": {
  7402. "files": [
  7403. "bootstrap.php"
  7404. ],
  7405. "psr-4": {
  7406. "Symfony\\Polyfill\\Ctype\\": ""
  7407. }
  7408. },
  7409. "notification-url": "https://packagist.org/downloads/",
  7410. "license": [
  7411. "MIT"
  7412. ],
  7413. "authors": [
  7414. {
  7415. "name": "Gert de Pagter",
  7416. "email": "BackEndTea@gmail.com"
  7417. },
  7418. {
  7419. "name": "Symfony Community",
  7420. "homepage": "https://symfony.com/contributors"
  7421. }
  7422. ],
  7423. "description": "Symfony polyfill for ctype functions",
  7424. "homepage": "https://symfony.com",
  7425. "keywords": [
  7426. "compatibility",
  7427. "ctype",
  7428. "polyfill",
  7429. "portable"
  7430. ],
  7431. "support": {
  7432. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7433. },
  7434. "funding": [
  7435. {
  7436. "url": "https://symfony.com/sponsor",
  7437. "type": "custom"
  7438. },
  7439. {
  7440. "url": "https://github.com/fabpot",
  7441. "type": "github"
  7442. },
  7443. {
  7444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7445. "type": "tidelift"
  7446. }
  7447. ],
  7448. "time": "2024-09-09T11:45:10+00:00"
  7449. },
  7450. {
  7451. "name": "symfony/polyfill-iconv",
  7452. "version": "v1.31.0",
  7453. "source": {
  7454. "type": "git",
  7455. "url": "https://github.com/symfony/polyfill-iconv.git",
  7456. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
  7457. },
  7458. "dist": {
  7459. "type": "zip",
  7460. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
  7461. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
  7462. "shasum": ""
  7463. },
  7464. "require": {
  7465. "php": ">=7.2"
  7466. },
  7467. "provide": {
  7468. "ext-iconv": "*"
  7469. },
  7470. "suggest": {
  7471. "ext-iconv": "For best performance"
  7472. },
  7473. "type": "library",
  7474. "extra": {
  7475. "thanks": {
  7476. "name": "symfony/polyfill",
  7477. "url": "https://github.com/symfony/polyfill"
  7478. }
  7479. },
  7480. "autoload": {
  7481. "files": [
  7482. "bootstrap.php"
  7483. ],
  7484. "psr-4": {
  7485. "Symfony\\Polyfill\\Iconv\\": ""
  7486. }
  7487. },
  7488. "notification-url": "https://packagist.org/downloads/",
  7489. "license": [
  7490. "MIT"
  7491. ],
  7492. "authors": [
  7493. {
  7494. "name": "Nicolas Grekas",
  7495. "email": "p@tchwork.com"
  7496. },
  7497. {
  7498. "name": "Symfony Community",
  7499. "homepage": "https://symfony.com/contributors"
  7500. }
  7501. ],
  7502. "description": "Symfony polyfill for the Iconv extension",
  7503. "homepage": "https://symfony.com",
  7504. "keywords": [
  7505. "compatibility",
  7506. "iconv",
  7507. "polyfill",
  7508. "portable",
  7509. "shim"
  7510. ],
  7511. "support": {
  7512. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
  7513. },
  7514. "funding": [
  7515. {
  7516. "url": "https://symfony.com/sponsor",
  7517. "type": "custom"
  7518. },
  7519. {
  7520. "url": "https://github.com/fabpot",
  7521. "type": "github"
  7522. },
  7523. {
  7524. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7525. "type": "tidelift"
  7526. }
  7527. ],
  7528. "time": "2024-09-09T11:45:10+00:00"
  7529. },
  7530. {
  7531. "name": "symfony/polyfill-intl-grapheme",
  7532. "version": "v1.31.0",
  7533. "source": {
  7534. "type": "git",
  7535. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7536. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7537. },
  7538. "dist": {
  7539. "type": "zip",
  7540. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7541. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7542. "shasum": ""
  7543. },
  7544. "require": {
  7545. "php": ">=7.2"
  7546. },
  7547. "suggest": {
  7548. "ext-intl": "For best performance"
  7549. },
  7550. "type": "library",
  7551. "extra": {
  7552. "thanks": {
  7553. "name": "symfony/polyfill",
  7554. "url": "https://github.com/symfony/polyfill"
  7555. }
  7556. },
  7557. "autoload": {
  7558. "files": [
  7559. "bootstrap.php"
  7560. ],
  7561. "psr-4": {
  7562. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7563. }
  7564. },
  7565. "notification-url": "https://packagist.org/downloads/",
  7566. "license": [
  7567. "MIT"
  7568. ],
  7569. "authors": [
  7570. {
  7571. "name": "Nicolas Grekas",
  7572. "email": "p@tchwork.com"
  7573. },
  7574. {
  7575. "name": "Symfony Community",
  7576. "homepage": "https://symfony.com/contributors"
  7577. }
  7578. ],
  7579. "description": "Symfony polyfill for intl's grapheme_* functions",
  7580. "homepage": "https://symfony.com",
  7581. "keywords": [
  7582. "compatibility",
  7583. "grapheme",
  7584. "intl",
  7585. "polyfill",
  7586. "portable",
  7587. "shim"
  7588. ],
  7589. "support": {
  7590. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7591. },
  7592. "funding": [
  7593. {
  7594. "url": "https://symfony.com/sponsor",
  7595. "type": "custom"
  7596. },
  7597. {
  7598. "url": "https://github.com/fabpot",
  7599. "type": "github"
  7600. },
  7601. {
  7602. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7603. "type": "tidelift"
  7604. }
  7605. ],
  7606. "time": "2024-09-09T11:45:10+00:00"
  7607. },
  7608. {
  7609. "name": "symfony/polyfill-intl-idn",
  7610. "version": "v1.31.0",
  7611. "source": {
  7612. "type": "git",
  7613. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7614. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7615. },
  7616. "dist": {
  7617. "type": "zip",
  7618. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7619. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7620. "shasum": ""
  7621. },
  7622. "require": {
  7623. "php": ">=7.2",
  7624. "symfony/polyfill-intl-normalizer": "^1.10"
  7625. },
  7626. "suggest": {
  7627. "ext-intl": "For best performance"
  7628. },
  7629. "type": "library",
  7630. "extra": {
  7631. "thanks": {
  7632. "name": "symfony/polyfill",
  7633. "url": "https://github.com/symfony/polyfill"
  7634. }
  7635. },
  7636. "autoload": {
  7637. "files": [
  7638. "bootstrap.php"
  7639. ],
  7640. "psr-4": {
  7641. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7642. }
  7643. },
  7644. "notification-url": "https://packagist.org/downloads/",
  7645. "license": [
  7646. "MIT"
  7647. ],
  7648. "authors": [
  7649. {
  7650. "name": "Laurent Bassin",
  7651. "email": "laurent@bassin.info"
  7652. },
  7653. {
  7654. "name": "Trevor Rowbotham",
  7655. "email": "trevor.rowbotham@pm.me"
  7656. },
  7657. {
  7658. "name": "Symfony Community",
  7659. "homepage": "https://symfony.com/contributors"
  7660. }
  7661. ],
  7662. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7663. "homepage": "https://symfony.com",
  7664. "keywords": [
  7665. "compatibility",
  7666. "idn",
  7667. "intl",
  7668. "polyfill",
  7669. "portable",
  7670. "shim"
  7671. ],
  7672. "support": {
  7673. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7674. },
  7675. "funding": [
  7676. {
  7677. "url": "https://symfony.com/sponsor",
  7678. "type": "custom"
  7679. },
  7680. {
  7681. "url": "https://github.com/fabpot",
  7682. "type": "github"
  7683. },
  7684. {
  7685. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7686. "type": "tidelift"
  7687. }
  7688. ],
  7689. "time": "2024-09-09T11:45:10+00:00"
  7690. },
  7691. {
  7692. "name": "symfony/polyfill-intl-normalizer",
  7693. "version": "v1.31.0",
  7694. "source": {
  7695. "type": "git",
  7696. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7697. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7698. },
  7699. "dist": {
  7700. "type": "zip",
  7701. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7702. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7703. "shasum": ""
  7704. },
  7705. "require": {
  7706. "php": ">=7.2"
  7707. },
  7708. "suggest": {
  7709. "ext-intl": "For best performance"
  7710. },
  7711. "type": "library",
  7712. "extra": {
  7713. "thanks": {
  7714. "name": "symfony/polyfill",
  7715. "url": "https://github.com/symfony/polyfill"
  7716. }
  7717. },
  7718. "autoload": {
  7719. "files": [
  7720. "bootstrap.php"
  7721. ],
  7722. "psr-4": {
  7723. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7724. },
  7725. "classmap": [
  7726. "Resources/stubs"
  7727. ]
  7728. },
  7729. "notification-url": "https://packagist.org/downloads/",
  7730. "license": [
  7731. "MIT"
  7732. ],
  7733. "authors": [
  7734. {
  7735. "name": "Nicolas Grekas",
  7736. "email": "p@tchwork.com"
  7737. },
  7738. {
  7739. "name": "Symfony Community",
  7740. "homepage": "https://symfony.com/contributors"
  7741. }
  7742. ],
  7743. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7744. "homepage": "https://symfony.com",
  7745. "keywords": [
  7746. "compatibility",
  7747. "intl",
  7748. "normalizer",
  7749. "polyfill",
  7750. "portable",
  7751. "shim"
  7752. ],
  7753. "support": {
  7754. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7755. },
  7756. "funding": [
  7757. {
  7758. "url": "https://symfony.com/sponsor",
  7759. "type": "custom"
  7760. },
  7761. {
  7762. "url": "https://github.com/fabpot",
  7763. "type": "github"
  7764. },
  7765. {
  7766. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7767. "type": "tidelift"
  7768. }
  7769. ],
  7770. "time": "2024-09-09T11:45:10+00:00"
  7771. },
  7772. {
  7773. "name": "symfony/polyfill-mbstring",
  7774. "version": "v1.31.0",
  7775. "source": {
  7776. "type": "git",
  7777. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7778. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7779. },
  7780. "dist": {
  7781. "type": "zip",
  7782. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7783. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7784. "shasum": ""
  7785. },
  7786. "require": {
  7787. "php": ">=7.2"
  7788. },
  7789. "provide": {
  7790. "ext-mbstring": "*"
  7791. },
  7792. "suggest": {
  7793. "ext-mbstring": "For best performance"
  7794. },
  7795. "type": "library",
  7796. "extra": {
  7797. "thanks": {
  7798. "name": "symfony/polyfill",
  7799. "url": "https://github.com/symfony/polyfill"
  7800. }
  7801. },
  7802. "autoload": {
  7803. "files": [
  7804. "bootstrap.php"
  7805. ],
  7806. "psr-4": {
  7807. "Symfony\\Polyfill\\Mbstring\\": ""
  7808. }
  7809. },
  7810. "notification-url": "https://packagist.org/downloads/",
  7811. "license": [
  7812. "MIT"
  7813. ],
  7814. "authors": [
  7815. {
  7816. "name": "Nicolas Grekas",
  7817. "email": "p@tchwork.com"
  7818. },
  7819. {
  7820. "name": "Symfony Community",
  7821. "homepage": "https://symfony.com/contributors"
  7822. }
  7823. ],
  7824. "description": "Symfony polyfill for the Mbstring extension",
  7825. "homepage": "https://symfony.com",
  7826. "keywords": [
  7827. "compatibility",
  7828. "mbstring",
  7829. "polyfill",
  7830. "portable",
  7831. "shim"
  7832. ],
  7833. "support": {
  7834. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7835. },
  7836. "funding": [
  7837. {
  7838. "url": "https://symfony.com/sponsor",
  7839. "type": "custom"
  7840. },
  7841. {
  7842. "url": "https://github.com/fabpot",
  7843. "type": "github"
  7844. },
  7845. {
  7846. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7847. "type": "tidelift"
  7848. }
  7849. ],
  7850. "time": "2024-09-09T11:45:10+00:00"
  7851. },
  7852. {
  7853. "name": "symfony/polyfill-php73",
  7854. "version": "v1.31.0",
  7855. "source": {
  7856. "type": "git",
  7857. "url": "https://github.com/symfony/polyfill-php73.git",
  7858. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  7859. },
  7860. "dist": {
  7861. "type": "zip",
  7862. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  7863. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  7864. "shasum": ""
  7865. },
  7866. "require": {
  7867. "php": ">=7.2"
  7868. },
  7869. "type": "library",
  7870. "extra": {
  7871. "thanks": {
  7872. "name": "symfony/polyfill",
  7873. "url": "https://github.com/symfony/polyfill"
  7874. }
  7875. },
  7876. "autoload": {
  7877. "files": [
  7878. "bootstrap.php"
  7879. ],
  7880. "psr-4": {
  7881. "Symfony\\Polyfill\\Php73\\": ""
  7882. },
  7883. "classmap": [
  7884. "Resources/stubs"
  7885. ]
  7886. },
  7887. "notification-url": "https://packagist.org/downloads/",
  7888. "license": [
  7889. "MIT"
  7890. ],
  7891. "authors": [
  7892. {
  7893. "name": "Nicolas Grekas",
  7894. "email": "p@tchwork.com"
  7895. },
  7896. {
  7897. "name": "Symfony Community",
  7898. "homepage": "https://symfony.com/contributors"
  7899. }
  7900. ],
  7901. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  7902. "homepage": "https://symfony.com",
  7903. "keywords": [
  7904. "compatibility",
  7905. "polyfill",
  7906. "portable",
  7907. "shim"
  7908. ],
  7909. "support": {
  7910. "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0"
  7911. },
  7912. "funding": [
  7913. {
  7914. "url": "https://symfony.com/sponsor",
  7915. "type": "custom"
  7916. },
  7917. {
  7918. "url": "https://github.com/fabpot",
  7919. "type": "github"
  7920. },
  7921. {
  7922. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7923. "type": "tidelift"
  7924. }
  7925. ],
  7926. "time": "2024-09-09T11:45:10+00:00"
  7927. },
  7928. {
  7929. "name": "symfony/polyfill-php80",
  7930. "version": "v1.31.0",
  7931. "source": {
  7932. "type": "git",
  7933. "url": "https://github.com/symfony/polyfill-php80.git",
  7934. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7935. },
  7936. "dist": {
  7937. "type": "zip",
  7938. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7939. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7940. "shasum": ""
  7941. },
  7942. "require": {
  7943. "php": ">=7.2"
  7944. },
  7945. "type": "library",
  7946. "extra": {
  7947. "thanks": {
  7948. "name": "symfony/polyfill",
  7949. "url": "https://github.com/symfony/polyfill"
  7950. }
  7951. },
  7952. "autoload": {
  7953. "files": [
  7954. "bootstrap.php"
  7955. ],
  7956. "psr-4": {
  7957. "Symfony\\Polyfill\\Php80\\": ""
  7958. },
  7959. "classmap": [
  7960. "Resources/stubs"
  7961. ]
  7962. },
  7963. "notification-url": "https://packagist.org/downloads/",
  7964. "license": [
  7965. "MIT"
  7966. ],
  7967. "authors": [
  7968. {
  7969. "name": "Ion Bazan",
  7970. "email": "ion.bazan@gmail.com"
  7971. },
  7972. {
  7973. "name": "Nicolas Grekas",
  7974. "email": "p@tchwork.com"
  7975. },
  7976. {
  7977. "name": "Symfony Community",
  7978. "homepage": "https://symfony.com/contributors"
  7979. }
  7980. ],
  7981. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7982. "homepage": "https://symfony.com",
  7983. "keywords": [
  7984. "compatibility",
  7985. "polyfill",
  7986. "portable",
  7987. "shim"
  7988. ],
  7989. "support": {
  7990. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7991. },
  7992. "funding": [
  7993. {
  7994. "url": "https://symfony.com/sponsor",
  7995. "type": "custom"
  7996. },
  7997. {
  7998. "url": "https://github.com/fabpot",
  7999. "type": "github"
  8000. },
  8001. {
  8002. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8003. "type": "tidelift"
  8004. }
  8005. ],
  8006. "time": "2024-09-09T11:45:10+00:00"
  8007. },
  8008. {
  8009. "name": "symfony/polyfill-php81",
  8010. "version": "v1.31.0",
  8011. "source": {
  8012. "type": "git",
  8013. "url": "https://github.com/symfony/polyfill-php81.git",
  8014. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  8015. },
  8016. "dist": {
  8017. "type": "zip",
  8018. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  8019. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  8020. "shasum": ""
  8021. },
  8022. "require": {
  8023. "php": ">=7.2"
  8024. },
  8025. "type": "library",
  8026. "extra": {
  8027. "thanks": {
  8028. "name": "symfony/polyfill",
  8029. "url": "https://github.com/symfony/polyfill"
  8030. }
  8031. },
  8032. "autoload": {
  8033. "files": [
  8034. "bootstrap.php"
  8035. ],
  8036. "psr-4": {
  8037. "Symfony\\Polyfill\\Php81\\": ""
  8038. },
  8039. "classmap": [
  8040. "Resources/stubs"
  8041. ]
  8042. },
  8043. "notification-url": "https://packagist.org/downloads/",
  8044. "license": [
  8045. "MIT"
  8046. ],
  8047. "authors": [
  8048. {
  8049. "name": "Nicolas Grekas",
  8050. "email": "p@tchwork.com"
  8051. },
  8052. {
  8053. "name": "Symfony Community",
  8054. "homepage": "https://symfony.com/contributors"
  8055. }
  8056. ],
  8057. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  8058. "homepage": "https://symfony.com",
  8059. "keywords": [
  8060. "compatibility",
  8061. "polyfill",
  8062. "portable",
  8063. "shim"
  8064. ],
  8065. "support": {
  8066. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  8067. },
  8068. "funding": [
  8069. {
  8070. "url": "https://symfony.com/sponsor",
  8071. "type": "custom"
  8072. },
  8073. {
  8074. "url": "https://github.com/fabpot",
  8075. "type": "github"
  8076. },
  8077. {
  8078. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8079. "type": "tidelift"
  8080. }
  8081. ],
  8082. "time": "2024-09-09T11:45:10+00:00"
  8083. },
  8084. {
  8085. "name": "symfony/process",
  8086. "version": "v5.4.40",
  8087. "source": {
  8088. "type": "git",
  8089. "url": "https://github.com/symfony/process.git",
  8090. "reference": "deedcb3bb4669cae2148bc920eafd2b16dc7c046"
  8091. },
  8092. "dist": {
  8093. "type": "zip",
  8094. "url": "https://api.github.com/repos/symfony/process/zipball/deedcb3bb4669cae2148bc920eafd2b16dc7c046",
  8095. "reference": "deedcb3bb4669cae2148bc920eafd2b16dc7c046",
  8096. "shasum": ""
  8097. },
  8098. "require": {
  8099. "php": ">=7.2.5",
  8100. "symfony/polyfill-php80": "^1.16"
  8101. },
  8102. "type": "library",
  8103. "autoload": {
  8104. "psr-4": {
  8105. "Symfony\\Component\\Process\\": ""
  8106. },
  8107. "exclude-from-classmap": [
  8108. "/Tests/"
  8109. ]
  8110. },
  8111. "notification-url": "https://packagist.org/downloads/",
  8112. "license": [
  8113. "MIT"
  8114. ],
  8115. "authors": [
  8116. {
  8117. "name": "Fabien Potencier",
  8118. "email": "fabien@symfony.com"
  8119. },
  8120. {
  8121. "name": "Symfony Community",
  8122. "homepage": "https://symfony.com/contributors"
  8123. }
  8124. ],
  8125. "description": "Executes commands in sub-processes",
  8126. "homepage": "https://symfony.com",
  8127. "support": {
  8128. "source": "https://github.com/symfony/process/tree/v5.4.40"
  8129. },
  8130. "funding": [
  8131. {
  8132. "url": "https://symfony.com/sponsor",
  8133. "type": "custom"
  8134. },
  8135. {
  8136. "url": "https://github.com/fabpot",
  8137. "type": "github"
  8138. },
  8139. {
  8140. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8141. "type": "tidelift"
  8142. }
  8143. ],
  8144. "time": "2024-05-31T14:33:22+00:00"
  8145. },
  8146. {
  8147. "name": "symfony/routing",
  8148. "version": "v5.4.43",
  8149. "source": {
  8150. "type": "git",
  8151. "url": "https://github.com/symfony/routing.git",
  8152. "reference": "b6f71780bbdd5e93e1c5638671cf0ba42aa8c6d8"
  8153. },
  8154. "dist": {
  8155. "type": "zip",
  8156. "url": "https://api.github.com/repos/symfony/routing/zipball/b6f71780bbdd5e93e1c5638671cf0ba42aa8c6d8",
  8157. "reference": "b6f71780bbdd5e93e1c5638671cf0ba42aa8c6d8",
  8158. "shasum": ""
  8159. },
  8160. "require": {
  8161. "php": ">=7.2.5",
  8162. "symfony/deprecation-contracts": "^2.1|^3",
  8163. "symfony/polyfill-php80": "^1.16"
  8164. },
  8165. "conflict": {
  8166. "doctrine/annotations": "<1.12",
  8167. "symfony/config": "<5.3",
  8168. "symfony/dependency-injection": "<4.4",
  8169. "symfony/yaml": "<4.4"
  8170. },
  8171. "require-dev": {
  8172. "doctrine/annotations": "^1.12|^2",
  8173. "psr/log": "^1|^2|^3",
  8174. "symfony/config": "^5.3|^6.0",
  8175. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  8176. "symfony/expression-language": "^4.4|^5.0|^6.0",
  8177. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  8178. "symfony/yaml": "^4.4|^5.0|^6.0"
  8179. },
  8180. "suggest": {
  8181. "symfony/config": "For using the all-in-one router or any loader",
  8182. "symfony/expression-language": "For using expression matching",
  8183. "symfony/http-foundation": "For using a Symfony Request object",
  8184. "symfony/yaml": "For using the YAML loader"
  8185. },
  8186. "type": "library",
  8187. "autoload": {
  8188. "psr-4": {
  8189. "Symfony\\Component\\Routing\\": ""
  8190. },
  8191. "exclude-from-classmap": [
  8192. "/Tests/"
  8193. ]
  8194. },
  8195. "notification-url": "https://packagist.org/downloads/",
  8196. "license": [
  8197. "MIT"
  8198. ],
  8199. "authors": [
  8200. {
  8201. "name": "Fabien Potencier",
  8202. "email": "fabien@symfony.com"
  8203. },
  8204. {
  8205. "name": "Symfony Community",
  8206. "homepage": "https://symfony.com/contributors"
  8207. }
  8208. ],
  8209. "description": "Maps an HTTP request to a set of configuration variables",
  8210. "homepage": "https://symfony.com",
  8211. "keywords": [
  8212. "router",
  8213. "routing",
  8214. "uri",
  8215. "url"
  8216. ],
  8217. "support": {
  8218. "source": "https://github.com/symfony/routing/tree/v5.4.43"
  8219. },
  8220. "funding": [
  8221. {
  8222. "url": "https://symfony.com/sponsor",
  8223. "type": "custom"
  8224. },
  8225. {
  8226. "url": "https://github.com/fabpot",
  8227. "type": "github"
  8228. },
  8229. {
  8230. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8231. "type": "tidelift"
  8232. }
  8233. ],
  8234. "time": "2024-08-27T06:36:52+00:00"
  8235. },
  8236. {
  8237. "name": "symfony/service-contracts",
  8238. "version": "v2.5.3",
  8239. "source": {
  8240. "type": "git",
  8241. "url": "https://github.com/symfony/service-contracts.git",
  8242. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3"
  8243. },
  8244. "dist": {
  8245. "type": "zip",
  8246. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  8247. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  8248. "shasum": ""
  8249. },
  8250. "require": {
  8251. "php": ">=7.2.5",
  8252. "psr/container": "^1.1",
  8253. "symfony/deprecation-contracts": "^2.1|^3"
  8254. },
  8255. "conflict": {
  8256. "ext-psr": "<1.1|>=2"
  8257. },
  8258. "suggest": {
  8259. "symfony/service-implementation": ""
  8260. },
  8261. "type": "library",
  8262. "extra": {
  8263. "branch-alias": {
  8264. "dev-main": "2.5-dev"
  8265. },
  8266. "thanks": {
  8267. "name": "symfony/contracts",
  8268. "url": "https://github.com/symfony/contracts"
  8269. }
  8270. },
  8271. "autoload": {
  8272. "psr-4": {
  8273. "Symfony\\Contracts\\Service\\": ""
  8274. }
  8275. },
  8276. "notification-url": "https://packagist.org/downloads/",
  8277. "license": [
  8278. "MIT"
  8279. ],
  8280. "authors": [
  8281. {
  8282. "name": "Nicolas Grekas",
  8283. "email": "p@tchwork.com"
  8284. },
  8285. {
  8286. "name": "Symfony Community",
  8287. "homepage": "https://symfony.com/contributors"
  8288. }
  8289. ],
  8290. "description": "Generic abstractions related to writing services",
  8291. "homepage": "https://symfony.com",
  8292. "keywords": [
  8293. "abstractions",
  8294. "contracts",
  8295. "decoupling",
  8296. "interfaces",
  8297. "interoperability",
  8298. "standards"
  8299. ],
  8300. "support": {
  8301. "source": "https://github.com/symfony/service-contracts/tree/v2.5.3"
  8302. },
  8303. "funding": [
  8304. {
  8305. "url": "https://symfony.com/sponsor",
  8306. "type": "custom"
  8307. },
  8308. {
  8309. "url": "https://github.com/fabpot",
  8310. "type": "github"
  8311. },
  8312. {
  8313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8314. "type": "tidelift"
  8315. }
  8316. ],
  8317. "time": "2023-04-21T15:04:16+00:00"
  8318. },
  8319. {
  8320. "name": "symfony/string",
  8321. "version": "v5.4.43",
  8322. "source": {
  8323. "type": "git",
  8324. "url": "https://github.com/symfony/string.git",
  8325. "reference": "8be1d484951ff5ca995eaf8edcbcb8b9a5888450"
  8326. },
  8327. "dist": {
  8328. "type": "zip",
  8329. "url": "https://api.github.com/repos/symfony/string/zipball/8be1d484951ff5ca995eaf8edcbcb8b9a5888450",
  8330. "reference": "8be1d484951ff5ca995eaf8edcbcb8b9a5888450",
  8331. "shasum": ""
  8332. },
  8333. "require": {
  8334. "php": ">=7.2.5",
  8335. "symfony/polyfill-ctype": "~1.8",
  8336. "symfony/polyfill-intl-grapheme": "~1.0",
  8337. "symfony/polyfill-intl-normalizer": "~1.0",
  8338. "symfony/polyfill-mbstring": "~1.0",
  8339. "symfony/polyfill-php80": "~1.15"
  8340. },
  8341. "conflict": {
  8342. "symfony/translation-contracts": ">=3.0"
  8343. },
  8344. "require-dev": {
  8345. "symfony/error-handler": "^4.4|^5.0|^6.0",
  8346. "symfony/http-client": "^4.4|^5.0|^6.0",
  8347. "symfony/translation-contracts": "^1.1|^2",
  8348. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  8349. },
  8350. "type": "library",
  8351. "autoload": {
  8352. "files": [
  8353. "Resources/functions.php"
  8354. ],
  8355. "psr-4": {
  8356. "Symfony\\Component\\String\\": ""
  8357. },
  8358. "exclude-from-classmap": [
  8359. "/Tests/"
  8360. ]
  8361. },
  8362. "notification-url": "https://packagist.org/downloads/",
  8363. "license": [
  8364. "MIT"
  8365. ],
  8366. "authors": [
  8367. {
  8368. "name": "Nicolas Grekas",
  8369. "email": "p@tchwork.com"
  8370. },
  8371. {
  8372. "name": "Symfony Community",
  8373. "homepage": "https://symfony.com/contributors"
  8374. }
  8375. ],
  8376. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8377. "homepage": "https://symfony.com",
  8378. "keywords": [
  8379. "grapheme",
  8380. "i18n",
  8381. "string",
  8382. "unicode",
  8383. "utf-8",
  8384. "utf8"
  8385. ],
  8386. "support": {
  8387. "source": "https://github.com/symfony/string/tree/v5.4.43"
  8388. },
  8389. "funding": [
  8390. {
  8391. "url": "https://symfony.com/sponsor",
  8392. "type": "custom"
  8393. },
  8394. {
  8395. "url": "https://github.com/fabpot",
  8396. "type": "github"
  8397. },
  8398. {
  8399. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8400. "type": "tidelift"
  8401. }
  8402. ],
  8403. "time": "2024-08-01T10:24:28+00:00"
  8404. },
  8405. {
  8406. "name": "symfony/translation",
  8407. "version": "v5.4.42",
  8408. "source": {
  8409. "type": "git",
  8410. "url": "https://github.com/symfony/translation.git",
  8411. "reference": "1d702caccb9f091b738696185f778b1bfef7b5b2"
  8412. },
  8413. "dist": {
  8414. "type": "zip",
  8415. "url": "https://api.github.com/repos/symfony/translation/zipball/1d702caccb9f091b738696185f778b1bfef7b5b2",
  8416. "reference": "1d702caccb9f091b738696185f778b1bfef7b5b2",
  8417. "shasum": ""
  8418. },
  8419. "require": {
  8420. "php": ">=7.2.5",
  8421. "symfony/deprecation-contracts": "^2.1|^3",
  8422. "symfony/polyfill-mbstring": "~1.0",
  8423. "symfony/polyfill-php80": "^1.16",
  8424. "symfony/translation-contracts": "^2.3"
  8425. },
  8426. "conflict": {
  8427. "symfony/config": "<4.4",
  8428. "symfony/console": "<5.3",
  8429. "symfony/dependency-injection": "<5.0",
  8430. "symfony/http-kernel": "<5.0",
  8431. "symfony/twig-bundle": "<5.0",
  8432. "symfony/yaml": "<4.4"
  8433. },
  8434. "provide": {
  8435. "symfony/translation-implementation": "2.3"
  8436. },
  8437. "require-dev": {
  8438. "psr/log": "^1|^2|^3",
  8439. "symfony/config": "^4.4|^5.0|^6.0",
  8440. "symfony/console": "^5.4|^6.0",
  8441. "symfony/dependency-injection": "^5.0|^6.0",
  8442. "symfony/finder": "^4.4|^5.0|^6.0",
  8443. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  8444. "symfony/http-kernel": "^5.0|^6.0",
  8445. "symfony/intl": "^4.4|^5.0|^6.0",
  8446. "symfony/polyfill-intl-icu": "^1.21",
  8447. "symfony/service-contracts": "^1.1.2|^2|^3",
  8448. "symfony/yaml": "^4.4|^5.0|^6.0"
  8449. },
  8450. "suggest": {
  8451. "psr/log-implementation": "To use logging capability in translator",
  8452. "symfony/config": "",
  8453. "symfony/yaml": ""
  8454. },
  8455. "type": "library",
  8456. "autoload": {
  8457. "files": [
  8458. "Resources/functions.php"
  8459. ],
  8460. "psr-4": {
  8461. "Symfony\\Component\\Translation\\": ""
  8462. },
  8463. "exclude-from-classmap": [
  8464. "/Tests/"
  8465. ]
  8466. },
  8467. "notification-url": "https://packagist.org/downloads/",
  8468. "license": [
  8469. "MIT"
  8470. ],
  8471. "authors": [
  8472. {
  8473. "name": "Fabien Potencier",
  8474. "email": "fabien@symfony.com"
  8475. },
  8476. {
  8477. "name": "Symfony Community",
  8478. "homepage": "https://symfony.com/contributors"
  8479. }
  8480. ],
  8481. "description": "Provides tools to internationalize your application",
  8482. "homepage": "https://symfony.com",
  8483. "support": {
  8484. "source": "https://github.com/symfony/translation/tree/v5.4.42"
  8485. },
  8486. "funding": [
  8487. {
  8488. "url": "https://symfony.com/sponsor",
  8489. "type": "custom"
  8490. },
  8491. {
  8492. "url": "https://github.com/fabpot",
  8493. "type": "github"
  8494. },
  8495. {
  8496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8497. "type": "tidelift"
  8498. }
  8499. ],
  8500. "time": "2024-07-26T12:14:19+00:00"
  8501. },
  8502. {
  8503. "name": "symfony/translation-contracts",
  8504. "version": "v2.5.3",
  8505. "source": {
  8506. "type": "git",
  8507. "url": "https://github.com/symfony/translation-contracts.git",
  8508. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664"
  8509. },
  8510. "dist": {
  8511. "type": "zip",
  8512. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b0073a77ac0b7ea55131020e87b1e3af540f4664",
  8513. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664",
  8514. "shasum": ""
  8515. },
  8516. "require": {
  8517. "php": ">=7.2.5"
  8518. },
  8519. "suggest": {
  8520. "symfony/translation-implementation": ""
  8521. },
  8522. "type": "library",
  8523. "extra": {
  8524. "branch-alias": {
  8525. "dev-main": "2.5-dev"
  8526. },
  8527. "thanks": {
  8528. "name": "symfony/contracts",
  8529. "url": "https://github.com/symfony/contracts"
  8530. }
  8531. },
  8532. "autoload": {
  8533. "psr-4": {
  8534. "Symfony\\Contracts\\Translation\\": ""
  8535. }
  8536. },
  8537. "notification-url": "https://packagist.org/downloads/",
  8538. "license": [
  8539. "MIT"
  8540. ],
  8541. "authors": [
  8542. {
  8543. "name": "Nicolas Grekas",
  8544. "email": "p@tchwork.com"
  8545. },
  8546. {
  8547. "name": "Symfony Community",
  8548. "homepage": "https://symfony.com/contributors"
  8549. }
  8550. ],
  8551. "description": "Generic abstractions related to translation",
  8552. "homepage": "https://symfony.com",
  8553. "keywords": [
  8554. "abstractions",
  8555. "contracts",
  8556. "decoupling",
  8557. "interfaces",
  8558. "interoperability",
  8559. "standards"
  8560. ],
  8561. "support": {
  8562. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.3"
  8563. },
  8564. "funding": [
  8565. {
  8566. "url": "https://symfony.com/sponsor",
  8567. "type": "custom"
  8568. },
  8569. {
  8570. "url": "https://github.com/fabpot",
  8571. "type": "github"
  8572. },
  8573. {
  8574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8575. "type": "tidelift"
  8576. }
  8577. ],
  8578. "time": "2024-01-23T13:51:25+00:00"
  8579. },
  8580. {
  8581. "name": "symfony/var-dumper",
  8582. "version": "v5.4.43",
  8583. "source": {
  8584. "type": "git",
  8585. "url": "https://github.com/symfony/var-dumper.git",
  8586. "reference": "6be6a6a8af4818564e3726fc65cf936f34743cef"
  8587. },
  8588. "dist": {
  8589. "type": "zip",
  8590. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6be6a6a8af4818564e3726fc65cf936f34743cef",
  8591. "reference": "6be6a6a8af4818564e3726fc65cf936f34743cef",
  8592. "shasum": ""
  8593. },
  8594. "require": {
  8595. "php": ">=7.2.5",
  8596. "symfony/polyfill-mbstring": "~1.0",
  8597. "symfony/polyfill-php80": "^1.16"
  8598. },
  8599. "conflict": {
  8600. "symfony/console": "<4.4"
  8601. },
  8602. "require-dev": {
  8603. "ext-iconv": "*",
  8604. "symfony/console": "^4.4|^5.0|^6.0",
  8605. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  8606. "symfony/process": "^4.4|^5.0|^6.0",
  8607. "symfony/uid": "^5.1|^6.0",
  8608. "twig/twig": "^2.13|^3.0.4"
  8609. },
  8610. "suggest": {
  8611. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8612. "ext-intl": "To show region name in time zone dump",
  8613. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8614. },
  8615. "bin": [
  8616. "Resources/bin/var-dump-server"
  8617. ],
  8618. "type": "library",
  8619. "autoload": {
  8620. "files": [
  8621. "Resources/functions/dump.php"
  8622. ],
  8623. "psr-4": {
  8624. "Symfony\\Component\\VarDumper\\": ""
  8625. },
  8626. "exclude-from-classmap": [
  8627. "/Tests/"
  8628. ]
  8629. },
  8630. "notification-url": "https://packagist.org/downloads/",
  8631. "license": [
  8632. "MIT"
  8633. ],
  8634. "authors": [
  8635. {
  8636. "name": "Nicolas Grekas",
  8637. "email": "p@tchwork.com"
  8638. },
  8639. {
  8640. "name": "Symfony Community",
  8641. "homepage": "https://symfony.com/contributors"
  8642. }
  8643. ],
  8644. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8645. "homepage": "https://symfony.com",
  8646. "keywords": [
  8647. "debug",
  8648. "dump"
  8649. ],
  8650. "support": {
  8651. "source": "https://github.com/symfony/var-dumper/tree/v5.4.43"
  8652. },
  8653. "funding": [
  8654. {
  8655. "url": "https://symfony.com/sponsor",
  8656. "type": "custom"
  8657. },
  8658. {
  8659. "url": "https://github.com/fabpot",
  8660. "type": "github"
  8661. },
  8662. {
  8663. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8664. "type": "tidelift"
  8665. }
  8666. ],
  8667. "time": "2024-08-30T16:01:46+00:00"
  8668. },
  8669. {
  8670. "name": "tijsverkoyen/css-to-inline-styles",
  8671. "version": "v2.2.7",
  8672. "source": {
  8673. "type": "git",
  8674. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8675. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  8676. },
  8677. "dist": {
  8678. "type": "zip",
  8679. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8680. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8681. "shasum": ""
  8682. },
  8683. "require": {
  8684. "ext-dom": "*",
  8685. "ext-libxml": "*",
  8686. "php": "^5.5 || ^7.0 || ^8.0",
  8687. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  8688. },
  8689. "require-dev": {
  8690. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8691. },
  8692. "type": "library",
  8693. "extra": {
  8694. "branch-alias": {
  8695. "dev-master": "2.2.x-dev"
  8696. }
  8697. },
  8698. "autoload": {
  8699. "psr-4": {
  8700. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8701. }
  8702. },
  8703. "notification-url": "https://packagist.org/downloads/",
  8704. "license": [
  8705. "BSD-3-Clause"
  8706. ],
  8707. "authors": [
  8708. {
  8709. "name": "Tijs Verkoyen",
  8710. "email": "css_to_inline_styles@verkoyen.eu",
  8711. "role": "Developer"
  8712. }
  8713. ],
  8714. "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.",
  8715. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8716. "support": {
  8717. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8718. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  8719. },
  8720. "time": "2023-12-08T13:03:43+00:00"
  8721. },
  8722. {
  8723. "name": "vlucas/phpdotenv",
  8724. "version": "v5.6.1",
  8725. "source": {
  8726. "type": "git",
  8727. "url": "https://github.com/vlucas/phpdotenv.git",
  8728. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  8729. },
  8730. "dist": {
  8731. "type": "zip",
  8732. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8733. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8734. "shasum": ""
  8735. },
  8736. "require": {
  8737. "ext-pcre": "*",
  8738. "graham-campbell/result-type": "^1.1.3",
  8739. "php": "^7.2.5 || ^8.0",
  8740. "phpoption/phpoption": "^1.9.3",
  8741. "symfony/polyfill-ctype": "^1.24",
  8742. "symfony/polyfill-mbstring": "^1.24",
  8743. "symfony/polyfill-php80": "^1.24"
  8744. },
  8745. "require-dev": {
  8746. "bamarni/composer-bin-plugin": "^1.8.2",
  8747. "ext-filter": "*",
  8748. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8749. },
  8750. "suggest": {
  8751. "ext-filter": "Required to use the boolean validator."
  8752. },
  8753. "type": "library",
  8754. "extra": {
  8755. "bamarni-bin": {
  8756. "bin-links": true,
  8757. "forward-command": false
  8758. },
  8759. "branch-alias": {
  8760. "dev-master": "5.6-dev"
  8761. }
  8762. },
  8763. "autoload": {
  8764. "psr-4": {
  8765. "Dotenv\\": "src/"
  8766. }
  8767. },
  8768. "notification-url": "https://packagist.org/downloads/",
  8769. "license": [
  8770. "BSD-3-Clause"
  8771. ],
  8772. "authors": [
  8773. {
  8774. "name": "Graham Campbell",
  8775. "email": "hello@gjcampbell.co.uk",
  8776. "homepage": "https://github.com/GrahamCampbell"
  8777. },
  8778. {
  8779. "name": "Vance Lucas",
  8780. "email": "vance@vancelucas.com",
  8781. "homepage": "https://github.com/vlucas"
  8782. }
  8783. ],
  8784. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8785. "keywords": [
  8786. "dotenv",
  8787. "env",
  8788. "environment"
  8789. ],
  8790. "support": {
  8791. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8792. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8793. },
  8794. "funding": [
  8795. {
  8796. "url": "https://github.com/GrahamCampbell",
  8797. "type": "github"
  8798. },
  8799. {
  8800. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8801. "type": "tidelift"
  8802. }
  8803. ],
  8804. "time": "2024-07-20T21:52:34+00:00"
  8805. },
  8806. {
  8807. "name": "voku/portable-ascii",
  8808. "version": "1.6.1",
  8809. "source": {
  8810. "type": "git",
  8811. "url": "https://github.com/voku/portable-ascii.git",
  8812. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  8813. },
  8814. "dist": {
  8815. "type": "zip",
  8816. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  8817. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  8818. "shasum": ""
  8819. },
  8820. "require": {
  8821. "php": ">=7.0.0"
  8822. },
  8823. "require-dev": {
  8824. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8825. },
  8826. "suggest": {
  8827. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8828. },
  8829. "type": "library",
  8830. "autoload": {
  8831. "psr-4": {
  8832. "voku\\": "src/voku/"
  8833. }
  8834. },
  8835. "notification-url": "https://packagist.org/downloads/",
  8836. "license": [
  8837. "MIT"
  8838. ],
  8839. "authors": [
  8840. {
  8841. "name": "Lars Moelleken",
  8842. "homepage": "http://www.moelleken.org/"
  8843. }
  8844. ],
  8845. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8846. "homepage": "https://github.com/voku/portable-ascii",
  8847. "keywords": [
  8848. "ascii",
  8849. "clean",
  8850. "php"
  8851. ],
  8852. "support": {
  8853. "issues": "https://github.com/voku/portable-ascii/issues",
  8854. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  8855. },
  8856. "funding": [
  8857. {
  8858. "url": "https://www.paypal.me/moelleken",
  8859. "type": "custom"
  8860. },
  8861. {
  8862. "url": "https://github.com/voku",
  8863. "type": "github"
  8864. },
  8865. {
  8866. "url": "https://opencollective.com/portable-ascii",
  8867. "type": "open_collective"
  8868. },
  8869. {
  8870. "url": "https://www.patreon.com/voku",
  8871. "type": "patreon"
  8872. },
  8873. {
  8874. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8875. "type": "tidelift"
  8876. }
  8877. ],
  8878. "time": "2022-01-24T18:55:24+00:00"
  8879. },
  8880. {
  8881. "name": "webmozart/assert",
  8882. "version": "1.11.0",
  8883. "source": {
  8884. "type": "git",
  8885. "url": "https://github.com/webmozarts/assert.git",
  8886. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8887. },
  8888. "dist": {
  8889. "type": "zip",
  8890. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8891. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8892. "shasum": ""
  8893. },
  8894. "require": {
  8895. "ext-ctype": "*",
  8896. "php": "^7.2 || ^8.0"
  8897. },
  8898. "conflict": {
  8899. "phpstan/phpstan": "<0.12.20",
  8900. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8901. },
  8902. "require-dev": {
  8903. "phpunit/phpunit": "^8.5.13"
  8904. },
  8905. "type": "library",
  8906. "extra": {
  8907. "branch-alias": {
  8908. "dev-master": "1.10-dev"
  8909. }
  8910. },
  8911. "autoload": {
  8912. "psr-4": {
  8913. "Webmozart\\Assert\\": "src/"
  8914. }
  8915. },
  8916. "notification-url": "https://packagist.org/downloads/",
  8917. "license": [
  8918. "MIT"
  8919. ],
  8920. "authors": [
  8921. {
  8922. "name": "Bernhard Schussek",
  8923. "email": "bschussek@gmail.com"
  8924. }
  8925. ],
  8926. "description": "Assertions to validate method input/output with nice error messages.",
  8927. "keywords": [
  8928. "assert",
  8929. "check",
  8930. "validate"
  8931. ],
  8932. "support": {
  8933. "issues": "https://github.com/webmozarts/assert/issues",
  8934. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8935. },
  8936. "time": "2022-06-03T18:03:27+00:00"
  8937. },
  8938. {
  8939. "name": "wngur6076/wngurest-php80",
  8940. "version": "dev-master",
  8941. "source": {
  8942. "type": "git",
  8943. "url": "https://github.com/wngur6076/wngurest-php80.git",
  8944. "reference": "439b8d2c4ea14fc1179304c65c54053ba65fd1cb"
  8945. },
  8946. "dist": {
  8947. "type": "zip",
  8948. "url": "https://api.github.com/repos/wngur6076/wngurest-php80/zipball/439b8d2c4ea14fc1179304c65c54053ba65fd1cb",
  8949. "reference": "439b8d2c4ea14fc1179304c65c54053ba65fd1cb",
  8950. "shasum": ""
  8951. },
  8952. "require": {
  8953. "ext-curl": "*",
  8954. "php": ">=5.4.0"
  8955. },
  8956. "require-dev": {
  8957. "codeclimate/php-test-reporter": "0.1.*",
  8958. "phpunit/phpunit": "~4.4"
  8959. },
  8960. "suggest": {
  8961. "ext-json": "Allows using JSON Bodies for sending and parsing requests"
  8962. },
  8963. "default-branch": true,
  8964. "type": "library",
  8965. "autoload": {
  8966. "psr-0": {
  8967. "Unirest\\": "src/"
  8968. }
  8969. },
  8970. "notification-url": "https://packagist.org/downloads/",
  8971. "license": [
  8972. "MIT"
  8973. ],
  8974. "description": "Unirest PHP",
  8975. "homepage": "https://github.com/Mashape/unirest-php",
  8976. "keywords": [
  8977. "client",
  8978. "curl",
  8979. "http",
  8980. "https",
  8981. "rest"
  8982. ],
  8983. "support": {
  8984. "email": "wngur6076@naver.com",
  8985. "issues": "https://github.com/wngur6076/wngurest-php80/issues",
  8986. "source": "https://github.com/wngur6076/wngurest-php80/tree/master"
  8987. },
  8988. "time": "2022-09-08T01:46:17+00:00"
  8989. }
  8990. ],
  8991. "packages-dev": [
  8992. {
  8993. "name": "doctrine/instantiator",
  8994. "version": "1.5.0",
  8995. "source": {
  8996. "type": "git",
  8997. "url": "https://github.com/doctrine/instantiator.git",
  8998. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8999. },
  9000. "dist": {
  9001. "type": "zip",
  9002. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  9003. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  9004. "shasum": ""
  9005. },
  9006. "require": {
  9007. "php": "^7.1 || ^8.0"
  9008. },
  9009. "require-dev": {
  9010. "doctrine/coding-standard": "^9 || ^11",
  9011. "ext-pdo": "*",
  9012. "ext-phar": "*",
  9013. "phpbench/phpbench": "^0.16 || ^1",
  9014. "phpstan/phpstan": "^1.4",
  9015. "phpstan/phpstan-phpunit": "^1",
  9016. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  9017. "vimeo/psalm": "^4.30 || ^5.4"
  9018. },
  9019. "type": "library",
  9020. "autoload": {
  9021. "psr-4": {
  9022. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  9023. }
  9024. },
  9025. "notification-url": "https://packagist.org/downloads/",
  9026. "license": [
  9027. "MIT"
  9028. ],
  9029. "authors": [
  9030. {
  9031. "name": "Marco Pivetta",
  9032. "email": "ocramius@gmail.com",
  9033. "homepage": "https://ocramius.github.io/"
  9034. }
  9035. ],
  9036. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  9037. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  9038. "keywords": [
  9039. "constructor",
  9040. "instantiate"
  9041. ],
  9042. "support": {
  9043. "issues": "https://github.com/doctrine/instantiator/issues",
  9044. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  9045. },
  9046. "funding": [
  9047. {
  9048. "url": "https://www.doctrine-project.org/sponsorship.html",
  9049. "type": "custom"
  9050. },
  9051. {
  9052. "url": "https://www.patreon.com/phpdoctrine",
  9053. "type": "patreon"
  9054. },
  9055. {
  9056. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  9057. "type": "tidelift"
  9058. }
  9059. ],
  9060. "time": "2022-12-30T00:15:36+00:00"
  9061. },
  9062. {
  9063. "name": "facade/flare-client-php",
  9064. "version": "1.10.0",
  9065. "source": {
  9066. "type": "git",
  9067. "url": "https://github.com/facade/flare-client-php.git",
  9068. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  9069. },
  9070. "dist": {
  9071. "type": "zip",
  9072. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  9073. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  9074. "shasum": ""
  9075. },
  9076. "require": {
  9077. "facade/ignition-contracts": "~1.0",
  9078. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  9079. "php": "^7.1|^8.0",
  9080. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  9081. "symfony/mime": "^3.4|^4.0|^5.1",
  9082. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  9083. },
  9084. "require-dev": {
  9085. "friendsofphp/php-cs-fixer": "^2.14",
  9086. "phpunit/phpunit": "^7.5",
  9087. "spatie/phpunit-snapshot-assertions": "^2.0"
  9088. },
  9089. "type": "library",
  9090. "extra": {
  9091. "branch-alias": {
  9092. "dev-master": "1.0-dev"
  9093. }
  9094. },
  9095. "autoload": {
  9096. "files": [
  9097. "src/helpers.php"
  9098. ],
  9099. "psr-4": {
  9100. "Facade\\FlareClient\\": "src"
  9101. }
  9102. },
  9103. "notification-url": "https://packagist.org/downloads/",
  9104. "license": [
  9105. "MIT"
  9106. ],
  9107. "description": "Send PHP errors to Flare",
  9108. "homepage": "https://github.com/facade/flare-client-php",
  9109. "keywords": [
  9110. "exception",
  9111. "facade",
  9112. "flare",
  9113. "reporting"
  9114. ],
  9115. "support": {
  9116. "issues": "https://github.com/facade/flare-client-php/issues",
  9117. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  9118. },
  9119. "funding": [
  9120. {
  9121. "url": "https://github.com/spatie",
  9122. "type": "github"
  9123. }
  9124. ],
  9125. "time": "2022-08-09T11:23:57+00:00"
  9126. },
  9127. {
  9128. "name": "facade/ignition",
  9129. "version": "2.17.7",
  9130. "source": {
  9131. "type": "git",
  9132. "url": "https://github.com/facade/ignition.git",
  9133. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  9134. },
  9135. "dist": {
  9136. "type": "zip",
  9137. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  9138. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  9139. "shasum": ""
  9140. },
  9141. "require": {
  9142. "ext-curl": "*",
  9143. "ext-json": "*",
  9144. "ext-mbstring": "*",
  9145. "facade/flare-client-php": "^1.9.1",
  9146. "facade/ignition-contracts": "^1.0.2",
  9147. "illuminate/support": "^7.0|^8.0",
  9148. "monolog/monolog": "^2.0",
  9149. "php": "^7.2.5|^8.0",
  9150. "symfony/console": "^5.0",
  9151. "symfony/var-dumper": "^5.0"
  9152. },
  9153. "require-dev": {
  9154. "friendsofphp/php-cs-fixer": "^2.14",
  9155. "livewire/livewire": "^2.4",
  9156. "mockery/mockery": "^1.3",
  9157. "orchestra/testbench": "^5.0|^6.0",
  9158. "psalm/plugin-laravel": "^1.2"
  9159. },
  9160. "suggest": {
  9161. "laravel/telescope": "^3.1"
  9162. },
  9163. "type": "library",
  9164. "extra": {
  9165. "branch-alias": {
  9166. "dev-master": "2.x-dev"
  9167. },
  9168. "laravel": {
  9169. "providers": [
  9170. "Facade\\Ignition\\IgnitionServiceProvider"
  9171. ],
  9172. "aliases": {
  9173. "Flare": "Facade\\Ignition\\Facades\\Flare"
  9174. }
  9175. }
  9176. },
  9177. "autoload": {
  9178. "files": [
  9179. "src/helpers.php"
  9180. ],
  9181. "psr-4": {
  9182. "Facade\\Ignition\\": "src"
  9183. }
  9184. },
  9185. "notification-url": "https://packagist.org/downloads/",
  9186. "license": [
  9187. "MIT"
  9188. ],
  9189. "description": "A beautiful error page for Laravel applications.",
  9190. "homepage": "https://github.com/facade/ignition",
  9191. "keywords": [
  9192. "error",
  9193. "flare",
  9194. "laravel",
  9195. "page"
  9196. ],
  9197. "support": {
  9198. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  9199. "forum": "https://twitter.com/flareappio",
  9200. "issues": "https://github.com/facade/ignition/issues",
  9201. "source": "https://github.com/facade/ignition"
  9202. },
  9203. "time": "2023-01-26T12:34:59+00:00"
  9204. },
  9205. {
  9206. "name": "facade/ignition-contracts",
  9207. "version": "1.0.2",
  9208. "source": {
  9209. "type": "git",
  9210. "url": "https://github.com/facade/ignition-contracts.git",
  9211. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  9212. },
  9213. "dist": {
  9214. "type": "zip",
  9215. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  9216. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  9217. "shasum": ""
  9218. },
  9219. "require": {
  9220. "php": "^7.3|^8.0"
  9221. },
  9222. "require-dev": {
  9223. "friendsofphp/php-cs-fixer": "^v2.15.8",
  9224. "phpunit/phpunit": "^9.3.11",
  9225. "vimeo/psalm": "^3.17.1"
  9226. },
  9227. "type": "library",
  9228. "autoload": {
  9229. "psr-4": {
  9230. "Facade\\IgnitionContracts\\": "src"
  9231. }
  9232. },
  9233. "notification-url": "https://packagist.org/downloads/",
  9234. "license": [
  9235. "MIT"
  9236. ],
  9237. "authors": [
  9238. {
  9239. "name": "Freek Van der Herten",
  9240. "email": "freek@spatie.be",
  9241. "homepage": "https://flareapp.io",
  9242. "role": "Developer"
  9243. }
  9244. ],
  9245. "description": "Solution contracts for Ignition",
  9246. "homepage": "https://github.com/facade/ignition-contracts",
  9247. "keywords": [
  9248. "contracts",
  9249. "flare",
  9250. "ignition"
  9251. ],
  9252. "support": {
  9253. "issues": "https://github.com/facade/ignition-contracts/issues",
  9254. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  9255. },
  9256. "time": "2020-10-16T08:27:54+00:00"
  9257. },
  9258. {
  9259. "name": "fakerphp/faker",
  9260. "version": "v1.20.0",
  9261. "source": {
  9262. "type": "git",
  9263. "url": "https://github.com/FakerPHP/Faker.git",
  9264. "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b"
  9265. },
  9266. "dist": {
  9267. "type": "zip",
  9268. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/37f751c67a5372d4e26353bd9384bc03744ec77b",
  9269. "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b",
  9270. "shasum": ""
  9271. },
  9272. "require": {
  9273. "php": "^7.1 || ^8.0",
  9274. "psr/container": "^1.0 || ^2.0",
  9275. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9276. },
  9277. "conflict": {
  9278. "fzaninotto/faker": "*"
  9279. },
  9280. "require-dev": {
  9281. "bamarni/composer-bin-plugin": "^1.4.1",
  9282. "doctrine/persistence": "^1.3 || ^2.0",
  9283. "ext-intl": "*",
  9284. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  9285. },
  9286. "suggest": {
  9287. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9288. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9289. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9290. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9291. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9292. },
  9293. "type": "library",
  9294. "extra": {
  9295. "branch-alias": {
  9296. "dev-main": "v1.20-dev"
  9297. }
  9298. },
  9299. "autoload": {
  9300. "psr-4": {
  9301. "Faker\\": "src/Faker/"
  9302. }
  9303. },
  9304. "notification-url": "https://packagist.org/downloads/",
  9305. "license": [
  9306. "MIT"
  9307. ],
  9308. "authors": [
  9309. {
  9310. "name": "François Zaninotto"
  9311. }
  9312. ],
  9313. "description": "Faker is a PHP library that generates fake data for you.",
  9314. "keywords": [
  9315. "data",
  9316. "faker",
  9317. "fixtures"
  9318. ],
  9319. "support": {
  9320. "issues": "https://github.com/FakerPHP/Faker/issues",
  9321. "source": "https://github.com/FakerPHP/Faker/tree/v1.20.0"
  9322. },
  9323. "time": "2022-07-20T13:12:54+00:00"
  9324. },
  9325. {
  9326. "name": "filp/whoops",
  9327. "version": "2.15.4",
  9328. "source": {
  9329. "type": "git",
  9330. "url": "https://github.com/filp/whoops.git",
  9331. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  9332. },
  9333. "dist": {
  9334. "type": "zip",
  9335. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9336. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9337. "shasum": ""
  9338. },
  9339. "require": {
  9340. "php": "^5.5.9 || ^7.0 || ^8.0",
  9341. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9342. },
  9343. "require-dev": {
  9344. "mockery/mockery": "^0.9 || ^1.0",
  9345. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  9346. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  9347. },
  9348. "suggest": {
  9349. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9350. "whoops/soap": "Formats errors as SOAP responses"
  9351. },
  9352. "type": "library",
  9353. "extra": {
  9354. "branch-alias": {
  9355. "dev-master": "2.7-dev"
  9356. }
  9357. },
  9358. "autoload": {
  9359. "psr-4": {
  9360. "Whoops\\": "src/Whoops/"
  9361. }
  9362. },
  9363. "notification-url": "https://packagist.org/downloads/",
  9364. "license": [
  9365. "MIT"
  9366. ],
  9367. "authors": [
  9368. {
  9369. "name": "Filipe Dobreira",
  9370. "homepage": "https://github.com/filp",
  9371. "role": "Developer"
  9372. }
  9373. ],
  9374. "description": "php error handling for cool kids",
  9375. "homepage": "https://filp.github.io/whoops/",
  9376. "keywords": [
  9377. "error",
  9378. "exception",
  9379. "handling",
  9380. "library",
  9381. "throwable",
  9382. "whoops"
  9383. ],
  9384. "support": {
  9385. "issues": "https://github.com/filp/whoops/issues",
  9386. "source": "https://github.com/filp/whoops/tree/2.15.4"
  9387. },
  9388. "funding": [
  9389. {
  9390. "url": "https://github.com/denis-sokolov",
  9391. "type": "github"
  9392. }
  9393. ],
  9394. "time": "2023-11-03T12:00:00+00:00"
  9395. },
  9396. {
  9397. "name": "hamcrest/hamcrest-php",
  9398. "version": "v2.0.1",
  9399. "source": {
  9400. "type": "git",
  9401. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9402. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9403. },
  9404. "dist": {
  9405. "type": "zip",
  9406. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9407. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9408. "shasum": ""
  9409. },
  9410. "require": {
  9411. "php": "^5.3|^7.0|^8.0"
  9412. },
  9413. "replace": {
  9414. "cordoval/hamcrest-php": "*",
  9415. "davedevelopment/hamcrest-php": "*",
  9416. "kodova/hamcrest-php": "*"
  9417. },
  9418. "require-dev": {
  9419. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9420. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9421. },
  9422. "type": "library",
  9423. "extra": {
  9424. "branch-alias": {
  9425. "dev-master": "2.1-dev"
  9426. }
  9427. },
  9428. "autoload": {
  9429. "classmap": [
  9430. "hamcrest"
  9431. ]
  9432. },
  9433. "notification-url": "https://packagist.org/downloads/",
  9434. "license": [
  9435. "BSD-3-Clause"
  9436. ],
  9437. "description": "This is the PHP port of Hamcrest Matchers",
  9438. "keywords": [
  9439. "test"
  9440. ],
  9441. "support": {
  9442. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9443. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9444. },
  9445. "time": "2020-07-09T08:09:16+00:00"
  9446. },
  9447. {
  9448. "name": "laravel/sail",
  9449. "version": "v1.19.0",
  9450. "source": {
  9451. "type": "git",
  9452. "url": "https://github.com/laravel/sail.git",
  9453. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6"
  9454. },
  9455. "dist": {
  9456. "type": "zip",
  9457. "url": "https://api.github.com/repos/laravel/sail/zipball/4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  9458. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  9459. "shasum": ""
  9460. },
  9461. "require": {
  9462. "illuminate/console": "^8.0|^9.0|^10.0",
  9463. "illuminate/contracts": "^8.0|^9.0|^10.0",
  9464. "illuminate/support": "^8.0|^9.0|^10.0",
  9465. "php": "^7.3|^8.0"
  9466. },
  9467. "bin": [
  9468. "bin/sail"
  9469. ],
  9470. "type": "library",
  9471. "extra": {
  9472. "branch-alias": {
  9473. "dev-master": "1.x-dev"
  9474. },
  9475. "laravel": {
  9476. "providers": [
  9477. "Laravel\\Sail\\SailServiceProvider"
  9478. ]
  9479. }
  9480. },
  9481. "autoload": {
  9482. "psr-4": {
  9483. "Laravel\\Sail\\": "src/"
  9484. }
  9485. },
  9486. "notification-url": "https://packagist.org/downloads/",
  9487. "license": [
  9488. "MIT"
  9489. ],
  9490. "authors": [
  9491. {
  9492. "name": "Taylor Otwell",
  9493. "email": "taylor@laravel.com"
  9494. }
  9495. ],
  9496. "description": "Docker files for running a basic Laravel application.",
  9497. "keywords": [
  9498. "docker",
  9499. "laravel"
  9500. ],
  9501. "support": {
  9502. "issues": "https://github.com/laravel/sail/issues",
  9503. "source": "https://github.com/laravel/sail"
  9504. },
  9505. "time": "2023-01-31T13:37:57+00:00"
  9506. },
  9507. {
  9508. "name": "mockery/mockery",
  9509. "version": "1.6.12",
  9510. "source": {
  9511. "type": "git",
  9512. "url": "https://github.com/mockery/mockery.git",
  9513. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9514. },
  9515. "dist": {
  9516. "type": "zip",
  9517. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9518. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9519. "shasum": ""
  9520. },
  9521. "require": {
  9522. "hamcrest/hamcrest-php": "^2.0.1",
  9523. "lib-pcre": ">=7.0",
  9524. "php": ">=7.3"
  9525. },
  9526. "conflict": {
  9527. "phpunit/phpunit": "<8.0"
  9528. },
  9529. "require-dev": {
  9530. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9531. "symplify/easy-coding-standard": "^12.1.14"
  9532. },
  9533. "type": "library",
  9534. "autoload": {
  9535. "files": [
  9536. "library/helpers.php",
  9537. "library/Mockery.php"
  9538. ],
  9539. "psr-4": {
  9540. "Mockery\\": "library/Mockery"
  9541. }
  9542. },
  9543. "notification-url": "https://packagist.org/downloads/",
  9544. "license": [
  9545. "BSD-3-Clause"
  9546. ],
  9547. "authors": [
  9548. {
  9549. "name": "Pádraic Brady",
  9550. "email": "padraic.brady@gmail.com",
  9551. "homepage": "https://github.com/padraic",
  9552. "role": "Author"
  9553. },
  9554. {
  9555. "name": "Dave Marshall",
  9556. "email": "dave.marshall@atstsolutions.co.uk",
  9557. "homepage": "https://davedevelopment.co.uk",
  9558. "role": "Developer"
  9559. },
  9560. {
  9561. "name": "Nathanael Esayeas",
  9562. "email": "nathanael.esayeas@protonmail.com",
  9563. "homepage": "https://github.com/ghostwriter",
  9564. "role": "Lead Developer"
  9565. }
  9566. ],
  9567. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9568. "homepage": "https://github.com/mockery/mockery",
  9569. "keywords": [
  9570. "BDD",
  9571. "TDD",
  9572. "library",
  9573. "mock",
  9574. "mock objects",
  9575. "mockery",
  9576. "stub",
  9577. "test",
  9578. "test double",
  9579. "testing"
  9580. ],
  9581. "support": {
  9582. "docs": "https://docs.mockery.io/",
  9583. "issues": "https://github.com/mockery/mockery/issues",
  9584. "rss": "https://github.com/mockery/mockery/releases.atom",
  9585. "security": "https://github.com/mockery/mockery/security/advisories",
  9586. "source": "https://github.com/mockery/mockery"
  9587. },
  9588. "time": "2024-05-16T03:13:13+00:00"
  9589. },
  9590. {
  9591. "name": "myclabs/deep-copy",
  9592. "version": "1.12.0",
  9593. "source": {
  9594. "type": "git",
  9595. "url": "https://github.com/myclabs/DeepCopy.git",
  9596. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  9597. },
  9598. "dist": {
  9599. "type": "zip",
  9600. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  9601. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  9602. "shasum": ""
  9603. },
  9604. "require": {
  9605. "php": "^7.1 || ^8.0"
  9606. },
  9607. "conflict": {
  9608. "doctrine/collections": "<1.6.8",
  9609. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9610. },
  9611. "require-dev": {
  9612. "doctrine/collections": "^1.6.8",
  9613. "doctrine/common": "^2.13.3 || ^3.2.2",
  9614. "phpspec/prophecy": "^1.10",
  9615. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9616. },
  9617. "type": "library",
  9618. "autoload": {
  9619. "files": [
  9620. "src/DeepCopy/deep_copy.php"
  9621. ],
  9622. "psr-4": {
  9623. "DeepCopy\\": "src/DeepCopy/"
  9624. }
  9625. },
  9626. "notification-url": "https://packagist.org/downloads/",
  9627. "license": [
  9628. "MIT"
  9629. ],
  9630. "description": "Create deep copies (clones) of your objects",
  9631. "keywords": [
  9632. "clone",
  9633. "copy",
  9634. "duplicate",
  9635. "object",
  9636. "object graph"
  9637. ],
  9638. "support": {
  9639. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9640. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  9641. },
  9642. "funding": [
  9643. {
  9644. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9645. "type": "tidelift"
  9646. }
  9647. ],
  9648. "time": "2024-06-12T14:39:25+00:00"
  9649. },
  9650. {
  9651. "name": "nunomaduro/collision",
  9652. "version": "v5.11.0",
  9653. "source": {
  9654. "type": "git",
  9655. "url": "https://github.com/nunomaduro/collision.git",
  9656. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  9657. },
  9658. "dist": {
  9659. "type": "zip",
  9660. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9661. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9662. "shasum": ""
  9663. },
  9664. "require": {
  9665. "facade/ignition-contracts": "^1.0",
  9666. "filp/whoops": "^2.14.3",
  9667. "php": "^7.3 || ^8.0",
  9668. "symfony/console": "^5.0"
  9669. },
  9670. "require-dev": {
  9671. "brianium/paratest": "^6.1",
  9672. "fideloper/proxy": "^4.4.1",
  9673. "fruitcake/laravel-cors": "^2.0.3",
  9674. "laravel/framework": "8.x-dev",
  9675. "nunomaduro/larastan": "^0.6.2",
  9676. "nunomaduro/mock-final-classes": "^1.0",
  9677. "orchestra/testbench": "^6.0",
  9678. "phpstan/phpstan": "^0.12.64",
  9679. "phpunit/phpunit": "^9.5.0"
  9680. },
  9681. "type": "library",
  9682. "extra": {
  9683. "laravel": {
  9684. "providers": [
  9685. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9686. ]
  9687. }
  9688. },
  9689. "autoload": {
  9690. "psr-4": {
  9691. "NunoMaduro\\Collision\\": "src/"
  9692. }
  9693. },
  9694. "notification-url": "https://packagist.org/downloads/",
  9695. "license": [
  9696. "MIT"
  9697. ],
  9698. "authors": [
  9699. {
  9700. "name": "Nuno Maduro",
  9701. "email": "enunomaduro@gmail.com"
  9702. }
  9703. ],
  9704. "description": "Cli error handling for console/command-line PHP applications.",
  9705. "keywords": [
  9706. "artisan",
  9707. "cli",
  9708. "command-line",
  9709. "console",
  9710. "error",
  9711. "handling",
  9712. "laravel",
  9713. "laravel-zero",
  9714. "php",
  9715. "symfony"
  9716. ],
  9717. "support": {
  9718. "issues": "https://github.com/nunomaduro/collision/issues",
  9719. "source": "https://github.com/nunomaduro/collision"
  9720. },
  9721. "funding": [
  9722. {
  9723. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9724. "type": "custom"
  9725. },
  9726. {
  9727. "url": "https://github.com/nunomaduro",
  9728. "type": "github"
  9729. },
  9730. {
  9731. "url": "https://www.patreon.com/nunomaduro",
  9732. "type": "patreon"
  9733. }
  9734. ],
  9735. "time": "2022-01-10T16:22:52+00:00"
  9736. },
  9737. {
  9738. "name": "phar-io/manifest",
  9739. "version": "2.0.4",
  9740. "source": {
  9741. "type": "git",
  9742. "url": "https://github.com/phar-io/manifest.git",
  9743. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9744. },
  9745. "dist": {
  9746. "type": "zip",
  9747. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9748. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9749. "shasum": ""
  9750. },
  9751. "require": {
  9752. "ext-dom": "*",
  9753. "ext-libxml": "*",
  9754. "ext-phar": "*",
  9755. "ext-xmlwriter": "*",
  9756. "phar-io/version": "^3.0.1",
  9757. "php": "^7.2 || ^8.0"
  9758. },
  9759. "type": "library",
  9760. "extra": {
  9761. "branch-alias": {
  9762. "dev-master": "2.0.x-dev"
  9763. }
  9764. },
  9765. "autoload": {
  9766. "classmap": [
  9767. "src/"
  9768. ]
  9769. },
  9770. "notification-url": "https://packagist.org/downloads/",
  9771. "license": [
  9772. "BSD-3-Clause"
  9773. ],
  9774. "authors": [
  9775. {
  9776. "name": "Arne Blankerts",
  9777. "email": "arne@blankerts.de",
  9778. "role": "Developer"
  9779. },
  9780. {
  9781. "name": "Sebastian Heuer",
  9782. "email": "sebastian@phpeople.de",
  9783. "role": "Developer"
  9784. },
  9785. {
  9786. "name": "Sebastian Bergmann",
  9787. "email": "sebastian@phpunit.de",
  9788. "role": "Developer"
  9789. }
  9790. ],
  9791. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9792. "support": {
  9793. "issues": "https://github.com/phar-io/manifest/issues",
  9794. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9795. },
  9796. "funding": [
  9797. {
  9798. "url": "https://github.com/theseer",
  9799. "type": "github"
  9800. }
  9801. ],
  9802. "time": "2024-03-03T12:33:53+00:00"
  9803. },
  9804. {
  9805. "name": "phar-io/version",
  9806. "version": "3.2.1",
  9807. "source": {
  9808. "type": "git",
  9809. "url": "https://github.com/phar-io/version.git",
  9810. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9811. },
  9812. "dist": {
  9813. "type": "zip",
  9814. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9815. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9816. "shasum": ""
  9817. },
  9818. "require": {
  9819. "php": "^7.2 || ^8.0"
  9820. },
  9821. "type": "library",
  9822. "autoload": {
  9823. "classmap": [
  9824. "src/"
  9825. ]
  9826. },
  9827. "notification-url": "https://packagist.org/downloads/",
  9828. "license": [
  9829. "BSD-3-Clause"
  9830. ],
  9831. "authors": [
  9832. {
  9833. "name": "Arne Blankerts",
  9834. "email": "arne@blankerts.de",
  9835. "role": "Developer"
  9836. },
  9837. {
  9838. "name": "Sebastian Heuer",
  9839. "email": "sebastian@phpeople.de",
  9840. "role": "Developer"
  9841. },
  9842. {
  9843. "name": "Sebastian Bergmann",
  9844. "email": "sebastian@phpunit.de",
  9845. "role": "Developer"
  9846. }
  9847. ],
  9848. "description": "Library for handling version information and constraints",
  9849. "support": {
  9850. "issues": "https://github.com/phar-io/version/issues",
  9851. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9852. },
  9853. "time": "2022-02-21T01:04:05+00:00"
  9854. },
  9855. {
  9856. "name": "phpunit/php-code-coverage",
  9857. "version": "9.2.32",
  9858. "source": {
  9859. "type": "git",
  9860. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9861. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  9862. },
  9863. "dist": {
  9864. "type": "zip",
  9865. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9866. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9867. "shasum": ""
  9868. },
  9869. "require": {
  9870. "ext-dom": "*",
  9871. "ext-libxml": "*",
  9872. "ext-xmlwriter": "*",
  9873. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9874. "php": ">=7.3",
  9875. "phpunit/php-file-iterator": "^3.0.6",
  9876. "phpunit/php-text-template": "^2.0.4",
  9877. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  9878. "sebastian/complexity": "^2.0.3",
  9879. "sebastian/environment": "^5.1.5",
  9880. "sebastian/lines-of-code": "^1.0.4",
  9881. "sebastian/version": "^3.0.2",
  9882. "theseer/tokenizer": "^1.2.3"
  9883. },
  9884. "require-dev": {
  9885. "phpunit/phpunit": "^9.6"
  9886. },
  9887. "suggest": {
  9888. "ext-pcov": "PHP extension that provides line coverage",
  9889. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9890. },
  9891. "type": "library",
  9892. "extra": {
  9893. "branch-alias": {
  9894. "dev-main": "9.2.x-dev"
  9895. }
  9896. },
  9897. "autoload": {
  9898. "classmap": [
  9899. "src/"
  9900. ]
  9901. },
  9902. "notification-url": "https://packagist.org/downloads/",
  9903. "license": [
  9904. "BSD-3-Clause"
  9905. ],
  9906. "authors": [
  9907. {
  9908. "name": "Sebastian Bergmann",
  9909. "email": "sebastian@phpunit.de",
  9910. "role": "lead"
  9911. }
  9912. ],
  9913. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9914. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9915. "keywords": [
  9916. "coverage",
  9917. "testing",
  9918. "xunit"
  9919. ],
  9920. "support": {
  9921. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9922. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9923. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  9924. },
  9925. "funding": [
  9926. {
  9927. "url": "https://github.com/sebastianbergmann",
  9928. "type": "github"
  9929. }
  9930. ],
  9931. "time": "2024-08-22T04:23:01+00:00"
  9932. },
  9933. {
  9934. "name": "phpunit/php-file-iterator",
  9935. "version": "3.0.6",
  9936. "source": {
  9937. "type": "git",
  9938. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9939. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9940. },
  9941. "dist": {
  9942. "type": "zip",
  9943. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9944. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9945. "shasum": ""
  9946. },
  9947. "require": {
  9948. "php": ">=7.3"
  9949. },
  9950. "require-dev": {
  9951. "phpunit/phpunit": "^9.3"
  9952. },
  9953. "type": "library",
  9954. "extra": {
  9955. "branch-alias": {
  9956. "dev-master": "3.0-dev"
  9957. }
  9958. },
  9959. "autoload": {
  9960. "classmap": [
  9961. "src/"
  9962. ]
  9963. },
  9964. "notification-url": "https://packagist.org/downloads/",
  9965. "license": [
  9966. "BSD-3-Clause"
  9967. ],
  9968. "authors": [
  9969. {
  9970. "name": "Sebastian Bergmann",
  9971. "email": "sebastian@phpunit.de",
  9972. "role": "lead"
  9973. }
  9974. ],
  9975. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9976. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9977. "keywords": [
  9978. "filesystem",
  9979. "iterator"
  9980. ],
  9981. "support": {
  9982. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9983. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9984. },
  9985. "funding": [
  9986. {
  9987. "url": "https://github.com/sebastianbergmann",
  9988. "type": "github"
  9989. }
  9990. ],
  9991. "time": "2021-12-02T12:48:52+00:00"
  9992. },
  9993. {
  9994. "name": "phpunit/php-invoker",
  9995. "version": "3.1.1",
  9996. "source": {
  9997. "type": "git",
  9998. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9999. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  10000. },
  10001. "dist": {
  10002. "type": "zip",
  10003. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10004. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10005. "shasum": ""
  10006. },
  10007. "require": {
  10008. "php": ">=7.3"
  10009. },
  10010. "require-dev": {
  10011. "ext-pcntl": "*",
  10012. "phpunit/phpunit": "^9.3"
  10013. },
  10014. "suggest": {
  10015. "ext-pcntl": "*"
  10016. },
  10017. "type": "library",
  10018. "extra": {
  10019. "branch-alias": {
  10020. "dev-master": "3.1-dev"
  10021. }
  10022. },
  10023. "autoload": {
  10024. "classmap": [
  10025. "src/"
  10026. ]
  10027. },
  10028. "notification-url": "https://packagist.org/downloads/",
  10029. "license": [
  10030. "BSD-3-Clause"
  10031. ],
  10032. "authors": [
  10033. {
  10034. "name": "Sebastian Bergmann",
  10035. "email": "sebastian@phpunit.de",
  10036. "role": "lead"
  10037. }
  10038. ],
  10039. "description": "Invoke callables with a timeout",
  10040. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10041. "keywords": [
  10042. "process"
  10043. ],
  10044. "support": {
  10045. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10046. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  10047. },
  10048. "funding": [
  10049. {
  10050. "url": "https://github.com/sebastianbergmann",
  10051. "type": "github"
  10052. }
  10053. ],
  10054. "time": "2020-09-28T05:58:55+00:00"
  10055. },
  10056. {
  10057. "name": "phpunit/php-text-template",
  10058. "version": "2.0.4",
  10059. "source": {
  10060. "type": "git",
  10061. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10062. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  10063. },
  10064. "dist": {
  10065. "type": "zip",
  10066. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10067. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10068. "shasum": ""
  10069. },
  10070. "require": {
  10071. "php": ">=7.3"
  10072. },
  10073. "require-dev": {
  10074. "phpunit/phpunit": "^9.3"
  10075. },
  10076. "type": "library",
  10077. "extra": {
  10078. "branch-alias": {
  10079. "dev-master": "2.0-dev"
  10080. }
  10081. },
  10082. "autoload": {
  10083. "classmap": [
  10084. "src/"
  10085. ]
  10086. },
  10087. "notification-url": "https://packagist.org/downloads/",
  10088. "license": [
  10089. "BSD-3-Clause"
  10090. ],
  10091. "authors": [
  10092. {
  10093. "name": "Sebastian Bergmann",
  10094. "email": "sebastian@phpunit.de",
  10095. "role": "lead"
  10096. }
  10097. ],
  10098. "description": "Simple template engine.",
  10099. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10100. "keywords": [
  10101. "template"
  10102. ],
  10103. "support": {
  10104. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10105. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  10106. },
  10107. "funding": [
  10108. {
  10109. "url": "https://github.com/sebastianbergmann",
  10110. "type": "github"
  10111. }
  10112. ],
  10113. "time": "2020-10-26T05:33:50+00:00"
  10114. },
  10115. {
  10116. "name": "phpunit/php-timer",
  10117. "version": "5.0.3",
  10118. "source": {
  10119. "type": "git",
  10120. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10121. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  10122. },
  10123. "dist": {
  10124. "type": "zip",
  10125. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10126. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10127. "shasum": ""
  10128. },
  10129. "require": {
  10130. "php": ">=7.3"
  10131. },
  10132. "require-dev": {
  10133. "phpunit/phpunit": "^9.3"
  10134. },
  10135. "type": "library",
  10136. "extra": {
  10137. "branch-alias": {
  10138. "dev-master": "5.0-dev"
  10139. }
  10140. },
  10141. "autoload": {
  10142. "classmap": [
  10143. "src/"
  10144. ]
  10145. },
  10146. "notification-url": "https://packagist.org/downloads/",
  10147. "license": [
  10148. "BSD-3-Clause"
  10149. ],
  10150. "authors": [
  10151. {
  10152. "name": "Sebastian Bergmann",
  10153. "email": "sebastian@phpunit.de",
  10154. "role": "lead"
  10155. }
  10156. ],
  10157. "description": "Utility class for timing",
  10158. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10159. "keywords": [
  10160. "timer"
  10161. ],
  10162. "support": {
  10163. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10164. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10165. },
  10166. "funding": [
  10167. {
  10168. "url": "https://github.com/sebastianbergmann",
  10169. "type": "github"
  10170. }
  10171. ],
  10172. "time": "2020-10-26T13:16:10+00:00"
  10173. },
  10174. {
  10175. "name": "phpunit/phpunit",
  10176. "version": "9.6.20",
  10177. "source": {
  10178. "type": "git",
  10179. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10180. "reference": "49d7820565836236411f5dc002d16dd689cde42f"
  10181. },
  10182. "dist": {
  10183. "type": "zip",
  10184. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/49d7820565836236411f5dc002d16dd689cde42f",
  10185. "reference": "49d7820565836236411f5dc002d16dd689cde42f",
  10186. "shasum": ""
  10187. },
  10188. "require": {
  10189. "doctrine/instantiator": "^1.5.0 || ^2",
  10190. "ext-dom": "*",
  10191. "ext-json": "*",
  10192. "ext-libxml": "*",
  10193. "ext-mbstring": "*",
  10194. "ext-xml": "*",
  10195. "ext-xmlwriter": "*",
  10196. "myclabs/deep-copy": "^1.12.0",
  10197. "phar-io/manifest": "^2.0.4",
  10198. "phar-io/version": "^3.2.1",
  10199. "php": ">=7.3",
  10200. "phpunit/php-code-coverage": "^9.2.31",
  10201. "phpunit/php-file-iterator": "^3.0.6",
  10202. "phpunit/php-invoker": "^3.1.1",
  10203. "phpunit/php-text-template": "^2.0.4",
  10204. "phpunit/php-timer": "^5.0.3",
  10205. "sebastian/cli-parser": "^1.0.2",
  10206. "sebastian/code-unit": "^1.0.8",
  10207. "sebastian/comparator": "^4.0.8",
  10208. "sebastian/diff": "^4.0.6",
  10209. "sebastian/environment": "^5.1.5",
  10210. "sebastian/exporter": "^4.0.6",
  10211. "sebastian/global-state": "^5.0.7",
  10212. "sebastian/object-enumerator": "^4.0.4",
  10213. "sebastian/resource-operations": "^3.0.4",
  10214. "sebastian/type": "^3.2.1",
  10215. "sebastian/version": "^3.0.2"
  10216. },
  10217. "suggest": {
  10218. "ext-soap": "To be able to generate mocks based on WSDL files",
  10219. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10220. },
  10221. "bin": [
  10222. "phpunit"
  10223. ],
  10224. "type": "library",
  10225. "extra": {
  10226. "branch-alias": {
  10227. "dev-master": "9.6-dev"
  10228. }
  10229. },
  10230. "autoload": {
  10231. "files": [
  10232. "src/Framework/Assert/Functions.php"
  10233. ],
  10234. "classmap": [
  10235. "src/"
  10236. ]
  10237. },
  10238. "notification-url": "https://packagist.org/downloads/",
  10239. "license": [
  10240. "BSD-3-Clause"
  10241. ],
  10242. "authors": [
  10243. {
  10244. "name": "Sebastian Bergmann",
  10245. "email": "sebastian@phpunit.de",
  10246. "role": "lead"
  10247. }
  10248. ],
  10249. "description": "The PHP Unit Testing framework.",
  10250. "homepage": "https://phpunit.de/",
  10251. "keywords": [
  10252. "phpunit",
  10253. "testing",
  10254. "xunit"
  10255. ],
  10256. "support": {
  10257. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10258. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10259. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.20"
  10260. },
  10261. "funding": [
  10262. {
  10263. "url": "https://phpunit.de/sponsors.html",
  10264. "type": "custom"
  10265. },
  10266. {
  10267. "url": "https://github.com/sebastianbergmann",
  10268. "type": "github"
  10269. },
  10270. {
  10271. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10272. "type": "tidelift"
  10273. }
  10274. ],
  10275. "time": "2024-07-10T11:45:39+00:00"
  10276. },
  10277. {
  10278. "name": "sebastian/cli-parser",
  10279. "version": "1.0.2",
  10280. "source": {
  10281. "type": "git",
  10282. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10283. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  10284. },
  10285. "dist": {
  10286. "type": "zip",
  10287. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  10288. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  10289. "shasum": ""
  10290. },
  10291. "require": {
  10292. "php": ">=7.3"
  10293. },
  10294. "require-dev": {
  10295. "phpunit/phpunit": "^9.3"
  10296. },
  10297. "type": "library",
  10298. "extra": {
  10299. "branch-alias": {
  10300. "dev-master": "1.0-dev"
  10301. }
  10302. },
  10303. "autoload": {
  10304. "classmap": [
  10305. "src/"
  10306. ]
  10307. },
  10308. "notification-url": "https://packagist.org/downloads/",
  10309. "license": [
  10310. "BSD-3-Clause"
  10311. ],
  10312. "authors": [
  10313. {
  10314. "name": "Sebastian Bergmann",
  10315. "email": "sebastian@phpunit.de",
  10316. "role": "lead"
  10317. }
  10318. ],
  10319. "description": "Library for parsing CLI options",
  10320. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10321. "support": {
  10322. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10323. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  10324. },
  10325. "funding": [
  10326. {
  10327. "url": "https://github.com/sebastianbergmann",
  10328. "type": "github"
  10329. }
  10330. ],
  10331. "time": "2024-03-02T06:27:43+00:00"
  10332. },
  10333. {
  10334. "name": "sebastian/code-unit",
  10335. "version": "1.0.8",
  10336. "source": {
  10337. "type": "git",
  10338. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10339. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10340. },
  10341. "dist": {
  10342. "type": "zip",
  10343. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10344. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10345. "shasum": ""
  10346. },
  10347. "require": {
  10348. "php": ">=7.3"
  10349. },
  10350. "require-dev": {
  10351. "phpunit/phpunit": "^9.3"
  10352. },
  10353. "type": "library",
  10354. "extra": {
  10355. "branch-alias": {
  10356. "dev-master": "1.0-dev"
  10357. }
  10358. },
  10359. "autoload": {
  10360. "classmap": [
  10361. "src/"
  10362. ]
  10363. },
  10364. "notification-url": "https://packagist.org/downloads/",
  10365. "license": [
  10366. "BSD-3-Clause"
  10367. ],
  10368. "authors": [
  10369. {
  10370. "name": "Sebastian Bergmann",
  10371. "email": "sebastian@phpunit.de",
  10372. "role": "lead"
  10373. }
  10374. ],
  10375. "description": "Collection of value objects that represent the PHP code units",
  10376. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10377. "support": {
  10378. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10379. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10380. },
  10381. "funding": [
  10382. {
  10383. "url": "https://github.com/sebastianbergmann",
  10384. "type": "github"
  10385. }
  10386. ],
  10387. "time": "2020-10-26T13:08:54+00:00"
  10388. },
  10389. {
  10390. "name": "sebastian/code-unit-reverse-lookup",
  10391. "version": "2.0.3",
  10392. "source": {
  10393. "type": "git",
  10394. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10395. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10396. },
  10397. "dist": {
  10398. "type": "zip",
  10399. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10400. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10401. "shasum": ""
  10402. },
  10403. "require": {
  10404. "php": ">=7.3"
  10405. },
  10406. "require-dev": {
  10407. "phpunit/phpunit": "^9.3"
  10408. },
  10409. "type": "library",
  10410. "extra": {
  10411. "branch-alias": {
  10412. "dev-master": "2.0-dev"
  10413. }
  10414. },
  10415. "autoload": {
  10416. "classmap": [
  10417. "src/"
  10418. ]
  10419. },
  10420. "notification-url": "https://packagist.org/downloads/",
  10421. "license": [
  10422. "BSD-3-Clause"
  10423. ],
  10424. "authors": [
  10425. {
  10426. "name": "Sebastian Bergmann",
  10427. "email": "sebastian@phpunit.de"
  10428. }
  10429. ],
  10430. "description": "Looks up which function or method a line of code belongs to",
  10431. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10432. "support": {
  10433. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10434. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10435. },
  10436. "funding": [
  10437. {
  10438. "url": "https://github.com/sebastianbergmann",
  10439. "type": "github"
  10440. }
  10441. ],
  10442. "time": "2020-09-28T05:30:19+00:00"
  10443. },
  10444. {
  10445. "name": "sebastian/comparator",
  10446. "version": "4.0.8",
  10447. "source": {
  10448. "type": "git",
  10449. "url": "https://github.com/sebastianbergmann/comparator.git",
  10450. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  10451. },
  10452. "dist": {
  10453. "type": "zip",
  10454. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  10455. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  10456. "shasum": ""
  10457. },
  10458. "require": {
  10459. "php": ">=7.3",
  10460. "sebastian/diff": "^4.0",
  10461. "sebastian/exporter": "^4.0"
  10462. },
  10463. "require-dev": {
  10464. "phpunit/phpunit": "^9.3"
  10465. },
  10466. "type": "library",
  10467. "extra": {
  10468. "branch-alias": {
  10469. "dev-master": "4.0-dev"
  10470. }
  10471. },
  10472. "autoload": {
  10473. "classmap": [
  10474. "src/"
  10475. ]
  10476. },
  10477. "notification-url": "https://packagist.org/downloads/",
  10478. "license": [
  10479. "BSD-3-Clause"
  10480. ],
  10481. "authors": [
  10482. {
  10483. "name": "Sebastian Bergmann",
  10484. "email": "sebastian@phpunit.de"
  10485. },
  10486. {
  10487. "name": "Jeff Welch",
  10488. "email": "whatthejeff@gmail.com"
  10489. },
  10490. {
  10491. "name": "Volker Dusch",
  10492. "email": "github@wallbash.com"
  10493. },
  10494. {
  10495. "name": "Bernhard Schussek",
  10496. "email": "bschussek@2bepublished.at"
  10497. }
  10498. ],
  10499. "description": "Provides the functionality to compare PHP values for equality",
  10500. "homepage": "https://github.com/sebastianbergmann/comparator",
  10501. "keywords": [
  10502. "comparator",
  10503. "compare",
  10504. "equality"
  10505. ],
  10506. "support": {
  10507. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10508. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  10509. },
  10510. "funding": [
  10511. {
  10512. "url": "https://github.com/sebastianbergmann",
  10513. "type": "github"
  10514. }
  10515. ],
  10516. "time": "2022-09-14T12:41:17+00:00"
  10517. },
  10518. {
  10519. "name": "sebastian/complexity",
  10520. "version": "2.0.3",
  10521. "source": {
  10522. "type": "git",
  10523. "url": "https://github.com/sebastianbergmann/complexity.git",
  10524. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  10525. },
  10526. "dist": {
  10527. "type": "zip",
  10528. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  10529. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  10530. "shasum": ""
  10531. },
  10532. "require": {
  10533. "nikic/php-parser": "^4.18 || ^5.0",
  10534. "php": ">=7.3"
  10535. },
  10536. "require-dev": {
  10537. "phpunit/phpunit": "^9.3"
  10538. },
  10539. "type": "library",
  10540. "extra": {
  10541. "branch-alias": {
  10542. "dev-master": "2.0-dev"
  10543. }
  10544. },
  10545. "autoload": {
  10546. "classmap": [
  10547. "src/"
  10548. ]
  10549. },
  10550. "notification-url": "https://packagist.org/downloads/",
  10551. "license": [
  10552. "BSD-3-Clause"
  10553. ],
  10554. "authors": [
  10555. {
  10556. "name": "Sebastian Bergmann",
  10557. "email": "sebastian@phpunit.de",
  10558. "role": "lead"
  10559. }
  10560. ],
  10561. "description": "Library for calculating the complexity of PHP code units",
  10562. "homepage": "https://github.com/sebastianbergmann/complexity",
  10563. "support": {
  10564. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10565. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  10566. },
  10567. "funding": [
  10568. {
  10569. "url": "https://github.com/sebastianbergmann",
  10570. "type": "github"
  10571. }
  10572. ],
  10573. "time": "2023-12-22T06:19:30+00:00"
  10574. },
  10575. {
  10576. "name": "sebastian/diff",
  10577. "version": "4.0.6",
  10578. "source": {
  10579. "type": "git",
  10580. "url": "https://github.com/sebastianbergmann/diff.git",
  10581. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  10582. },
  10583. "dist": {
  10584. "type": "zip",
  10585. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10586. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10587. "shasum": ""
  10588. },
  10589. "require": {
  10590. "php": ">=7.3"
  10591. },
  10592. "require-dev": {
  10593. "phpunit/phpunit": "^9.3",
  10594. "symfony/process": "^4.2 || ^5"
  10595. },
  10596. "type": "library",
  10597. "extra": {
  10598. "branch-alias": {
  10599. "dev-master": "4.0-dev"
  10600. }
  10601. },
  10602. "autoload": {
  10603. "classmap": [
  10604. "src/"
  10605. ]
  10606. },
  10607. "notification-url": "https://packagist.org/downloads/",
  10608. "license": [
  10609. "BSD-3-Clause"
  10610. ],
  10611. "authors": [
  10612. {
  10613. "name": "Sebastian Bergmann",
  10614. "email": "sebastian@phpunit.de"
  10615. },
  10616. {
  10617. "name": "Kore Nordmann",
  10618. "email": "mail@kore-nordmann.de"
  10619. }
  10620. ],
  10621. "description": "Diff implementation",
  10622. "homepage": "https://github.com/sebastianbergmann/diff",
  10623. "keywords": [
  10624. "diff",
  10625. "udiff",
  10626. "unidiff",
  10627. "unified diff"
  10628. ],
  10629. "support": {
  10630. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10631. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  10632. },
  10633. "funding": [
  10634. {
  10635. "url": "https://github.com/sebastianbergmann",
  10636. "type": "github"
  10637. }
  10638. ],
  10639. "time": "2024-03-02T06:30:58+00:00"
  10640. },
  10641. {
  10642. "name": "sebastian/environment",
  10643. "version": "5.1.5",
  10644. "source": {
  10645. "type": "git",
  10646. "url": "https://github.com/sebastianbergmann/environment.git",
  10647. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10648. },
  10649. "dist": {
  10650. "type": "zip",
  10651. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10652. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10653. "shasum": ""
  10654. },
  10655. "require": {
  10656. "php": ">=7.3"
  10657. },
  10658. "require-dev": {
  10659. "phpunit/phpunit": "^9.3"
  10660. },
  10661. "suggest": {
  10662. "ext-posix": "*"
  10663. },
  10664. "type": "library",
  10665. "extra": {
  10666. "branch-alias": {
  10667. "dev-master": "5.1-dev"
  10668. }
  10669. },
  10670. "autoload": {
  10671. "classmap": [
  10672. "src/"
  10673. ]
  10674. },
  10675. "notification-url": "https://packagist.org/downloads/",
  10676. "license": [
  10677. "BSD-3-Clause"
  10678. ],
  10679. "authors": [
  10680. {
  10681. "name": "Sebastian Bergmann",
  10682. "email": "sebastian@phpunit.de"
  10683. }
  10684. ],
  10685. "description": "Provides functionality to handle HHVM/PHP environments",
  10686. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10687. "keywords": [
  10688. "Xdebug",
  10689. "environment",
  10690. "hhvm"
  10691. ],
  10692. "support": {
  10693. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10694. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10695. },
  10696. "funding": [
  10697. {
  10698. "url": "https://github.com/sebastianbergmann",
  10699. "type": "github"
  10700. }
  10701. ],
  10702. "time": "2023-02-03T06:03:51+00:00"
  10703. },
  10704. {
  10705. "name": "sebastian/exporter",
  10706. "version": "4.0.6",
  10707. "source": {
  10708. "type": "git",
  10709. "url": "https://github.com/sebastianbergmann/exporter.git",
  10710. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  10711. },
  10712. "dist": {
  10713. "type": "zip",
  10714. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  10715. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  10716. "shasum": ""
  10717. },
  10718. "require": {
  10719. "php": ">=7.3",
  10720. "sebastian/recursion-context": "^4.0"
  10721. },
  10722. "require-dev": {
  10723. "ext-mbstring": "*",
  10724. "phpunit/phpunit": "^9.3"
  10725. },
  10726. "type": "library",
  10727. "extra": {
  10728. "branch-alias": {
  10729. "dev-master": "4.0-dev"
  10730. }
  10731. },
  10732. "autoload": {
  10733. "classmap": [
  10734. "src/"
  10735. ]
  10736. },
  10737. "notification-url": "https://packagist.org/downloads/",
  10738. "license": [
  10739. "BSD-3-Clause"
  10740. ],
  10741. "authors": [
  10742. {
  10743. "name": "Sebastian Bergmann",
  10744. "email": "sebastian@phpunit.de"
  10745. },
  10746. {
  10747. "name": "Jeff Welch",
  10748. "email": "whatthejeff@gmail.com"
  10749. },
  10750. {
  10751. "name": "Volker Dusch",
  10752. "email": "github@wallbash.com"
  10753. },
  10754. {
  10755. "name": "Adam Harvey",
  10756. "email": "aharvey@php.net"
  10757. },
  10758. {
  10759. "name": "Bernhard Schussek",
  10760. "email": "bschussek@gmail.com"
  10761. }
  10762. ],
  10763. "description": "Provides the functionality to export PHP variables for visualization",
  10764. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10765. "keywords": [
  10766. "export",
  10767. "exporter"
  10768. ],
  10769. "support": {
  10770. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10771. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  10772. },
  10773. "funding": [
  10774. {
  10775. "url": "https://github.com/sebastianbergmann",
  10776. "type": "github"
  10777. }
  10778. ],
  10779. "time": "2024-03-02T06:33:00+00:00"
  10780. },
  10781. {
  10782. "name": "sebastian/global-state",
  10783. "version": "5.0.7",
  10784. "source": {
  10785. "type": "git",
  10786. "url": "https://github.com/sebastianbergmann/global-state.git",
  10787. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  10788. },
  10789. "dist": {
  10790. "type": "zip",
  10791. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  10792. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  10793. "shasum": ""
  10794. },
  10795. "require": {
  10796. "php": ">=7.3",
  10797. "sebastian/object-reflector": "^2.0",
  10798. "sebastian/recursion-context": "^4.0"
  10799. },
  10800. "require-dev": {
  10801. "ext-dom": "*",
  10802. "phpunit/phpunit": "^9.3"
  10803. },
  10804. "suggest": {
  10805. "ext-uopz": "*"
  10806. },
  10807. "type": "library",
  10808. "extra": {
  10809. "branch-alias": {
  10810. "dev-master": "5.0-dev"
  10811. }
  10812. },
  10813. "autoload": {
  10814. "classmap": [
  10815. "src/"
  10816. ]
  10817. },
  10818. "notification-url": "https://packagist.org/downloads/",
  10819. "license": [
  10820. "BSD-3-Clause"
  10821. ],
  10822. "authors": [
  10823. {
  10824. "name": "Sebastian Bergmann",
  10825. "email": "sebastian@phpunit.de"
  10826. }
  10827. ],
  10828. "description": "Snapshotting of global state",
  10829. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10830. "keywords": [
  10831. "global state"
  10832. ],
  10833. "support": {
  10834. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10835. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  10836. },
  10837. "funding": [
  10838. {
  10839. "url": "https://github.com/sebastianbergmann",
  10840. "type": "github"
  10841. }
  10842. ],
  10843. "time": "2024-03-02T06:35:11+00:00"
  10844. },
  10845. {
  10846. "name": "sebastian/lines-of-code",
  10847. "version": "1.0.4",
  10848. "source": {
  10849. "type": "git",
  10850. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10851. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10852. },
  10853. "dist": {
  10854. "type": "zip",
  10855. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10856. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10857. "shasum": ""
  10858. },
  10859. "require": {
  10860. "nikic/php-parser": "^4.18 || ^5.0",
  10861. "php": ">=7.3"
  10862. },
  10863. "require-dev": {
  10864. "phpunit/phpunit": "^9.3"
  10865. },
  10866. "type": "library",
  10867. "extra": {
  10868. "branch-alias": {
  10869. "dev-master": "1.0-dev"
  10870. }
  10871. },
  10872. "autoload": {
  10873. "classmap": [
  10874. "src/"
  10875. ]
  10876. },
  10877. "notification-url": "https://packagist.org/downloads/",
  10878. "license": [
  10879. "BSD-3-Clause"
  10880. ],
  10881. "authors": [
  10882. {
  10883. "name": "Sebastian Bergmann",
  10884. "email": "sebastian@phpunit.de",
  10885. "role": "lead"
  10886. }
  10887. ],
  10888. "description": "Library for counting the lines of code in PHP source code",
  10889. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10890. "support": {
  10891. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10892. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10893. },
  10894. "funding": [
  10895. {
  10896. "url": "https://github.com/sebastianbergmann",
  10897. "type": "github"
  10898. }
  10899. ],
  10900. "time": "2023-12-22T06:20:34+00:00"
  10901. },
  10902. {
  10903. "name": "sebastian/object-enumerator",
  10904. "version": "4.0.4",
  10905. "source": {
  10906. "type": "git",
  10907. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10908. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10909. },
  10910. "dist": {
  10911. "type": "zip",
  10912. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10913. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10914. "shasum": ""
  10915. },
  10916. "require": {
  10917. "php": ">=7.3",
  10918. "sebastian/object-reflector": "^2.0",
  10919. "sebastian/recursion-context": "^4.0"
  10920. },
  10921. "require-dev": {
  10922. "phpunit/phpunit": "^9.3"
  10923. },
  10924. "type": "library",
  10925. "extra": {
  10926. "branch-alias": {
  10927. "dev-master": "4.0-dev"
  10928. }
  10929. },
  10930. "autoload": {
  10931. "classmap": [
  10932. "src/"
  10933. ]
  10934. },
  10935. "notification-url": "https://packagist.org/downloads/",
  10936. "license": [
  10937. "BSD-3-Clause"
  10938. ],
  10939. "authors": [
  10940. {
  10941. "name": "Sebastian Bergmann",
  10942. "email": "sebastian@phpunit.de"
  10943. }
  10944. ],
  10945. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10946. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10947. "support": {
  10948. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10949. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10950. },
  10951. "funding": [
  10952. {
  10953. "url": "https://github.com/sebastianbergmann",
  10954. "type": "github"
  10955. }
  10956. ],
  10957. "time": "2020-10-26T13:12:34+00:00"
  10958. },
  10959. {
  10960. "name": "sebastian/object-reflector",
  10961. "version": "2.0.4",
  10962. "source": {
  10963. "type": "git",
  10964. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10965. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10966. },
  10967. "dist": {
  10968. "type": "zip",
  10969. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10970. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10971. "shasum": ""
  10972. },
  10973. "require": {
  10974. "php": ">=7.3"
  10975. },
  10976. "require-dev": {
  10977. "phpunit/phpunit": "^9.3"
  10978. },
  10979. "type": "library",
  10980. "extra": {
  10981. "branch-alias": {
  10982. "dev-master": "2.0-dev"
  10983. }
  10984. },
  10985. "autoload": {
  10986. "classmap": [
  10987. "src/"
  10988. ]
  10989. },
  10990. "notification-url": "https://packagist.org/downloads/",
  10991. "license": [
  10992. "BSD-3-Clause"
  10993. ],
  10994. "authors": [
  10995. {
  10996. "name": "Sebastian Bergmann",
  10997. "email": "sebastian@phpunit.de"
  10998. }
  10999. ],
  11000. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11001. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11002. "support": {
  11003. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11004. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  11005. },
  11006. "funding": [
  11007. {
  11008. "url": "https://github.com/sebastianbergmann",
  11009. "type": "github"
  11010. }
  11011. ],
  11012. "time": "2020-10-26T13:14:26+00:00"
  11013. },
  11014. {
  11015. "name": "sebastian/recursion-context",
  11016. "version": "4.0.5",
  11017. "source": {
  11018. "type": "git",
  11019. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11020. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  11021. },
  11022. "dist": {
  11023. "type": "zip",
  11024. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  11025. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  11026. "shasum": ""
  11027. },
  11028. "require": {
  11029. "php": ">=7.3"
  11030. },
  11031. "require-dev": {
  11032. "phpunit/phpunit": "^9.3"
  11033. },
  11034. "type": "library",
  11035. "extra": {
  11036. "branch-alias": {
  11037. "dev-master": "4.0-dev"
  11038. }
  11039. },
  11040. "autoload": {
  11041. "classmap": [
  11042. "src/"
  11043. ]
  11044. },
  11045. "notification-url": "https://packagist.org/downloads/",
  11046. "license": [
  11047. "BSD-3-Clause"
  11048. ],
  11049. "authors": [
  11050. {
  11051. "name": "Sebastian Bergmann",
  11052. "email": "sebastian@phpunit.de"
  11053. },
  11054. {
  11055. "name": "Jeff Welch",
  11056. "email": "whatthejeff@gmail.com"
  11057. },
  11058. {
  11059. "name": "Adam Harvey",
  11060. "email": "aharvey@php.net"
  11061. }
  11062. ],
  11063. "description": "Provides functionality to recursively process PHP variables",
  11064. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  11065. "support": {
  11066. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11067. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  11068. },
  11069. "funding": [
  11070. {
  11071. "url": "https://github.com/sebastianbergmann",
  11072. "type": "github"
  11073. }
  11074. ],
  11075. "time": "2023-02-03T06:07:39+00:00"
  11076. },
  11077. {
  11078. "name": "sebastian/resource-operations",
  11079. "version": "3.0.4",
  11080. "source": {
  11081. "type": "git",
  11082. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11083. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  11084. },
  11085. "dist": {
  11086. "type": "zip",
  11087. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  11088. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  11089. "shasum": ""
  11090. },
  11091. "require": {
  11092. "php": ">=7.3"
  11093. },
  11094. "require-dev": {
  11095. "phpunit/phpunit": "^9.0"
  11096. },
  11097. "type": "library",
  11098. "extra": {
  11099. "branch-alias": {
  11100. "dev-main": "3.0-dev"
  11101. }
  11102. },
  11103. "autoload": {
  11104. "classmap": [
  11105. "src/"
  11106. ]
  11107. },
  11108. "notification-url": "https://packagist.org/downloads/",
  11109. "license": [
  11110. "BSD-3-Clause"
  11111. ],
  11112. "authors": [
  11113. {
  11114. "name": "Sebastian Bergmann",
  11115. "email": "sebastian@phpunit.de"
  11116. }
  11117. ],
  11118. "description": "Provides a list of PHP built-in functions that operate on resources",
  11119. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11120. "support": {
  11121. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  11122. },
  11123. "funding": [
  11124. {
  11125. "url": "https://github.com/sebastianbergmann",
  11126. "type": "github"
  11127. }
  11128. ],
  11129. "time": "2024-03-14T16:00:52+00:00"
  11130. },
  11131. {
  11132. "name": "sebastian/type",
  11133. "version": "3.2.1",
  11134. "source": {
  11135. "type": "git",
  11136. "url": "https://github.com/sebastianbergmann/type.git",
  11137. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  11138. },
  11139. "dist": {
  11140. "type": "zip",
  11141. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  11142. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  11143. "shasum": ""
  11144. },
  11145. "require": {
  11146. "php": ">=7.3"
  11147. },
  11148. "require-dev": {
  11149. "phpunit/phpunit": "^9.5"
  11150. },
  11151. "type": "library",
  11152. "extra": {
  11153. "branch-alias": {
  11154. "dev-master": "3.2-dev"
  11155. }
  11156. },
  11157. "autoload": {
  11158. "classmap": [
  11159. "src/"
  11160. ]
  11161. },
  11162. "notification-url": "https://packagist.org/downloads/",
  11163. "license": [
  11164. "BSD-3-Clause"
  11165. ],
  11166. "authors": [
  11167. {
  11168. "name": "Sebastian Bergmann",
  11169. "email": "sebastian@phpunit.de",
  11170. "role": "lead"
  11171. }
  11172. ],
  11173. "description": "Collection of value objects that represent the types of the PHP type system",
  11174. "homepage": "https://github.com/sebastianbergmann/type",
  11175. "support": {
  11176. "issues": "https://github.com/sebastianbergmann/type/issues",
  11177. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  11178. },
  11179. "funding": [
  11180. {
  11181. "url": "https://github.com/sebastianbergmann",
  11182. "type": "github"
  11183. }
  11184. ],
  11185. "time": "2023-02-03T06:13:03+00:00"
  11186. },
  11187. {
  11188. "name": "sebastian/version",
  11189. "version": "3.0.2",
  11190. "source": {
  11191. "type": "git",
  11192. "url": "https://github.com/sebastianbergmann/version.git",
  11193. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11194. },
  11195. "dist": {
  11196. "type": "zip",
  11197. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11198. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11199. "shasum": ""
  11200. },
  11201. "require": {
  11202. "php": ">=7.3"
  11203. },
  11204. "type": "library",
  11205. "extra": {
  11206. "branch-alias": {
  11207. "dev-master": "3.0-dev"
  11208. }
  11209. },
  11210. "autoload": {
  11211. "classmap": [
  11212. "src/"
  11213. ]
  11214. },
  11215. "notification-url": "https://packagist.org/downloads/",
  11216. "license": [
  11217. "BSD-3-Clause"
  11218. ],
  11219. "authors": [
  11220. {
  11221. "name": "Sebastian Bergmann",
  11222. "email": "sebastian@phpunit.de",
  11223. "role": "lead"
  11224. }
  11225. ],
  11226. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11227. "homepage": "https://github.com/sebastianbergmann/version",
  11228. "support": {
  11229. "issues": "https://github.com/sebastianbergmann/version/issues",
  11230. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11231. },
  11232. "funding": [
  11233. {
  11234. "url": "https://github.com/sebastianbergmann",
  11235. "type": "github"
  11236. }
  11237. ],
  11238. "time": "2020-09-28T06:39:44+00:00"
  11239. },
  11240. {
  11241. "name": "theseer/tokenizer",
  11242. "version": "1.2.3",
  11243. "source": {
  11244. "type": "git",
  11245. "url": "https://github.com/theseer/tokenizer.git",
  11246. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11247. },
  11248. "dist": {
  11249. "type": "zip",
  11250. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11251. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11252. "shasum": ""
  11253. },
  11254. "require": {
  11255. "ext-dom": "*",
  11256. "ext-tokenizer": "*",
  11257. "ext-xmlwriter": "*",
  11258. "php": "^7.2 || ^8.0"
  11259. },
  11260. "type": "library",
  11261. "autoload": {
  11262. "classmap": [
  11263. "src/"
  11264. ]
  11265. },
  11266. "notification-url": "https://packagist.org/downloads/",
  11267. "license": [
  11268. "BSD-3-Clause"
  11269. ],
  11270. "authors": [
  11271. {
  11272. "name": "Arne Blankerts",
  11273. "email": "arne@blankerts.de",
  11274. "role": "Developer"
  11275. }
  11276. ],
  11277. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11278. "support": {
  11279. "issues": "https://github.com/theseer/tokenizer/issues",
  11280. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11281. },
  11282. "funding": [
  11283. {
  11284. "url": "https://github.com/theseer",
  11285. "type": "github"
  11286. }
  11287. ],
  11288. "time": "2024-03-03T12:36:25+00:00"
  11289. }
  11290. ],
  11291. "aliases": [],
  11292. "minimum-stability": "dev",
  11293. "stability-flags": {
  11294. "wngur6076/wngurest-php80": 20
  11295. },
  11296. "prefer-stable": true,
  11297. "prefer-lowest": false,
  11298. "platform": {
  11299. "php": "^7.3|^8.0",
  11300. "ext-json": "*",
  11301. "ext-sodium": "*"
  11302. },
  11303. "platform-dev": [],
  11304. "plugin-api-version": "2.6.0"
  11305. }