composer.lock 394 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017
  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": "0d007fe2e018692a9ff3d50fcbebabc5",
  8. "packages": [
  9. {
  10. "name": "aws/aws-crt-php",
  11. "version": "v1.2.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/awslabs/aws-crt-php.git",
  15. "reference": "1926277fc71d253dfa820271ac5987bdb193ccf5"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/1926277fc71d253dfa820271ac5987bdb193ccf5",
  20. "reference": "1926277fc71d253dfa820271ac5987bdb193ccf5",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  28. "yoast/phpunit-polyfills": "^1.0"
  29. },
  30. "suggest": {
  31. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "classmap": [
  36. "src/"
  37. ]
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "Apache-2.0"
  42. ],
  43. "authors": [
  44. {
  45. "name": "AWS SDK Common Runtime Team",
  46. "email": "aws-sdk-common-runtime@amazon.com"
  47. }
  48. ],
  49. "description": "AWS Common Runtime for PHP",
  50. "homepage": "https://github.com/awslabs/aws-crt-php",
  51. "keywords": [
  52. "amazon",
  53. "aws",
  54. "crt",
  55. "sdk"
  56. ],
  57. "support": {
  58. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  59. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.1"
  60. },
  61. "time": "2023-03-24T20:22:19+00:00"
  62. },
  63. {
  64. "name": "aws/aws-sdk-php",
  65. "version": "3.262.3",
  66. "source": {
  67. "type": "git",
  68. "url": "https://github.com/aws/aws-sdk-php.git",
  69. "reference": "f5c8142d43846194bbb3bb40b18e7f6df2788409"
  70. },
  71. "dist": {
  72. "type": "zip",
  73. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/f5c8142d43846194bbb3bb40b18e7f6df2788409",
  74. "reference": "f5c8142d43846194bbb3bb40b18e7f6df2788409",
  75. "shasum": ""
  76. },
  77. "require": {
  78. "aws/aws-crt-php": "^1.0.4",
  79. "ext-json": "*",
  80. "ext-pcre": "*",
  81. "ext-simplexml": "*",
  82. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  83. "guzzlehttp/promises": "^1.4.0",
  84. "guzzlehttp/psr7": "^1.8.5 || ^2.3",
  85. "mtdowling/jmespath.php": "^2.6",
  86. "php": ">=5.5"
  87. },
  88. "require-dev": {
  89. "andrewsville/php-token-reflection": "^1.4",
  90. "aws/aws-php-sns-message-validator": "~1.0",
  91. "behat/behat": "~3.0",
  92. "composer/composer": "^1.10.22",
  93. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  94. "doctrine/cache": "~1.4",
  95. "ext-dom": "*",
  96. "ext-openssl": "*",
  97. "ext-pcntl": "*",
  98. "ext-sockets": "*",
  99. "nette/neon": "^2.3",
  100. "paragonie/random_compat": ">= 2",
  101. "phpunit/phpunit": "^4.8.35 || ^5.6.3 || ^9.5",
  102. "psr/cache": "^1.0",
  103. "psr/simple-cache": "^1.0",
  104. "sebastian/comparator": "^1.2.3 || ^4.0",
  105. "yoast/phpunit-polyfills": "^1.0"
  106. },
  107. "suggest": {
  108. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  109. "doctrine/cache": "To use the DoctrineCacheAdapter",
  110. "ext-curl": "To send requests using cURL",
  111. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  112. "ext-sockets": "To use client-side monitoring"
  113. },
  114. "type": "library",
  115. "extra": {
  116. "branch-alias": {
  117. "dev-master": "3.0-dev"
  118. }
  119. },
  120. "autoload": {
  121. "files": [
  122. "src/functions.php"
  123. ],
  124. "psr-4": {
  125. "Aws\\": "src/"
  126. }
  127. },
  128. "notification-url": "https://packagist.org/downloads/",
  129. "license": [
  130. "Apache-2.0"
  131. ],
  132. "authors": [
  133. {
  134. "name": "Amazon Web Services",
  135. "homepage": "http://aws.amazon.com"
  136. }
  137. ],
  138. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  139. "homepage": "http://aws.amazon.com/sdkforphp",
  140. "keywords": [
  141. "amazon",
  142. "aws",
  143. "cloud",
  144. "dynamodb",
  145. "ec2",
  146. "glacier",
  147. "s3",
  148. "sdk"
  149. ],
  150. "support": {
  151. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  152. "issues": "https://github.com/aws/aws-sdk-php/issues",
  153. "source": "https://github.com/aws/aws-sdk-php/tree/3.262.3"
  154. },
  155. "time": "2023-03-28T18:18:50+00:00"
  156. },
  157. {
  158. "name": "barryvdh/laravel-dompdf",
  159. "version": "v2.0.1",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/barryvdh/laravel-dompdf.git",
  163. "reference": "9843d2be423670fb434f4c978b3c0f4dd92c87a6"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/9843d2be423670fb434f4c978b3c0f4dd92c87a6",
  168. "reference": "9843d2be423670fb434f4c978b3c0f4dd92c87a6",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "dompdf/dompdf": "^2.0.1",
  173. "illuminate/support": "^6|^7|^8|^9|^10",
  174. "php": "^7.2 || ^8.0"
  175. },
  176. "require-dev": {
  177. "nunomaduro/larastan": "^1|^2",
  178. "orchestra/testbench": "^4|^5|^6|^7|^8",
  179. "phpro/grumphp": "^1",
  180. "squizlabs/php_codesniffer": "^3.5"
  181. },
  182. "type": "library",
  183. "extra": {
  184. "branch-alias": {
  185. "dev-master": "2.0-dev"
  186. },
  187. "laravel": {
  188. "providers": [
  189. "Barryvdh\\DomPDF\\ServiceProvider"
  190. ],
  191. "aliases": {
  192. "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf",
  193. "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf"
  194. }
  195. }
  196. },
  197. "autoload": {
  198. "psr-4": {
  199. "Barryvdh\\DomPDF\\": "src"
  200. }
  201. },
  202. "notification-url": "https://packagist.org/downloads/",
  203. "license": [
  204. "MIT"
  205. ],
  206. "authors": [
  207. {
  208. "name": "Barry vd. Heuvel",
  209. "email": "barryvdh@gmail.com"
  210. }
  211. ],
  212. "description": "A DOMPDF Wrapper for Laravel",
  213. "keywords": [
  214. "dompdf",
  215. "laravel",
  216. "pdf"
  217. ],
  218. "support": {
  219. "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
  220. "source": "https://github.com/barryvdh/laravel-dompdf/tree/v2.0.1"
  221. },
  222. "funding": [
  223. {
  224. "url": "https://fruitcake.nl",
  225. "type": "custom"
  226. },
  227. {
  228. "url": "https://github.com/barryvdh",
  229. "type": "github"
  230. }
  231. ],
  232. "time": "2023-01-12T15:12:49+00:00"
  233. },
  234. {
  235. "name": "biscolab/laravel-recaptcha",
  236. "version": "v5.4.0",
  237. "source": {
  238. "type": "git",
  239. "url": "https://github.com/biscolab/laravel-recaptcha.git",
  240. "reference": "1bab726402d5376553a439b88a0faa07e84488fd"
  241. },
  242. "dist": {
  243. "type": "zip",
  244. "url": "https://api.github.com/repos/biscolab/laravel-recaptcha/zipball/1bab726402d5376553a439b88a0faa07e84488fd",
  245. "reference": "1bab726402d5376553a439b88a0faa07e84488fd",
  246. "shasum": ""
  247. },
  248. "require": {
  249. "illuminate/routing": "^7.0|^8.0|^9.0",
  250. "illuminate/support": "^7.0|^8.0|^9.0",
  251. "php": "^7.3|^8.0"
  252. },
  253. "require-dev": {
  254. "orchestra/testbench": "5.*|6.*|^7.0",
  255. "phpunit/phpunit": "^9.1"
  256. },
  257. "suggest": {
  258. "biscolab/laravel-authlog": "It allows to handle logged-in users and force log-out if needed"
  259. },
  260. "type": "library",
  261. "extra": {
  262. "laravel": {
  263. "providers": [
  264. "Biscolab\\ReCaptcha\\ReCaptchaServiceProvider"
  265. ],
  266. "aliases": {
  267. "ReCaptcha": "Biscolab\\ReCaptcha\\Facades\\ReCaptcha"
  268. }
  269. }
  270. },
  271. "autoload": {
  272. "files": [
  273. "src/helpers.php"
  274. ],
  275. "psr-4": {
  276. "Biscolab\\ReCaptcha\\": "src/"
  277. }
  278. },
  279. "notification-url": "https://packagist.org/downloads/",
  280. "license": [
  281. "MIT"
  282. ],
  283. "authors": [
  284. {
  285. "name": "Roberto Belotti",
  286. "email": "roby.belotti@gmail.com",
  287. "homepage": "https://biscolab.com",
  288. "role": "Developer"
  289. }
  290. ],
  291. "description": "Simple and painless Google reCAPTCHA package for Laravel framework",
  292. "homepage": "https://biscolab.com/laravel-recaptcha",
  293. "keywords": [
  294. "captcha",
  295. "laravel",
  296. "recaptcha",
  297. "validation"
  298. ],
  299. "support": {
  300. "issues": "https://github.com/biscolab/laravel-recaptcha/issues",
  301. "source": "https://github.com/biscolab/laravel-recaptcha/tree/v5.4.0"
  302. },
  303. "time": "2022-05-07T12:52:46+00:00"
  304. },
  305. {
  306. "name": "brick/math",
  307. "version": "0.11.0",
  308. "source": {
  309. "type": "git",
  310. "url": "https://github.com/brick/math.git",
  311. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  312. },
  313. "dist": {
  314. "type": "zip",
  315. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  316. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  317. "shasum": ""
  318. },
  319. "require": {
  320. "php": "^8.0"
  321. },
  322. "require-dev": {
  323. "php-coveralls/php-coveralls": "^2.2",
  324. "phpunit/phpunit": "^9.0",
  325. "vimeo/psalm": "5.0.0"
  326. },
  327. "type": "library",
  328. "autoload": {
  329. "psr-4": {
  330. "Brick\\Math\\": "src/"
  331. }
  332. },
  333. "notification-url": "https://packagist.org/downloads/",
  334. "license": [
  335. "MIT"
  336. ],
  337. "description": "Arbitrary-precision arithmetic library",
  338. "keywords": [
  339. "Arbitrary-precision",
  340. "BigInteger",
  341. "BigRational",
  342. "arithmetic",
  343. "bigdecimal",
  344. "bignum",
  345. "brick",
  346. "math"
  347. ],
  348. "support": {
  349. "issues": "https://github.com/brick/math/issues",
  350. "source": "https://github.com/brick/math/tree/0.11.0"
  351. },
  352. "funding": [
  353. {
  354. "url": "https://github.com/BenMorel",
  355. "type": "github"
  356. }
  357. ],
  358. "time": "2023-01-15T23:15:59+00:00"
  359. },
  360. {
  361. "name": "dflydev/dot-access-data",
  362. "version": "v3.0.2",
  363. "source": {
  364. "type": "git",
  365. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  366. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  367. },
  368. "dist": {
  369. "type": "zip",
  370. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  371. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  372. "shasum": ""
  373. },
  374. "require": {
  375. "php": "^7.1 || ^8.0"
  376. },
  377. "require-dev": {
  378. "phpstan/phpstan": "^0.12.42",
  379. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  380. "scrutinizer/ocular": "1.6.0",
  381. "squizlabs/php_codesniffer": "^3.5",
  382. "vimeo/psalm": "^4.0.0"
  383. },
  384. "type": "library",
  385. "extra": {
  386. "branch-alias": {
  387. "dev-main": "3.x-dev"
  388. }
  389. },
  390. "autoload": {
  391. "psr-4": {
  392. "Dflydev\\DotAccessData\\": "src/"
  393. }
  394. },
  395. "notification-url": "https://packagist.org/downloads/",
  396. "license": [
  397. "MIT"
  398. ],
  399. "authors": [
  400. {
  401. "name": "Dragonfly Development Inc.",
  402. "email": "info@dflydev.com",
  403. "homepage": "http://dflydev.com"
  404. },
  405. {
  406. "name": "Beau Simensen",
  407. "email": "beau@dflydev.com",
  408. "homepage": "http://beausimensen.com"
  409. },
  410. {
  411. "name": "Carlos Frutos",
  412. "email": "carlos@kiwing.it",
  413. "homepage": "https://github.com/cfrutos"
  414. },
  415. {
  416. "name": "Colin O'Dell",
  417. "email": "colinodell@gmail.com",
  418. "homepage": "https://www.colinodell.com"
  419. }
  420. ],
  421. "description": "Given a deep data structure, access data by dot notation.",
  422. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  423. "keywords": [
  424. "access",
  425. "data",
  426. "dot",
  427. "notation"
  428. ],
  429. "support": {
  430. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  431. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  432. },
  433. "time": "2022-10-27T11:44:00+00:00"
  434. },
  435. {
  436. "name": "doctrine/cache",
  437. "version": "2.2.0",
  438. "source": {
  439. "type": "git",
  440. "url": "https://github.com/doctrine/cache.git",
  441. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  442. },
  443. "dist": {
  444. "type": "zip",
  445. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  446. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  447. "shasum": ""
  448. },
  449. "require": {
  450. "php": "~7.1 || ^8.0"
  451. },
  452. "conflict": {
  453. "doctrine/common": ">2.2,<2.4"
  454. },
  455. "require-dev": {
  456. "cache/integration-tests": "dev-master",
  457. "doctrine/coding-standard": "^9",
  458. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  459. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  460. "symfony/cache": "^4.4 || ^5.4 || ^6",
  461. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  462. },
  463. "type": "library",
  464. "autoload": {
  465. "psr-4": {
  466. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  467. }
  468. },
  469. "notification-url": "https://packagist.org/downloads/",
  470. "license": [
  471. "MIT"
  472. ],
  473. "authors": [
  474. {
  475. "name": "Guilherme Blanco",
  476. "email": "guilhermeblanco@gmail.com"
  477. },
  478. {
  479. "name": "Roman Borschel",
  480. "email": "roman@code-factory.org"
  481. },
  482. {
  483. "name": "Benjamin Eberlei",
  484. "email": "kontakt@beberlei.de"
  485. },
  486. {
  487. "name": "Jonathan Wage",
  488. "email": "jonwage@gmail.com"
  489. },
  490. {
  491. "name": "Johannes Schmitt",
  492. "email": "schmittjoh@gmail.com"
  493. }
  494. ],
  495. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  496. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  497. "keywords": [
  498. "abstraction",
  499. "apcu",
  500. "cache",
  501. "caching",
  502. "couchdb",
  503. "memcached",
  504. "php",
  505. "redis",
  506. "xcache"
  507. ],
  508. "support": {
  509. "issues": "https://github.com/doctrine/cache/issues",
  510. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  511. },
  512. "funding": [
  513. {
  514. "url": "https://www.doctrine-project.org/sponsorship.html",
  515. "type": "custom"
  516. },
  517. {
  518. "url": "https://www.patreon.com/phpdoctrine",
  519. "type": "patreon"
  520. },
  521. {
  522. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  523. "type": "tidelift"
  524. }
  525. ],
  526. "time": "2022-05-20T20:07:39+00:00"
  527. },
  528. {
  529. "name": "doctrine/dbal",
  530. "version": "3.6.1",
  531. "source": {
  532. "type": "git",
  533. "url": "https://github.com/doctrine/dbal.git",
  534. "reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e"
  535. },
  536. "dist": {
  537. "type": "zip",
  538. "url": "https://api.github.com/repos/doctrine/dbal/zipball/57815c7bbcda3cd18871d253c1dd8cbe56f8526e",
  539. "reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e",
  540. "shasum": ""
  541. },
  542. "require": {
  543. "composer-runtime-api": "^2",
  544. "doctrine/cache": "^1.11|^2.0",
  545. "doctrine/deprecations": "^0.5.3|^1",
  546. "doctrine/event-manager": "^1|^2",
  547. "php": "^7.4 || ^8.0",
  548. "psr/cache": "^1|^2|^3",
  549. "psr/log": "^1|^2|^3"
  550. },
  551. "require-dev": {
  552. "doctrine/coding-standard": "11.1.0",
  553. "fig/log-test": "^1",
  554. "jetbrains/phpstorm-stubs": "2022.3",
  555. "phpstan/phpstan": "1.10.3",
  556. "phpstan/phpstan-strict-rules": "^1.5",
  557. "phpunit/phpunit": "9.6.4",
  558. "psalm/plugin-phpunit": "0.18.4",
  559. "squizlabs/php_codesniffer": "3.7.2",
  560. "symfony/cache": "^5.4|^6.0",
  561. "symfony/console": "^4.4|^5.4|^6.0",
  562. "vimeo/psalm": "4.30.0"
  563. },
  564. "suggest": {
  565. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  566. },
  567. "bin": [
  568. "bin/doctrine-dbal"
  569. ],
  570. "type": "library",
  571. "autoload": {
  572. "psr-4": {
  573. "Doctrine\\DBAL\\": "src"
  574. }
  575. },
  576. "notification-url": "https://packagist.org/downloads/",
  577. "license": [
  578. "MIT"
  579. ],
  580. "authors": [
  581. {
  582. "name": "Guilherme Blanco",
  583. "email": "guilhermeblanco@gmail.com"
  584. },
  585. {
  586. "name": "Roman Borschel",
  587. "email": "roman@code-factory.org"
  588. },
  589. {
  590. "name": "Benjamin Eberlei",
  591. "email": "kontakt@beberlei.de"
  592. },
  593. {
  594. "name": "Jonathan Wage",
  595. "email": "jonwage@gmail.com"
  596. }
  597. ],
  598. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  599. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  600. "keywords": [
  601. "abstraction",
  602. "database",
  603. "db2",
  604. "dbal",
  605. "mariadb",
  606. "mssql",
  607. "mysql",
  608. "oci8",
  609. "oracle",
  610. "pdo",
  611. "pgsql",
  612. "postgresql",
  613. "queryobject",
  614. "sasql",
  615. "sql",
  616. "sqlite",
  617. "sqlserver",
  618. "sqlsrv"
  619. ],
  620. "support": {
  621. "issues": "https://github.com/doctrine/dbal/issues",
  622. "source": "https://github.com/doctrine/dbal/tree/3.6.1"
  623. },
  624. "funding": [
  625. {
  626. "url": "https://www.doctrine-project.org/sponsorship.html",
  627. "type": "custom"
  628. },
  629. {
  630. "url": "https://www.patreon.com/phpdoctrine",
  631. "type": "patreon"
  632. },
  633. {
  634. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  635. "type": "tidelift"
  636. }
  637. ],
  638. "time": "2023-03-02T19:26:24+00:00"
  639. },
  640. {
  641. "name": "doctrine/deprecations",
  642. "version": "v1.0.0",
  643. "source": {
  644. "type": "git",
  645. "url": "https://github.com/doctrine/deprecations.git",
  646. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  647. },
  648. "dist": {
  649. "type": "zip",
  650. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  651. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  652. "shasum": ""
  653. },
  654. "require": {
  655. "php": "^7.1|^8.0"
  656. },
  657. "require-dev": {
  658. "doctrine/coding-standard": "^9",
  659. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  660. "psr/log": "^1|^2|^3"
  661. },
  662. "suggest": {
  663. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  664. },
  665. "type": "library",
  666. "autoload": {
  667. "psr-4": {
  668. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  669. }
  670. },
  671. "notification-url": "https://packagist.org/downloads/",
  672. "license": [
  673. "MIT"
  674. ],
  675. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  676. "homepage": "https://www.doctrine-project.org/",
  677. "support": {
  678. "issues": "https://github.com/doctrine/deprecations/issues",
  679. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  680. },
  681. "time": "2022-05-02T15:47:09+00:00"
  682. },
  683. {
  684. "name": "doctrine/event-manager",
  685. "version": "2.0.0",
  686. "source": {
  687. "type": "git",
  688. "url": "https://github.com/doctrine/event-manager.git",
  689. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  690. },
  691. "dist": {
  692. "type": "zip",
  693. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  694. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  695. "shasum": ""
  696. },
  697. "require": {
  698. "php": "^8.1"
  699. },
  700. "conflict": {
  701. "doctrine/common": "<2.9"
  702. },
  703. "require-dev": {
  704. "doctrine/coding-standard": "^10",
  705. "phpstan/phpstan": "^1.8.8",
  706. "phpunit/phpunit": "^9.5",
  707. "vimeo/psalm": "^4.28"
  708. },
  709. "type": "library",
  710. "autoload": {
  711. "psr-4": {
  712. "Doctrine\\Common\\": "src"
  713. }
  714. },
  715. "notification-url": "https://packagist.org/downloads/",
  716. "license": [
  717. "MIT"
  718. ],
  719. "authors": [
  720. {
  721. "name": "Guilherme Blanco",
  722. "email": "guilhermeblanco@gmail.com"
  723. },
  724. {
  725. "name": "Roman Borschel",
  726. "email": "roman@code-factory.org"
  727. },
  728. {
  729. "name": "Benjamin Eberlei",
  730. "email": "kontakt@beberlei.de"
  731. },
  732. {
  733. "name": "Jonathan Wage",
  734. "email": "jonwage@gmail.com"
  735. },
  736. {
  737. "name": "Johannes Schmitt",
  738. "email": "schmittjoh@gmail.com"
  739. },
  740. {
  741. "name": "Marco Pivetta",
  742. "email": "ocramius@gmail.com"
  743. }
  744. ],
  745. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  746. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  747. "keywords": [
  748. "event",
  749. "event dispatcher",
  750. "event manager",
  751. "event system",
  752. "events"
  753. ],
  754. "support": {
  755. "issues": "https://github.com/doctrine/event-manager/issues",
  756. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  757. },
  758. "funding": [
  759. {
  760. "url": "https://www.doctrine-project.org/sponsorship.html",
  761. "type": "custom"
  762. },
  763. {
  764. "url": "https://www.patreon.com/phpdoctrine",
  765. "type": "patreon"
  766. },
  767. {
  768. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  769. "type": "tidelift"
  770. }
  771. ],
  772. "time": "2022-10-12T20:59:15+00:00"
  773. },
  774. {
  775. "name": "doctrine/inflector",
  776. "version": "2.0.6",
  777. "source": {
  778. "type": "git",
  779. "url": "https://github.com/doctrine/inflector.git",
  780. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  781. },
  782. "dist": {
  783. "type": "zip",
  784. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  785. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  786. "shasum": ""
  787. },
  788. "require": {
  789. "php": "^7.2 || ^8.0"
  790. },
  791. "require-dev": {
  792. "doctrine/coding-standard": "^10",
  793. "phpstan/phpstan": "^1.8",
  794. "phpstan/phpstan-phpunit": "^1.1",
  795. "phpstan/phpstan-strict-rules": "^1.3",
  796. "phpunit/phpunit": "^8.5 || ^9.5",
  797. "vimeo/psalm": "^4.25"
  798. },
  799. "type": "library",
  800. "autoload": {
  801. "psr-4": {
  802. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  803. }
  804. },
  805. "notification-url": "https://packagist.org/downloads/",
  806. "license": [
  807. "MIT"
  808. ],
  809. "authors": [
  810. {
  811. "name": "Guilherme Blanco",
  812. "email": "guilhermeblanco@gmail.com"
  813. },
  814. {
  815. "name": "Roman Borschel",
  816. "email": "roman@code-factory.org"
  817. },
  818. {
  819. "name": "Benjamin Eberlei",
  820. "email": "kontakt@beberlei.de"
  821. },
  822. {
  823. "name": "Jonathan Wage",
  824. "email": "jonwage@gmail.com"
  825. },
  826. {
  827. "name": "Johannes Schmitt",
  828. "email": "schmittjoh@gmail.com"
  829. }
  830. ],
  831. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  832. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  833. "keywords": [
  834. "inflection",
  835. "inflector",
  836. "lowercase",
  837. "manipulation",
  838. "php",
  839. "plural",
  840. "singular",
  841. "strings",
  842. "uppercase",
  843. "words"
  844. ],
  845. "support": {
  846. "issues": "https://github.com/doctrine/inflector/issues",
  847. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  848. },
  849. "funding": [
  850. {
  851. "url": "https://www.doctrine-project.org/sponsorship.html",
  852. "type": "custom"
  853. },
  854. {
  855. "url": "https://www.patreon.com/phpdoctrine",
  856. "type": "patreon"
  857. },
  858. {
  859. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  860. "type": "tidelift"
  861. }
  862. ],
  863. "time": "2022-10-20T09:10:12+00:00"
  864. },
  865. {
  866. "name": "doctrine/lexer",
  867. "version": "3.0.0",
  868. "source": {
  869. "type": "git",
  870. "url": "https://github.com/doctrine/lexer.git",
  871. "reference": "84a527db05647743d50373e0ec53a152f2cde568"
  872. },
  873. "dist": {
  874. "type": "zip",
  875. "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568",
  876. "reference": "84a527db05647743d50373e0ec53a152f2cde568",
  877. "shasum": ""
  878. },
  879. "require": {
  880. "php": "^8.1"
  881. },
  882. "require-dev": {
  883. "doctrine/coding-standard": "^10",
  884. "phpstan/phpstan": "^1.9",
  885. "phpunit/phpunit": "^9.5",
  886. "psalm/plugin-phpunit": "^0.18.3",
  887. "vimeo/psalm": "^5.0"
  888. },
  889. "type": "library",
  890. "autoload": {
  891. "psr-4": {
  892. "Doctrine\\Common\\Lexer\\": "src"
  893. }
  894. },
  895. "notification-url": "https://packagist.org/downloads/",
  896. "license": [
  897. "MIT"
  898. ],
  899. "authors": [
  900. {
  901. "name": "Guilherme Blanco",
  902. "email": "guilhermeblanco@gmail.com"
  903. },
  904. {
  905. "name": "Roman Borschel",
  906. "email": "roman@code-factory.org"
  907. },
  908. {
  909. "name": "Johannes Schmitt",
  910. "email": "schmittjoh@gmail.com"
  911. }
  912. ],
  913. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  914. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  915. "keywords": [
  916. "annotations",
  917. "docblock",
  918. "lexer",
  919. "parser",
  920. "php"
  921. ],
  922. "support": {
  923. "issues": "https://github.com/doctrine/lexer/issues",
  924. "source": "https://github.com/doctrine/lexer/tree/3.0.0"
  925. },
  926. "funding": [
  927. {
  928. "url": "https://www.doctrine-project.org/sponsorship.html",
  929. "type": "custom"
  930. },
  931. {
  932. "url": "https://www.patreon.com/phpdoctrine",
  933. "type": "patreon"
  934. },
  935. {
  936. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  937. "type": "tidelift"
  938. }
  939. ],
  940. "time": "2022-12-15T16:57:16+00:00"
  941. },
  942. {
  943. "name": "dompdf/dompdf",
  944. "version": "v2.0.3",
  945. "source": {
  946. "type": "git",
  947. "url": "https://github.com/dompdf/dompdf.git",
  948. "reference": "e8d2d5e37e8b0b30f0732a011295ab80680d7e85"
  949. },
  950. "dist": {
  951. "type": "zip",
  952. "url": "https://api.github.com/repos/dompdf/dompdf/zipball/e8d2d5e37e8b0b30f0732a011295ab80680d7e85",
  953. "reference": "e8d2d5e37e8b0b30f0732a011295ab80680d7e85",
  954. "shasum": ""
  955. },
  956. "require": {
  957. "ext-dom": "*",
  958. "ext-mbstring": "*",
  959. "masterminds/html5": "^2.0",
  960. "phenx/php-font-lib": ">=0.5.4 <1.0.0",
  961. "phenx/php-svg-lib": ">=0.3.3 <1.0.0",
  962. "php": "^7.1 || ^8.0"
  963. },
  964. "require-dev": {
  965. "ext-json": "*",
  966. "ext-zip": "*",
  967. "mockery/mockery": "^1.3",
  968. "phpunit/phpunit": "^7.5 || ^8 || ^9",
  969. "squizlabs/php_codesniffer": "^3.5"
  970. },
  971. "suggest": {
  972. "ext-gd": "Needed to process images",
  973. "ext-gmagick": "Improves image processing performance",
  974. "ext-imagick": "Improves image processing performance",
  975. "ext-zlib": "Needed for pdf stream compression"
  976. },
  977. "type": "library",
  978. "autoload": {
  979. "psr-4": {
  980. "Dompdf\\": "src/"
  981. },
  982. "classmap": [
  983. "lib/"
  984. ]
  985. },
  986. "notification-url": "https://packagist.org/downloads/",
  987. "license": [
  988. "LGPL-2.1"
  989. ],
  990. "authors": [
  991. {
  992. "name": "The Dompdf Community",
  993. "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md"
  994. }
  995. ],
  996. "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
  997. "homepage": "https://github.com/dompdf/dompdf",
  998. "support": {
  999. "issues": "https://github.com/dompdf/dompdf/issues",
  1000. "source": "https://github.com/dompdf/dompdf/tree/v2.0.3"
  1001. },
  1002. "time": "2023-02-07T12:51:48+00:00"
  1003. },
  1004. {
  1005. "name": "dragonmantank/cron-expression",
  1006. "version": "v3.3.2",
  1007. "source": {
  1008. "type": "git",
  1009. "url": "https://github.com/dragonmantank/cron-expression.git",
  1010. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8"
  1011. },
  1012. "dist": {
  1013. "type": "zip",
  1014. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8",
  1015. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8",
  1016. "shasum": ""
  1017. },
  1018. "require": {
  1019. "php": "^7.2|^8.0",
  1020. "webmozart/assert": "^1.0"
  1021. },
  1022. "replace": {
  1023. "mtdowling/cron-expression": "^1.0"
  1024. },
  1025. "require-dev": {
  1026. "phpstan/extension-installer": "^1.0",
  1027. "phpstan/phpstan": "^1.0",
  1028. "phpstan/phpstan-webmozart-assert": "^1.0",
  1029. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1030. },
  1031. "type": "library",
  1032. "autoload": {
  1033. "psr-4": {
  1034. "Cron\\": "src/Cron/"
  1035. }
  1036. },
  1037. "notification-url": "https://packagist.org/downloads/",
  1038. "license": [
  1039. "MIT"
  1040. ],
  1041. "authors": [
  1042. {
  1043. "name": "Chris Tankersley",
  1044. "email": "chris@ctankersley.com",
  1045. "homepage": "https://github.com/dragonmantank"
  1046. }
  1047. ],
  1048. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1049. "keywords": [
  1050. "cron",
  1051. "schedule"
  1052. ],
  1053. "support": {
  1054. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1055. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2"
  1056. },
  1057. "funding": [
  1058. {
  1059. "url": "https://github.com/dragonmantank",
  1060. "type": "github"
  1061. }
  1062. ],
  1063. "time": "2022-09-10T18:51:20+00:00"
  1064. },
  1065. {
  1066. "name": "egulias/email-validator",
  1067. "version": "4.0.1",
  1068. "source": {
  1069. "type": "git",
  1070. "url": "https://github.com/egulias/EmailValidator.git",
  1071. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
  1072. },
  1073. "dist": {
  1074. "type": "zip",
  1075. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1076. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1077. "shasum": ""
  1078. },
  1079. "require": {
  1080. "doctrine/lexer": "^2.0 || ^3.0",
  1081. "php": ">=8.1",
  1082. "symfony/polyfill-intl-idn": "^1.26"
  1083. },
  1084. "require-dev": {
  1085. "phpunit/phpunit": "^9.5.27",
  1086. "vimeo/psalm": "^4.30"
  1087. },
  1088. "suggest": {
  1089. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1090. },
  1091. "type": "library",
  1092. "extra": {
  1093. "branch-alias": {
  1094. "dev-master": "4.0.x-dev"
  1095. }
  1096. },
  1097. "autoload": {
  1098. "psr-4": {
  1099. "Egulias\\EmailValidator\\": "src"
  1100. }
  1101. },
  1102. "notification-url": "https://packagist.org/downloads/",
  1103. "license": [
  1104. "MIT"
  1105. ],
  1106. "authors": [
  1107. {
  1108. "name": "Eduardo Gulias Davis"
  1109. }
  1110. ],
  1111. "description": "A library for validating emails against several RFCs",
  1112. "homepage": "https://github.com/egulias/EmailValidator",
  1113. "keywords": [
  1114. "email",
  1115. "emailvalidation",
  1116. "emailvalidator",
  1117. "validation",
  1118. "validator"
  1119. ],
  1120. "support": {
  1121. "issues": "https://github.com/egulias/EmailValidator/issues",
  1122. "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
  1123. },
  1124. "funding": [
  1125. {
  1126. "url": "https://github.com/egulias",
  1127. "type": "github"
  1128. }
  1129. ],
  1130. "time": "2023-01-14T14:17:03+00:00"
  1131. },
  1132. {
  1133. "name": "facade/ignition-contracts",
  1134. "version": "1.0.2",
  1135. "source": {
  1136. "type": "git",
  1137. "url": "https://github.com/facade/ignition-contracts.git",
  1138. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1139. },
  1140. "dist": {
  1141. "type": "zip",
  1142. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1143. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1144. "shasum": ""
  1145. },
  1146. "require": {
  1147. "php": "^7.3|^8.0"
  1148. },
  1149. "require-dev": {
  1150. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1151. "phpunit/phpunit": "^9.3.11",
  1152. "vimeo/psalm": "^3.17.1"
  1153. },
  1154. "type": "library",
  1155. "autoload": {
  1156. "psr-4": {
  1157. "Facade\\IgnitionContracts\\": "src"
  1158. }
  1159. },
  1160. "notification-url": "https://packagist.org/downloads/",
  1161. "license": [
  1162. "MIT"
  1163. ],
  1164. "authors": [
  1165. {
  1166. "name": "Freek Van der Herten",
  1167. "email": "freek@spatie.be",
  1168. "homepage": "https://flareapp.io",
  1169. "role": "Developer"
  1170. }
  1171. ],
  1172. "description": "Solution contracts for Ignition",
  1173. "homepage": "https://github.com/facade/ignition-contracts",
  1174. "keywords": [
  1175. "contracts",
  1176. "flare",
  1177. "ignition"
  1178. ],
  1179. "support": {
  1180. "issues": "https://github.com/facade/ignition-contracts/issues",
  1181. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1182. },
  1183. "time": "2020-10-16T08:27:54+00:00"
  1184. },
  1185. {
  1186. "name": "fruitcake/php-cors",
  1187. "version": "v1.2.0",
  1188. "source": {
  1189. "type": "git",
  1190. "url": "https://github.com/fruitcake/php-cors.git",
  1191. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  1192. },
  1193. "dist": {
  1194. "type": "zip",
  1195. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1196. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1197. "shasum": ""
  1198. },
  1199. "require": {
  1200. "php": "^7.4|^8.0",
  1201. "symfony/http-foundation": "^4.4|^5.4|^6"
  1202. },
  1203. "require-dev": {
  1204. "phpstan/phpstan": "^1.4",
  1205. "phpunit/phpunit": "^9",
  1206. "squizlabs/php_codesniffer": "^3.5"
  1207. },
  1208. "type": "library",
  1209. "extra": {
  1210. "branch-alias": {
  1211. "dev-main": "1.1-dev"
  1212. }
  1213. },
  1214. "autoload": {
  1215. "psr-4": {
  1216. "Fruitcake\\Cors\\": "src/"
  1217. }
  1218. },
  1219. "notification-url": "https://packagist.org/downloads/",
  1220. "license": [
  1221. "MIT"
  1222. ],
  1223. "authors": [
  1224. {
  1225. "name": "Fruitcake",
  1226. "homepage": "https://fruitcake.nl"
  1227. },
  1228. {
  1229. "name": "Barryvdh",
  1230. "email": "barryvdh@gmail.com"
  1231. }
  1232. ],
  1233. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1234. "homepage": "https://github.com/fruitcake/php-cors",
  1235. "keywords": [
  1236. "cors",
  1237. "laravel",
  1238. "symfony"
  1239. ],
  1240. "support": {
  1241. "issues": "https://github.com/fruitcake/php-cors/issues",
  1242. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  1243. },
  1244. "funding": [
  1245. {
  1246. "url": "https://fruitcake.nl",
  1247. "type": "custom"
  1248. },
  1249. {
  1250. "url": "https://github.com/barryvdh",
  1251. "type": "github"
  1252. }
  1253. ],
  1254. "time": "2022-02-20T15:07:15+00:00"
  1255. },
  1256. {
  1257. "name": "graham-campbell/result-type",
  1258. "version": "v1.1.1",
  1259. "source": {
  1260. "type": "git",
  1261. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1262. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
  1263. },
  1264. "dist": {
  1265. "type": "zip",
  1266. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1267. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1268. "shasum": ""
  1269. },
  1270. "require": {
  1271. "php": "^7.2.5 || ^8.0",
  1272. "phpoption/phpoption": "^1.9.1"
  1273. },
  1274. "require-dev": {
  1275. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  1276. },
  1277. "type": "library",
  1278. "autoload": {
  1279. "psr-4": {
  1280. "GrahamCampbell\\ResultType\\": "src/"
  1281. }
  1282. },
  1283. "notification-url": "https://packagist.org/downloads/",
  1284. "license": [
  1285. "MIT"
  1286. ],
  1287. "authors": [
  1288. {
  1289. "name": "Graham Campbell",
  1290. "email": "hello@gjcampbell.co.uk",
  1291. "homepage": "https://github.com/GrahamCampbell"
  1292. }
  1293. ],
  1294. "description": "An Implementation Of The Result Type",
  1295. "keywords": [
  1296. "Graham Campbell",
  1297. "GrahamCampbell",
  1298. "Result Type",
  1299. "Result-Type",
  1300. "result"
  1301. ],
  1302. "support": {
  1303. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1304. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1"
  1305. },
  1306. "funding": [
  1307. {
  1308. "url": "https://github.com/GrahamCampbell",
  1309. "type": "github"
  1310. },
  1311. {
  1312. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1313. "type": "tidelift"
  1314. }
  1315. ],
  1316. "time": "2023-02-25T20:23:15+00:00"
  1317. },
  1318. {
  1319. "name": "guzzlehttp/guzzle",
  1320. "version": "7.5.0",
  1321. "source": {
  1322. "type": "git",
  1323. "url": "https://github.com/guzzle/guzzle.git",
  1324. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  1325. },
  1326. "dist": {
  1327. "type": "zip",
  1328. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  1329. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  1330. "shasum": ""
  1331. },
  1332. "require": {
  1333. "ext-json": "*",
  1334. "guzzlehttp/promises": "^1.5",
  1335. "guzzlehttp/psr7": "^1.9 || ^2.4",
  1336. "php": "^7.2.5 || ^8.0",
  1337. "psr/http-client": "^1.0",
  1338. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1339. },
  1340. "provide": {
  1341. "psr/http-client-implementation": "1.0"
  1342. },
  1343. "require-dev": {
  1344. "bamarni/composer-bin-plugin": "^1.8.1",
  1345. "ext-curl": "*",
  1346. "php-http/client-integration-tests": "^3.0",
  1347. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  1348. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1349. },
  1350. "suggest": {
  1351. "ext-curl": "Required for CURL handler support",
  1352. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1353. "psr/log": "Required for using the Log middleware"
  1354. },
  1355. "type": "library",
  1356. "extra": {
  1357. "bamarni-bin": {
  1358. "bin-links": true,
  1359. "forward-command": false
  1360. },
  1361. "branch-alias": {
  1362. "dev-master": "7.5-dev"
  1363. }
  1364. },
  1365. "autoload": {
  1366. "files": [
  1367. "src/functions_include.php"
  1368. ],
  1369. "psr-4": {
  1370. "GuzzleHttp\\": "src/"
  1371. }
  1372. },
  1373. "notification-url": "https://packagist.org/downloads/",
  1374. "license": [
  1375. "MIT"
  1376. ],
  1377. "authors": [
  1378. {
  1379. "name": "Graham Campbell",
  1380. "email": "hello@gjcampbell.co.uk",
  1381. "homepage": "https://github.com/GrahamCampbell"
  1382. },
  1383. {
  1384. "name": "Michael Dowling",
  1385. "email": "mtdowling@gmail.com",
  1386. "homepage": "https://github.com/mtdowling"
  1387. },
  1388. {
  1389. "name": "Jeremy Lindblom",
  1390. "email": "jeremeamia@gmail.com",
  1391. "homepage": "https://github.com/jeremeamia"
  1392. },
  1393. {
  1394. "name": "George Mponos",
  1395. "email": "gmponos@gmail.com",
  1396. "homepage": "https://github.com/gmponos"
  1397. },
  1398. {
  1399. "name": "Tobias Nyholm",
  1400. "email": "tobias.nyholm@gmail.com",
  1401. "homepage": "https://github.com/Nyholm"
  1402. },
  1403. {
  1404. "name": "Márk Sági-Kazár",
  1405. "email": "mark.sagikazar@gmail.com",
  1406. "homepage": "https://github.com/sagikazarmark"
  1407. },
  1408. {
  1409. "name": "Tobias Schultze",
  1410. "email": "webmaster@tubo-world.de",
  1411. "homepage": "https://github.com/Tobion"
  1412. }
  1413. ],
  1414. "description": "Guzzle is a PHP HTTP client library",
  1415. "keywords": [
  1416. "client",
  1417. "curl",
  1418. "framework",
  1419. "http",
  1420. "http client",
  1421. "psr-18",
  1422. "psr-7",
  1423. "rest",
  1424. "web service"
  1425. ],
  1426. "support": {
  1427. "issues": "https://github.com/guzzle/guzzle/issues",
  1428. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  1429. },
  1430. "funding": [
  1431. {
  1432. "url": "https://github.com/GrahamCampbell",
  1433. "type": "github"
  1434. },
  1435. {
  1436. "url": "https://github.com/Nyholm",
  1437. "type": "github"
  1438. },
  1439. {
  1440. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1441. "type": "tidelift"
  1442. }
  1443. ],
  1444. "time": "2022-08-28T15:39:27+00:00"
  1445. },
  1446. {
  1447. "name": "guzzlehttp/promises",
  1448. "version": "1.5.2",
  1449. "source": {
  1450. "type": "git",
  1451. "url": "https://github.com/guzzle/promises.git",
  1452. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  1453. },
  1454. "dist": {
  1455. "type": "zip",
  1456. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  1457. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  1458. "shasum": ""
  1459. },
  1460. "require": {
  1461. "php": ">=5.5"
  1462. },
  1463. "require-dev": {
  1464. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1465. },
  1466. "type": "library",
  1467. "extra": {
  1468. "branch-alias": {
  1469. "dev-master": "1.5-dev"
  1470. }
  1471. },
  1472. "autoload": {
  1473. "files": [
  1474. "src/functions_include.php"
  1475. ],
  1476. "psr-4": {
  1477. "GuzzleHttp\\Promise\\": "src/"
  1478. }
  1479. },
  1480. "notification-url": "https://packagist.org/downloads/",
  1481. "license": [
  1482. "MIT"
  1483. ],
  1484. "authors": [
  1485. {
  1486. "name": "Graham Campbell",
  1487. "email": "hello@gjcampbell.co.uk",
  1488. "homepage": "https://github.com/GrahamCampbell"
  1489. },
  1490. {
  1491. "name": "Michael Dowling",
  1492. "email": "mtdowling@gmail.com",
  1493. "homepage": "https://github.com/mtdowling"
  1494. },
  1495. {
  1496. "name": "Tobias Nyholm",
  1497. "email": "tobias.nyholm@gmail.com",
  1498. "homepage": "https://github.com/Nyholm"
  1499. },
  1500. {
  1501. "name": "Tobias Schultze",
  1502. "email": "webmaster@tubo-world.de",
  1503. "homepage": "https://github.com/Tobion"
  1504. }
  1505. ],
  1506. "description": "Guzzle promises library",
  1507. "keywords": [
  1508. "promise"
  1509. ],
  1510. "support": {
  1511. "issues": "https://github.com/guzzle/promises/issues",
  1512. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  1513. },
  1514. "funding": [
  1515. {
  1516. "url": "https://github.com/GrahamCampbell",
  1517. "type": "github"
  1518. },
  1519. {
  1520. "url": "https://github.com/Nyholm",
  1521. "type": "github"
  1522. },
  1523. {
  1524. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1525. "type": "tidelift"
  1526. }
  1527. ],
  1528. "time": "2022-08-28T14:55:35+00:00"
  1529. },
  1530. {
  1531. "name": "guzzlehttp/psr7",
  1532. "version": "2.4.4",
  1533. "source": {
  1534. "type": "git",
  1535. "url": "https://github.com/guzzle/psr7.git",
  1536. "reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf"
  1537. },
  1538. "dist": {
  1539. "type": "zip",
  1540. "url": "https://api.github.com/repos/guzzle/psr7/zipball/3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf",
  1541. "reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf",
  1542. "shasum": ""
  1543. },
  1544. "require": {
  1545. "php": "^7.2.5 || ^8.0",
  1546. "psr/http-factory": "^1.0",
  1547. "psr/http-message": "^1.0",
  1548. "ralouphie/getallheaders": "^3.0"
  1549. },
  1550. "provide": {
  1551. "psr/http-factory-implementation": "1.0",
  1552. "psr/http-message-implementation": "1.0"
  1553. },
  1554. "require-dev": {
  1555. "bamarni/composer-bin-plugin": "^1.8.1",
  1556. "http-interop/http-factory-tests": "^0.9",
  1557. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1558. },
  1559. "suggest": {
  1560. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1561. },
  1562. "type": "library",
  1563. "extra": {
  1564. "bamarni-bin": {
  1565. "bin-links": true,
  1566. "forward-command": false
  1567. },
  1568. "branch-alias": {
  1569. "dev-master": "2.4-dev"
  1570. }
  1571. },
  1572. "autoload": {
  1573. "psr-4": {
  1574. "GuzzleHttp\\Psr7\\": "src/"
  1575. }
  1576. },
  1577. "notification-url": "https://packagist.org/downloads/",
  1578. "license": [
  1579. "MIT"
  1580. ],
  1581. "authors": [
  1582. {
  1583. "name": "Graham Campbell",
  1584. "email": "hello@gjcampbell.co.uk",
  1585. "homepage": "https://github.com/GrahamCampbell"
  1586. },
  1587. {
  1588. "name": "Michael Dowling",
  1589. "email": "mtdowling@gmail.com",
  1590. "homepage": "https://github.com/mtdowling"
  1591. },
  1592. {
  1593. "name": "George Mponos",
  1594. "email": "gmponos@gmail.com",
  1595. "homepage": "https://github.com/gmponos"
  1596. },
  1597. {
  1598. "name": "Tobias Nyholm",
  1599. "email": "tobias.nyholm@gmail.com",
  1600. "homepage": "https://github.com/Nyholm"
  1601. },
  1602. {
  1603. "name": "Márk Sági-Kazár",
  1604. "email": "mark.sagikazar@gmail.com",
  1605. "homepage": "https://github.com/sagikazarmark"
  1606. },
  1607. {
  1608. "name": "Tobias Schultze",
  1609. "email": "webmaster@tubo-world.de",
  1610. "homepage": "https://github.com/Tobion"
  1611. },
  1612. {
  1613. "name": "Márk Sági-Kazár",
  1614. "email": "mark.sagikazar@gmail.com",
  1615. "homepage": "https://sagikazarmark.hu"
  1616. }
  1617. ],
  1618. "description": "PSR-7 message implementation that also provides common utility methods",
  1619. "keywords": [
  1620. "http",
  1621. "message",
  1622. "psr-7",
  1623. "request",
  1624. "response",
  1625. "stream",
  1626. "uri",
  1627. "url"
  1628. ],
  1629. "support": {
  1630. "issues": "https://github.com/guzzle/psr7/issues",
  1631. "source": "https://github.com/guzzle/psr7/tree/2.4.4"
  1632. },
  1633. "funding": [
  1634. {
  1635. "url": "https://github.com/GrahamCampbell",
  1636. "type": "github"
  1637. },
  1638. {
  1639. "url": "https://github.com/Nyholm",
  1640. "type": "github"
  1641. },
  1642. {
  1643. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1644. "type": "tidelift"
  1645. }
  1646. ],
  1647. "time": "2023-03-09T13:19:02+00:00"
  1648. },
  1649. {
  1650. "name": "guzzlehttp/uri-template",
  1651. "version": "v1.0.1",
  1652. "source": {
  1653. "type": "git",
  1654. "url": "https://github.com/guzzle/uri-template.git",
  1655. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2"
  1656. },
  1657. "dist": {
  1658. "type": "zip",
  1659. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2",
  1660. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2",
  1661. "shasum": ""
  1662. },
  1663. "require": {
  1664. "php": "^7.2.5 || ^8.0",
  1665. "symfony/polyfill-php80": "^1.17"
  1666. },
  1667. "require-dev": {
  1668. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  1669. "uri-template/tests": "1.0.0"
  1670. },
  1671. "type": "library",
  1672. "extra": {
  1673. "branch-alias": {
  1674. "dev-master": "1.0-dev"
  1675. }
  1676. },
  1677. "autoload": {
  1678. "psr-4": {
  1679. "GuzzleHttp\\UriTemplate\\": "src"
  1680. }
  1681. },
  1682. "notification-url": "https://packagist.org/downloads/",
  1683. "license": [
  1684. "MIT"
  1685. ],
  1686. "authors": [
  1687. {
  1688. "name": "Graham Campbell",
  1689. "email": "hello@gjcampbell.co.uk",
  1690. "homepage": "https://github.com/GrahamCampbell"
  1691. },
  1692. {
  1693. "name": "Michael Dowling",
  1694. "email": "mtdowling@gmail.com",
  1695. "homepage": "https://github.com/mtdowling"
  1696. },
  1697. {
  1698. "name": "George Mponos",
  1699. "email": "gmponos@gmail.com",
  1700. "homepage": "https://github.com/gmponos"
  1701. },
  1702. {
  1703. "name": "Tobias Nyholm",
  1704. "email": "tobias.nyholm@gmail.com",
  1705. "homepage": "https://github.com/Nyholm"
  1706. }
  1707. ],
  1708. "description": "A polyfill class for uri_template of PHP",
  1709. "keywords": [
  1710. "guzzlehttp",
  1711. "uri-template"
  1712. ],
  1713. "support": {
  1714. "issues": "https://github.com/guzzle/uri-template/issues",
  1715. "source": "https://github.com/guzzle/uri-template/tree/v1.0.1"
  1716. },
  1717. "funding": [
  1718. {
  1719. "url": "https://github.com/GrahamCampbell",
  1720. "type": "github"
  1721. },
  1722. {
  1723. "url": "https://github.com/Nyholm",
  1724. "type": "github"
  1725. },
  1726. {
  1727. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1728. "type": "tidelift"
  1729. }
  1730. ],
  1731. "time": "2021-10-07T12:57:01+00:00"
  1732. },
  1733. {
  1734. "name": "hidehalo/nanoid-php",
  1735. "version": "1.1.12",
  1736. "source": {
  1737. "type": "git",
  1738. "url": "https://github.com/hidehalo/nanoid-php.git",
  1739. "reference": "3229400d7e69b127a9e4f8fdad2e498e64cdaae4"
  1740. },
  1741. "dist": {
  1742. "type": "zip",
  1743. "url": "https://api.github.com/repos/hidehalo/nanoid-php/zipball/3229400d7e69b127a9e4f8fdad2e498e64cdaae4",
  1744. "reference": "3229400d7e69b127a9e4f8fdad2e498e64cdaae4",
  1745. "shasum": ""
  1746. },
  1747. "require": {
  1748. "paragonie/random_compat": ">=2.0",
  1749. "php": "~5.6|~7.0|~8.0"
  1750. },
  1751. "require-dev": {
  1752. "phpunit/phpunit": ">=5.6",
  1753. "squizlabs/php_codesniffer": "^2.3"
  1754. },
  1755. "type": "library",
  1756. "extra": {
  1757. "branch-alias": {
  1758. "dev-master": "1.0-dev"
  1759. }
  1760. },
  1761. "autoload": {
  1762. "psr-4": {
  1763. "Hidehalo\\Nanoid\\": "src"
  1764. }
  1765. },
  1766. "notification-url": "https://packagist.org/downloads/",
  1767. "license": [
  1768. "MIT"
  1769. ],
  1770. "authors": [
  1771. {
  1772. "name": "hidehalo",
  1773. "email": "tianchen_cc@yeah.net",
  1774. "homepage": "https://github.com/hidehalo",
  1775. "role": "Owner"
  1776. }
  1777. ],
  1778. "description": "A copy of nanoid in PHP",
  1779. "homepage": "https://github.com/hidehalo/nanoid-php",
  1780. "keywords": [
  1781. "hidehalo",
  1782. "nanoid-php"
  1783. ],
  1784. "support": {
  1785. "issues": "https://github.com/hidehalo/nanoid-php/issues",
  1786. "source": "https://github.com/hidehalo/nanoid-php/tree/1.1.12"
  1787. },
  1788. "time": "2021-12-30T07:27:43+00:00"
  1789. },
  1790. {
  1791. "name": "kkomelin/laravel-translatable-string-exporter",
  1792. "version": "1.21.0",
  1793. "source": {
  1794. "type": "git",
  1795. "url": "https://github.com/kkomelin/laravel-translatable-string-exporter.git",
  1796. "reference": "51e6575223c345be359f5387ecaaf6bb7fc1de3d"
  1797. },
  1798. "dist": {
  1799. "type": "zip",
  1800. "url": "https://api.github.com/repos/kkomelin/laravel-translatable-string-exporter/zipball/51e6575223c345be359f5387ecaaf6bb7fc1de3d",
  1801. "reference": "51e6575223c345be359f5387ecaaf6bb7fc1de3d",
  1802. "shasum": ""
  1803. },
  1804. "require": {
  1805. "ext-json": "*",
  1806. "illuminate/support": "^8|^9|^10.0",
  1807. "illuminate/translation": "^8|^9|^10.0",
  1808. "php": "^8.0",
  1809. "symfony/finder": "^5|^6"
  1810. },
  1811. "require-dev": {
  1812. "nunomaduro/larastan": "^1.0|^2.0",
  1813. "orchestra/testbench": "^6.0|^7.0|^8.0",
  1814. "phpunit/phpunit": "^9.0"
  1815. },
  1816. "type": "library",
  1817. "extra": {
  1818. "laravel": {
  1819. "providers": [
  1820. "KKomelin\\TranslatableStringExporter\\Providers\\ExporterServiceProvider"
  1821. ]
  1822. }
  1823. },
  1824. "autoload": {
  1825. "psr-4": {
  1826. "KKomelin\\TranslatableStringExporter\\": "src/"
  1827. }
  1828. },
  1829. "notification-url": "https://packagist.org/downloads/",
  1830. "license": [
  1831. "MIT"
  1832. ],
  1833. "authors": [
  1834. {
  1835. "name": "Konstantin Komelin",
  1836. "email": "konstantin.komelin@gmail.com"
  1837. }
  1838. ],
  1839. "description": "Translatable String Exporter for Laravel",
  1840. "keywords": [
  1841. "export",
  1842. "exporter",
  1843. "json",
  1844. "laravel",
  1845. "localization",
  1846. "translation",
  1847. "translations"
  1848. ],
  1849. "support": {
  1850. "issues": "https://github.com/kkomelin/laravel-translatable-string-exporter/issues",
  1851. "source": "https://github.com/kkomelin/laravel-translatable-string-exporter/tree/1.21.0"
  1852. },
  1853. "time": "2023-03-14T04:18:49+00:00"
  1854. },
  1855. {
  1856. "name": "laravel/framework",
  1857. "version": "v9.52.5",
  1858. "source": {
  1859. "type": "git",
  1860. "url": "https://github.com/laravel/framework.git",
  1861. "reference": "e14d28c0f9403630d13f308bb43f3d3cb73d6d67"
  1862. },
  1863. "dist": {
  1864. "type": "zip",
  1865. "url": "https://api.github.com/repos/laravel/framework/zipball/e14d28c0f9403630d13f308bb43f3d3cb73d6d67",
  1866. "reference": "e14d28c0f9403630d13f308bb43f3d3cb73d6d67",
  1867. "shasum": ""
  1868. },
  1869. "require": {
  1870. "brick/math": "^0.9.3|^0.10.2|^0.11",
  1871. "doctrine/inflector": "^2.0.5",
  1872. "dragonmantank/cron-expression": "^3.3.2",
  1873. "egulias/email-validator": "^3.2.1|^4.0",
  1874. "ext-ctype": "*",
  1875. "ext-filter": "*",
  1876. "ext-hash": "*",
  1877. "ext-mbstring": "*",
  1878. "ext-openssl": "*",
  1879. "ext-session": "*",
  1880. "ext-tokenizer": "*",
  1881. "fruitcake/php-cors": "^1.2",
  1882. "guzzlehttp/uri-template": "^1.0",
  1883. "laravel/serializable-closure": "^1.2.2",
  1884. "league/commonmark": "^2.2.1",
  1885. "league/flysystem": "^3.8.0",
  1886. "monolog/monolog": "^2.0",
  1887. "nesbot/carbon": "^2.62.1",
  1888. "nunomaduro/termwind": "^1.13",
  1889. "php": "^8.0.2",
  1890. "psr/container": "^1.1.1|^2.0.1",
  1891. "psr/log": "^1.0|^2.0|^3.0",
  1892. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1893. "ramsey/uuid": "^4.7",
  1894. "symfony/console": "^6.0.9",
  1895. "symfony/error-handler": "^6.0",
  1896. "symfony/finder": "^6.0",
  1897. "symfony/http-foundation": "^6.0",
  1898. "symfony/http-kernel": "^6.0",
  1899. "symfony/mailer": "^6.0",
  1900. "symfony/mime": "^6.0",
  1901. "symfony/process": "^6.0",
  1902. "symfony/routing": "^6.0",
  1903. "symfony/uid": "^6.0",
  1904. "symfony/var-dumper": "^6.0",
  1905. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  1906. "vlucas/phpdotenv": "^5.4.1",
  1907. "voku/portable-ascii": "^2.0"
  1908. },
  1909. "conflict": {
  1910. "tightenco/collect": "<5.5.33"
  1911. },
  1912. "provide": {
  1913. "psr/container-implementation": "1.1|2.0",
  1914. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1915. },
  1916. "replace": {
  1917. "illuminate/auth": "self.version",
  1918. "illuminate/broadcasting": "self.version",
  1919. "illuminate/bus": "self.version",
  1920. "illuminate/cache": "self.version",
  1921. "illuminate/collections": "self.version",
  1922. "illuminate/conditionable": "self.version",
  1923. "illuminate/config": "self.version",
  1924. "illuminate/console": "self.version",
  1925. "illuminate/container": "self.version",
  1926. "illuminate/contracts": "self.version",
  1927. "illuminate/cookie": "self.version",
  1928. "illuminate/database": "self.version",
  1929. "illuminate/encryption": "self.version",
  1930. "illuminate/events": "self.version",
  1931. "illuminate/filesystem": "self.version",
  1932. "illuminate/hashing": "self.version",
  1933. "illuminate/http": "self.version",
  1934. "illuminate/log": "self.version",
  1935. "illuminate/macroable": "self.version",
  1936. "illuminate/mail": "self.version",
  1937. "illuminate/notifications": "self.version",
  1938. "illuminate/pagination": "self.version",
  1939. "illuminate/pipeline": "self.version",
  1940. "illuminate/queue": "self.version",
  1941. "illuminate/redis": "self.version",
  1942. "illuminate/routing": "self.version",
  1943. "illuminate/session": "self.version",
  1944. "illuminate/support": "self.version",
  1945. "illuminate/testing": "self.version",
  1946. "illuminate/translation": "self.version",
  1947. "illuminate/validation": "self.version",
  1948. "illuminate/view": "self.version"
  1949. },
  1950. "require-dev": {
  1951. "ably/ably-php": "^1.0",
  1952. "aws/aws-sdk-php": "^3.235.5",
  1953. "doctrine/dbal": "^2.13.3|^3.1.4",
  1954. "ext-gmp": "*",
  1955. "fakerphp/faker": "^1.21",
  1956. "guzzlehttp/guzzle": "^7.5",
  1957. "league/flysystem-aws-s3-v3": "^3.0",
  1958. "league/flysystem-ftp": "^3.0",
  1959. "league/flysystem-path-prefixing": "^3.3",
  1960. "league/flysystem-read-only": "^3.3",
  1961. "league/flysystem-sftp-v3": "^3.0",
  1962. "mockery/mockery": "^1.5.1",
  1963. "orchestra/testbench-core": "^7.16",
  1964. "pda/pheanstalk": "^4.0",
  1965. "phpstan/phpdoc-parser": "^1.15",
  1966. "phpstan/phpstan": "^1.4.7",
  1967. "phpunit/phpunit": "^9.5.8",
  1968. "predis/predis": "^1.1.9|^2.0.2",
  1969. "symfony/cache": "^6.0",
  1970. "symfony/http-client": "^6.0"
  1971. },
  1972. "suggest": {
  1973. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1974. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  1975. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1976. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1977. "ext-apcu": "Required to use the APC cache driver.",
  1978. "ext-fileinfo": "Required to use the Filesystem class.",
  1979. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1980. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1981. "ext-memcached": "Required to use the memcache cache driver.",
  1982. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  1983. "ext-pdo": "Required to use all database features.",
  1984. "ext-posix": "Required to use all features of the queue worker.",
  1985. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1986. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1987. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1988. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  1989. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1990. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  1991. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  1992. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  1993. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  1994. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  1995. "mockery/mockery": "Required to use mocking (^1.5.1).",
  1996. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1997. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1998. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).",
  1999. "predis/predis": "Required to use the predis connector (^1.1.9|^2.0.2).",
  2000. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2001. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2002. "symfony/cache": "Required to PSR-6 cache bridge (^6.0).",
  2003. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).",
  2004. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
  2005. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
  2006. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
  2007. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  2008. },
  2009. "type": "library",
  2010. "extra": {
  2011. "branch-alias": {
  2012. "dev-master": "9.x-dev"
  2013. }
  2014. },
  2015. "autoload": {
  2016. "files": [
  2017. "src/Illuminate/Collections/helpers.php",
  2018. "src/Illuminate/Events/functions.php",
  2019. "src/Illuminate/Foundation/helpers.php",
  2020. "src/Illuminate/Support/helpers.php"
  2021. ],
  2022. "psr-4": {
  2023. "Illuminate\\": "src/Illuminate/",
  2024. "Illuminate\\Support\\": [
  2025. "src/Illuminate/Macroable/",
  2026. "src/Illuminate/Collections/",
  2027. "src/Illuminate/Conditionable/"
  2028. ]
  2029. }
  2030. },
  2031. "notification-url": "https://packagist.org/downloads/",
  2032. "license": [
  2033. "MIT"
  2034. ],
  2035. "authors": [
  2036. {
  2037. "name": "Taylor Otwell",
  2038. "email": "taylor@laravel.com"
  2039. }
  2040. ],
  2041. "description": "The Laravel Framework.",
  2042. "homepage": "https://laravel.com",
  2043. "keywords": [
  2044. "framework",
  2045. "laravel"
  2046. ],
  2047. "support": {
  2048. "issues": "https://github.com/laravel/framework/issues",
  2049. "source": "https://github.com/laravel/framework"
  2050. },
  2051. "time": "2023-03-28T18:03:54+00:00"
  2052. },
  2053. {
  2054. "name": "laravel/serializable-closure",
  2055. "version": "v1.3.0",
  2056. "source": {
  2057. "type": "git",
  2058. "url": "https://github.com/laravel/serializable-closure.git",
  2059. "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37"
  2060. },
  2061. "dist": {
  2062. "type": "zip",
  2063. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
  2064. "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
  2065. "shasum": ""
  2066. },
  2067. "require": {
  2068. "php": "^7.3|^8.0"
  2069. },
  2070. "require-dev": {
  2071. "nesbot/carbon": "^2.61",
  2072. "pestphp/pest": "^1.21.3",
  2073. "phpstan/phpstan": "^1.8.2",
  2074. "symfony/var-dumper": "^5.4.11"
  2075. },
  2076. "type": "library",
  2077. "extra": {
  2078. "branch-alias": {
  2079. "dev-master": "1.x-dev"
  2080. }
  2081. },
  2082. "autoload": {
  2083. "psr-4": {
  2084. "Laravel\\SerializableClosure\\": "src/"
  2085. }
  2086. },
  2087. "notification-url": "https://packagist.org/downloads/",
  2088. "license": [
  2089. "MIT"
  2090. ],
  2091. "authors": [
  2092. {
  2093. "name": "Taylor Otwell",
  2094. "email": "taylor@laravel.com"
  2095. },
  2096. {
  2097. "name": "Nuno Maduro",
  2098. "email": "nuno@laravel.com"
  2099. }
  2100. ],
  2101. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2102. "keywords": [
  2103. "closure",
  2104. "laravel",
  2105. "serializable"
  2106. ],
  2107. "support": {
  2108. "issues": "https://github.com/laravel/serializable-closure/issues",
  2109. "source": "https://github.com/laravel/serializable-closure"
  2110. },
  2111. "time": "2023-01-30T18:31:20+00:00"
  2112. },
  2113. {
  2114. "name": "laravel/socialite",
  2115. "version": "v5.6.1",
  2116. "source": {
  2117. "type": "git",
  2118. "url": "https://github.com/laravel/socialite.git",
  2119. "reference": "a14a177f2cc71d8add71e2b19e00800e83bdda09"
  2120. },
  2121. "dist": {
  2122. "type": "zip",
  2123. "url": "https://api.github.com/repos/laravel/socialite/zipball/a14a177f2cc71d8add71e2b19e00800e83bdda09",
  2124. "reference": "a14a177f2cc71d8add71e2b19e00800e83bdda09",
  2125. "shasum": ""
  2126. },
  2127. "require": {
  2128. "ext-json": "*",
  2129. "guzzlehttp/guzzle": "^6.0|^7.0",
  2130. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2131. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2132. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2133. "league/oauth1-client": "^1.10.1",
  2134. "php": "^7.2|^8.0"
  2135. },
  2136. "require-dev": {
  2137. "mockery/mockery": "^1.0",
  2138. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
  2139. "phpunit/phpunit": "^8.0|^9.3"
  2140. },
  2141. "type": "library",
  2142. "extra": {
  2143. "branch-alias": {
  2144. "dev-master": "5.x-dev"
  2145. },
  2146. "laravel": {
  2147. "providers": [
  2148. "Laravel\\Socialite\\SocialiteServiceProvider"
  2149. ],
  2150. "aliases": {
  2151. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2152. }
  2153. }
  2154. },
  2155. "autoload": {
  2156. "psr-4": {
  2157. "Laravel\\Socialite\\": "src/"
  2158. }
  2159. },
  2160. "notification-url": "https://packagist.org/downloads/",
  2161. "license": [
  2162. "MIT"
  2163. ],
  2164. "authors": [
  2165. {
  2166. "name": "Taylor Otwell",
  2167. "email": "taylor@laravel.com"
  2168. }
  2169. ],
  2170. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2171. "homepage": "https://laravel.com",
  2172. "keywords": [
  2173. "laravel",
  2174. "oauth"
  2175. ],
  2176. "support": {
  2177. "issues": "https://github.com/laravel/socialite/issues",
  2178. "source": "https://github.com/laravel/socialite"
  2179. },
  2180. "time": "2023-01-20T15:42:35+00:00"
  2181. },
  2182. {
  2183. "name": "laravel/tinker",
  2184. "version": "v2.8.1",
  2185. "source": {
  2186. "type": "git",
  2187. "url": "https://github.com/laravel/tinker.git",
  2188. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10"
  2189. },
  2190. "dist": {
  2191. "type": "zip",
  2192. "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2193. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2194. "shasum": ""
  2195. },
  2196. "require": {
  2197. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2198. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2199. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2200. "php": "^7.2.5|^8.0",
  2201. "psy/psysh": "^0.10.4|^0.11.1",
  2202. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2203. },
  2204. "require-dev": {
  2205. "mockery/mockery": "~1.3.3|^1.4.2",
  2206. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2207. },
  2208. "suggest": {
  2209. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  2210. },
  2211. "type": "library",
  2212. "extra": {
  2213. "branch-alias": {
  2214. "dev-master": "2.x-dev"
  2215. },
  2216. "laravel": {
  2217. "providers": [
  2218. "Laravel\\Tinker\\TinkerServiceProvider"
  2219. ]
  2220. }
  2221. },
  2222. "autoload": {
  2223. "psr-4": {
  2224. "Laravel\\Tinker\\": "src/"
  2225. }
  2226. },
  2227. "notification-url": "https://packagist.org/downloads/",
  2228. "license": [
  2229. "MIT"
  2230. ],
  2231. "authors": [
  2232. {
  2233. "name": "Taylor Otwell",
  2234. "email": "taylor@laravel.com"
  2235. }
  2236. ],
  2237. "description": "Powerful REPL for the Laravel framework.",
  2238. "keywords": [
  2239. "REPL",
  2240. "Tinker",
  2241. "laravel",
  2242. "psysh"
  2243. ],
  2244. "support": {
  2245. "issues": "https://github.com/laravel/tinker/issues",
  2246. "source": "https://github.com/laravel/tinker/tree/v2.8.1"
  2247. },
  2248. "time": "2023-02-15T16:40:09+00:00"
  2249. },
  2250. {
  2251. "name": "laravel/ui",
  2252. "version": "v3.4.6",
  2253. "source": {
  2254. "type": "git",
  2255. "url": "https://github.com/laravel/ui.git",
  2256. "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c"
  2257. },
  2258. "dist": {
  2259. "type": "zip",
  2260. "url": "https://api.github.com/repos/laravel/ui/zipball/65ec5c03f7fee2c8ecae785795b829a15be48c2c",
  2261. "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c",
  2262. "shasum": ""
  2263. },
  2264. "require": {
  2265. "illuminate/console": "^8.42|^9.0",
  2266. "illuminate/filesystem": "^8.42|^9.0",
  2267. "illuminate/support": "^8.82|^9.0",
  2268. "illuminate/validation": "^8.42|^9.0",
  2269. "php": "^7.3|^8.0"
  2270. },
  2271. "require-dev": {
  2272. "orchestra/testbench": "^6.23|^7.0"
  2273. },
  2274. "type": "library",
  2275. "extra": {
  2276. "branch-alias": {
  2277. "dev-master": "3.x-dev"
  2278. },
  2279. "laravel": {
  2280. "providers": [
  2281. "Laravel\\Ui\\UiServiceProvider"
  2282. ]
  2283. }
  2284. },
  2285. "autoload": {
  2286. "psr-4": {
  2287. "Laravel\\Ui\\": "src/",
  2288. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2289. }
  2290. },
  2291. "notification-url": "https://packagist.org/downloads/",
  2292. "license": [
  2293. "MIT"
  2294. ],
  2295. "authors": [
  2296. {
  2297. "name": "Taylor Otwell",
  2298. "email": "taylor@laravel.com"
  2299. }
  2300. ],
  2301. "description": "Laravel UI utilities and presets.",
  2302. "keywords": [
  2303. "laravel",
  2304. "ui"
  2305. ],
  2306. "support": {
  2307. "source": "https://github.com/laravel/ui/tree/v3.4.6"
  2308. },
  2309. "time": "2022-05-20T13:38:08+00:00"
  2310. },
  2311. {
  2312. "name": "laraveldaily/laravel-invoices",
  2313. "version": "3.1.0",
  2314. "source": {
  2315. "type": "git",
  2316. "url": "https://github.com/LaravelDaily/laravel-invoices.git",
  2317. "reference": "7f3f2fd2042ad7ca228b506059a1e8535de46e05"
  2318. },
  2319. "dist": {
  2320. "type": "zip",
  2321. "url": "https://api.github.com/repos/LaravelDaily/laravel-invoices/zipball/7f3f2fd2042ad7ca228b506059a1e8535de46e05",
  2322. "reference": "7f3f2fd2042ad7ca228b506059a1e8535de46e05",
  2323. "shasum": ""
  2324. },
  2325. "require": {
  2326. "barryvdh/laravel-dompdf": "^v2.0",
  2327. "illuminate/http": "^5.5|^6|^7|^8|^9|^10",
  2328. "illuminate/support": "^5.5|^6|^7|^8|^9|^10",
  2329. "php": "^7.3|^8.0",
  2330. "symfony/http-foundation": "^4.0|^5.0|^6.0"
  2331. },
  2332. "require-dev": {
  2333. "phpunit/phpunit": "^9.3",
  2334. "symfony/var-dumper": "^5.0"
  2335. },
  2336. "type": "library",
  2337. "extra": {
  2338. "laravel": {
  2339. "providers": [
  2340. "LaravelDaily\\Invoices\\InvoiceServiceProvider"
  2341. ],
  2342. "aliases": {
  2343. "Invoice": "LaravelDaily\\Invoices\\Facades\\Invoice"
  2344. }
  2345. }
  2346. },
  2347. "autoload": {
  2348. "psr-4": {
  2349. "LaravelDaily\\Invoices\\": "src"
  2350. }
  2351. },
  2352. "notification-url": "https://packagist.org/downloads/",
  2353. "license": [
  2354. "GPL-3.0-only"
  2355. ],
  2356. "authors": [
  2357. {
  2358. "name": "David Lun",
  2359. "email": "mysticcode@gmail.com",
  2360. "homepage": "https://davidlun.com",
  2361. "role": "Developer"
  2362. }
  2363. ],
  2364. "description": "Missing invoices for Laravel",
  2365. "homepage": "https://github.com/LaravelDaily/laravel-invoices",
  2366. "keywords": [
  2367. "invoice",
  2368. "invoices",
  2369. "laravel",
  2370. "pdf"
  2371. ],
  2372. "support": {
  2373. "issues": "https://github.com/LaravelDaily/laravel-invoices/issues",
  2374. "source": "https://github.com/LaravelDaily/laravel-invoices/tree/3.1.0"
  2375. },
  2376. "time": "2023-02-15T12:35:38+00:00"
  2377. },
  2378. {
  2379. "name": "league/commonmark",
  2380. "version": "2.4.0",
  2381. "source": {
  2382. "type": "git",
  2383. "url": "https://github.com/thephpleague/commonmark.git",
  2384. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048"
  2385. },
  2386. "dist": {
  2387. "type": "zip",
  2388. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  2389. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  2390. "shasum": ""
  2391. },
  2392. "require": {
  2393. "ext-mbstring": "*",
  2394. "league/config": "^1.1.1",
  2395. "php": "^7.4 || ^8.0",
  2396. "psr/event-dispatcher": "^1.0",
  2397. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2398. "symfony/polyfill-php80": "^1.16"
  2399. },
  2400. "require-dev": {
  2401. "cebe/markdown": "^1.0",
  2402. "commonmark/cmark": "0.30.0",
  2403. "commonmark/commonmark.js": "0.30.0",
  2404. "composer/package-versions-deprecated": "^1.8",
  2405. "embed/embed": "^4.4",
  2406. "erusev/parsedown": "^1.0",
  2407. "ext-json": "*",
  2408. "github/gfm": "0.29.0",
  2409. "michelf/php-markdown": "^1.4 || ^2.0",
  2410. "nyholm/psr7": "^1.5",
  2411. "phpstan/phpstan": "^1.8.2",
  2412. "phpunit/phpunit": "^9.5.21",
  2413. "scrutinizer/ocular": "^1.8.1",
  2414. "symfony/finder": "^5.3 | ^6.0",
  2415. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2416. "unleashedtech/php-coding-standard": "^3.1.1",
  2417. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2418. },
  2419. "suggest": {
  2420. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2421. },
  2422. "type": "library",
  2423. "extra": {
  2424. "branch-alias": {
  2425. "dev-main": "2.5-dev"
  2426. }
  2427. },
  2428. "autoload": {
  2429. "psr-4": {
  2430. "League\\CommonMark\\": "src"
  2431. }
  2432. },
  2433. "notification-url": "https://packagist.org/downloads/",
  2434. "license": [
  2435. "BSD-3-Clause"
  2436. ],
  2437. "authors": [
  2438. {
  2439. "name": "Colin O'Dell",
  2440. "email": "colinodell@gmail.com",
  2441. "homepage": "https://www.colinodell.com",
  2442. "role": "Lead Developer"
  2443. }
  2444. ],
  2445. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2446. "homepage": "https://commonmark.thephpleague.com",
  2447. "keywords": [
  2448. "commonmark",
  2449. "flavored",
  2450. "gfm",
  2451. "github",
  2452. "github-flavored",
  2453. "markdown",
  2454. "md",
  2455. "parser"
  2456. ],
  2457. "support": {
  2458. "docs": "https://commonmark.thephpleague.com/",
  2459. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2460. "issues": "https://github.com/thephpleague/commonmark/issues",
  2461. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2462. "source": "https://github.com/thephpleague/commonmark"
  2463. },
  2464. "funding": [
  2465. {
  2466. "url": "https://www.colinodell.com/sponsor",
  2467. "type": "custom"
  2468. },
  2469. {
  2470. "url": "https://www.paypal.me/colinpodell/10.00",
  2471. "type": "custom"
  2472. },
  2473. {
  2474. "url": "https://github.com/colinodell",
  2475. "type": "github"
  2476. },
  2477. {
  2478. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2479. "type": "tidelift"
  2480. }
  2481. ],
  2482. "time": "2023-03-24T15:16:10+00:00"
  2483. },
  2484. {
  2485. "name": "league/config",
  2486. "version": "v1.2.0",
  2487. "source": {
  2488. "type": "git",
  2489. "url": "https://github.com/thephpleague/config.git",
  2490. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2491. },
  2492. "dist": {
  2493. "type": "zip",
  2494. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2495. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2496. "shasum": ""
  2497. },
  2498. "require": {
  2499. "dflydev/dot-access-data": "^3.0.1",
  2500. "nette/schema": "^1.2",
  2501. "php": "^7.4 || ^8.0"
  2502. },
  2503. "require-dev": {
  2504. "phpstan/phpstan": "^1.8.2",
  2505. "phpunit/phpunit": "^9.5.5",
  2506. "scrutinizer/ocular": "^1.8.1",
  2507. "unleashedtech/php-coding-standard": "^3.1",
  2508. "vimeo/psalm": "^4.7.3"
  2509. },
  2510. "type": "library",
  2511. "extra": {
  2512. "branch-alias": {
  2513. "dev-main": "1.2-dev"
  2514. }
  2515. },
  2516. "autoload": {
  2517. "psr-4": {
  2518. "League\\Config\\": "src"
  2519. }
  2520. },
  2521. "notification-url": "https://packagist.org/downloads/",
  2522. "license": [
  2523. "BSD-3-Clause"
  2524. ],
  2525. "authors": [
  2526. {
  2527. "name": "Colin O'Dell",
  2528. "email": "colinodell@gmail.com",
  2529. "homepage": "https://www.colinodell.com",
  2530. "role": "Lead Developer"
  2531. }
  2532. ],
  2533. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2534. "homepage": "https://config.thephpleague.com",
  2535. "keywords": [
  2536. "array",
  2537. "config",
  2538. "configuration",
  2539. "dot",
  2540. "dot-access",
  2541. "nested",
  2542. "schema"
  2543. ],
  2544. "support": {
  2545. "docs": "https://config.thephpleague.com/",
  2546. "issues": "https://github.com/thephpleague/config/issues",
  2547. "rss": "https://github.com/thephpleague/config/releases.atom",
  2548. "source": "https://github.com/thephpleague/config"
  2549. },
  2550. "funding": [
  2551. {
  2552. "url": "https://www.colinodell.com/sponsor",
  2553. "type": "custom"
  2554. },
  2555. {
  2556. "url": "https://www.paypal.me/colinpodell/10.00",
  2557. "type": "custom"
  2558. },
  2559. {
  2560. "url": "https://github.com/colinodell",
  2561. "type": "github"
  2562. }
  2563. ],
  2564. "time": "2022-12-11T20:36:23+00:00"
  2565. },
  2566. {
  2567. "name": "league/flysystem",
  2568. "version": "3.12.3",
  2569. "source": {
  2570. "type": "git",
  2571. "url": "https://github.com/thephpleague/flysystem.git",
  2572. "reference": "81e87e74dd5213795c7846d65089712d2dda90ce"
  2573. },
  2574. "dist": {
  2575. "type": "zip",
  2576. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/81e87e74dd5213795c7846d65089712d2dda90ce",
  2577. "reference": "81e87e74dd5213795c7846d65089712d2dda90ce",
  2578. "shasum": ""
  2579. },
  2580. "require": {
  2581. "league/mime-type-detection": "^1.0.0",
  2582. "php": "^8.0.2"
  2583. },
  2584. "conflict": {
  2585. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2586. "guzzlehttp/guzzle": "<7.0",
  2587. "guzzlehttp/ringphp": "<1.1.1",
  2588. "phpseclib/phpseclib": "3.0.15",
  2589. "symfony/http-client": "<5.2"
  2590. },
  2591. "require-dev": {
  2592. "async-aws/s3": "^1.5",
  2593. "async-aws/simple-s3": "^1.1",
  2594. "aws/aws-sdk-php": "^3.220.0",
  2595. "composer/semver": "^3.0",
  2596. "ext-fileinfo": "*",
  2597. "ext-ftp": "*",
  2598. "ext-zip": "*",
  2599. "friendsofphp/php-cs-fixer": "^3.5",
  2600. "google/cloud-storage": "^1.23",
  2601. "microsoft/azure-storage-blob": "^1.1",
  2602. "phpseclib/phpseclib": "^3.0.14",
  2603. "phpstan/phpstan": "^0.12.26",
  2604. "phpunit/phpunit": "^9.5.11",
  2605. "sabre/dav": "^4.3.1"
  2606. },
  2607. "type": "library",
  2608. "autoload": {
  2609. "psr-4": {
  2610. "League\\Flysystem\\": "src"
  2611. }
  2612. },
  2613. "notification-url": "https://packagist.org/downloads/",
  2614. "license": [
  2615. "MIT"
  2616. ],
  2617. "authors": [
  2618. {
  2619. "name": "Frank de Jonge",
  2620. "email": "info@frankdejonge.nl"
  2621. }
  2622. ],
  2623. "description": "File storage abstraction for PHP",
  2624. "keywords": [
  2625. "WebDAV",
  2626. "aws",
  2627. "cloud",
  2628. "file",
  2629. "files",
  2630. "filesystem",
  2631. "filesystems",
  2632. "ftp",
  2633. "s3",
  2634. "sftp",
  2635. "storage"
  2636. ],
  2637. "support": {
  2638. "issues": "https://github.com/thephpleague/flysystem/issues",
  2639. "source": "https://github.com/thephpleague/flysystem/tree/3.12.3"
  2640. },
  2641. "funding": [
  2642. {
  2643. "url": "https://ecologi.com/frankdejonge",
  2644. "type": "custom"
  2645. },
  2646. {
  2647. "url": "https://github.com/frankdejonge",
  2648. "type": "github"
  2649. },
  2650. {
  2651. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2652. "type": "tidelift"
  2653. }
  2654. ],
  2655. "time": "2023-02-18T15:32:41+00:00"
  2656. },
  2657. {
  2658. "name": "league/flysystem-aws-s3-v3",
  2659. "version": "3.12.2",
  2660. "source": {
  2661. "type": "git",
  2662. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  2663. "reference": "645e14e4a80bd2da8b01e57388e7296a695a80c2"
  2664. },
  2665. "dist": {
  2666. "type": "zip",
  2667. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/645e14e4a80bd2da8b01e57388e7296a695a80c2",
  2668. "reference": "645e14e4a80bd2da8b01e57388e7296a695a80c2",
  2669. "shasum": ""
  2670. },
  2671. "require": {
  2672. "aws/aws-sdk-php": "^3.220.0",
  2673. "league/flysystem": "^3.10.0",
  2674. "league/mime-type-detection": "^1.0.0",
  2675. "php": "^8.0.2"
  2676. },
  2677. "conflict": {
  2678. "guzzlehttp/guzzle": "<7.0",
  2679. "guzzlehttp/ringphp": "<1.1.1"
  2680. },
  2681. "type": "library",
  2682. "autoload": {
  2683. "psr-4": {
  2684. "League\\Flysystem\\AwsS3V3\\": ""
  2685. }
  2686. },
  2687. "notification-url": "https://packagist.org/downloads/",
  2688. "license": [
  2689. "MIT"
  2690. ],
  2691. "authors": [
  2692. {
  2693. "name": "Frank de Jonge",
  2694. "email": "info@frankdejonge.nl"
  2695. }
  2696. ],
  2697. "description": "AWS S3 filesystem adapter for Flysystem.",
  2698. "keywords": [
  2699. "Flysystem",
  2700. "aws",
  2701. "file",
  2702. "files",
  2703. "filesystem",
  2704. "s3",
  2705. "storage"
  2706. ],
  2707. "support": {
  2708. "issues": "https://github.com/thephpleague/flysystem-aws-s3-v3/issues",
  2709. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.12.2"
  2710. },
  2711. "funding": [
  2712. {
  2713. "url": "https://ecologi.com/frankdejonge",
  2714. "type": "custom"
  2715. },
  2716. {
  2717. "url": "https://github.com/frankdejonge",
  2718. "type": "github"
  2719. },
  2720. {
  2721. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2722. "type": "tidelift"
  2723. }
  2724. ],
  2725. "time": "2023-01-17T14:15:08+00:00"
  2726. },
  2727. {
  2728. "name": "league/mime-type-detection",
  2729. "version": "1.11.0",
  2730. "source": {
  2731. "type": "git",
  2732. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2733. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  2734. },
  2735. "dist": {
  2736. "type": "zip",
  2737. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2738. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2739. "shasum": ""
  2740. },
  2741. "require": {
  2742. "ext-fileinfo": "*",
  2743. "php": "^7.2 || ^8.0"
  2744. },
  2745. "require-dev": {
  2746. "friendsofphp/php-cs-fixer": "^3.2",
  2747. "phpstan/phpstan": "^0.12.68",
  2748. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2749. },
  2750. "type": "library",
  2751. "autoload": {
  2752. "psr-4": {
  2753. "League\\MimeTypeDetection\\": "src"
  2754. }
  2755. },
  2756. "notification-url": "https://packagist.org/downloads/",
  2757. "license": [
  2758. "MIT"
  2759. ],
  2760. "authors": [
  2761. {
  2762. "name": "Frank de Jonge",
  2763. "email": "info@frankdejonge.nl"
  2764. }
  2765. ],
  2766. "description": "Mime-type detection for Flysystem",
  2767. "support": {
  2768. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2769. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2770. },
  2771. "funding": [
  2772. {
  2773. "url": "https://github.com/frankdejonge",
  2774. "type": "github"
  2775. },
  2776. {
  2777. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2778. "type": "tidelift"
  2779. }
  2780. ],
  2781. "time": "2022-04-17T13:12:02+00:00"
  2782. },
  2783. {
  2784. "name": "league/oauth1-client",
  2785. "version": "v1.10.1",
  2786. "source": {
  2787. "type": "git",
  2788. "url": "https://github.com/thephpleague/oauth1-client.git",
  2789. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  2790. },
  2791. "dist": {
  2792. "type": "zip",
  2793. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  2794. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  2795. "shasum": ""
  2796. },
  2797. "require": {
  2798. "ext-json": "*",
  2799. "ext-openssl": "*",
  2800. "guzzlehttp/guzzle": "^6.0|^7.0",
  2801. "guzzlehttp/psr7": "^1.7|^2.0",
  2802. "php": ">=7.1||>=8.0"
  2803. },
  2804. "require-dev": {
  2805. "ext-simplexml": "*",
  2806. "friendsofphp/php-cs-fixer": "^2.17",
  2807. "mockery/mockery": "^1.3.3",
  2808. "phpstan/phpstan": "^0.12.42",
  2809. "phpunit/phpunit": "^7.5||9.5"
  2810. },
  2811. "suggest": {
  2812. "ext-simplexml": "For decoding XML-based responses."
  2813. },
  2814. "type": "library",
  2815. "extra": {
  2816. "branch-alias": {
  2817. "dev-master": "1.0-dev",
  2818. "dev-develop": "2.0-dev"
  2819. }
  2820. },
  2821. "autoload": {
  2822. "psr-4": {
  2823. "League\\OAuth1\\Client\\": "src/"
  2824. }
  2825. },
  2826. "notification-url": "https://packagist.org/downloads/",
  2827. "license": [
  2828. "MIT"
  2829. ],
  2830. "authors": [
  2831. {
  2832. "name": "Ben Corlett",
  2833. "email": "bencorlett@me.com",
  2834. "homepage": "http://www.webcomm.com.au",
  2835. "role": "Developer"
  2836. }
  2837. ],
  2838. "description": "OAuth 1.0 Client Library",
  2839. "keywords": [
  2840. "Authentication",
  2841. "SSO",
  2842. "authorization",
  2843. "bitbucket",
  2844. "identity",
  2845. "idp",
  2846. "oauth",
  2847. "oauth1",
  2848. "single sign on",
  2849. "trello",
  2850. "tumblr",
  2851. "twitter"
  2852. ],
  2853. "support": {
  2854. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  2855. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  2856. },
  2857. "time": "2022-04-15T14:02:14+00:00"
  2858. },
  2859. {
  2860. "name": "masterminds/html5",
  2861. "version": "2.7.6",
  2862. "source": {
  2863. "type": "git",
  2864. "url": "https://github.com/Masterminds/html5-php.git",
  2865. "reference": "897eb517a343a2281f11bc5556d6548db7d93947"
  2866. },
  2867. "dist": {
  2868. "type": "zip",
  2869. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947",
  2870. "reference": "897eb517a343a2281f11bc5556d6548db7d93947",
  2871. "shasum": ""
  2872. },
  2873. "require": {
  2874. "ext-ctype": "*",
  2875. "ext-dom": "*",
  2876. "ext-libxml": "*",
  2877. "php": ">=5.3.0"
  2878. },
  2879. "require-dev": {
  2880. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  2881. },
  2882. "type": "library",
  2883. "extra": {
  2884. "branch-alias": {
  2885. "dev-master": "2.7-dev"
  2886. }
  2887. },
  2888. "autoload": {
  2889. "psr-4": {
  2890. "Masterminds\\": "src"
  2891. }
  2892. },
  2893. "notification-url": "https://packagist.org/downloads/",
  2894. "license": [
  2895. "MIT"
  2896. ],
  2897. "authors": [
  2898. {
  2899. "name": "Matt Butcher",
  2900. "email": "technosophos@gmail.com"
  2901. },
  2902. {
  2903. "name": "Matt Farina",
  2904. "email": "matt@mattfarina.com"
  2905. },
  2906. {
  2907. "name": "Asmir Mustafic",
  2908. "email": "goetas@gmail.com"
  2909. }
  2910. ],
  2911. "description": "An HTML5 parser and serializer.",
  2912. "homepage": "http://masterminds.github.io/html5-php",
  2913. "keywords": [
  2914. "HTML5",
  2915. "dom",
  2916. "html",
  2917. "parser",
  2918. "querypath",
  2919. "serializer",
  2920. "xml"
  2921. ],
  2922. "support": {
  2923. "issues": "https://github.com/Masterminds/html5-php/issues",
  2924. "source": "https://github.com/Masterminds/html5-php/tree/2.7.6"
  2925. },
  2926. "time": "2022-08-18T16:18:26+00:00"
  2927. },
  2928. {
  2929. "name": "monolog/monolog",
  2930. "version": "2.9.1",
  2931. "source": {
  2932. "type": "git",
  2933. "url": "https://github.com/Seldaek/monolog.git",
  2934. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
  2935. },
  2936. "dist": {
  2937. "type": "zip",
  2938. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  2939. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  2940. "shasum": ""
  2941. },
  2942. "require": {
  2943. "php": ">=7.2",
  2944. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2945. },
  2946. "provide": {
  2947. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2948. },
  2949. "require-dev": {
  2950. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2951. "doctrine/couchdb": "~1.0@dev",
  2952. "elasticsearch/elasticsearch": "^7 || ^8",
  2953. "ext-json": "*",
  2954. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2955. "guzzlehttp/guzzle": "^7.4",
  2956. "guzzlehttp/psr7": "^2.2",
  2957. "mongodb/mongodb": "^1.8",
  2958. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2959. "phpspec/prophecy": "^1.15",
  2960. "phpstan/phpstan": "^0.12.91",
  2961. "phpunit/phpunit": "^8.5.14",
  2962. "predis/predis": "^1.1 || ^2.0",
  2963. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2964. "ruflin/elastica": "^7",
  2965. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2966. "symfony/mailer": "^5.4 || ^6",
  2967. "symfony/mime": "^5.4 || ^6"
  2968. },
  2969. "suggest": {
  2970. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2971. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2972. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2973. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2974. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2975. "ext-mbstring": "Allow to work properly with unicode symbols",
  2976. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2977. "ext-openssl": "Required to send log messages using SSL",
  2978. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2979. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2980. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2981. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2982. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2983. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2984. },
  2985. "type": "library",
  2986. "extra": {
  2987. "branch-alias": {
  2988. "dev-main": "2.x-dev"
  2989. }
  2990. },
  2991. "autoload": {
  2992. "psr-4": {
  2993. "Monolog\\": "src/Monolog"
  2994. }
  2995. },
  2996. "notification-url": "https://packagist.org/downloads/",
  2997. "license": [
  2998. "MIT"
  2999. ],
  3000. "authors": [
  3001. {
  3002. "name": "Jordi Boggiano",
  3003. "email": "j.boggiano@seld.be",
  3004. "homepage": "https://seld.be"
  3005. }
  3006. ],
  3007. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3008. "homepage": "https://github.com/Seldaek/monolog",
  3009. "keywords": [
  3010. "log",
  3011. "logging",
  3012. "psr-3"
  3013. ],
  3014. "support": {
  3015. "issues": "https://github.com/Seldaek/monolog/issues",
  3016. "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
  3017. },
  3018. "funding": [
  3019. {
  3020. "url": "https://github.com/Seldaek",
  3021. "type": "github"
  3022. },
  3023. {
  3024. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3025. "type": "tidelift"
  3026. }
  3027. ],
  3028. "time": "2023-02-06T13:44:46+00:00"
  3029. },
  3030. {
  3031. "name": "mtdowling/jmespath.php",
  3032. "version": "2.6.1",
  3033. "source": {
  3034. "type": "git",
  3035. "url": "https://github.com/jmespath/jmespath.php.git",
  3036. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  3037. },
  3038. "dist": {
  3039. "type": "zip",
  3040. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  3041. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  3042. "shasum": ""
  3043. },
  3044. "require": {
  3045. "php": "^5.4 || ^7.0 || ^8.0",
  3046. "symfony/polyfill-mbstring": "^1.17"
  3047. },
  3048. "require-dev": {
  3049. "composer/xdebug-handler": "^1.4 || ^2.0",
  3050. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  3051. },
  3052. "bin": [
  3053. "bin/jp.php"
  3054. ],
  3055. "type": "library",
  3056. "extra": {
  3057. "branch-alias": {
  3058. "dev-master": "2.6-dev"
  3059. }
  3060. },
  3061. "autoload": {
  3062. "files": [
  3063. "src/JmesPath.php"
  3064. ],
  3065. "psr-4": {
  3066. "JmesPath\\": "src/"
  3067. }
  3068. },
  3069. "notification-url": "https://packagist.org/downloads/",
  3070. "license": [
  3071. "MIT"
  3072. ],
  3073. "authors": [
  3074. {
  3075. "name": "Michael Dowling",
  3076. "email": "mtdowling@gmail.com",
  3077. "homepage": "https://github.com/mtdowling"
  3078. }
  3079. ],
  3080. "description": "Declaratively specify how to extract elements from a JSON document",
  3081. "keywords": [
  3082. "json",
  3083. "jsonpath"
  3084. ],
  3085. "support": {
  3086. "issues": "https://github.com/jmespath/jmespath.php/issues",
  3087. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  3088. },
  3089. "time": "2021-06-14T00:11:39+00:00"
  3090. },
  3091. {
  3092. "name": "nesbot/carbon",
  3093. "version": "2.66.0",
  3094. "source": {
  3095. "type": "git",
  3096. "url": "https://github.com/briannesbitt/Carbon.git",
  3097. "reference": "496712849902241f04902033b0441b269effe001"
  3098. },
  3099. "dist": {
  3100. "type": "zip",
  3101. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  3102. "reference": "496712849902241f04902033b0441b269effe001",
  3103. "shasum": ""
  3104. },
  3105. "require": {
  3106. "ext-json": "*",
  3107. "php": "^7.1.8 || ^8.0",
  3108. "symfony/polyfill-mbstring": "^1.0",
  3109. "symfony/polyfill-php80": "^1.16",
  3110. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3111. },
  3112. "require-dev": {
  3113. "doctrine/dbal": "^2.0 || ^3.1.4",
  3114. "doctrine/orm": "^2.7",
  3115. "friendsofphp/php-cs-fixer": "^3.0",
  3116. "kylekatarnls/multi-tester": "^2.0",
  3117. "ondrejmirtes/better-reflection": "*",
  3118. "phpmd/phpmd": "^2.9",
  3119. "phpstan/extension-installer": "^1.0",
  3120. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3121. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3122. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3123. "squizlabs/php_codesniffer": "^3.4"
  3124. },
  3125. "bin": [
  3126. "bin/carbon"
  3127. ],
  3128. "type": "library",
  3129. "extra": {
  3130. "branch-alias": {
  3131. "dev-3.x": "3.x-dev",
  3132. "dev-master": "2.x-dev"
  3133. },
  3134. "laravel": {
  3135. "providers": [
  3136. "Carbon\\Laravel\\ServiceProvider"
  3137. ]
  3138. },
  3139. "phpstan": {
  3140. "includes": [
  3141. "extension.neon"
  3142. ]
  3143. }
  3144. },
  3145. "autoload": {
  3146. "psr-4": {
  3147. "Carbon\\": "src/Carbon/"
  3148. }
  3149. },
  3150. "notification-url": "https://packagist.org/downloads/",
  3151. "license": [
  3152. "MIT"
  3153. ],
  3154. "authors": [
  3155. {
  3156. "name": "Brian Nesbitt",
  3157. "email": "brian@nesbot.com",
  3158. "homepage": "https://markido.com"
  3159. },
  3160. {
  3161. "name": "kylekatarnls",
  3162. "homepage": "https://github.com/kylekatarnls"
  3163. }
  3164. ],
  3165. "description": "An API extension for DateTime that supports 281 different languages.",
  3166. "homepage": "https://carbon.nesbot.com",
  3167. "keywords": [
  3168. "date",
  3169. "datetime",
  3170. "time"
  3171. ],
  3172. "support": {
  3173. "docs": "https://carbon.nesbot.com/docs",
  3174. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3175. "source": "https://github.com/briannesbitt/Carbon"
  3176. },
  3177. "funding": [
  3178. {
  3179. "url": "https://github.com/sponsors/kylekatarnls",
  3180. "type": "github"
  3181. },
  3182. {
  3183. "url": "https://opencollective.com/Carbon#sponsor",
  3184. "type": "opencollective"
  3185. },
  3186. {
  3187. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3188. "type": "tidelift"
  3189. }
  3190. ],
  3191. "time": "2023-01-29T18:53:47+00:00"
  3192. },
  3193. {
  3194. "name": "nette/schema",
  3195. "version": "v1.2.3",
  3196. "source": {
  3197. "type": "git",
  3198. "url": "https://github.com/nette/schema.git",
  3199. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  3200. },
  3201. "dist": {
  3202. "type": "zip",
  3203. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  3204. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  3205. "shasum": ""
  3206. },
  3207. "require": {
  3208. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3209. "php": ">=7.1 <8.3"
  3210. },
  3211. "require-dev": {
  3212. "nette/tester": "^2.3 || ^2.4",
  3213. "phpstan/phpstan-nette": "^1.0",
  3214. "tracy/tracy": "^2.7"
  3215. },
  3216. "type": "library",
  3217. "extra": {
  3218. "branch-alias": {
  3219. "dev-master": "1.2-dev"
  3220. }
  3221. },
  3222. "autoload": {
  3223. "classmap": [
  3224. "src/"
  3225. ]
  3226. },
  3227. "notification-url": "https://packagist.org/downloads/",
  3228. "license": [
  3229. "BSD-3-Clause",
  3230. "GPL-2.0-only",
  3231. "GPL-3.0-only"
  3232. ],
  3233. "authors": [
  3234. {
  3235. "name": "David Grudl",
  3236. "homepage": "https://davidgrudl.com"
  3237. },
  3238. {
  3239. "name": "Nette Community",
  3240. "homepage": "https://nette.org/contributors"
  3241. }
  3242. ],
  3243. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3244. "homepage": "https://nette.org",
  3245. "keywords": [
  3246. "config",
  3247. "nette"
  3248. ],
  3249. "support": {
  3250. "issues": "https://github.com/nette/schema/issues",
  3251. "source": "https://github.com/nette/schema/tree/v1.2.3"
  3252. },
  3253. "time": "2022-10-13T01:24:26+00:00"
  3254. },
  3255. {
  3256. "name": "nette/utils",
  3257. "version": "v4.0.0",
  3258. "source": {
  3259. "type": "git",
  3260. "url": "https://github.com/nette/utils.git",
  3261. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
  3262. },
  3263. "dist": {
  3264. "type": "zip",
  3265. "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
  3266. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
  3267. "shasum": ""
  3268. },
  3269. "require": {
  3270. "php": ">=8.0 <8.3"
  3271. },
  3272. "conflict": {
  3273. "nette/finder": "<3",
  3274. "nette/schema": "<1.2.2"
  3275. },
  3276. "require-dev": {
  3277. "jetbrains/phpstorm-attributes": "dev-master",
  3278. "nette/tester": "^2.4",
  3279. "phpstan/phpstan": "^1.0",
  3280. "tracy/tracy": "^2.9"
  3281. },
  3282. "suggest": {
  3283. "ext-gd": "to use Image",
  3284. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3285. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3286. "ext-json": "to use Nette\\Utils\\Json",
  3287. "ext-mbstring": "to use Strings::lower() etc...",
  3288. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3289. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3290. },
  3291. "type": "library",
  3292. "extra": {
  3293. "branch-alias": {
  3294. "dev-master": "4.0-dev"
  3295. }
  3296. },
  3297. "autoload": {
  3298. "classmap": [
  3299. "src/"
  3300. ]
  3301. },
  3302. "notification-url": "https://packagist.org/downloads/",
  3303. "license": [
  3304. "BSD-3-Clause",
  3305. "GPL-2.0-only",
  3306. "GPL-3.0-only"
  3307. ],
  3308. "authors": [
  3309. {
  3310. "name": "David Grudl",
  3311. "homepage": "https://davidgrudl.com"
  3312. },
  3313. {
  3314. "name": "Nette Community",
  3315. "homepage": "https://nette.org/contributors"
  3316. }
  3317. ],
  3318. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3319. "homepage": "https://nette.org",
  3320. "keywords": [
  3321. "array",
  3322. "core",
  3323. "datetime",
  3324. "images",
  3325. "json",
  3326. "nette",
  3327. "paginator",
  3328. "password",
  3329. "slugify",
  3330. "string",
  3331. "unicode",
  3332. "utf-8",
  3333. "utility",
  3334. "validation"
  3335. ],
  3336. "support": {
  3337. "issues": "https://github.com/nette/utils/issues",
  3338. "source": "https://github.com/nette/utils/tree/v4.0.0"
  3339. },
  3340. "time": "2023-02-02T10:41:53+00:00"
  3341. },
  3342. {
  3343. "name": "nikic/php-parser",
  3344. "version": "v4.15.4",
  3345. "source": {
  3346. "type": "git",
  3347. "url": "https://github.com/nikic/PHP-Parser.git",
  3348. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
  3349. },
  3350. "dist": {
  3351. "type": "zip",
  3352. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  3353. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  3354. "shasum": ""
  3355. },
  3356. "require": {
  3357. "ext-tokenizer": "*",
  3358. "php": ">=7.0"
  3359. },
  3360. "require-dev": {
  3361. "ircmaxell/php-yacc": "^0.0.7",
  3362. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3363. },
  3364. "bin": [
  3365. "bin/php-parse"
  3366. ],
  3367. "type": "library",
  3368. "extra": {
  3369. "branch-alias": {
  3370. "dev-master": "4.9-dev"
  3371. }
  3372. },
  3373. "autoload": {
  3374. "psr-4": {
  3375. "PhpParser\\": "lib/PhpParser"
  3376. }
  3377. },
  3378. "notification-url": "https://packagist.org/downloads/",
  3379. "license": [
  3380. "BSD-3-Clause"
  3381. ],
  3382. "authors": [
  3383. {
  3384. "name": "Nikita Popov"
  3385. }
  3386. ],
  3387. "description": "A PHP parser written in PHP",
  3388. "keywords": [
  3389. "parser",
  3390. "php"
  3391. ],
  3392. "support": {
  3393. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3394. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
  3395. },
  3396. "time": "2023-03-05T19:49:14+00:00"
  3397. },
  3398. {
  3399. "name": "nunomaduro/termwind",
  3400. "version": "v1.15.1",
  3401. "source": {
  3402. "type": "git",
  3403. "url": "https://github.com/nunomaduro/termwind.git",
  3404. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  3405. },
  3406. "dist": {
  3407. "type": "zip",
  3408. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3409. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3410. "shasum": ""
  3411. },
  3412. "require": {
  3413. "ext-mbstring": "*",
  3414. "php": "^8.0",
  3415. "symfony/console": "^5.3.0|^6.0.0"
  3416. },
  3417. "require-dev": {
  3418. "ergebnis/phpstan-rules": "^1.0.",
  3419. "illuminate/console": "^8.0|^9.0",
  3420. "illuminate/support": "^8.0|^9.0",
  3421. "laravel/pint": "^1.0.0",
  3422. "pestphp/pest": "^1.21.0",
  3423. "pestphp/pest-plugin-mock": "^1.0",
  3424. "phpstan/phpstan": "^1.4.6",
  3425. "phpstan/phpstan-strict-rules": "^1.1.0",
  3426. "symfony/var-dumper": "^5.2.7|^6.0.0",
  3427. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3428. },
  3429. "type": "library",
  3430. "extra": {
  3431. "laravel": {
  3432. "providers": [
  3433. "Termwind\\Laravel\\TermwindServiceProvider"
  3434. ]
  3435. }
  3436. },
  3437. "autoload": {
  3438. "files": [
  3439. "src/Functions.php"
  3440. ],
  3441. "psr-4": {
  3442. "Termwind\\": "src/"
  3443. }
  3444. },
  3445. "notification-url": "https://packagist.org/downloads/",
  3446. "license": [
  3447. "MIT"
  3448. ],
  3449. "authors": [
  3450. {
  3451. "name": "Nuno Maduro",
  3452. "email": "enunomaduro@gmail.com"
  3453. }
  3454. ],
  3455. "description": "Its like Tailwind CSS, but for the console.",
  3456. "keywords": [
  3457. "cli",
  3458. "console",
  3459. "css",
  3460. "package",
  3461. "php",
  3462. "style"
  3463. ],
  3464. "support": {
  3465. "issues": "https://github.com/nunomaduro/termwind/issues",
  3466. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  3467. },
  3468. "funding": [
  3469. {
  3470. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3471. "type": "custom"
  3472. },
  3473. {
  3474. "url": "https://github.com/nunomaduro",
  3475. "type": "github"
  3476. },
  3477. {
  3478. "url": "https://github.com/xiCO2k",
  3479. "type": "github"
  3480. }
  3481. ],
  3482. "time": "2023-02-08T01:06:31+00:00"
  3483. },
  3484. {
  3485. "name": "paragonie/random_compat",
  3486. "version": "v9.99.100",
  3487. "source": {
  3488. "type": "git",
  3489. "url": "https://github.com/paragonie/random_compat.git",
  3490. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3491. },
  3492. "dist": {
  3493. "type": "zip",
  3494. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3495. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3496. "shasum": ""
  3497. },
  3498. "require": {
  3499. "php": ">= 7"
  3500. },
  3501. "require-dev": {
  3502. "phpunit/phpunit": "4.*|5.*",
  3503. "vimeo/psalm": "^1"
  3504. },
  3505. "suggest": {
  3506. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3507. },
  3508. "type": "library",
  3509. "notification-url": "https://packagist.org/downloads/",
  3510. "license": [
  3511. "MIT"
  3512. ],
  3513. "authors": [
  3514. {
  3515. "name": "Paragon Initiative Enterprises",
  3516. "email": "security@paragonie.com",
  3517. "homepage": "https://paragonie.com"
  3518. }
  3519. ],
  3520. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3521. "keywords": [
  3522. "csprng",
  3523. "polyfill",
  3524. "pseudorandom",
  3525. "random"
  3526. ],
  3527. "support": {
  3528. "email": "info@paragonie.com",
  3529. "issues": "https://github.com/paragonie/random_compat/issues",
  3530. "source": "https://github.com/paragonie/random_compat"
  3531. },
  3532. "time": "2020-10-15T08:29:30+00:00"
  3533. },
  3534. {
  3535. "name": "paypal/paypal-checkout-sdk",
  3536. "version": "1.0.2",
  3537. "source": {
  3538. "type": "git",
  3539. "url": "https://github.com/paypal/Checkout-PHP-SDK.git",
  3540. "reference": "19992ce7051ff9e47e643f28abb8cc1b3e5f1812"
  3541. },
  3542. "dist": {
  3543. "type": "zip",
  3544. "url": "https://api.github.com/repos/paypal/Checkout-PHP-SDK/zipball/19992ce7051ff9e47e643f28abb8cc1b3e5f1812",
  3545. "reference": "19992ce7051ff9e47e643f28abb8cc1b3e5f1812",
  3546. "shasum": ""
  3547. },
  3548. "require": {
  3549. "paypal/paypalhttp": "1.0.1"
  3550. },
  3551. "require-dev": {
  3552. "phpunit/phpunit": "^5.7"
  3553. },
  3554. "type": "library",
  3555. "autoload": {
  3556. "psr-4": {
  3557. "Sample\\": "samples/",
  3558. "PayPalCheckoutSdk\\": "lib/PayPalCheckoutSdk"
  3559. }
  3560. },
  3561. "notification-url": "https://packagist.org/downloads/",
  3562. "license": [
  3563. "https://github.com/paypal/Checkout-PHP-SDK/blob/master/LICENSE"
  3564. ],
  3565. "authors": [
  3566. {
  3567. "name": "PayPal",
  3568. "homepage": "https://github.com/paypal/Checkout-PHP-SDK/contributors"
  3569. }
  3570. ],
  3571. "description": "PayPal's PHP SDK for Checkout REST APIs",
  3572. "homepage": "http://github.com/paypal/Checkout-PHP-SDK/",
  3573. "keywords": [
  3574. "checkout",
  3575. "orders",
  3576. "payments",
  3577. "paypal",
  3578. "rest",
  3579. "sdk"
  3580. ],
  3581. "support": {
  3582. "source": "https://github.com/paypal/Checkout-PHP-SDK/tree/1.0.2"
  3583. },
  3584. "abandoned": true,
  3585. "time": "2021-09-21T20:57:38+00:00"
  3586. },
  3587. {
  3588. "name": "paypal/paypalhttp",
  3589. "version": "1.0.1",
  3590. "source": {
  3591. "type": "git",
  3592. "url": "https://github.com/paypal/paypalhttp_php.git",
  3593. "reference": "7b09c89c80828e842c79230e7f156b61fbb68d25"
  3594. },
  3595. "dist": {
  3596. "type": "zip",
  3597. "url": "https://api.github.com/repos/paypal/paypalhttp_php/zipball/7b09c89c80828e842c79230e7f156b61fbb68d25",
  3598. "reference": "7b09c89c80828e842c79230e7f156b61fbb68d25",
  3599. "shasum": ""
  3600. },
  3601. "require": {
  3602. "ext-curl": "*"
  3603. },
  3604. "require-dev": {
  3605. "phpunit/phpunit": "^5.7",
  3606. "wiremock-php/wiremock-php": "1.43.2"
  3607. },
  3608. "type": "library",
  3609. "autoload": {
  3610. "psr-4": {
  3611. "PayPalHttp\\": "lib/PayPalHttp"
  3612. }
  3613. },
  3614. "notification-url": "https://packagist.org/downloads/",
  3615. "license": [
  3616. "MIT"
  3617. ],
  3618. "authors": [
  3619. {
  3620. "name": "PayPal",
  3621. "homepage": "https://github.com/paypal/paypalhttp_php/contributors"
  3622. }
  3623. ],
  3624. "support": {
  3625. "issues": "https://github.com/paypal/paypalhttp_php/issues",
  3626. "source": "https://github.com/paypal/paypalhttp_php/tree/1.0.1"
  3627. },
  3628. "time": "2021-09-14T21:35:26+00:00"
  3629. },
  3630. {
  3631. "name": "paypal/rest-api-sdk-php",
  3632. "version": "1.14.0",
  3633. "source": {
  3634. "type": "git",
  3635. "url": "https://github.com/paypal/PayPal-PHP-SDK.git",
  3636. "reference": "72e2f2466975bf128a31e02b15110180f059fc04"
  3637. },
  3638. "dist": {
  3639. "type": "zip",
  3640. "url": "https://api.github.com/repos/paypal/PayPal-PHP-SDK/zipball/72e2f2466975bf128a31e02b15110180f059fc04",
  3641. "reference": "72e2f2466975bf128a31e02b15110180f059fc04",
  3642. "shasum": ""
  3643. },
  3644. "require": {
  3645. "ext-curl": "*",
  3646. "ext-json": "*",
  3647. "php": ">=5.3.0",
  3648. "psr/log": "^1.0.0"
  3649. },
  3650. "require-dev": {
  3651. "phpunit/phpunit": "^4.8.35"
  3652. },
  3653. "type": "library",
  3654. "autoload": {
  3655. "psr-0": {
  3656. "PayPal": "lib/"
  3657. }
  3658. },
  3659. "notification-url": "https://packagist.org/downloads/",
  3660. "license": [
  3661. "Apache-2.0"
  3662. ],
  3663. "authors": [
  3664. {
  3665. "name": "PayPal",
  3666. "homepage": "https://github.com/paypal/rest-api-sdk-php/contributors"
  3667. }
  3668. ],
  3669. "description": "PayPal's PHP SDK for REST APIs",
  3670. "homepage": "http://paypal.github.io/PayPal-PHP-SDK/",
  3671. "keywords": [
  3672. "payments",
  3673. "paypal",
  3674. "rest",
  3675. "sdk"
  3676. ],
  3677. "support": {
  3678. "issues": "https://github.com/paypal/PayPal-PHP-SDK/issues",
  3679. "source": "https://github.com/paypal/PayPal-PHP-SDK/tree/master"
  3680. },
  3681. "abandoned": true,
  3682. "time": "2019-01-04T20:04:25+00:00"
  3683. },
  3684. {
  3685. "name": "phenx/php-font-lib",
  3686. "version": "0.5.4",
  3687. "source": {
  3688. "type": "git",
  3689. "url": "https://github.com/dompdf/php-font-lib.git",
  3690. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
  3691. },
  3692. "dist": {
  3693. "type": "zip",
  3694. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
  3695. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
  3696. "shasum": ""
  3697. },
  3698. "require": {
  3699. "ext-mbstring": "*"
  3700. },
  3701. "require-dev": {
  3702. "symfony/phpunit-bridge": "^3 || ^4 || ^5"
  3703. },
  3704. "type": "library",
  3705. "autoload": {
  3706. "psr-4": {
  3707. "FontLib\\": "src/FontLib"
  3708. }
  3709. },
  3710. "notification-url": "https://packagist.org/downloads/",
  3711. "license": [
  3712. "LGPL-3.0"
  3713. ],
  3714. "authors": [
  3715. {
  3716. "name": "Fabien Ménager",
  3717. "email": "fabien.menager@gmail.com"
  3718. }
  3719. ],
  3720. "description": "A library to read, parse, export and make subsets of different types of font files.",
  3721. "homepage": "https://github.com/PhenX/php-font-lib",
  3722. "support": {
  3723. "issues": "https://github.com/dompdf/php-font-lib/issues",
  3724. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
  3725. },
  3726. "time": "2021-12-17T19:44:54+00:00"
  3727. },
  3728. {
  3729. "name": "phenx/php-svg-lib",
  3730. "version": "0.5.0",
  3731. "source": {
  3732. "type": "git",
  3733. "url": "https://github.com/dompdf/php-svg-lib.git",
  3734. "reference": "76876c6cf3080bcb6f249d7d59705108166a6685"
  3735. },
  3736. "dist": {
  3737. "type": "zip",
  3738. "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/76876c6cf3080bcb6f249d7d59705108166a6685",
  3739. "reference": "76876c6cf3080bcb6f249d7d59705108166a6685",
  3740. "shasum": ""
  3741. },
  3742. "require": {
  3743. "ext-mbstring": "*",
  3744. "php": "^7.1 || ^8.0",
  3745. "sabberworm/php-css-parser": "^8.4"
  3746. },
  3747. "require-dev": {
  3748. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  3749. },
  3750. "type": "library",
  3751. "autoload": {
  3752. "psr-4": {
  3753. "Svg\\": "src/Svg"
  3754. }
  3755. },
  3756. "notification-url": "https://packagist.org/downloads/",
  3757. "license": [
  3758. "LGPL-3.0"
  3759. ],
  3760. "authors": [
  3761. {
  3762. "name": "Fabien Ménager",
  3763. "email": "fabien.menager@gmail.com"
  3764. }
  3765. ],
  3766. "description": "A library to read, parse and export to PDF SVG files.",
  3767. "homepage": "https://github.com/PhenX/php-svg-lib",
  3768. "support": {
  3769. "issues": "https://github.com/dompdf/php-svg-lib/issues",
  3770. "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.0"
  3771. },
  3772. "time": "2022-09-06T12:16:56+00:00"
  3773. },
  3774. {
  3775. "name": "phpdocumentor/reflection-common",
  3776. "version": "2.2.0",
  3777. "source": {
  3778. "type": "git",
  3779. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3780. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  3781. },
  3782. "dist": {
  3783. "type": "zip",
  3784. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3785. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3786. "shasum": ""
  3787. },
  3788. "require": {
  3789. "php": "^7.2 || ^8.0"
  3790. },
  3791. "type": "library",
  3792. "extra": {
  3793. "branch-alias": {
  3794. "dev-2.x": "2.x-dev"
  3795. }
  3796. },
  3797. "autoload": {
  3798. "psr-4": {
  3799. "phpDocumentor\\Reflection\\": "src/"
  3800. }
  3801. },
  3802. "notification-url": "https://packagist.org/downloads/",
  3803. "license": [
  3804. "MIT"
  3805. ],
  3806. "authors": [
  3807. {
  3808. "name": "Jaap van Otterdijk",
  3809. "email": "opensource@ijaap.nl"
  3810. }
  3811. ],
  3812. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3813. "homepage": "http://www.phpdoc.org",
  3814. "keywords": [
  3815. "FQSEN",
  3816. "phpDocumentor",
  3817. "phpdoc",
  3818. "reflection",
  3819. "static analysis"
  3820. ],
  3821. "support": {
  3822. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  3823. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  3824. },
  3825. "time": "2020-06-27T09:03:43+00:00"
  3826. },
  3827. {
  3828. "name": "phpdocumentor/type-resolver",
  3829. "version": "1.7.1",
  3830. "source": {
  3831. "type": "git",
  3832. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3833. "reference": "dfc078e8af9c99210337325ff5aa152872c98714"
  3834. },
  3835. "dist": {
  3836. "type": "zip",
  3837. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/dfc078e8af9c99210337325ff5aa152872c98714",
  3838. "reference": "dfc078e8af9c99210337325ff5aa152872c98714",
  3839. "shasum": ""
  3840. },
  3841. "require": {
  3842. "doctrine/deprecations": "^1.0",
  3843. "php": "^7.4 || ^8.0",
  3844. "phpdocumentor/reflection-common": "^2.0",
  3845. "phpstan/phpdoc-parser": "^1.13"
  3846. },
  3847. "require-dev": {
  3848. "ext-tokenizer": "*",
  3849. "phpbench/phpbench": "^1.2",
  3850. "phpstan/extension-installer": "^1.1",
  3851. "phpstan/phpstan": "^1.8",
  3852. "phpstan/phpstan-phpunit": "^1.1",
  3853. "phpunit/phpunit": "^9.5",
  3854. "rector/rector": "^0.13.9",
  3855. "vimeo/psalm": "^4.25"
  3856. },
  3857. "type": "library",
  3858. "extra": {
  3859. "branch-alias": {
  3860. "dev-1.x": "1.x-dev"
  3861. }
  3862. },
  3863. "autoload": {
  3864. "psr-4": {
  3865. "phpDocumentor\\Reflection\\": "src"
  3866. }
  3867. },
  3868. "notification-url": "https://packagist.org/downloads/",
  3869. "license": [
  3870. "MIT"
  3871. ],
  3872. "authors": [
  3873. {
  3874. "name": "Mike van Riel",
  3875. "email": "me@mikevanriel.com"
  3876. }
  3877. ],
  3878. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  3879. "support": {
  3880. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  3881. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.1"
  3882. },
  3883. "time": "2023-03-27T19:02:04+00:00"
  3884. },
  3885. {
  3886. "name": "phpoption/phpoption",
  3887. "version": "1.9.1",
  3888. "source": {
  3889. "type": "git",
  3890. "url": "https://github.com/schmittjoh/php-option.git",
  3891. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  3892. },
  3893. "dist": {
  3894. "type": "zip",
  3895. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  3896. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  3897. "shasum": ""
  3898. },
  3899. "require": {
  3900. "php": "^7.2.5 || ^8.0"
  3901. },
  3902. "require-dev": {
  3903. "bamarni/composer-bin-plugin": "^1.8.2",
  3904. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  3905. },
  3906. "type": "library",
  3907. "extra": {
  3908. "bamarni-bin": {
  3909. "bin-links": true,
  3910. "forward-command": true
  3911. },
  3912. "branch-alias": {
  3913. "dev-master": "1.9-dev"
  3914. }
  3915. },
  3916. "autoload": {
  3917. "psr-4": {
  3918. "PhpOption\\": "src/PhpOption/"
  3919. }
  3920. },
  3921. "notification-url": "https://packagist.org/downloads/",
  3922. "license": [
  3923. "Apache-2.0"
  3924. ],
  3925. "authors": [
  3926. {
  3927. "name": "Johannes M. Schmitt",
  3928. "email": "schmittjoh@gmail.com",
  3929. "homepage": "https://github.com/schmittjoh"
  3930. },
  3931. {
  3932. "name": "Graham Campbell",
  3933. "email": "hello@gjcampbell.co.uk",
  3934. "homepage": "https://github.com/GrahamCampbell"
  3935. }
  3936. ],
  3937. "description": "Option Type for PHP",
  3938. "keywords": [
  3939. "language",
  3940. "option",
  3941. "php",
  3942. "type"
  3943. ],
  3944. "support": {
  3945. "issues": "https://github.com/schmittjoh/php-option/issues",
  3946. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  3947. },
  3948. "funding": [
  3949. {
  3950. "url": "https://github.com/GrahamCampbell",
  3951. "type": "github"
  3952. },
  3953. {
  3954. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3955. "type": "tidelift"
  3956. }
  3957. ],
  3958. "time": "2023-02-25T19:38:58+00:00"
  3959. },
  3960. {
  3961. "name": "phpstan/phpdoc-parser",
  3962. "version": "1.16.1",
  3963. "source": {
  3964. "type": "git",
  3965. "url": "https://github.com/phpstan/phpdoc-parser.git",
  3966. "reference": "e27e92d939e2e3636f0a1f0afaba59692c0bf571"
  3967. },
  3968. "dist": {
  3969. "type": "zip",
  3970. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/e27e92d939e2e3636f0a1f0afaba59692c0bf571",
  3971. "reference": "e27e92d939e2e3636f0a1f0afaba59692c0bf571",
  3972. "shasum": ""
  3973. },
  3974. "require": {
  3975. "php": "^7.2 || ^8.0"
  3976. },
  3977. "require-dev": {
  3978. "php-parallel-lint/php-parallel-lint": "^1.2",
  3979. "phpstan/extension-installer": "^1.0",
  3980. "phpstan/phpstan": "^1.5",
  3981. "phpstan/phpstan-phpunit": "^1.1",
  3982. "phpstan/phpstan-strict-rules": "^1.0",
  3983. "phpunit/phpunit": "^9.5",
  3984. "symfony/process": "^5.2"
  3985. },
  3986. "type": "library",
  3987. "autoload": {
  3988. "psr-4": {
  3989. "PHPStan\\PhpDocParser\\": [
  3990. "src/"
  3991. ]
  3992. }
  3993. },
  3994. "notification-url": "https://packagist.org/downloads/",
  3995. "license": [
  3996. "MIT"
  3997. ],
  3998. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  3999. "support": {
  4000. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  4001. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.16.1"
  4002. },
  4003. "time": "2023-02-07T18:11:17+00:00"
  4004. },
  4005. {
  4006. "name": "predis/predis",
  4007. "version": "v2.1.2",
  4008. "source": {
  4009. "type": "git",
  4010. "url": "https://github.com/predis/predis.git",
  4011. "reference": "a77a43913a74f9331f637bb12867eb8e274814e5"
  4012. },
  4013. "dist": {
  4014. "type": "zip",
  4015. "url": "https://api.github.com/repos/predis/predis/zipball/a77a43913a74f9331f637bb12867eb8e274814e5",
  4016. "reference": "a77a43913a74f9331f637bb12867eb8e274814e5",
  4017. "shasum": ""
  4018. },
  4019. "require": {
  4020. "php": "^7.2 || ^8.0"
  4021. },
  4022. "require-dev": {
  4023. "friendsofphp/php-cs-fixer": "^3.3",
  4024. "phpstan/phpstan": "^1.9",
  4025. "phpunit/phpunit": "^8.0 || ~9.4.4"
  4026. },
  4027. "type": "library",
  4028. "autoload": {
  4029. "psr-4": {
  4030. "Predis\\": "src/"
  4031. }
  4032. },
  4033. "notification-url": "https://packagist.org/downloads/",
  4034. "license": [
  4035. "MIT"
  4036. ],
  4037. "authors": [
  4038. {
  4039. "name": "Till Krüss",
  4040. "homepage": "https://till.im",
  4041. "role": "Maintainer"
  4042. }
  4043. ],
  4044. "description": "A flexible and feature-complete Redis client for PHP.",
  4045. "homepage": "http://github.com/predis/predis",
  4046. "keywords": [
  4047. "nosql",
  4048. "predis",
  4049. "redis"
  4050. ],
  4051. "support": {
  4052. "issues": "https://github.com/predis/predis/issues",
  4053. "source": "https://github.com/predis/predis/tree/v2.1.2"
  4054. },
  4055. "funding": [
  4056. {
  4057. "url": "https://github.com/sponsors/tillkruss",
  4058. "type": "github"
  4059. }
  4060. ],
  4061. "time": "2023-03-02T18:32:04+00:00"
  4062. },
  4063. {
  4064. "name": "psr/cache",
  4065. "version": "3.0.0",
  4066. "source": {
  4067. "type": "git",
  4068. "url": "https://github.com/php-fig/cache.git",
  4069. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4070. },
  4071. "dist": {
  4072. "type": "zip",
  4073. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4074. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4075. "shasum": ""
  4076. },
  4077. "require": {
  4078. "php": ">=8.0.0"
  4079. },
  4080. "type": "library",
  4081. "extra": {
  4082. "branch-alias": {
  4083. "dev-master": "1.0.x-dev"
  4084. }
  4085. },
  4086. "autoload": {
  4087. "psr-4": {
  4088. "Psr\\Cache\\": "src/"
  4089. }
  4090. },
  4091. "notification-url": "https://packagist.org/downloads/",
  4092. "license": [
  4093. "MIT"
  4094. ],
  4095. "authors": [
  4096. {
  4097. "name": "PHP-FIG",
  4098. "homepage": "https://www.php-fig.org/"
  4099. }
  4100. ],
  4101. "description": "Common interface for caching libraries",
  4102. "keywords": [
  4103. "cache",
  4104. "psr",
  4105. "psr-6"
  4106. ],
  4107. "support": {
  4108. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4109. },
  4110. "time": "2021-02-03T23:26:27+00:00"
  4111. },
  4112. {
  4113. "name": "psr/container",
  4114. "version": "2.0.2",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://github.com/php-fig/container.git",
  4118. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4123. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4124. "shasum": ""
  4125. },
  4126. "require": {
  4127. "php": ">=7.4.0"
  4128. },
  4129. "type": "library",
  4130. "extra": {
  4131. "branch-alias": {
  4132. "dev-master": "2.0.x-dev"
  4133. }
  4134. },
  4135. "autoload": {
  4136. "psr-4": {
  4137. "Psr\\Container\\": "src/"
  4138. }
  4139. },
  4140. "notification-url": "https://packagist.org/downloads/",
  4141. "license": [
  4142. "MIT"
  4143. ],
  4144. "authors": [
  4145. {
  4146. "name": "PHP-FIG",
  4147. "homepage": "https://www.php-fig.org/"
  4148. }
  4149. ],
  4150. "description": "Common Container Interface (PHP FIG PSR-11)",
  4151. "homepage": "https://github.com/php-fig/container",
  4152. "keywords": [
  4153. "PSR-11",
  4154. "container",
  4155. "container-interface",
  4156. "container-interop",
  4157. "psr"
  4158. ],
  4159. "support": {
  4160. "issues": "https://github.com/php-fig/container/issues",
  4161. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4162. },
  4163. "time": "2021-11-05T16:47:00+00:00"
  4164. },
  4165. {
  4166. "name": "psr/event-dispatcher",
  4167. "version": "1.0.0",
  4168. "source": {
  4169. "type": "git",
  4170. "url": "https://github.com/php-fig/event-dispatcher.git",
  4171. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4172. },
  4173. "dist": {
  4174. "type": "zip",
  4175. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4176. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4177. "shasum": ""
  4178. },
  4179. "require": {
  4180. "php": ">=7.2.0"
  4181. },
  4182. "type": "library",
  4183. "extra": {
  4184. "branch-alias": {
  4185. "dev-master": "1.0.x-dev"
  4186. }
  4187. },
  4188. "autoload": {
  4189. "psr-4": {
  4190. "Psr\\EventDispatcher\\": "src/"
  4191. }
  4192. },
  4193. "notification-url": "https://packagist.org/downloads/",
  4194. "license": [
  4195. "MIT"
  4196. ],
  4197. "authors": [
  4198. {
  4199. "name": "PHP-FIG",
  4200. "homepage": "http://www.php-fig.org/"
  4201. }
  4202. ],
  4203. "description": "Standard interfaces for event handling.",
  4204. "keywords": [
  4205. "events",
  4206. "psr",
  4207. "psr-14"
  4208. ],
  4209. "support": {
  4210. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4211. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4212. },
  4213. "time": "2019-01-08T18:20:26+00:00"
  4214. },
  4215. {
  4216. "name": "psr/http-client",
  4217. "version": "1.0.1",
  4218. "source": {
  4219. "type": "git",
  4220. "url": "https://github.com/php-fig/http-client.git",
  4221. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4222. },
  4223. "dist": {
  4224. "type": "zip",
  4225. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4226. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4227. "shasum": ""
  4228. },
  4229. "require": {
  4230. "php": "^7.0 || ^8.0",
  4231. "psr/http-message": "^1.0"
  4232. },
  4233. "type": "library",
  4234. "extra": {
  4235. "branch-alias": {
  4236. "dev-master": "1.0.x-dev"
  4237. }
  4238. },
  4239. "autoload": {
  4240. "psr-4": {
  4241. "Psr\\Http\\Client\\": "src/"
  4242. }
  4243. },
  4244. "notification-url": "https://packagist.org/downloads/",
  4245. "license": [
  4246. "MIT"
  4247. ],
  4248. "authors": [
  4249. {
  4250. "name": "PHP-FIG",
  4251. "homepage": "http://www.php-fig.org/"
  4252. }
  4253. ],
  4254. "description": "Common interface for HTTP clients",
  4255. "homepage": "https://github.com/php-fig/http-client",
  4256. "keywords": [
  4257. "http",
  4258. "http-client",
  4259. "psr",
  4260. "psr-18"
  4261. ],
  4262. "support": {
  4263. "source": "https://github.com/php-fig/http-client/tree/master"
  4264. },
  4265. "time": "2020-06-29T06:28:15+00:00"
  4266. },
  4267. {
  4268. "name": "psr/http-factory",
  4269. "version": "1.0.1",
  4270. "source": {
  4271. "type": "git",
  4272. "url": "https://github.com/php-fig/http-factory.git",
  4273. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4274. },
  4275. "dist": {
  4276. "type": "zip",
  4277. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4278. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4279. "shasum": ""
  4280. },
  4281. "require": {
  4282. "php": ">=7.0.0",
  4283. "psr/http-message": "^1.0"
  4284. },
  4285. "type": "library",
  4286. "extra": {
  4287. "branch-alias": {
  4288. "dev-master": "1.0.x-dev"
  4289. }
  4290. },
  4291. "autoload": {
  4292. "psr-4": {
  4293. "Psr\\Http\\Message\\": "src/"
  4294. }
  4295. },
  4296. "notification-url": "https://packagist.org/downloads/",
  4297. "license": [
  4298. "MIT"
  4299. ],
  4300. "authors": [
  4301. {
  4302. "name": "PHP-FIG",
  4303. "homepage": "http://www.php-fig.org/"
  4304. }
  4305. ],
  4306. "description": "Common interfaces for PSR-7 HTTP message factories",
  4307. "keywords": [
  4308. "factory",
  4309. "http",
  4310. "message",
  4311. "psr",
  4312. "psr-17",
  4313. "psr-7",
  4314. "request",
  4315. "response"
  4316. ],
  4317. "support": {
  4318. "source": "https://github.com/php-fig/http-factory/tree/master"
  4319. },
  4320. "time": "2019-04-30T12:38:16+00:00"
  4321. },
  4322. {
  4323. "name": "psr/http-message",
  4324. "version": "1.0.1",
  4325. "source": {
  4326. "type": "git",
  4327. "url": "https://github.com/php-fig/http-message.git",
  4328. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4329. },
  4330. "dist": {
  4331. "type": "zip",
  4332. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4333. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4334. "shasum": ""
  4335. },
  4336. "require": {
  4337. "php": ">=5.3.0"
  4338. },
  4339. "type": "library",
  4340. "extra": {
  4341. "branch-alias": {
  4342. "dev-master": "1.0.x-dev"
  4343. }
  4344. },
  4345. "autoload": {
  4346. "psr-4": {
  4347. "Psr\\Http\\Message\\": "src/"
  4348. }
  4349. },
  4350. "notification-url": "https://packagist.org/downloads/",
  4351. "license": [
  4352. "MIT"
  4353. ],
  4354. "authors": [
  4355. {
  4356. "name": "PHP-FIG",
  4357. "homepage": "http://www.php-fig.org/"
  4358. }
  4359. ],
  4360. "description": "Common interface for HTTP messages",
  4361. "homepage": "https://github.com/php-fig/http-message",
  4362. "keywords": [
  4363. "http",
  4364. "http-message",
  4365. "psr",
  4366. "psr-7",
  4367. "request",
  4368. "response"
  4369. ],
  4370. "support": {
  4371. "source": "https://github.com/php-fig/http-message/tree/master"
  4372. },
  4373. "time": "2016-08-06T14:39:51+00:00"
  4374. },
  4375. {
  4376. "name": "psr/log",
  4377. "version": "1.1.4",
  4378. "source": {
  4379. "type": "git",
  4380. "url": "https://github.com/php-fig/log.git",
  4381. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4382. },
  4383. "dist": {
  4384. "type": "zip",
  4385. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4386. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4387. "shasum": ""
  4388. },
  4389. "require": {
  4390. "php": ">=5.3.0"
  4391. },
  4392. "type": "library",
  4393. "extra": {
  4394. "branch-alias": {
  4395. "dev-master": "1.1.x-dev"
  4396. }
  4397. },
  4398. "autoload": {
  4399. "psr-4": {
  4400. "Psr\\Log\\": "Psr/Log/"
  4401. }
  4402. },
  4403. "notification-url": "https://packagist.org/downloads/",
  4404. "license": [
  4405. "MIT"
  4406. ],
  4407. "authors": [
  4408. {
  4409. "name": "PHP-FIG",
  4410. "homepage": "https://www.php-fig.org/"
  4411. }
  4412. ],
  4413. "description": "Common interface for logging libraries",
  4414. "homepage": "https://github.com/php-fig/log",
  4415. "keywords": [
  4416. "log",
  4417. "psr",
  4418. "psr-3"
  4419. ],
  4420. "support": {
  4421. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4422. },
  4423. "time": "2021-05-03T11:20:27+00:00"
  4424. },
  4425. {
  4426. "name": "psr/simple-cache",
  4427. "version": "3.0.0",
  4428. "source": {
  4429. "type": "git",
  4430. "url": "https://github.com/php-fig/simple-cache.git",
  4431. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4432. },
  4433. "dist": {
  4434. "type": "zip",
  4435. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4436. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4437. "shasum": ""
  4438. },
  4439. "require": {
  4440. "php": ">=8.0.0"
  4441. },
  4442. "type": "library",
  4443. "extra": {
  4444. "branch-alias": {
  4445. "dev-master": "3.0.x-dev"
  4446. }
  4447. },
  4448. "autoload": {
  4449. "psr-4": {
  4450. "Psr\\SimpleCache\\": "src/"
  4451. }
  4452. },
  4453. "notification-url": "https://packagist.org/downloads/",
  4454. "license": [
  4455. "MIT"
  4456. ],
  4457. "authors": [
  4458. {
  4459. "name": "PHP-FIG",
  4460. "homepage": "https://www.php-fig.org/"
  4461. }
  4462. ],
  4463. "description": "Common interfaces for simple caching",
  4464. "keywords": [
  4465. "cache",
  4466. "caching",
  4467. "psr",
  4468. "psr-16",
  4469. "simple-cache"
  4470. ],
  4471. "support": {
  4472. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4473. },
  4474. "time": "2021-10-29T13:26:27+00:00"
  4475. },
  4476. {
  4477. "name": "psy/psysh",
  4478. "version": "v0.11.14",
  4479. "source": {
  4480. "type": "git",
  4481. "url": "https://github.com/bobthecow/psysh.git",
  4482. "reference": "8c2e264def7a8263a68ef6f0b55ce90b77d41e17"
  4483. },
  4484. "dist": {
  4485. "type": "zip",
  4486. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/8c2e264def7a8263a68ef6f0b55ce90b77d41e17",
  4487. "reference": "8c2e264def7a8263a68ef6f0b55ce90b77d41e17",
  4488. "shasum": ""
  4489. },
  4490. "require": {
  4491. "ext-json": "*",
  4492. "ext-tokenizer": "*",
  4493. "nikic/php-parser": "^4.0 || ^3.1",
  4494. "php": "^8.0 || ^7.0.8",
  4495. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4496. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4497. },
  4498. "conflict": {
  4499. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4500. },
  4501. "require-dev": {
  4502. "bamarni/composer-bin-plugin": "^1.2"
  4503. },
  4504. "suggest": {
  4505. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4506. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4507. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4508. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4509. },
  4510. "bin": [
  4511. "bin/psysh"
  4512. ],
  4513. "type": "library",
  4514. "extra": {
  4515. "branch-alias": {
  4516. "dev-main": "0.11.x-dev"
  4517. }
  4518. },
  4519. "autoload": {
  4520. "files": [
  4521. "src/functions.php"
  4522. ],
  4523. "psr-4": {
  4524. "Psy\\": "src/"
  4525. }
  4526. },
  4527. "notification-url": "https://packagist.org/downloads/",
  4528. "license": [
  4529. "MIT"
  4530. ],
  4531. "authors": [
  4532. {
  4533. "name": "Justin Hileman",
  4534. "email": "justin@justinhileman.info",
  4535. "homepage": "http://justinhileman.com"
  4536. }
  4537. ],
  4538. "description": "An interactive shell for modern PHP.",
  4539. "homepage": "http://psysh.org",
  4540. "keywords": [
  4541. "REPL",
  4542. "console",
  4543. "interactive",
  4544. "shell"
  4545. ],
  4546. "support": {
  4547. "issues": "https://github.com/bobthecow/psysh/issues",
  4548. "source": "https://github.com/bobthecow/psysh/tree/v0.11.14"
  4549. },
  4550. "time": "2023-03-28T03:41:01+00:00"
  4551. },
  4552. {
  4553. "name": "qirolab/laravel-themer",
  4554. "version": "2.1.0",
  4555. "source": {
  4556. "type": "git",
  4557. "url": "https://github.com/qirolab/laravel-themer.git",
  4558. "reference": "f643b371411e063fb0d42bffb1586df6ec70972b"
  4559. },
  4560. "dist": {
  4561. "type": "zip",
  4562. "url": "https://api.github.com/repos/qirolab/laravel-themer/zipball/f643b371411e063fb0d42bffb1586df6ec70972b",
  4563. "reference": "f643b371411e063fb0d42bffb1586df6ec70972b",
  4564. "shasum": ""
  4565. },
  4566. "require": {
  4567. "facade/ignition-contracts": "^1.0",
  4568. "illuminate/support": "^9.19|^10.0",
  4569. "php": ">=7.1.0"
  4570. },
  4571. "require-dev": {
  4572. "orchestra/testbench": "^7.0|^8.0",
  4573. "phpunit/phpunit": "^8.3|^9.0",
  4574. "vimeo/psalm": "^4.0"
  4575. },
  4576. "type": "library",
  4577. "extra": {
  4578. "laravel": {
  4579. "providers": [
  4580. "Qirolab\\Theme\\ThemeServiceProvider"
  4581. ]
  4582. }
  4583. },
  4584. "autoload": {
  4585. "psr-4": {
  4586. "Qirolab\\Theme\\": "src",
  4587. "Qirolab\\Theme\\Database\\Factories\\": "database/factories"
  4588. }
  4589. },
  4590. "notification-url": "https://packagist.org/downloads/",
  4591. "license": [
  4592. "MIT"
  4593. ],
  4594. "authors": [
  4595. {
  4596. "name": "Harish Kumar",
  4597. "email": "harish@qirolab.com",
  4598. "homepage": "https://qirolab.com",
  4599. "role": "Developer"
  4600. }
  4601. ],
  4602. "description": "A Laravel theme manager, that will help you organize and maintain your themes inside Laravel projects.",
  4603. "homepage": "https://qirolab.com",
  4604. "keywords": [
  4605. "laravel",
  4606. "laravel-theme",
  4607. "qirolab",
  4608. "theme"
  4609. ],
  4610. "support": {
  4611. "issues": "https://github.com/qirolab/laravel-themer/issues",
  4612. "source": "https://github.com/qirolab/laravel-themer/tree/2.1.0"
  4613. },
  4614. "funding": [
  4615. {
  4616. "url": "https://www.buymeacoffee.com/qirolab",
  4617. "type": "other"
  4618. }
  4619. ],
  4620. "time": "2023-02-14T12:31:27+00:00"
  4621. },
  4622. {
  4623. "name": "ralouphie/getallheaders",
  4624. "version": "3.0.3",
  4625. "source": {
  4626. "type": "git",
  4627. "url": "https://github.com/ralouphie/getallheaders.git",
  4628. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4629. },
  4630. "dist": {
  4631. "type": "zip",
  4632. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4633. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4634. "shasum": ""
  4635. },
  4636. "require": {
  4637. "php": ">=5.6"
  4638. },
  4639. "require-dev": {
  4640. "php-coveralls/php-coveralls": "^2.1",
  4641. "phpunit/phpunit": "^5 || ^6.5"
  4642. },
  4643. "type": "library",
  4644. "autoload": {
  4645. "files": [
  4646. "src/getallheaders.php"
  4647. ]
  4648. },
  4649. "notification-url": "https://packagist.org/downloads/",
  4650. "license": [
  4651. "MIT"
  4652. ],
  4653. "authors": [
  4654. {
  4655. "name": "Ralph Khattar",
  4656. "email": "ralph.khattar@gmail.com"
  4657. }
  4658. ],
  4659. "description": "A polyfill for getallheaders.",
  4660. "support": {
  4661. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4662. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4663. },
  4664. "time": "2019-03-08T08:55:37+00:00"
  4665. },
  4666. {
  4667. "name": "ramsey/collection",
  4668. "version": "2.0.0",
  4669. "source": {
  4670. "type": "git",
  4671. "url": "https://github.com/ramsey/collection.git",
  4672. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4673. },
  4674. "dist": {
  4675. "type": "zip",
  4676. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4677. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4678. "shasum": ""
  4679. },
  4680. "require": {
  4681. "php": "^8.1"
  4682. },
  4683. "require-dev": {
  4684. "captainhook/plugin-composer": "^5.3",
  4685. "ergebnis/composer-normalize": "^2.28.3",
  4686. "fakerphp/faker": "^1.21",
  4687. "hamcrest/hamcrest-php": "^2.0",
  4688. "jangregor/phpstan-prophecy": "^1.0",
  4689. "mockery/mockery": "^1.5",
  4690. "php-parallel-lint/php-console-highlighter": "^1.0",
  4691. "php-parallel-lint/php-parallel-lint": "^1.3",
  4692. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4693. "phpspec/prophecy-phpunit": "^2.0",
  4694. "phpstan/extension-installer": "^1.2",
  4695. "phpstan/phpstan": "^1.9",
  4696. "phpstan/phpstan-mockery": "^1.1",
  4697. "phpstan/phpstan-phpunit": "^1.3",
  4698. "phpunit/phpunit": "^9.5",
  4699. "psalm/plugin-mockery": "^1.1",
  4700. "psalm/plugin-phpunit": "^0.18.4",
  4701. "ramsey/coding-standard": "^2.0.3",
  4702. "ramsey/conventional-commits": "^1.3",
  4703. "vimeo/psalm": "^5.4"
  4704. },
  4705. "type": "library",
  4706. "extra": {
  4707. "captainhook": {
  4708. "force-install": true
  4709. },
  4710. "ramsey/conventional-commits": {
  4711. "configFile": "conventional-commits.json"
  4712. }
  4713. },
  4714. "autoload": {
  4715. "psr-4": {
  4716. "Ramsey\\Collection\\": "src/"
  4717. }
  4718. },
  4719. "notification-url": "https://packagist.org/downloads/",
  4720. "license": [
  4721. "MIT"
  4722. ],
  4723. "authors": [
  4724. {
  4725. "name": "Ben Ramsey",
  4726. "email": "ben@benramsey.com",
  4727. "homepage": "https://benramsey.com"
  4728. }
  4729. ],
  4730. "description": "A PHP library for representing and manipulating collections.",
  4731. "keywords": [
  4732. "array",
  4733. "collection",
  4734. "hash",
  4735. "map",
  4736. "queue",
  4737. "set"
  4738. ],
  4739. "support": {
  4740. "issues": "https://github.com/ramsey/collection/issues",
  4741. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4742. },
  4743. "funding": [
  4744. {
  4745. "url": "https://github.com/ramsey",
  4746. "type": "github"
  4747. },
  4748. {
  4749. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4750. "type": "tidelift"
  4751. }
  4752. ],
  4753. "time": "2022-12-31T21:50:55+00:00"
  4754. },
  4755. {
  4756. "name": "ramsey/uuid",
  4757. "version": "4.x-dev",
  4758. "source": {
  4759. "type": "git",
  4760. "url": "https://github.com/ramsey/uuid.git",
  4761. "reference": "8e955307d32dc9b6992440ff81321d3cb09db75a"
  4762. },
  4763. "dist": {
  4764. "type": "zip",
  4765. "url": "https://api.github.com/repos/ramsey/uuid/zipball/8e955307d32dc9b6992440ff81321d3cb09db75a",
  4766. "reference": "8e955307d32dc9b6992440ff81321d3cb09db75a",
  4767. "shasum": ""
  4768. },
  4769. "require": {
  4770. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  4771. "ext-json": "*",
  4772. "php": "^8.0",
  4773. "ramsey/collection": "^1.2 || ^2.0"
  4774. },
  4775. "replace": {
  4776. "rhumsaa/uuid": "self.version"
  4777. },
  4778. "require-dev": {
  4779. "captainhook/captainhook": "^5.10",
  4780. "captainhook/plugin-composer": "^5.3",
  4781. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4782. "doctrine/annotations": "^1.8",
  4783. "ergebnis/composer-normalize": "^2.15",
  4784. "mockery/mockery": "^1.3",
  4785. "paragonie/random-lib": "^2",
  4786. "php-mock/php-mock": "^2.2",
  4787. "php-mock/php-mock-mockery": "^1.3",
  4788. "php-parallel-lint/php-parallel-lint": "^1.1",
  4789. "phpbench/phpbench": "^1.0",
  4790. "phpstan/extension-installer": "^1.1",
  4791. "phpstan/phpstan": "^1.8",
  4792. "phpstan/phpstan-mockery": "^1.1",
  4793. "phpstan/phpstan-phpunit": "^1.1",
  4794. "phpunit/phpunit": "^8.5 || ^9",
  4795. "ramsey/composer-repl": "^1.4",
  4796. "slevomat/coding-standard": "^8.4",
  4797. "squizlabs/php_codesniffer": "^3.5",
  4798. "vimeo/psalm": "^4.9"
  4799. },
  4800. "suggest": {
  4801. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4802. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4803. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4804. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4805. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4806. },
  4807. "default-branch": true,
  4808. "type": "library",
  4809. "extra": {
  4810. "captainhook": {
  4811. "force-install": true
  4812. }
  4813. },
  4814. "autoload": {
  4815. "files": [
  4816. "src/functions.php"
  4817. ],
  4818. "psr-4": {
  4819. "Ramsey\\Uuid\\": "src/"
  4820. }
  4821. },
  4822. "notification-url": "https://packagist.org/downloads/",
  4823. "license": [
  4824. "MIT"
  4825. ],
  4826. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4827. "keywords": [
  4828. "guid",
  4829. "identifier",
  4830. "uuid"
  4831. ],
  4832. "support": {
  4833. "issues": "https://github.com/ramsey/uuid/issues",
  4834. "source": "https://github.com/ramsey/uuid/tree/4.x"
  4835. },
  4836. "funding": [
  4837. {
  4838. "url": "https://github.com/ramsey",
  4839. "type": "github"
  4840. },
  4841. {
  4842. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4843. "type": "tidelift"
  4844. }
  4845. ],
  4846. "time": "2023-03-27T22:05:11+00:00"
  4847. },
  4848. {
  4849. "name": "sabberworm/php-css-parser",
  4850. "version": "8.4.0",
  4851. "source": {
  4852. "type": "git",
  4853. "url": "https://github.com/sabberworm/PHP-CSS-Parser.git",
  4854. "reference": "e41d2140031d533348b2192a83f02d8dd8a71d30"
  4855. },
  4856. "dist": {
  4857. "type": "zip",
  4858. "url": "https://api.github.com/repos/sabberworm/PHP-CSS-Parser/zipball/e41d2140031d533348b2192a83f02d8dd8a71d30",
  4859. "reference": "e41d2140031d533348b2192a83f02d8dd8a71d30",
  4860. "shasum": ""
  4861. },
  4862. "require": {
  4863. "ext-iconv": "*",
  4864. "php": ">=5.6.20"
  4865. },
  4866. "require-dev": {
  4867. "codacy/coverage": "^1.4",
  4868. "phpunit/phpunit": "^4.8.36"
  4869. },
  4870. "suggest": {
  4871. "ext-mbstring": "for parsing UTF-8 CSS"
  4872. },
  4873. "type": "library",
  4874. "autoload": {
  4875. "psr-4": {
  4876. "Sabberworm\\CSS\\": "src/"
  4877. }
  4878. },
  4879. "notification-url": "https://packagist.org/downloads/",
  4880. "license": [
  4881. "MIT"
  4882. ],
  4883. "authors": [
  4884. {
  4885. "name": "Raphael Schweikert"
  4886. }
  4887. ],
  4888. "description": "Parser for CSS Files written in PHP",
  4889. "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  4890. "keywords": [
  4891. "css",
  4892. "parser",
  4893. "stylesheet"
  4894. ],
  4895. "support": {
  4896. "issues": "https://github.com/sabberworm/PHP-CSS-Parser/issues",
  4897. "source": "https://github.com/sabberworm/PHP-CSS-Parser/tree/8.4.0"
  4898. },
  4899. "time": "2021-12-11T13:40:54+00:00"
  4900. },
  4901. {
  4902. "name": "socialiteproviders/discord",
  4903. "version": "4.1.2",
  4904. "source": {
  4905. "type": "git",
  4906. "url": "https://github.com/SocialiteProviders/Discord.git",
  4907. "reference": "11f6a8ded5b1948723886f2e5413b91139fcce6b"
  4908. },
  4909. "dist": {
  4910. "type": "zip",
  4911. "url": "https://api.github.com/repos/SocialiteProviders/Discord/zipball/11f6a8ded5b1948723886f2e5413b91139fcce6b",
  4912. "reference": "11f6a8ded5b1948723886f2e5413b91139fcce6b",
  4913. "shasum": ""
  4914. },
  4915. "require": {
  4916. "ext-json": "*",
  4917. "php": "^7.4 || ^8.0",
  4918. "socialiteproviders/manager": "~4.0"
  4919. },
  4920. "type": "library",
  4921. "autoload": {
  4922. "psr-4": {
  4923. "SocialiteProviders\\Discord\\": ""
  4924. }
  4925. },
  4926. "notification-url": "https://packagist.org/downloads/",
  4927. "license": [
  4928. "MIT"
  4929. ],
  4930. "authors": [
  4931. {
  4932. "name": "Christopher Eklund",
  4933. "email": "eklundchristopher@gmail.com"
  4934. }
  4935. ],
  4936. "description": "Discord OAuth2 Provider for Laravel Socialite",
  4937. "keywords": [
  4938. "discord",
  4939. "laravel",
  4940. "oauth",
  4941. "provider",
  4942. "socialite"
  4943. ],
  4944. "support": {
  4945. "docs": "https://socialiteproviders.com/discord",
  4946. "issues": "https://github.com/socialiteproviders/providers/issues",
  4947. "source": "https://github.com/socialiteproviders/providers"
  4948. },
  4949. "time": "2023-02-01T08:54:49+00:00"
  4950. },
  4951. {
  4952. "name": "socialiteproviders/manager",
  4953. "version": "v4.3.0",
  4954. "source": {
  4955. "type": "git",
  4956. "url": "https://github.com/SocialiteProviders/Manager.git",
  4957. "reference": "47402cbc5b7ef445317e799bf12fd5a12062206c"
  4958. },
  4959. "dist": {
  4960. "type": "zip",
  4961. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/47402cbc5b7ef445317e799bf12fd5a12062206c",
  4962. "reference": "47402cbc5b7ef445317e799bf12fd5a12062206c",
  4963. "shasum": ""
  4964. },
  4965. "require": {
  4966. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
  4967. "laravel/socialite": "~5.0",
  4968. "php": "^7.4 || ^8.0"
  4969. },
  4970. "require-dev": {
  4971. "mockery/mockery": "^1.2",
  4972. "phpunit/phpunit": "^6.0 || ^9.0"
  4973. },
  4974. "type": "library",
  4975. "extra": {
  4976. "laravel": {
  4977. "providers": [
  4978. "SocialiteProviders\\Manager\\ServiceProvider"
  4979. ]
  4980. }
  4981. },
  4982. "autoload": {
  4983. "psr-4": {
  4984. "SocialiteProviders\\Manager\\": "src/"
  4985. }
  4986. },
  4987. "notification-url": "https://packagist.org/downloads/",
  4988. "license": [
  4989. "MIT"
  4990. ],
  4991. "authors": [
  4992. {
  4993. "name": "Andy Wendt",
  4994. "email": "andy@awendt.com"
  4995. },
  4996. {
  4997. "name": "Anton Komarev",
  4998. "email": "a.komarev@cybercog.su"
  4999. },
  5000. {
  5001. "name": "Miguel Piedrafita",
  5002. "email": "soy@miguelpiedrafita.com"
  5003. },
  5004. {
  5005. "name": "atymic",
  5006. "email": "atymicq@gmail.com",
  5007. "homepage": "https://atymic.dev"
  5008. }
  5009. ],
  5010. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  5011. "homepage": "https://socialiteproviders.com",
  5012. "keywords": [
  5013. "laravel",
  5014. "manager",
  5015. "oauth",
  5016. "providers",
  5017. "socialite"
  5018. ],
  5019. "support": {
  5020. "issues": "https://github.com/socialiteproviders/manager/issues",
  5021. "source": "https://github.com/socialiteproviders/manager"
  5022. },
  5023. "time": "2023-01-26T23:11:27+00:00"
  5024. },
  5025. {
  5026. "name": "spatie/laravel-activitylog",
  5027. "version": "4.7.3",
  5028. "source": {
  5029. "type": "git",
  5030. "url": "https://github.com/spatie/laravel-activitylog.git",
  5031. "reference": "ec65a478a909b8df1b4f0c3c45de2592ca7639e5"
  5032. },
  5033. "dist": {
  5034. "type": "zip",
  5035. "url": "https://api.github.com/repos/spatie/laravel-activitylog/zipball/ec65a478a909b8df1b4f0c3c45de2592ca7639e5",
  5036. "reference": "ec65a478a909b8df1b4f0c3c45de2592ca7639e5",
  5037. "shasum": ""
  5038. },
  5039. "require": {
  5040. "illuminate/config": "^8.0 || ^9.0 || ^10.0",
  5041. "illuminate/database": "^8.69 || ^9.27 || ^10.0",
  5042. "illuminate/support": "^8.0 || ^9.0 || ^10.0",
  5043. "php": "^8.0",
  5044. "spatie/laravel-package-tools": "^1.6.3"
  5045. },
  5046. "require-dev": {
  5047. "ext-json": "*",
  5048. "orchestra/testbench": "^6.23 || ^7.0 || ^8.0",
  5049. "pestphp/pest": "^1.20"
  5050. },
  5051. "type": "library",
  5052. "extra": {
  5053. "laravel": {
  5054. "providers": [
  5055. "Spatie\\Activitylog\\ActivitylogServiceProvider"
  5056. ]
  5057. }
  5058. },
  5059. "autoload": {
  5060. "files": [
  5061. "src/helpers.php"
  5062. ],
  5063. "psr-4": {
  5064. "Spatie\\Activitylog\\": "src"
  5065. }
  5066. },
  5067. "notification-url": "https://packagist.org/downloads/",
  5068. "license": [
  5069. "MIT"
  5070. ],
  5071. "authors": [
  5072. {
  5073. "name": "Freek Van der Herten",
  5074. "email": "freek@spatie.be",
  5075. "homepage": "https://spatie.be",
  5076. "role": "Developer"
  5077. },
  5078. {
  5079. "name": "Sebastian De Deyne",
  5080. "email": "sebastian@spatie.be",
  5081. "homepage": "https://spatie.be",
  5082. "role": "Developer"
  5083. },
  5084. {
  5085. "name": "Tom Witkowski",
  5086. "email": "dev.gummibeer@gmail.com",
  5087. "homepage": "https://gummibeer.de",
  5088. "role": "Developer"
  5089. }
  5090. ],
  5091. "description": "A very simple activity logger to monitor the users of your website or application",
  5092. "homepage": "https://github.com/spatie/activitylog",
  5093. "keywords": [
  5094. "activity",
  5095. "laravel",
  5096. "log",
  5097. "spatie",
  5098. "user"
  5099. ],
  5100. "support": {
  5101. "issues": "https://github.com/spatie/laravel-activitylog/issues",
  5102. "source": "https://github.com/spatie/laravel-activitylog/tree/4.7.3"
  5103. },
  5104. "funding": [
  5105. {
  5106. "url": "https://spatie.be/open-source/support-us",
  5107. "type": "custom"
  5108. },
  5109. {
  5110. "url": "https://github.com/spatie",
  5111. "type": "github"
  5112. }
  5113. ],
  5114. "time": "2023-01-25T17:04:51+00:00"
  5115. },
  5116. {
  5117. "name": "spatie/laravel-package-tools",
  5118. "version": "1.14.2",
  5119. "source": {
  5120. "type": "git",
  5121. "url": "https://github.com/spatie/laravel-package-tools.git",
  5122. "reference": "bab62023a4745a61170ad5424184533685e73c2d"
  5123. },
  5124. "dist": {
  5125. "type": "zip",
  5126. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/bab62023a4745a61170ad5424184533685e73c2d",
  5127. "reference": "bab62023a4745a61170ad5424184533685e73c2d",
  5128. "shasum": ""
  5129. },
  5130. "require": {
  5131. "illuminate/contracts": "^9.28|^10.0",
  5132. "php": "^8.0"
  5133. },
  5134. "require-dev": {
  5135. "mockery/mockery": "^1.5",
  5136. "orchestra/testbench": "^7.7|^8.0",
  5137. "pestphp/pest": "^1.22",
  5138. "phpunit/phpunit": "^9.5.24",
  5139. "spatie/pest-plugin-test-time": "^1.1"
  5140. },
  5141. "type": "library",
  5142. "autoload": {
  5143. "psr-4": {
  5144. "Spatie\\LaravelPackageTools\\": "src"
  5145. }
  5146. },
  5147. "notification-url": "https://packagist.org/downloads/",
  5148. "license": [
  5149. "MIT"
  5150. ],
  5151. "authors": [
  5152. {
  5153. "name": "Freek Van der Herten",
  5154. "email": "freek@spatie.be",
  5155. "role": "Developer"
  5156. }
  5157. ],
  5158. "description": "Tools for creating Laravel packages",
  5159. "homepage": "https://github.com/spatie/laravel-package-tools",
  5160. "keywords": [
  5161. "laravel-package-tools",
  5162. "spatie"
  5163. ],
  5164. "support": {
  5165. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  5166. "source": "https://github.com/spatie/laravel-package-tools/tree/1.14.2"
  5167. },
  5168. "funding": [
  5169. {
  5170. "url": "https://github.com/spatie",
  5171. "type": "github"
  5172. }
  5173. ],
  5174. "time": "2023-03-14T16:41:21+00:00"
  5175. },
  5176. {
  5177. "name": "spatie/laravel-query-builder",
  5178. "version": "5.2.0",
  5179. "source": {
  5180. "type": "git",
  5181. "url": "https://github.com/spatie/laravel-query-builder.git",
  5182. "reference": "7b3911f61dcaa27804b80f30b73a468a9539e850"
  5183. },
  5184. "dist": {
  5185. "type": "zip",
  5186. "url": "https://api.github.com/repos/spatie/laravel-query-builder/zipball/7b3911f61dcaa27804b80f30b73a468a9539e850",
  5187. "reference": "7b3911f61dcaa27804b80f30b73a468a9539e850",
  5188. "shasum": ""
  5189. },
  5190. "require": {
  5191. "illuminate/database": "^9.0|^10.0",
  5192. "illuminate/http": "^9.0|^10.0",
  5193. "illuminate/support": "^9.0|^10.0",
  5194. "php": "^8.0",
  5195. "spatie/laravel-package-tools": "^1.11"
  5196. },
  5197. "require-dev": {
  5198. "ext-json": "*",
  5199. "mockery/mockery": "^1.4",
  5200. "orchestra/testbench": "^7.0|^8.0",
  5201. "pestphp/pest": "^1.20",
  5202. "spatie/laravel-ray": "^1.28"
  5203. },
  5204. "type": "library",
  5205. "extra": {
  5206. "laravel": {
  5207. "providers": [
  5208. "Spatie\\QueryBuilder\\QueryBuilderServiceProvider"
  5209. ]
  5210. }
  5211. },
  5212. "autoload": {
  5213. "psr-4": {
  5214. "Spatie\\QueryBuilder\\": "src",
  5215. "Spatie\\QueryBuilder\\Database\\Factories\\": "database/factories"
  5216. }
  5217. },
  5218. "notification-url": "https://packagist.org/downloads/",
  5219. "license": [
  5220. "MIT"
  5221. ],
  5222. "authors": [
  5223. {
  5224. "name": "Alex Vanderbist",
  5225. "email": "alex@spatie.be",
  5226. "homepage": "https://spatie.be",
  5227. "role": "Developer"
  5228. }
  5229. ],
  5230. "description": "Easily build Eloquent queries from API requests",
  5231. "homepage": "https://github.com/spatie/laravel-query-builder",
  5232. "keywords": [
  5233. "laravel-query-builder",
  5234. "spatie"
  5235. ],
  5236. "support": {
  5237. "issues": "https://github.com/spatie/laravel-query-builder/issues",
  5238. "source": "https://github.com/spatie/laravel-query-builder"
  5239. },
  5240. "funding": [
  5241. {
  5242. "url": "https://spatie.be/open-source/support-us",
  5243. "type": "custom"
  5244. }
  5245. ],
  5246. "time": "2023-02-24T15:48:30+00:00"
  5247. },
  5248. {
  5249. "name": "spatie/laravel-settings",
  5250. "version": "2.8.2",
  5251. "source": {
  5252. "type": "git",
  5253. "url": "https://github.com/spatie/laravel-settings.git",
  5254. "reference": "48140731312d73ad000921e23d53b8e1fe5247cf"
  5255. },
  5256. "dist": {
  5257. "type": "zip",
  5258. "url": "https://api.github.com/repos/spatie/laravel-settings/zipball/48140731312d73ad000921e23d53b8e1fe5247cf",
  5259. "reference": "48140731312d73ad000921e23d53b8e1fe5247cf",
  5260. "shasum": ""
  5261. },
  5262. "require": {
  5263. "doctrine/dbal": "^2.13|^3.2",
  5264. "ext-json": "*",
  5265. "illuminate/database": "^8.73|^9.0|^10.0",
  5266. "php": "^7.4|^8.0",
  5267. "phpdocumentor/type-resolver": "^1.5",
  5268. "spatie/temporary-directory": "^1.3|^2.0"
  5269. },
  5270. "require-dev": {
  5271. "ext-redis": "*",
  5272. "mockery/mockery": "^1.4",
  5273. "nunomaduro/larastan": "^2.0",
  5274. "orchestra/testbench": "^6.23|^7.0|^8.0",
  5275. "pestphp/pest": "^1.21",
  5276. "pestphp/pest-plugin-laravel": "^1.2",
  5277. "phpstan/extension-installer": "^1.1",
  5278. "phpstan/phpstan-deprecation-rules": "^1.0",
  5279. "phpstan/phpstan-phpunit": "^1.0",
  5280. "phpunit/phpunit": "^9.5",
  5281. "spatie/laravel-data": "^1.0.0|^2.0.0",
  5282. "spatie/pest-plugin-snapshots": "^1.1",
  5283. "spatie/phpunit-snapshot-assertions": "^4.2",
  5284. "spatie/ray": "^1.36"
  5285. },
  5286. "suggest": {
  5287. "spatie/data-transfer-object": "Allows for DTO casting to settings. (deprecated)"
  5288. },
  5289. "type": "library",
  5290. "extra": {
  5291. "laravel": {
  5292. "providers": [
  5293. "Spatie\\LaravelSettings\\LaravelSettingsServiceProvider"
  5294. ]
  5295. }
  5296. },
  5297. "autoload": {
  5298. "psr-4": {
  5299. "Spatie\\LaravelSettings\\": "src"
  5300. }
  5301. },
  5302. "notification-url": "https://packagist.org/downloads/",
  5303. "license": [
  5304. "MIT"
  5305. ],
  5306. "authors": [
  5307. {
  5308. "name": "Ruben Van Assche",
  5309. "email": "ruben@spatie.be",
  5310. "homepage": "https://spatie.be",
  5311. "role": "Developer"
  5312. }
  5313. ],
  5314. "description": "Store your application settings",
  5315. "homepage": "https://github.com/spatie/laravel-settings",
  5316. "keywords": [
  5317. "laravel-settings",
  5318. "spatie"
  5319. ],
  5320. "support": {
  5321. "issues": "https://github.com/spatie/laravel-settings/issues",
  5322. "source": "https://github.com/spatie/laravel-settings/tree/2.8.2"
  5323. },
  5324. "funding": [
  5325. {
  5326. "url": "https://spatie.be/open-source/support-us",
  5327. "type": "custom"
  5328. },
  5329. {
  5330. "url": "https://github.com/spatie",
  5331. "type": "github"
  5332. }
  5333. ],
  5334. "time": "2023-03-10T09:30:34+00:00"
  5335. },
  5336. {
  5337. "name": "spatie/laravel-validation-rules",
  5338. "version": "3.2.2",
  5339. "source": {
  5340. "type": "git",
  5341. "url": "https://github.com/spatie/laravel-validation-rules.git",
  5342. "reference": "3cbef3441cb274cd3c12409586f18c3a44d46d0a"
  5343. },
  5344. "dist": {
  5345. "type": "zip",
  5346. "url": "https://api.github.com/repos/spatie/laravel-validation-rules/zipball/3cbef3441cb274cd3c12409586f18c3a44d46d0a",
  5347. "reference": "3cbef3441cb274cd3c12409586f18c3a44d46d0a",
  5348. "shasum": ""
  5349. },
  5350. "require": {
  5351. "illuminate/support": "^8.0|^9.0|^10.0",
  5352. "php": "^8.0"
  5353. },
  5354. "require-dev": {
  5355. "laravel/pint": "^1.3",
  5356. "league/iso3166": "^3.0",
  5357. "myclabs/php-enum": "^1.6",
  5358. "orchestra/testbench": "^6.23|^7.0|^8.0",
  5359. "phpunit/phpunit": "^9.4",
  5360. "spatie/enum": "^2.2|^3.0"
  5361. },
  5362. "suggest": {
  5363. "league/iso3166": "Needed for the CountryCode rule and Currency rule"
  5364. },
  5365. "type": "library",
  5366. "extra": {
  5367. "laravel": {
  5368. "providers": [
  5369. "Spatie\\ValidationRules\\ValidationRulesServiceProvider"
  5370. ]
  5371. }
  5372. },
  5373. "autoload": {
  5374. "psr-4": {
  5375. "Spatie\\ValidationRules\\": "src",
  5376. "Spatie\\ValidationRules\\Database\\Factories\\": "database/factories"
  5377. }
  5378. },
  5379. "notification-url": "https://packagist.org/downloads/",
  5380. "license": [
  5381. "MIT"
  5382. ],
  5383. "authors": [
  5384. {
  5385. "name": "Freek Van der Herten",
  5386. "email": "freek@spatie.be",
  5387. "homepage": "https://spatie.be",
  5388. "role": "Developer"
  5389. }
  5390. ],
  5391. "description": "A set of useful Laravel validation rules",
  5392. "homepage": "https://github.com/spatie/laravel-validation-rules",
  5393. "keywords": [
  5394. "laravel-validation-rules",
  5395. "spatie"
  5396. ],
  5397. "support": {
  5398. "issues": "https://github.com/spatie/laravel-validation-rules/issues",
  5399. "source": "https://github.com/spatie/laravel-validation-rules/tree/3.2.2"
  5400. },
  5401. "funding": [
  5402. {
  5403. "url": "https://github.com/spatie",
  5404. "type": "github"
  5405. }
  5406. ],
  5407. "time": "2023-01-25T16:22:06+00:00"
  5408. },
  5409. {
  5410. "name": "spatie/temporary-directory",
  5411. "version": "2.1.1",
  5412. "source": {
  5413. "type": "git",
  5414. "url": "https://github.com/spatie/temporary-directory.git",
  5415. "reference": "e2818d871783d520b319c2d38dc37c10ecdcde20"
  5416. },
  5417. "dist": {
  5418. "type": "zip",
  5419. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/e2818d871783d520b319c2d38dc37c10ecdcde20",
  5420. "reference": "e2818d871783d520b319c2d38dc37c10ecdcde20",
  5421. "shasum": ""
  5422. },
  5423. "require": {
  5424. "php": "^8.0"
  5425. },
  5426. "require-dev": {
  5427. "phpunit/phpunit": "^9.5"
  5428. },
  5429. "type": "library",
  5430. "autoload": {
  5431. "psr-4": {
  5432. "Spatie\\TemporaryDirectory\\": "src"
  5433. }
  5434. },
  5435. "notification-url": "https://packagist.org/downloads/",
  5436. "license": [
  5437. "MIT"
  5438. ],
  5439. "authors": [
  5440. {
  5441. "name": "Alex Vanderbist",
  5442. "email": "alex@spatie.be",
  5443. "homepage": "https://spatie.be",
  5444. "role": "Developer"
  5445. }
  5446. ],
  5447. "description": "Easily create, use and destroy temporary directories",
  5448. "homepage": "https://github.com/spatie/temporary-directory",
  5449. "keywords": [
  5450. "php",
  5451. "spatie",
  5452. "temporary-directory"
  5453. ],
  5454. "support": {
  5455. "issues": "https://github.com/spatie/temporary-directory/issues",
  5456. "source": "https://github.com/spatie/temporary-directory/tree/2.1.1"
  5457. },
  5458. "funding": [
  5459. {
  5460. "url": "https://spatie.be/open-source/support-us",
  5461. "type": "custom"
  5462. },
  5463. {
  5464. "url": "https://github.com/spatie",
  5465. "type": "github"
  5466. }
  5467. ],
  5468. "time": "2022-08-23T07:15:15+00:00"
  5469. },
  5470. {
  5471. "name": "stripe/stripe-php",
  5472. "version": "v7.128.0",
  5473. "source": {
  5474. "type": "git",
  5475. "url": "https://github.com/stripe/stripe-php.git",
  5476. "reference": "c704949c49b72985c76cc61063aa26fefbd2724e"
  5477. },
  5478. "dist": {
  5479. "type": "zip",
  5480. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/c704949c49b72985c76cc61063aa26fefbd2724e",
  5481. "reference": "c704949c49b72985c76cc61063aa26fefbd2724e",
  5482. "shasum": ""
  5483. },
  5484. "require": {
  5485. "ext-curl": "*",
  5486. "ext-json": "*",
  5487. "ext-mbstring": "*",
  5488. "php": ">=5.6.0"
  5489. },
  5490. "require-dev": {
  5491. "friendsofphp/php-cs-fixer": "3.5.0",
  5492. "phpstan/phpstan": "^1.2",
  5493. "phpunit/phpunit": "^5.7 || ^9.0",
  5494. "squizlabs/php_codesniffer": "^3.3"
  5495. },
  5496. "type": "library",
  5497. "extra": {
  5498. "branch-alias": {
  5499. "dev-master": "2.0-dev"
  5500. }
  5501. },
  5502. "autoload": {
  5503. "psr-4": {
  5504. "Stripe\\": "lib/"
  5505. }
  5506. },
  5507. "notification-url": "https://packagist.org/downloads/",
  5508. "license": [
  5509. "MIT"
  5510. ],
  5511. "authors": [
  5512. {
  5513. "name": "Stripe and contributors",
  5514. "homepage": "https://github.com/stripe/stripe-php/contributors"
  5515. }
  5516. ],
  5517. "description": "Stripe PHP Library",
  5518. "homepage": "https://stripe.com/",
  5519. "keywords": [
  5520. "api",
  5521. "payment processing",
  5522. "stripe"
  5523. ],
  5524. "support": {
  5525. "issues": "https://github.com/stripe/stripe-php/issues",
  5526. "source": "https://github.com/stripe/stripe-php/tree/v7.128.0"
  5527. },
  5528. "time": "2022-05-05T17:18:02+00:00"
  5529. },
  5530. {
  5531. "name": "symfony/console",
  5532. "version": "v6.2.7",
  5533. "source": {
  5534. "type": "git",
  5535. "url": "https://github.com/symfony/console.git",
  5536. "reference": "cbad09eb8925b6ad4fb721c7a179344dc4a19d45"
  5537. },
  5538. "dist": {
  5539. "type": "zip",
  5540. "url": "https://api.github.com/repos/symfony/console/zipball/cbad09eb8925b6ad4fb721c7a179344dc4a19d45",
  5541. "reference": "cbad09eb8925b6ad4fb721c7a179344dc4a19d45",
  5542. "shasum": ""
  5543. },
  5544. "require": {
  5545. "php": ">=8.1",
  5546. "symfony/deprecation-contracts": "^2.1|^3",
  5547. "symfony/polyfill-mbstring": "~1.0",
  5548. "symfony/service-contracts": "^1.1|^2|^3",
  5549. "symfony/string": "^5.4|^6.0"
  5550. },
  5551. "conflict": {
  5552. "symfony/dependency-injection": "<5.4",
  5553. "symfony/dotenv": "<5.4",
  5554. "symfony/event-dispatcher": "<5.4",
  5555. "symfony/lock": "<5.4",
  5556. "symfony/process": "<5.4"
  5557. },
  5558. "provide": {
  5559. "psr/log-implementation": "1.0|2.0|3.0"
  5560. },
  5561. "require-dev": {
  5562. "psr/log": "^1|^2|^3",
  5563. "symfony/config": "^5.4|^6.0",
  5564. "symfony/dependency-injection": "^5.4|^6.0",
  5565. "symfony/event-dispatcher": "^5.4|^6.0",
  5566. "symfony/lock": "^5.4|^6.0",
  5567. "symfony/process": "^5.4|^6.0",
  5568. "symfony/var-dumper": "^5.4|^6.0"
  5569. },
  5570. "suggest": {
  5571. "psr/log": "For using the console logger",
  5572. "symfony/event-dispatcher": "",
  5573. "symfony/lock": "",
  5574. "symfony/process": ""
  5575. },
  5576. "type": "library",
  5577. "autoload": {
  5578. "psr-4": {
  5579. "Symfony\\Component\\Console\\": ""
  5580. },
  5581. "exclude-from-classmap": [
  5582. "/Tests/"
  5583. ]
  5584. },
  5585. "notification-url": "https://packagist.org/downloads/",
  5586. "license": [
  5587. "MIT"
  5588. ],
  5589. "authors": [
  5590. {
  5591. "name": "Fabien Potencier",
  5592. "email": "fabien@symfony.com"
  5593. },
  5594. {
  5595. "name": "Symfony Community",
  5596. "homepage": "https://symfony.com/contributors"
  5597. }
  5598. ],
  5599. "description": "Eases the creation of beautiful and testable command line interfaces",
  5600. "homepage": "https://symfony.com",
  5601. "keywords": [
  5602. "cli",
  5603. "command line",
  5604. "console",
  5605. "terminal"
  5606. ],
  5607. "support": {
  5608. "source": "https://github.com/symfony/console/tree/v6.2.7"
  5609. },
  5610. "funding": [
  5611. {
  5612. "url": "https://symfony.com/sponsor",
  5613. "type": "custom"
  5614. },
  5615. {
  5616. "url": "https://github.com/fabpot",
  5617. "type": "github"
  5618. },
  5619. {
  5620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5621. "type": "tidelift"
  5622. }
  5623. ],
  5624. "time": "2023-02-25T17:00:03+00:00"
  5625. },
  5626. {
  5627. "name": "symfony/css-selector",
  5628. "version": "v6.2.7",
  5629. "source": {
  5630. "type": "git",
  5631. "url": "https://github.com/symfony/css-selector.git",
  5632. "reference": "aedf3cb0f5b929ec255d96bbb4909e9932c769e0"
  5633. },
  5634. "dist": {
  5635. "type": "zip",
  5636. "url": "https://api.github.com/repos/symfony/css-selector/zipball/aedf3cb0f5b929ec255d96bbb4909e9932c769e0",
  5637. "reference": "aedf3cb0f5b929ec255d96bbb4909e9932c769e0",
  5638. "shasum": ""
  5639. },
  5640. "require": {
  5641. "php": ">=8.1"
  5642. },
  5643. "type": "library",
  5644. "autoload": {
  5645. "psr-4": {
  5646. "Symfony\\Component\\CssSelector\\": ""
  5647. },
  5648. "exclude-from-classmap": [
  5649. "/Tests/"
  5650. ]
  5651. },
  5652. "notification-url": "https://packagist.org/downloads/",
  5653. "license": [
  5654. "MIT"
  5655. ],
  5656. "authors": [
  5657. {
  5658. "name": "Fabien Potencier",
  5659. "email": "fabien@symfony.com"
  5660. },
  5661. {
  5662. "name": "Jean-François Simon",
  5663. "email": "jeanfrancois.simon@sensiolabs.com"
  5664. },
  5665. {
  5666. "name": "Symfony Community",
  5667. "homepage": "https://symfony.com/contributors"
  5668. }
  5669. ],
  5670. "description": "Converts CSS selectors to XPath expressions",
  5671. "homepage": "https://symfony.com",
  5672. "support": {
  5673. "source": "https://github.com/symfony/css-selector/tree/v6.2.7"
  5674. },
  5675. "funding": [
  5676. {
  5677. "url": "https://symfony.com/sponsor",
  5678. "type": "custom"
  5679. },
  5680. {
  5681. "url": "https://github.com/fabpot",
  5682. "type": "github"
  5683. },
  5684. {
  5685. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5686. "type": "tidelift"
  5687. }
  5688. ],
  5689. "time": "2023-02-14T08:44:56+00:00"
  5690. },
  5691. {
  5692. "name": "symfony/deprecation-contracts",
  5693. "version": "v3.2.1",
  5694. "source": {
  5695. "type": "git",
  5696. "url": "https://github.com/symfony/deprecation-contracts.git",
  5697. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e"
  5698. },
  5699. "dist": {
  5700. "type": "zip",
  5701. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  5702. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  5703. "shasum": ""
  5704. },
  5705. "require": {
  5706. "php": ">=8.1"
  5707. },
  5708. "type": "library",
  5709. "extra": {
  5710. "branch-alias": {
  5711. "dev-main": "3.3-dev"
  5712. },
  5713. "thanks": {
  5714. "name": "symfony/contracts",
  5715. "url": "https://github.com/symfony/contracts"
  5716. }
  5717. },
  5718. "autoload": {
  5719. "files": [
  5720. "function.php"
  5721. ]
  5722. },
  5723. "notification-url": "https://packagist.org/downloads/",
  5724. "license": [
  5725. "MIT"
  5726. ],
  5727. "authors": [
  5728. {
  5729. "name": "Nicolas Grekas",
  5730. "email": "p@tchwork.com"
  5731. },
  5732. {
  5733. "name": "Symfony Community",
  5734. "homepage": "https://symfony.com/contributors"
  5735. }
  5736. ],
  5737. "description": "A generic function and convention to trigger deprecation notices",
  5738. "homepage": "https://symfony.com",
  5739. "support": {
  5740. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.1"
  5741. },
  5742. "funding": [
  5743. {
  5744. "url": "https://symfony.com/sponsor",
  5745. "type": "custom"
  5746. },
  5747. {
  5748. "url": "https://github.com/fabpot",
  5749. "type": "github"
  5750. },
  5751. {
  5752. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5753. "type": "tidelift"
  5754. }
  5755. ],
  5756. "time": "2023-03-01T10:25:55+00:00"
  5757. },
  5758. {
  5759. "name": "symfony/error-handler",
  5760. "version": "v6.2.7",
  5761. "source": {
  5762. "type": "git",
  5763. "url": "https://github.com/symfony/error-handler.git",
  5764. "reference": "61e90f94eb014054000bc902257d2763fac09166"
  5765. },
  5766. "dist": {
  5767. "type": "zip",
  5768. "url": "https://api.github.com/repos/symfony/error-handler/zipball/61e90f94eb014054000bc902257d2763fac09166",
  5769. "reference": "61e90f94eb014054000bc902257d2763fac09166",
  5770. "shasum": ""
  5771. },
  5772. "require": {
  5773. "php": ">=8.1",
  5774. "psr/log": "^1|^2|^3",
  5775. "symfony/var-dumper": "^5.4|^6.0"
  5776. },
  5777. "require-dev": {
  5778. "symfony/deprecation-contracts": "^2.1|^3",
  5779. "symfony/http-kernel": "^5.4|^6.0",
  5780. "symfony/serializer": "^5.4|^6.0"
  5781. },
  5782. "bin": [
  5783. "Resources/bin/patch-type-declarations"
  5784. ],
  5785. "type": "library",
  5786. "autoload": {
  5787. "psr-4": {
  5788. "Symfony\\Component\\ErrorHandler\\": ""
  5789. },
  5790. "exclude-from-classmap": [
  5791. "/Tests/"
  5792. ]
  5793. },
  5794. "notification-url": "https://packagist.org/downloads/",
  5795. "license": [
  5796. "MIT"
  5797. ],
  5798. "authors": [
  5799. {
  5800. "name": "Fabien Potencier",
  5801. "email": "fabien@symfony.com"
  5802. },
  5803. {
  5804. "name": "Symfony Community",
  5805. "homepage": "https://symfony.com/contributors"
  5806. }
  5807. ],
  5808. "description": "Provides tools to manage errors and ease debugging PHP code",
  5809. "homepage": "https://symfony.com",
  5810. "support": {
  5811. "source": "https://github.com/symfony/error-handler/tree/v6.2.7"
  5812. },
  5813. "funding": [
  5814. {
  5815. "url": "https://symfony.com/sponsor",
  5816. "type": "custom"
  5817. },
  5818. {
  5819. "url": "https://github.com/fabpot",
  5820. "type": "github"
  5821. },
  5822. {
  5823. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5824. "type": "tidelift"
  5825. }
  5826. ],
  5827. "time": "2023-02-14T08:44:56+00:00"
  5828. },
  5829. {
  5830. "name": "symfony/event-dispatcher",
  5831. "version": "v6.2.7",
  5832. "source": {
  5833. "type": "git",
  5834. "url": "https://github.com/symfony/event-dispatcher.git",
  5835. "reference": "404b307de426c1c488e5afad64403e5f145e82a5"
  5836. },
  5837. "dist": {
  5838. "type": "zip",
  5839. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/404b307de426c1c488e5afad64403e5f145e82a5",
  5840. "reference": "404b307de426c1c488e5afad64403e5f145e82a5",
  5841. "shasum": ""
  5842. },
  5843. "require": {
  5844. "php": ">=8.1",
  5845. "symfony/event-dispatcher-contracts": "^2|^3"
  5846. },
  5847. "conflict": {
  5848. "symfony/dependency-injection": "<5.4"
  5849. },
  5850. "provide": {
  5851. "psr/event-dispatcher-implementation": "1.0",
  5852. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5853. },
  5854. "require-dev": {
  5855. "psr/log": "^1|^2|^3",
  5856. "symfony/config": "^5.4|^6.0",
  5857. "symfony/dependency-injection": "^5.4|^6.0",
  5858. "symfony/error-handler": "^5.4|^6.0",
  5859. "symfony/expression-language": "^5.4|^6.0",
  5860. "symfony/http-foundation": "^5.4|^6.0",
  5861. "symfony/service-contracts": "^1.1|^2|^3",
  5862. "symfony/stopwatch": "^5.4|^6.0"
  5863. },
  5864. "suggest": {
  5865. "symfony/dependency-injection": "",
  5866. "symfony/http-kernel": ""
  5867. },
  5868. "type": "library",
  5869. "autoload": {
  5870. "psr-4": {
  5871. "Symfony\\Component\\EventDispatcher\\": ""
  5872. },
  5873. "exclude-from-classmap": [
  5874. "/Tests/"
  5875. ]
  5876. },
  5877. "notification-url": "https://packagist.org/downloads/",
  5878. "license": [
  5879. "MIT"
  5880. ],
  5881. "authors": [
  5882. {
  5883. "name": "Fabien Potencier",
  5884. "email": "fabien@symfony.com"
  5885. },
  5886. {
  5887. "name": "Symfony Community",
  5888. "homepage": "https://symfony.com/contributors"
  5889. }
  5890. ],
  5891. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5892. "homepage": "https://symfony.com",
  5893. "support": {
  5894. "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.7"
  5895. },
  5896. "funding": [
  5897. {
  5898. "url": "https://symfony.com/sponsor",
  5899. "type": "custom"
  5900. },
  5901. {
  5902. "url": "https://github.com/fabpot",
  5903. "type": "github"
  5904. },
  5905. {
  5906. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5907. "type": "tidelift"
  5908. }
  5909. ],
  5910. "time": "2023-02-14T08:44:56+00:00"
  5911. },
  5912. {
  5913. "name": "symfony/event-dispatcher-contracts",
  5914. "version": "v3.2.1",
  5915. "source": {
  5916. "type": "git",
  5917. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5918. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd"
  5919. },
  5920. "dist": {
  5921. "type": "zip",
  5922. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  5923. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  5924. "shasum": ""
  5925. },
  5926. "require": {
  5927. "php": ">=8.1",
  5928. "psr/event-dispatcher": "^1"
  5929. },
  5930. "suggest": {
  5931. "symfony/event-dispatcher-implementation": ""
  5932. },
  5933. "type": "library",
  5934. "extra": {
  5935. "branch-alias": {
  5936. "dev-main": "3.3-dev"
  5937. },
  5938. "thanks": {
  5939. "name": "symfony/contracts",
  5940. "url": "https://github.com/symfony/contracts"
  5941. }
  5942. },
  5943. "autoload": {
  5944. "psr-4": {
  5945. "Symfony\\Contracts\\EventDispatcher\\": ""
  5946. }
  5947. },
  5948. "notification-url": "https://packagist.org/downloads/",
  5949. "license": [
  5950. "MIT"
  5951. ],
  5952. "authors": [
  5953. {
  5954. "name": "Nicolas Grekas",
  5955. "email": "p@tchwork.com"
  5956. },
  5957. {
  5958. "name": "Symfony Community",
  5959. "homepage": "https://symfony.com/contributors"
  5960. }
  5961. ],
  5962. "description": "Generic abstractions related to dispatching event",
  5963. "homepage": "https://symfony.com",
  5964. "keywords": [
  5965. "abstractions",
  5966. "contracts",
  5967. "decoupling",
  5968. "interfaces",
  5969. "interoperability",
  5970. "standards"
  5971. ],
  5972. "support": {
  5973. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.1"
  5974. },
  5975. "funding": [
  5976. {
  5977. "url": "https://symfony.com/sponsor",
  5978. "type": "custom"
  5979. },
  5980. {
  5981. "url": "https://github.com/fabpot",
  5982. "type": "github"
  5983. },
  5984. {
  5985. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5986. "type": "tidelift"
  5987. }
  5988. ],
  5989. "time": "2023-03-01T10:32:47+00:00"
  5990. },
  5991. {
  5992. "name": "symfony/finder",
  5993. "version": "v6.2.7",
  5994. "source": {
  5995. "type": "git",
  5996. "url": "https://github.com/symfony/finder.git",
  5997. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb"
  5998. },
  5999. "dist": {
  6000. "type": "zip",
  6001. "url": "https://api.github.com/repos/symfony/finder/zipball/20808dc6631aecafbe67c186af5dcb370be3a0eb",
  6002. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb",
  6003. "shasum": ""
  6004. },
  6005. "require": {
  6006. "php": ">=8.1"
  6007. },
  6008. "require-dev": {
  6009. "symfony/filesystem": "^6.0"
  6010. },
  6011. "type": "library",
  6012. "autoload": {
  6013. "psr-4": {
  6014. "Symfony\\Component\\Finder\\": ""
  6015. },
  6016. "exclude-from-classmap": [
  6017. "/Tests/"
  6018. ]
  6019. },
  6020. "notification-url": "https://packagist.org/downloads/",
  6021. "license": [
  6022. "MIT"
  6023. ],
  6024. "authors": [
  6025. {
  6026. "name": "Fabien Potencier",
  6027. "email": "fabien@symfony.com"
  6028. },
  6029. {
  6030. "name": "Symfony Community",
  6031. "homepage": "https://symfony.com/contributors"
  6032. }
  6033. ],
  6034. "description": "Finds files and directories via an intuitive fluent interface",
  6035. "homepage": "https://symfony.com",
  6036. "support": {
  6037. "source": "https://github.com/symfony/finder/tree/v6.2.7"
  6038. },
  6039. "funding": [
  6040. {
  6041. "url": "https://symfony.com/sponsor",
  6042. "type": "custom"
  6043. },
  6044. {
  6045. "url": "https://github.com/fabpot",
  6046. "type": "github"
  6047. },
  6048. {
  6049. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6050. "type": "tidelift"
  6051. }
  6052. ],
  6053. "time": "2023-02-16T09:57:23+00:00"
  6054. },
  6055. {
  6056. "name": "symfony/http-client",
  6057. "version": "v6.2.7",
  6058. "source": {
  6059. "type": "git",
  6060. "url": "https://github.com/symfony/http-client.git",
  6061. "reference": "0a5be6cbc570ae23b51b49d67341f378629d78e4"
  6062. },
  6063. "dist": {
  6064. "type": "zip",
  6065. "url": "https://api.github.com/repos/symfony/http-client/zipball/0a5be6cbc570ae23b51b49d67341f378629d78e4",
  6066. "reference": "0a5be6cbc570ae23b51b49d67341f378629d78e4",
  6067. "shasum": ""
  6068. },
  6069. "require": {
  6070. "php": ">=8.1",
  6071. "psr/log": "^1|^2|^3",
  6072. "symfony/deprecation-contracts": "^2.1|^3",
  6073. "symfony/http-client-contracts": "^3",
  6074. "symfony/service-contracts": "^1.0|^2|^3"
  6075. },
  6076. "provide": {
  6077. "php-http/async-client-implementation": "*",
  6078. "php-http/client-implementation": "*",
  6079. "psr/http-client-implementation": "1.0",
  6080. "symfony/http-client-implementation": "3.0"
  6081. },
  6082. "require-dev": {
  6083. "amphp/amp": "^2.5",
  6084. "amphp/http-client": "^4.2.1",
  6085. "amphp/http-tunnel": "^1.0",
  6086. "amphp/socket": "^1.1",
  6087. "guzzlehttp/promises": "^1.4",
  6088. "nyholm/psr7": "^1.0",
  6089. "php-http/httplug": "^1.0|^2.0",
  6090. "psr/http-client": "^1.0",
  6091. "symfony/dependency-injection": "^5.4|^6.0",
  6092. "symfony/http-kernel": "^5.4|^6.0",
  6093. "symfony/process": "^5.4|^6.0",
  6094. "symfony/stopwatch": "^5.4|^6.0"
  6095. },
  6096. "type": "library",
  6097. "autoload": {
  6098. "psr-4": {
  6099. "Symfony\\Component\\HttpClient\\": ""
  6100. },
  6101. "exclude-from-classmap": [
  6102. "/Tests/"
  6103. ]
  6104. },
  6105. "notification-url": "https://packagist.org/downloads/",
  6106. "license": [
  6107. "MIT"
  6108. ],
  6109. "authors": [
  6110. {
  6111. "name": "Nicolas Grekas",
  6112. "email": "p@tchwork.com"
  6113. },
  6114. {
  6115. "name": "Symfony Community",
  6116. "homepage": "https://symfony.com/contributors"
  6117. }
  6118. ],
  6119. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  6120. "homepage": "https://symfony.com",
  6121. "support": {
  6122. "source": "https://github.com/symfony/http-client/tree/v6.2.7"
  6123. },
  6124. "funding": [
  6125. {
  6126. "url": "https://symfony.com/sponsor",
  6127. "type": "custom"
  6128. },
  6129. {
  6130. "url": "https://github.com/fabpot",
  6131. "type": "github"
  6132. },
  6133. {
  6134. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6135. "type": "tidelift"
  6136. }
  6137. ],
  6138. "time": "2023-02-21T10:54:55+00:00"
  6139. },
  6140. {
  6141. "name": "symfony/http-client-contracts",
  6142. "version": "v3.2.1",
  6143. "source": {
  6144. "type": "git",
  6145. "url": "https://github.com/symfony/http-client-contracts.git",
  6146. "reference": "df2ecd6cb70e73c1080e6478aea85f5f4da2c48b"
  6147. },
  6148. "dist": {
  6149. "type": "zip",
  6150. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/df2ecd6cb70e73c1080e6478aea85f5f4da2c48b",
  6151. "reference": "df2ecd6cb70e73c1080e6478aea85f5f4da2c48b",
  6152. "shasum": ""
  6153. },
  6154. "require": {
  6155. "php": ">=8.1"
  6156. },
  6157. "suggest": {
  6158. "symfony/http-client-implementation": ""
  6159. },
  6160. "type": "library",
  6161. "extra": {
  6162. "branch-alias": {
  6163. "dev-main": "3.3-dev"
  6164. },
  6165. "thanks": {
  6166. "name": "symfony/contracts",
  6167. "url": "https://github.com/symfony/contracts"
  6168. }
  6169. },
  6170. "autoload": {
  6171. "psr-4": {
  6172. "Symfony\\Contracts\\HttpClient\\": ""
  6173. },
  6174. "exclude-from-classmap": [
  6175. "/Test/"
  6176. ]
  6177. },
  6178. "notification-url": "https://packagist.org/downloads/",
  6179. "license": [
  6180. "MIT"
  6181. ],
  6182. "authors": [
  6183. {
  6184. "name": "Nicolas Grekas",
  6185. "email": "p@tchwork.com"
  6186. },
  6187. {
  6188. "name": "Symfony Community",
  6189. "homepage": "https://symfony.com/contributors"
  6190. }
  6191. ],
  6192. "description": "Generic abstractions related to HTTP clients",
  6193. "homepage": "https://symfony.com",
  6194. "keywords": [
  6195. "abstractions",
  6196. "contracts",
  6197. "decoupling",
  6198. "interfaces",
  6199. "interoperability",
  6200. "standards"
  6201. ],
  6202. "support": {
  6203. "source": "https://github.com/symfony/http-client-contracts/tree/v3.2.1"
  6204. },
  6205. "funding": [
  6206. {
  6207. "url": "https://symfony.com/sponsor",
  6208. "type": "custom"
  6209. },
  6210. {
  6211. "url": "https://github.com/fabpot",
  6212. "type": "github"
  6213. },
  6214. {
  6215. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6216. "type": "tidelift"
  6217. }
  6218. ],
  6219. "time": "2023-03-01T10:32:47+00:00"
  6220. },
  6221. {
  6222. "name": "symfony/http-foundation",
  6223. "version": "v6.2.7",
  6224. "source": {
  6225. "type": "git",
  6226. "url": "https://github.com/symfony/http-foundation.git",
  6227. "reference": "5fc3038d4a594223f9ea42e4e985548f3fcc9a3b"
  6228. },
  6229. "dist": {
  6230. "type": "zip",
  6231. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5fc3038d4a594223f9ea42e4e985548f3fcc9a3b",
  6232. "reference": "5fc3038d4a594223f9ea42e4e985548f3fcc9a3b",
  6233. "shasum": ""
  6234. },
  6235. "require": {
  6236. "php": ">=8.1",
  6237. "symfony/deprecation-contracts": "^2.1|^3",
  6238. "symfony/polyfill-mbstring": "~1.1"
  6239. },
  6240. "conflict": {
  6241. "symfony/cache": "<6.2"
  6242. },
  6243. "require-dev": {
  6244. "predis/predis": "~1.0",
  6245. "symfony/cache": "^5.4|^6.0",
  6246. "symfony/dependency-injection": "^5.4|^6.0",
  6247. "symfony/expression-language": "^5.4|^6.0",
  6248. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6249. "symfony/mime": "^5.4|^6.0",
  6250. "symfony/rate-limiter": "^5.2|^6.0"
  6251. },
  6252. "suggest": {
  6253. "symfony/mime": "To use the file extension guesser"
  6254. },
  6255. "type": "library",
  6256. "autoload": {
  6257. "psr-4": {
  6258. "Symfony\\Component\\HttpFoundation\\": ""
  6259. },
  6260. "exclude-from-classmap": [
  6261. "/Tests/"
  6262. ]
  6263. },
  6264. "notification-url": "https://packagist.org/downloads/",
  6265. "license": [
  6266. "MIT"
  6267. ],
  6268. "authors": [
  6269. {
  6270. "name": "Fabien Potencier",
  6271. "email": "fabien@symfony.com"
  6272. },
  6273. {
  6274. "name": "Symfony Community",
  6275. "homepage": "https://symfony.com/contributors"
  6276. }
  6277. ],
  6278. "description": "Defines an object-oriented layer for the HTTP specification",
  6279. "homepage": "https://symfony.com",
  6280. "support": {
  6281. "source": "https://github.com/symfony/http-foundation/tree/v6.2.7"
  6282. },
  6283. "funding": [
  6284. {
  6285. "url": "https://symfony.com/sponsor",
  6286. "type": "custom"
  6287. },
  6288. {
  6289. "url": "https://github.com/fabpot",
  6290. "type": "github"
  6291. },
  6292. {
  6293. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6294. "type": "tidelift"
  6295. }
  6296. ],
  6297. "time": "2023-02-21T10:54:55+00:00"
  6298. },
  6299. {
  6300. "name": "symfony/http-kernel",
  6301. "version": "v6.2.7",
  6302. "source": {
  6303. "type": "git",
  6304. "url": "https://github.com/symfony/http-kernel.git",
  6305. "reference": "ca0680ad1e2d678536cc20e0ae33f9e4e5d2becd"
  6306. },
  6307. "dist": {
  6308. "type": "zip",
  6309. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ca0680ad1e2d678536cc20e0ae33f9e4e5d2becd",
  6310. "reference": "ca0680ad1e2d678536cc20e0ae33f9e4e5d2becd",
  6311. "shasum": ""
  6312. },
  6313. "require": {
  6314. "php": ">=8.1",
  6315. "psr/log": "^1|^2|^3",
  6316. "symfony/deprecation-contracts": "^2.1|^3",
  6317. "symfony/error-handler": "^6.1",
  6318. "symfony/event-dispatcher": "^5.4|^6.0",
  6319. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6320. "symfony/polyfill-ctype": "^1.8"
  6321. },
  6322. "conflict": {
  6323. "symfony/browser-kit": "<5.4",
  6324. "symfony/cache": "<5.4",
  6325. "symfony/config": "<6.1",
  6326. "symfony/console": "<5.4",
  6327. "symfony/dependency-injection": "<6.2",
  6328. "symfony/doctrine-bridge": "<5.4",
  6329. "symfony/form": "<5.4",
  6330. "symfony/http-client": "<5.4",
  6331. "symfony/mailer": "<5.4",
  6332. "symfony/messenger": "<5.4",
  6333. "symfony/translation": "<5.4",
  6334. "symfony/twig-bridge": "<5.4",
  6335. "symfony/validator": "<5.4",
  6336. "twig/twig": "<2.13"
  6337. },
  6338. "provide": {
  6339. "psr/log-implementation": "1.0|2.0|3.0"
  6340. },
  6341. "require-dev": {
  6342. "psr/cache": "^1.0|^2.0|^3.0",
  6343. "symfony/browser-kit": "^5.4|^6.0",
  6344. "symfony/config": "^6.1",
  6345. "symfony/console": "^5.4|^6.0",
  6346. "symfony/css-selector": "^5.4|^6.0",
  6347. "symfony/dependency-injection": "^6.2",
  6348. "symfony/dom-crawler": "^5.4|^6.0",
  6349. "symfony/expression-language": "^5.4|^6.0",
  6350. "symfony/finder": "^5.4|^6.0",
  6351. "symfony/http-client-contracts": "^1.1|^2|^3",
  6352. "symfony/process": "^5.4|^6.0",
  6353. "symfony/routing": "^5.4|^6.0",
  6354. "symfony/stopwatch": "^5.4|^6.0",
  6355. "symfony/translation": "^5.4|^6.0",
  6356. "symfony/translation-contracts": "^1.1|^2|^3",
  6357. "symfony/uid": "^5.4|^6.0",
  6358. "twig/twig": "^2.13|^3.0.4"
  6359. },
  6360. "suggest": {
  6361. "symfony/browser-kit": "",
  6362. "symfony/config": "",
  6363. "symfony/console": "",
  6364. "symfony/dependency-injection": ""
  6365. },
  6366. "type": "library",
  6367. "autoload": {
  6368. "psr-4": {
  6369. "Symfony\\Component\\HttpKernel\\": ""
  6370. },
  6371. "exclude-from-classmap": [
  6372. "/Tests/"
  6373. ]
  6374. },
  6375. "notification-url": "https://packagist.org/downloads/",
  6376. "license": [
  6377. "MIT"
  6378. ],
  6379. "authors": [
  6380. {
  6381. "name": "Fabien Potencier",
  6382. "email": "fabien@symfony.com"
  6383. },
  6384. {
  6385. "name": "Symfony Community",
  6386. "homepage": "https://symfony.com/contributors"
  6387. }
  6388. ],
  6389. "description": "Provides a structured process for converting a Request into a Response",
  6390. "homepage": "https://symfony.com",
  6391. "support": {
  6392. "source": "https://github.com/symfony/http-kernel/tree/v6.2.7"
  6393. },
  6394. "funding": [
  6395. {
  6396. "url": "https://symfony.com/sponsor",
  6397. "type": "custom"
  6398. },
  6399. {
  6400. "url": "https://github.com/fabpot",
  6401. "type": "github"
  6402. },
  6403. {
  6404. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6405. "type": "tidelift"
  6406. }
  6407. ],
  6408. "time": "2023-02-28T13:26:41+00:00"
  6409. },
  6410. {
  6411. "name": "symfony/intl",
  6412. "version": "v6.2.7",
  6413. "source": {
  6414. "type": "git",
  6415. "url": "https://github.com/symfony/intl.git",
  6416. "reference": "e7346ea6d88ae22e1b5d489b7a60135e72527cec"
  6417. },
  6418. "dist": {
  6419. "type": "zip",
  6420. "url": "https://api.github.com/repos/symfony/intl/zipball/e7346ea6d88ae22e1b5d489b7a60135e72527cec",
  6421. "reference": "e7346ea6d88ae22e1b5d489b7a60135e72527cec",
  6422. "shasum": ""
  6423. },
  6424. "require": {
  6425. "php": ">=8.1"
  6426. },
  6427. "require-dev": {
  6428. "symfony/filesystem": "^5.4|^6.0",
  6429. "symfony/finder": "^5.4|^6.0"
  6430. },
  6431. "type": "library",
  6432. "autoload": {
  6433. "psr-4": {
  6434. "Symfony\\Component\\Intl\\": ""
  6435. },
  6436. "exclude-from-classmap": [
  6437. "/Tests/"
  6438. ]
  6439. },
  6440. "notification-url": "https://packagist.org/downloads/",
  6441. "license": [
  6442. "MIT"
  6443. ],
  6444. "authors": [
  6445. {
  6446. "name": "Bernhard Schussek",
  6447. "email": "bschussek@gmail.com"
  6448. },
  6449. {
  6450. "name": "Eriksen Costa",
  6451. "email": "eriksen.costa@infranology.com.br"
  6452. },
  6453. {
  6454. "name": "Igor Wiedler",
  6455. "email": "igor@wiedler.ch"
  6456. },
  6457. {
  6458. "name": "Symfony Community",
  6459. "homepage": "https://symfony.com/contributors"
  6460. }
  6461. ],
  6462. "description": "Provides a PHP replacement layer for the C intl extension that includes additional data from the ICU library",
  6463. "homepage": "https://symfony.com",
  6464. "keywords": [
  6465. "i18n",
  6466. "icu",
  6467. "internationalization",
  6468. "intl",
  6469. "l10n",
  6470. "localization"
  6471. ],
  6472. "support": {
  6473. "source": "https://github.com/symfony/intl/tree/v6.2.7"
  6474. },
  6475. "funding": [
  6476. {
  6477. "url": "https://symfony.com/sponsor",
  6478. "type": "custom"
  6479. },
  6480. {
  6481. "url": "https://github.com/fabpot",
  6482. "type": "github"
  6483. },
  6484. {
  6485. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6486. "type": "tidelift"
  6487. }
  6488. ],
  6489. "time": "2023-02-21T10:54:55+00:00"
  6490. },
  6491. {
  6492. "name": "symfony/mailer",
  6493. "version": "v6.2.7",
  6494. "source": {
  6495. "type": "git",
  6496. "url": "https://github.com/symfony/mailer.git",
  6497. "reference": "e4f84c633b72ec70efc50b8016871c3bc43e691e"
  6498. },
  6499. "dist": {
  6500. "type": "zip",
  6501. "url": "https://api.github.com/repos/symfony/mailer/zipball/e4f84c633b72ec70efc50b8016871c3bc43e691e",
  6502. "reference": "e4f84c633b72ec70efc50b8016871c3bc43e691e",
  6503. "shasum": ""
  6504. },
  6505. "require": {
  6506. "egulias/email-validator": "^2.1.10|^3|^4",
  6507. "php": ">=8.1",
  6508. "psr/event-dispatcher": "^1",
  6509. "psr/log": "^1|^2|^3",
  6510. "symfony/event-dispatcher": "^5.4|^6.0",
  6511. "symfony/mime": "^6.2",
  6512. "symfony/service-contracts": "^1.1|^2|^3"
  6513. },
  6514. "conflict": {
  6515. "symfony/http-kernel": "<5.4",
  6516. "symfony/messenger": "<6.2",
  6517. "symfony/mime": "<6.2",
  6518. "symfony/twig-bridge": "<6.2.1"
  6519. },
  6520. "require-dev": {
  6521. "symfony/console": "^5.4|^6.0",
  6522. "symfony/http-client": "^5.4|^6.0",
  6523. "symfony/messenger": "^6.2",
  6524. "symfony/twig-bridge": "^6.2"
  6525. },
  6526. "type": "library",
  6527. "autoload": {
  6528. "psr-4": {
  6529. "Symfony\\Component\\Mailer\\": ""
  6530. },
  6531. "exclude-from-classmap": [
  6532. "/Tests/"
  6533. ]
  6534. },
  6535. "notification-url": "https://packagist.org/downloads/",
  6536. "license": [
  6537. "MIT"
  6538. ],
  6539. "authors": [
  6540. {
  6541. "name": "Fabien Potencier",
  6542. "email": "fabien@symfony.com"
  6543. },
  6544. {
  6545. "name": "Symfony Community",
  6546. "homepage": "https://symfony.com/contributors"
  6547. }
  6548. ],
  6549. "description": "Helps sending emails",
  6550. "homepage": "https://symfony.com",
  6551. "support": {
  6552. "source": "https://github.com/symfony/mailer/tree/v6.2.7"
  6553. },
  6554. "funding": [
  6555. {
  6556. "url": "https://symfony.com/sponsor",
  6557. "type": "custom"
  6558. },
  6559. {
  6560. "url": "https://github.com/fabpot",
  6561. "type": "github"
  6562. },
  6563. {
  6564. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6565. "type": "tidelift"
  6566. }
  6567. ],
  6568. "time": "2023-02-21T10:35:38+00:00"
  6569. },
  6570. {
  6571. "name": "symfony/mailgun-mailer",
  6572. "version": "v6.2.7",
  6573. "source": {
  6574. "type": "git",
  6575. "url": "https://github.com/symfony/mailgun-mailer.git",
  6576. "reference": "9e27b8ec2f6ee7575c6229a61be1578a5a4b21ee"
  6577. },
  6578. "dist": {
  6579. "type": "zip",
  6580. "url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/9e27b8ec2f6ee7575c6229a61be1578a5a4b21ee",
  6581. "reference": "9e27b8ec2f6ee7575c6229a61be1578a5a4b21ee",
  6582. "shasum": ""
  6583. },
  6584. "require": {
  6585. "php": ">=8.1",
  6586. "symfony/mailer": "^5.4.21|^6.2.7"
  6587. },
  6588. "require-dev": {
  6589. "symfony/http-client": "^5.4|^6.0"
  6590. },
  6591. "type": "symfony-mailer-bridge",
  6592. "autoload": {
  6593. "psr-4": {
  6594. "Symfony\\Component\\Mailer\\Bridge\\Mailgun\\": ""
  6595. },
  6596. "exclude-from-classmap": [
  6597. "/Tests/"
  6598. ]
  6599. },
  6600. "notification-url": "https://packagist.org/downloads/",
  6601. "license": [
  6602. "MIT"
  6603. ],
  6604. "authors": [
  6605. {
  6606. "name": "Fabien Potencier",
  6607. "email": "fabien@symfony.com"
  6608. },
  6609. {
  6610. "name": "Symfony Community",
  6611. "homepage": "https://symfony.com/contributors"
  6612. }
  6613. ],
  6614. "description": "Symfony Mailgun Mailer Bridge",
  6615. "homepage": "https://symfony.com",
  6616. "support": {
  6617. "source": "https://github.com/symfony/mailgun-mailer/tree/v6.2.7"
  6618. },
  6619. "funding": [
  6620. {
  6621. "url": "https://symfony.com/sponsor",
  6622. "type": "custom"
  6623. },
  6624. {
  6625. "url": "https://github.com/fabpot",
  6626. "type": "github"
  6627. },
  6628. {
  6629. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6630. "type": "tidelift"
  6631. }
  6632. ],
  6633. "time": "2023-02-21T10:35:38+00:00"
  6634. },
  6635. {
  6636. "name": "symfony/mime",
  6637. "version": "v6.2.7",
  6638. "source": {
  6639. "type": "git",
  6640. "url": "https://github.com/symfony/mime.git",
  6641. "reference": "62e341f80699badb0ad70b31149c8df89a2d778e"
  6642. },
  6643. "dist": {
  6644. "type": "zip",
  6645. "url": "https://api.github.com/repos/symfony/mime/zipball/62e341f80699badb0ad70b31149c8df89a2d778e",
  6646. "reference": "62e341f80699badb0ad70b31149c8df89a2d778e",
  6647. "shasum": ""
  6648. },
  6649. "require": {
  6650. "php": ">=8.1",
  6651. "symfony/polyfill-intl-idn": "^1.10",
  6652. "symfony/polyfill-mbstring": "^1.0"
  6653. },
  6654. "conflict": {
  6655. "egulias/email-validator": "~3.0.0",
  6656. "phpdocumentor/reflection-docblock": "<3.2.2",
  6657. "phpdocumentor/type-resolver": "<1.4.0",
  6658. "symfony/mailer": "<5.4",
  6659. "symfony/serializer": "<6.2"
  6660. },
  6661. "require-dev": {
  6662. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6663. "league/html-to-markdown": "^5.0",
  6664. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6665. "symfony/dependency-injection": "^5.4|^6.0",
  6666. "symfony/property-access": "^5.4|^6.0",
  6667. "symfony/property-info": "^5.4|^6.0",
  6668. "symfony/serializer": "^6.2"
  6669. },
  6670. "type": "library",
  6671. "autoload": {
  6672. "psr-4": {
  6673. "Symfony\\Component\\Mime\\": ""
  6674. },
  6675. "exclude-from-classmap": [
  6676. "/Tests/"
  6677. ]
  6678. },
  6679. "notification-url": "https://packagist.org/downloads/",
  6680. "license": [
  6681. "MIT"
  6682. ],
  6683. "authors": [
  6684. {
  6685. "name": "Fabien Potencier",
  6686. "email": "fabien@symfony.com"
  6687. },
  6688. {
  6689. "name": "Symfony Community",
  6690. "homepage": "https://symfony.com/contributors"
  6691. }
  6692. ],
  6693. "description": "Allows manipulating MIME messages",
  6694. "homepage": "https://symfony.com",
  6695. "keywords": [
  6696. "mime",
  6697. "mime-type"
  6698. ],
  6699. "support": {
  6700. "source": "https://github.com/symfony/mime/tree/v6.2.7"
  6701. },
  6702. "funding": [
  6703. {
  6704. "url": "https://symfony.com/sponsor",
  6705. "type": "custom"
  6706. },
  6707. {
  6708. "url": "https://github.com/fabpot",
  6709. "type": "github"
  6710. },
  6711. {
  6712. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6713. "type": "tidelift"
  6714. }
  6715. ],
  6716. "time": "2023-02-24T10:42:00+00:00"
  6717. },
  6718. {
  6719. "name": "symfony/polyfill-ctype",
  6720. "version": "v1.27.0",
  6721. "source": {
  6722. "type": "git",
  6723. "url": "https://github.com/symfony/polyfill-ctype.git",
  6724. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  6725. },
  6726. "dist": {
  6727. "type": "zip",
  6728. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  6729. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  6730. "shasum": ""
  6731. },
  6732. "require": {
  6733. "php": ">=7.1"
  6734. },
  6735. "provide": {
  6736. "ext-ctype": "*"
  6737. },
  6738. "suggest": {
  6739. "ext-ctype": "For best performance"
  6740. },
  6741. "type": "library",
  6742. "extra": {
  6743. "branch-alias": {
  6744. "dev-main": "1.27-dev"
  6745. },
  6746. "thanks": {
  6747. "name": "symfony/polyfill",
  6748. "url": "https://github.com/symfony/polyfill"
  6749. }
  6750. },
  6751. "autoload": {
  6752. "files": [
  6753. "bootstrap.php"
  6754. ],
  6755. "psr-4": {
  6756. "Symfony\\Polyfill\\Ctype\\": ""
  6757. }
  6758. },
  6759. "notification-url": "https://packagist.org/downloads/",
  6760. "license": [
  6761. "MIT"
  6762. ],
  6763. "authors": [
  6764. {
  6765. "name": "Gert de Pagter",
  6766. "email": "BackEndTea@gmail.com"
  6767. },
  6768. {
  6769. "name": "Symfony Community",
  6770. "homepage": "https://symfony.com/contributors"
  6771. }
  6772. ],
  6773. "description": "Symfony polyfill for ctype functions",
  6774. "homepage": "https://symfony.com",
  6775. "keywords": [
  6776. "compatibility",
  6777. "ctype",
  6778. "polyfill",
  6779. "portable"
  6780. ],
  6781. "support": {
  6782. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  6783. },
  6784. "funding": [
  6785. {
  6786. "url": "https://symfony.com/sponsor",
  6787. "type": "custom"
  6788. },
  6789. {
  6790. "url": "https://github.com/fabpot",
  6791. "type": "github"
  6792. },
  6793. {
  6794. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6795. "type": "tidelift"
  6796. }
  6797. ],
  6798. "time": "2022-11-03T14:55:06+00:00"
  6799. },
  6800. {
  6801. "name": "symfony/polyfill-intl-grapheme",
  6802. "version": "v1.27.0",
  6803. "source": {
  6804. "type": "git",
  6805. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6806. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  6807. },
  6808. "dist": {
  6809. "type": "zip",
  6810. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  6811. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  6812. "shasum": ""
  6813. },
  6814. "require": {
  6815. "php": ">=7.1"
  6816. },
  6817. "suggest": {
  6818. "ext-intl": "For best performance"
  6819. },
  6820. "type": "library",
  6821. "extra": {
  6822. "branch-alias": {
  6823. "dev-main": "1.27-dev"
  6824. },
  6825. "thanks": {
  6826. "name": "symfony/polyfill",
  6827. "url": "https://github.com/symfony/polyfill"
  6828. }
  6829. },
  6830. "autoload": {
  6831. "files": [
  6832. "bootstrap.php"
  6833. ],
  6834. "psr-4": {
  6835. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6836. }
  6837. },
  6838. "notification-url": "https://packagist.org/downloads/",
  6839. "license": [
  6840. "MIT"
  6841. ],
  6842. "authors": [
  6843. {
  6844. "name": "Nicolas Grekas",
  6845. "email": "p@tchwork.com"
  6846. },
  6847. {
  6848. "name": "Symfony Community",
  6849. "homepage": "https://symfony.com/contributors"
  6850. }
  6851. ],
  6852. "description": "Symfony polyfill for intl's grapheme_* functions",
  6853. "homepage": "https://symfony.com",
  6854. "keywords": [
  6855. "compatibility",
  6856. "grapheme",
  6857. "intl",
  6858. "polyfill",
  6859. "portable",
  6860. "shim"
  6861. ],
  6862. "support": {
  6863. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  6864. },
  6865. "funding": [
  6866. {
  6867. "url": "https://symfony.com/sponsor",
  6868. "type": "custom"
  6869. },
  6870. {
  6871. "url": "https://github.com/fabpot",
  6872. "type": "github"
  6873. },
  6874. {
  6875. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6876. "type": "tidelift"
  6877. }
  6878. ],
  6879. "time": "2022-11-03T14:55:06+00:00"
  6880. },
  6881. {
  6882. "name": "symfony/polyfill-intl-idn",
  6883. "version": "v1.27.0",
  6884. "source": {
  6885. "type": "git",
  6886. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6887. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  6888. },
  6889. "dist": {
  6890. "type": "zip",
  6891. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  6892. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  6893. "shasum": ""
  6894. },
  6895. "require": {
  6896. "php": ">=7.1",
  6897. "symfony/polyfill-intl-normalizer": "^1.10",
  6898. "symfony/polyfill-php72": "^1.10"
  6899. },
  6900. "suggest": {
  6901. "ext-intl": "For best performance"
  6902. },
  6903. "type": "library",
  6904. "extra": {
  6905. "branch-alias": {
  6906. "dev-main": "1.27-dev"
  6907. },
  6908. "thanks": {
  6909. "name": "symfony/polyfill",
  6910. "url": "https://github.com/symfony/polyfill"
  6911. }
  6912. },
  6913. "autoload": {
  6914. "files": [
  6915. "bootstrap.php"
  6916. ],
  6917. "psr-4": {
  6918. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6919. }
  6920. },
  6921. "notification-url": "https://packagist.org/downloads/",
  6922. "license": [
  6923. "MIT"
  6924. ],
  6925. "authors": [
  6926. {
  6927. "name": "Laurent Bassin",
  6928. "email": "laurent@bassin.info"
  6929. },
  6930. {
  6931. "name": "Trevor Rowbotham",
  6932. "email": "trevor.rowbotham@pm.me"
  6933. },
  6934. {
  6935. "name": "Symfony Community",
  6936. "homepage": "https://symfony.com/contributors"
  6937. }
  6938. ],
  6939. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6940. "homepage": "https://symfony.com",
  6941. "keywords": [
  6942. "compatibility",
  6943. "idn",
  6944. "intl",
  6945. "polyfill",
  6946. "portable",
  6947. "shim"
  6948. ],
  6949. "support": {
  6950. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  6951. },
  6952. "funding": [
  6953. {
  6954. "url": "https://symfony.com/sponsor",
  6955. "type": "custom"
  6956. },
  6957. {
  6958. "url": "https://github.com/fabpot",
  6959. "type": "github"
  6960. },
  6961. {
  6962. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6963. "type": "tidelift"
  6964. }
  6965. ],
  6966. "time": "2022-11-03T14:55:06+00:00"
  6967. },
  6968. {
  6969. "name": "symfony/polyfill-intl-normalizer",
  6970. "version": "v1.27.0",
  6971. "source": {
  6972. "type": "git",
  6973. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6974. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  6975. },
  6976. "dist": {
  6977. "type": "zip",
  6978. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  6979. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  6980. "shasum": ""
  6981. },
  6982. "require": {
  6983. "php": ">=7.1"
  6984. },
  6985. "suggest": {
  6986. "ext-intl": "For best performance"
  6987. },
  6988. "type": "library",
  6989. "extra": {
  6990. "branch-alias": {
  6991. "dev-main": "1.27-dev"
  6992. },
  6993. "thanks": {
  6994. "name": "symfony/polyfill",
  6995. "url": "https://github.com/symfony/polyfill"
  6996. }
  6997. },
  6998. "autoload": {
  6999. "files": [
  7000. "bootstrap.php"
  7001. ],
  7002. "psr-4": {
  7003. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7004. },
  7005. "classmap": [
  7006. "Resources/stubs"
  7007. ]
  7008. },
  7009. "notification-url": "https://packagist.org/downloads/",
  7010. "license": [
  7011. "MIT"
  7012. ],
  7013. "authors": [
  7014. {
  7015. "name": "Nicolas Grekas",
  7016. "email": "p@tchwork.com"
  7017. },
  7018. {
  7019. "name": "Symfony Community",
  7020. "homepage": "https://symfony.com/contributors"
  7021. }
  7022. ],
  7023. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7024. "homepage": "https://symfony.com",
  7025. "keywords": [
  7026. "compatibility",
  7027. "intl",
  7028. "normalizer",
  7029. "polyfill",
  7030. "portable",
  7031. "shim"
  7032. ],
  7033. "support": {
  7034. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  7035. },
  7036. "funding": [
  7037. {
  7038. "url": "https://symfony.com/sponsor",
  7039. "type": "custom"
  7040. },
  7041. {
  7042. "url": "https://github.com/fabpot",
  7043. "type": "github"
  7044. },
  7045. {
  7046. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7047. "type": "tidelift"
  7048. }
  7049. ],
  7050. "time": "2022-11-03T14:55:06+00:00"
  7051. },
  7052. {
  7053. "name": "symfony/polyfill-mbstring",
  7054. "version": "v1.27.0",
  7055. "source": {
  7056. "type": "git",
  7057. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7058. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  7059. },
  7060. "dist": {
  7061. "type": "zip",
  7062. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  7063. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  7064. "shasum": ""
  7065. },
  7066. "require": {
  7067. "php": ">=7.1"
  7068. },
  7069. "provide": {
  7070. "ext-mbstring": "*"
  7071. },
  7072. "suggest": {
  7073. "ext-mbstring": "For best performance"
  7074. },
  7075. "type": "library",
  7076. "extra": {
  7077. "branch-alias": {
  7078. "dev-main": "1.27-dev"
  7079. },
  7080. "thanks": {
  7081. "name": "symfony/polyfill",
  7082. "url": "https://github.com/symfony/polyfill"
  7083. }
  7084. },
  7085. "autoload": {
  7086. "files": [
  7087. "bootstrap.php"
  7088. ],
  7089. "psr-4": {
  7090. "Symfony\\Polyfill\\Mbstring\\": ""
  7091. }
  7092. },
  7093. "notification-url": "https://packagist.org/downloads/",
  7094. "license": [
  7095. "MIT"
  7096. ],
  7097. "authors": [
  7098. {
  7099. "name": "Nicolas Grekas",
  7100. "email": "p@tchwork.com"
  7101. },
  7102. {
  7103. "name": "Symfony Community",
  7104. "homepage": "https://symfony.com/contributors"
  7105. }
  7106. ],
  7107. "description": "Symfony polyfill for the Mbstring extension",
  7108. "homepage": "https://symfony.com",
  7109. "keywords": [
  7110. "compatibility",
  7111. "mbstring",
  7112. "polyfill",
  7113. "portable",
  7114. "shim"
  7115. ],
  7116. "support": {
  7117. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  7118. },
  7119. "funding": [
  7120. {
  7121. "url": "https://symfony.com/sponsor",
  7122. "type": "custom"
  7123. },
  7124. {
  7125. "url": "https://github.com/fabpot",
  7126. "type": "github"
  7127. },
  7128. {
  7129. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7130. "type": "tidelift"
  7131. }
  7132. ],
  7133. "time": "2022-11-03T14:55:06+00:00"
  7134. },
  7135. {
  7136. "name": "symfony/polyfill-php72",
  7137. "version": "v1.27.0",
  7138. "source": {
  7139. "type": "git",
  7140. "url": "https://github.com/symfony/polyfill-php72.git",
  7141. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  7142. },
  7143. "dist": {
  7144. "type": "zip",
  7145. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  7146. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  7147. "shasum": ""
  7148. },
  7149. "require": {
  7150. "php": ">=7.1"
  7151. },
  7152. "type": "library",
  7153. "extra": {
  7154. "branch-alias": {
  7155. "dev-main": "1.27-dev"
  7156. },
  7157. "thanks": {
  7158. "name": "symfony/polyfill",
  7159. "url": "https://github.com/symfony/polyfill"
  7160. }
  7161. },
  7162. "autoload": {
  7163. "files": [
  7164. "bootstrap.php"
  7165. ],
  7166. "psr-4": {
  7167. "Symfony\\Polyfill\\Php72\\": ""
  7168. }
  7169. },
  7170. "notification-url": "https://packagist.org/downloads/",
  7171. "license": [
  7172. "MIT"
  7173. ],
  7174. "authors": [
  7175. {
  7176. "name": "Nicolas Grekas",
  7177. "email": "p@tchwork.com"
  7178. },
  7179. {
  7180. "name": "Symfony Community",
  7181. "homepage": "https://symfony.com/contributors"
  7182. }
  7183. ],
  7184. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7185. "homepage": "https://symfony.com",
  7186. "keywords": [
  7187. "compatibility",
  7188. "polyfill",
  7189. "portable",
  7190. "shim"
  7191. ],
  7192. "support": {
  7193. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  7194. },
  7195. "funding": [
  7196. {
  7197. "url": "https://symfony.com/sponsor",
  7198. "type": "custom"
  7199. },
  7200. {
  7201. "url": "https://github.com/fabpot",
  7202. "type": "github"
  7203. },
  7204. {
  7205. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7206. "type": "tidelift"
  7207. }
  7208. ],
  7209. "time": "2022-11-03T14:55:06+00:00"
  7210. },
  7211. {
  7212. "name": "symfony/polyfill-php80",
  7213. "version": "v1.27.0",
  7214. "source": {
  7215. "type": "git",
  7216. "url": "https://github.com/symfony/polyfill-php80.git",
  7217. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  7218. },
  7219. "dist": {
  7220. "type": "zip",
  7221. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  7222. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  7223. "shasum": ""
  7224. },
  7225. "require": {
  7226. "php": ">=7.1"
  7227. },
  7228. "type": "library",
  7229. "extra": {
  7230. "branch-alias": {
  7231. "dev-main": "1.27-dev"
  7232. },
  7233. "thanks": {
  7234. "name": "symfony/polyfill",
  7235. "url": "https://github.com/symfony/polyfill"
  7236. }
  7237. },
  7238. "autoload": {
  7239. "files": [
  7240. "bootstrap.php"
  7241. ],
  7242. "psr-4": {
  7243. "Symfony\\Polyfill\\Php80\\": ""
  7244. },
  7245. "classmap": [
  7246. "Resources/stubs"
  7247. ]
  7248. },
  7249. "notification-url": "https://packagist.org/downloads/",
  7250. "license": [
  7251. "MIT"
  7252. ],
  7253. "authors": [
  7254. {
  7255. "name": "Ion Bazan",
  7256. "email": "ion.bazan@gmail.com"
  7257. },
  7258. {
  7259. "name": "Nicolas Grekas",
  7260. "email": "p@tchwork.com"
  7261. },
  7262. {
  7263. "name": "Symfony Community",
  7264. "homepage": "https://symfony.com/contributors"
  7265. }
  7266. ],
  7267. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7268. "homepage": "https://symfony.com",
  7269. "keywords": [
  7270. "compatibility",
  7271. "polyfill",
  7272. "portable",
  7273. "shim"
  7274. ],
  7275. "support": {
  7276. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  7277. },
  7278. "funding": [
  7279. {
  7280. "url": "https://symfony.com/sponsor",
  7281. "type": "custom"
  7282. },
  7283. {
  7284. "url": "https://github.com/fabpot",
  7285. "type": "github"
  7286. },
  7287. {
  7288. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7289. "type": "tidelift"
  7290. }
  7291. ],
  7292. "time": "2022-11-03T14:55:06+00:00"
  7293. },
  7294. {
  7295. "name": "symfony/polyfill-uuid",
  7296. "version": "v1.27.0",
  7297. "source": {
  7298. "type": "git",
  7299. "url": "https://github.com/symfony/polyfill-uuid.git",
  7300. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166"
  7301. },
  7302. "dist": {
  7303. "type": "zip",
  7304. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166",
  7305. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166",
  7306. "shasum": ""
  7307. },
  7308. "require": {
  7309. "php": ">=7.1"
  7310. },
  7311. "provide": {
  7312. "ext-uuid": "*"
  7313. },
  7314. "suggest": {
  7315. "ext-uuid": "For best performance"
  7316. },
  7317. "type": "library",
  7318. "extra": {
  7319. "branch-alias": {
  7320. "dev-main": "1.27-dev"
  7321. },
  7322. "thanks": {
  7323. "name": "symfony/polyfill",
  7324. "url": "https://github.com/symfony/polyfill"
  7325. }
  7326. },
  7327. "autoload": {
  7328. "files": [
  7329. "bootstrap.php"
  7330. ],
  7331. "psr-4": {
  7332. "Symfony\\Polyfill\\Uuid\\": ""
  7333. }
  7334. },
  7335. "notification-url": "https://packagist.org/downloads/",
  7336. "license": [
  7337. "MIT"
  7338. ],
  7339. "authors": [
  7340. {
  7341. "name": "Grégoire Pineau",
  7342. "email": "lyrixx@lyrixx.info"
  7343. },
  7344. {
  7345. "name": "Symfony Community",
  7346. "homepage": "https://symfony.com/contributors"
  7347. }
  7348. ],
  7349. "description": "Symfony polyfill for uuid functions",
  7350. "homepage": "https://symfony.com",
  7351. "keywords": [
  7352. "compatibility",
  7353. "polyfill",
  7354. "portable",
  7355. "uuid"
  7356. ],
  7357. "support": {
  7358. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0"
  7359. },
  7360. "funding": [
  7361. {
  7362. "url": "https://symfony.com/sponsor",
  7363. "type": "custom"
  7364. },
  7365. {
  7366. "url": "https://github.com/fabpot",
  7367. "type": "github"
  7368. },
  7369. {
  7370. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7371. "type": "tidelift"
  7372. }
  7373. ],
  7374. "time": "2022-11-03T14:55:06+00:00"
  7375. },
  7376. {
  7377. "name": "symfony/process",
  7378. "version": "v6.2.7",
  7379. "source": {
  7380. "type": "git",
  7381. "url": "https://github.com/symfony/process.git",
  7382. "reference": "680e8a2ea6b3f87aecc07a6a65a203ae573d1902"
  7383. },
  7384. "dist": {
  7385. "type": "zip",
  7386. "url": "https://api.github.com/repos/symfony/process/zipball/680e8a2ea6b3f87aecc07a6a65a203ae573d1902",
  7387. "reference": "680e8a2ea6b3f87aecc07a6a65a203ae573d1902",
  7388. "shasum": ""
  7389. },
  7390. "require": {
  7391. "php": ">=8.1"
  7392. },
  7393. "type": "library",
  7394. "autoload": {
  7395. "psr-4": {
  7396. "Symfony\\Component\\Process\\": ""
  7397. },
  7398. "exclude-from-classmap": [
  7399. "/Tests/"
  7400. ]
  7401. },
  7402. "notification-url": "https://packagist.org/downloads/",
  7403. "license": [
  7404. "MIT"
  7405. ],
  7406. "authors": [
  7407. {
  7408. "name": "Fabien Potencier",
  7409. "email": "fabien@symfony.com"
  7410. },
  7411. {
  7412. "name": "Symfony Community",
  7413. "homepage": "https://symfony.com/contributors"
  7414. }
  7415. ],
  7416. "description": "Executes commands in sub-processes",
  7417. "homepage": "https://symfony.com",
  7418. "support": {
  7419. "source": "https://github.com/symfony/process/tree/v6.2.7"
  7420. },
  7421. "funding": [
  7422. {
  7423. "url": "https://symfony.com/sponsor",
  7424. "type": "custom"
  7425. },
  7426. {
  7427. "url": "https://github.com/fabpot",
  7428. "type": "github"
  7429. },
  7430. {
  7431. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7432. "type": "tidelift"
  7433. }
  7434. ],
  7435. "time": "2023-02-24T10:42:00+00:00"
  7436. },
  7437. {
  7438. "name": "symfony/routing",
  7439. "version": "v6.2.7",
  7440. "source": {
  7441. "type": "git",
  7442. "url": "https://github.com/symfony/routing.git",
  7443. "reference": "fa643fa4c56de161f8bc8c0492a76a60140b50e4"
  7444. },
  7445. "dist": {
  7446. "type": "zip",
  7447. "url": "https://api.github.com/repos/symfony/routing/zipball/fa643fa4c56de161f8bc8c0492a76a60140b50e4",
  7448. "reference": "fa643fa4c56de161f8bc8c0492a76a60140b50e4",
  7449. "shasum": ""
  7450. },
  7451. "require": {
  7452. "php": ">=8.1"
  7453. },
  7454. "conflict": {
  7455. "doctrine/annotations": "<1.12",
  7456. "symfony/config": "<6.2",
  7457. "symfony/dependency-injection": "<5.4",
  7458. "symfony/yaml": "<5.4"
  7459. },
  7460. "require-dev": {
  7461. "doctrine/annotations": "^1.12|^2",
  7462. "psr/log": "^1|^2|^3",
  7463. "symfony/config": "^6.2",
  7464. "symfony/dependency-injection": "^5.4|^6.0",
  7465. "symfony/expression-language": "^5.4|^6.0",
  7466. "symfony/http-foundation": "^5.4|^6.0",
  7467. "symfony/yaml": "^5.4|^6.0"
  7468. },
  7469. "suggest": {
  7470. "symfony/config": "For using the all-in-one router or any loader",
  7471. "symfony/expression-language": "For using expression matching",
  7472. "symfony/http-foundation": "For using a Symfony Request object",
  7473. "symfony/yaml": "For using the YAML loader"
  7474. },
  7475. "type": "library",
  7476. "autoload": {
  7477. "psr-4": {
  7478. "Symfony\\Component\\Routing\\": ""
  7479. },
  7480. "exclude-from-classmap": [
  7481. "/Tests/"
  7482. ]
  7483. },
  7484. "notification-url": "https://packagist.org/downloads/",
  7485. "license": [
  7486. "MIT"
  7487. ],
  7488. "authors": [
  7489. {
  7490. "name": "Fabien Potencier",
  7491. "email": "fabien@symfony.com"
  7492. },
  7493. {
  7494. "name": "Symfony Community",
  7495. "homepage": "https://symfony.com/contributors"
  7496. }
  7497. ],
  7498. "description": "Maps an HTTP request to a set of configuration variables",
  7499. "homepage": "https://symfony.com",
  7500. "keywords": [
  7501. "router",
  7502. "routing",
  7503. "uri",
  7504. "url"
  7505. ],
  7506. "support": {
  7507. "source": "https://github.com/symfony/routing/tree/v6.2.7"
  7508. },
  7509. "funding": [
  7510. {
  7511. "url": "https://symfony.com/sponsor",
  7512. "type": "custom"
  7513. },
  7514. {
  7515. "url": "https://github.com/fabpot",
  7516. "type": "github"
  7517. },
  7518. {
  7519. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7520. "type": "tidelift"
  7521. }
  7522. ],
  7523. "time": "2023-02-14T08:53:37+00:00"
  7524. },
  7525. {
  7526. "name": "symfony/service-contracts",
  7527. "version": "v3.2.1",
  7528. "source": {
  7529. "type": "git",
  7530. "url": "https://github.com/symfony/service-contracts.git",
  7531. "reference": "a8c9cedf55f314f3a186041d19537303766df09a"
  7532. },
  7533. "dist": {
  7534. "type": "zip",
  7535. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a8c9cedf55f314f3a186041d19537303766df09a",
  7536. "reference": "a8c9cedf55f314f3a186041d19537303766df09a",
  7537. "shasum": ""
  7538. },
  7539. "require": {
  7540. "php": ">=8.1",
  7541. "psr/container": "^2.0"
  7542. },
  7543. "conflict": {
  7544. "ext-psr": "<1.1|>=2"
  7545. },
  7546. "suggest": {
  7547. "symfony/service-implementation": ""
  7548. },
  7549. "type": "library",
  7550. "extra": {
  7551. "branch-alias": {
  7552. "dev-main": "3.3-dev"
  7553. },
  7554. "thanks": {
  7555. "name": "symfony/contracts",
  7556. "url": "https://github.com/symfony/contracts"
  7557. }
  7558. },
  7559. "autoload": {
  7560. "psr-4": {
  7561. "Symfony\\Contracts\\Service\\": ""
  7562. },
  7563. "exclude-from-classmap": [
  7564. "/Test/"
  7565. ]
  7566. },
  7567. "notification-url": "https://packagist.org/downloads/",
  7568. "license": [
  7569. "MIT"
  7570. ],
  7571. "authors": [
  7572. {
  7573. "name": "Nicolas Grekas",
  7574. "email": "p@tchwork.com"
  7575. },
  7576. {
  7577. "name": "Symfony Community",
  7578. "homepage": "https://symfony.com/contributors"
  7579. }
  7580. ],
  7581. "description": "Generic abstractions related to writing services",
  7582. "homepage": "https://symfony.com",
  7583. "keywords": [
  7584. "abstractions",
  7585. "contracts",
  7586. "decoupling",
  7587. "interfaces",
  7588. "interoperability",
  7589. "standards"
  7590. ],
  7591. "support": {
  7592. "source": "https://github.com/symfony/service-contracts/tree/v3.2.1"
  7593. },
  7594. "funding": [
  7595. {
  7596. "url": "https://symfony.com/sponsor",
  7597. "type": "custom"
  7598. },
  7599. {
  7600. "url": "https://github.com/fabpot",
  7601. "type": "github"
  7602. },
  7603. {
  7604. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7605. "type": "tidelift"
  7606. }
  7607. ],
  7608. "time": "2023-03-01T10:32:47+00:00"
  7609. },
  7610. {
  7611. "name": "symfony/string",
  7612. "version": "v6.2.7",
  7613. "source": {
  7614. "type": "git",
  7615. "url": "https://github.com/symfony/string.git",
  7616. "reference": "67b8c1eec78296b85dc1c7d9743830160218993d"
  7617. },
  7618. "dist": {
  7619. "type": "zip",
  7620. "url": "https://api.github.com/repos/symfony/string/zipball/67b8c1eec78296b85dc1c7d9743830160218993d",
  7621. "reference": "67b8c1eec78296b85dc1c7d9743830160218993d",
  7622. "shasum": ""
  7623. },
  7624. "require": {
  7625. "php": ">=8.1",
  7626. "symfony/polyfill-ctype": "~1.8",
  7627. "symfony/polyfill-intl-grapheme": "~1.0",
  7628. "symfony/polyfill-intl-normalizer": "~1.0",
  7629. "symfony/polyfill-mbstring": "~1.0"
  7630. },
  7631. "conflict": {
  7632. "symfony/translation-contracts": "<2.0"
  7633. },
  7634. "require-dev": {
  7635. "symfony/error-handler": "^5.4|^6.0",
  7636. "symfony/http-client": "^5.4|^6.0",
  7637. "symfony/intl": "^6.2",
  7638. "symfony/translation-contracts": "^2.0|^3.0",
  7639. "symfony/var-exporter": "^5.4|^6.0"
  7640. },
  7641. "type": "library",
  7642. "autoload": {
  7643. "files": [
  7644. "Resources/functions.php"
  7645. ],
  7646. "psr-4": {
  7647. "Symfony\\Component\\String\\": ""
  7648. },
  7649. "exclude-from-classmap": [
  7650. "/Tests/"
  7651. ]
  7652. },
  7653. "notification-url": "https://packagist.org/downloads/",
  7654. "license": [
  7655. "MIT"
  7656. ],
  7657. "authors": [
  7658. {
  7659. "name": "Nicolas Grekas",
  7660. "email": "p@tchwork.com"
  7661. },
  7662. {
  7663. "name": "Symfony Community",
  7664. "homepage": "https://symfony.com/contributors"
  7665. }
  7666. ],
  7667. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7668. "homepage": "https://symfony.com",
  7669. "keywords": [
  7670. "grapheme",
  7671. "i18n",
  7672. "string",
  7673. "unicode",
  7674. "utf-8",
  7675. "utf8"
  7676. ],
  7677. "support": {
  7678. "source": "https://github.com/symfony/string/tree/v6.2.7"
  7679. },
  7680. "funding": [
  7681. {
  7682. "url": "https://symfony.com/sponsor",
  7683. "type": "custom"
  7684. },
  7685. {
  7686. "url": "https://github.com/fabpot",
  7687. "type": "github"
  7688. },
  7689. {
  7690. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7691. "type": "tidelift"
  7692. }
  7693. ],
  7694. "time": "2023-02-24T10:42:00+00:00"
  7695. },
  7696. {
  7697. "name": "symfony/translation",
  7698. "version": "v6.2.7",
  7699. "source": {
  7700. "type": "git",
  7701. "url": "https://github.com/symfony/translation.git",
  7702. "reference": "90db1c6138c90527917671cd9ffa9e8b359e3a73"
  7703. },
  7704. "dist": {
  7705. "type": "zip",
  7706. "url": "https://api.github.com/repos/symfony/translation/zipball/90db1c6138c90527917671cd9ffa9e8b359e3a73",
  7707. "reference": "90db1c6138c90527917671cd9ffa9e8b359e3a73",
  7708. "shasum": ""
  7709. },
  7710. "require": {
  7711. "php": ">=8.1",
  7712. "symfony/polyfill-mbstring": "~1.0",
  7713. "symfony/translation-contracts": "^2.3|^3.0"
  7714. },
  7715. "conflict": {
  7716. "symfony/config": "<5.4",
  7717. "symfony/console": "<5.4",
  7718. "symfony/dependency-injection": "<5.4",
  7719. "symfony/http-kernel": "<5.4",
  7720. "symfony/twig-bundle": "<5.4",
  7721. "symfony/yaml": "<5.4"
  7722. },
  7723. "provide": {
  7724. "symfony/translation-implementation": "2.3|3.0"
  7725. },
  7726. "require-dev": {
  7727. "nikic/php-parser": "^4.13",
  7728. "psr/log": "^1|^2|^3",
  7729. "symfony/config": "^5.4|^6.0",
  7730. "symfony/console": "^5.4|^6.0",
  7731. "symfony/dependency-injection": "^5.4|^6.0",
  7732. "symfony/finder": "^5.4|^6.0",
  7733. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7734. "symfony/http-kernel": "^5.4|^6.0",
  7735. "symfony/intl": "^5.4|^6.0",
  7736. "symfony/polyfill-intl-icu": "^1.21",
  7737. "symfony/routing": "^5.4|^6.0",
  7738. "symfony/service-contracts": "^1.1.2|^2|^3",
  7739. "symfony/yaml": "^5.4|^6.0"
  7740. },
  7741. "suggest": {
  7742. "nikic/php-parser": "To use PhpAstExtractor",
  7743. "psr/log-implementation": "To use logging capability in translator",
  7744. "symfony/config": "",
  7745. "symfony/yaml": ""
  7746. },
  7747. "type": "library",
  7748. "autoload": {
  7749. "files": [
  7750. "Resources/functions.php"
  7751. ],
  7752. "psr-4": {
  7753. "Symfony\\Component\\Translation\\": ""
  7754. },
  7755. "exclude-from-classmap": [
  7756. "/Tests/"
  7757. ]
  7758. },
  7759. "notification-url": "https://packagist.org/downloads/",
  7760. "license": [
  7761. "MIT"
  7762. ],
  7763. "authors": [
  7764. {
  7765. "name": "Fabien Potencier",
  7766. "email": "fabien@symfony.com"
  7767. },
  7768. {
  7769. "name": "Symfony Community",
  7770. "homepage": "https://symfony.com/contributors"
  7771. }
  7772. ],
  7773. "description": "Provides tools to internationalize your application",
  7774. "homepage": "https://symfony.com",
  7775. "support": {
  7776. "source": "https://github.com/symfony/translation/tree/v6.2.7"
  7777. },
  7778. "funding": [
  7779. {
  7780. "url": "https://symfony.com/sponsor",
  7781. "type": "custom"
  7782. },
  7783. {
  7784. "url": "https://github.com/fabpot",
  7785. "type": "github"
  7786. },
  7787. {
  7788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7789. "type": "tidelift"
  7790. }
  7791. ],
  7792. "time": "2023-02-24T10:42:00+00:00"
  7793. },
  7794. {
  7795. "name": "symfony/translation-contracts",
  7796. "version": "v3.2.1",
  7797. "source": {
  7798. "type": "git",
  7799. "url": "https://github.com/symfony/translation-contracts.git",
  7800. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8"
  7801. },
  7802. "dist": {
  7803. "type": "zip",
  7804. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dfec258b9dd17a6b24420d464c43bffe347441c8",
  7805. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8",
  7806. "shasum": ""
  7807. },
  7808. "require": {
  7809. "php": ">=8.1"
  7810. },
  7811. "suggest": {
  7812. "symfony/translation-implementation": ""
  7813. },
  7814. "type": "library",
  7815. "extra": {
  7816. "branch-alias": {
  7817. "dev-main": "3.3-dev"
  7818. },
  7819. "thanks": {
  7820. "name": "symfony/contracts",
  7821. "url": "https://github.com/symfony/contracts"
  7822. }
  7823. },
  7824. "autoload": {
  7825. "psr-4": {
  7826. "Symfony\\Contracts\\Translation\\": ""
  7827. },
  7828. "exclude-from-classmap": [
  7829. "/Test/"
  7830. ]
  7831. },
  7832. "notification-url": "https://packagist.org/downloads/",
  7833. "license": [
  7834. "MIT"
  7835. ],
  7836. "authors": [
  7837. {
  7838. "name": "Nicolas Grekas",
  7839. "email": "p@tchwork.com"
  7840. },
  7841. {
  7842. "name": "Symfony Community",
  7843. "homepage": "https://symfony.com/contributors"
  7844. }
  7845. ],
  7846. "description": "Generic abstractions related to translation",
  7847. "homepage": "https://symfony.com",
  7848. "keywords": [
  7849. "abstractions",
  7850. "contracts",
  7851. "decoupling",
  7852. "interfaces",
  7853. "interoperability",
  7854. "standards"
  7855. ],
  7856. "support": {
  7857. "source": "https://github.com/symfony/translation-contracts/tree/v3.2.1"
  7858. },
  7859. "funding": [
  7860. {
  7861. "url": "https://symfony.com/sponsor",
  7862. "type": "custom"
  7863. },
  7864. {
  7865. "url": "https://github.com/fabpot",
  7866. "type": "github"
  7867. },
  7868. {
  7869. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7870. "type": "tidelift"
  7871. }
  7872. ],
  7873. "time": "2023-03-01T10:32:47+00:00"
  7874. },
  7875. {
  7876. "name": "symfony/uid",
  7877. "version": "v6.2.7",
  7878. "source": {
  7879. "type": "git",
  7880. "url": "https://github.com/symfony/uid.git",
  7881. "reference": "d30c72a63897cfa043e1de4d4dd2ffa9ecefcdc0"
  7882. },
  7883. "dist": {
  7884. "type": "zip",
  7885. "url": "https://api.github.com/repos/symfony/uid/zipball/d30c72a63897cfa043e1de4d4dd2ffa9ecefcdc0",
  7886. "reference": "d30c72a63897cfa043e1de4d4dd2ffa9ecefcdc0",
  7887. "shasum": ""
  7888. },
  7889. "require": {
  7890. "php": ">=8.1",
  7891. "symfony/polyfill-uuid": "^1.15"
  7892. },
  7893. "require-dev": {
  7894. "symfony/console": "^5.4|^6.0"
  7895. },
  7896. "type": "library",
  7897. "autoload": {
  7898. "psr-4": {
  7899. "Symfony\\Component\\Uid\\": ""
  7900. },
  7901. "exclude-from-classmap": [
  7902. "/Tests/"
  7903. ]
  7904. },
  7905. "notification-url": "https://packagist.org/downloads/",
  7906. "license": [
  7907. "MIT"
  7908. ],
  7909. "authors": [
  7910. {
  7911. "name": "Grégoire Pineau",
  7912. "email": "lyrixx@lyrixx.info"
  7913. },
  7914. {
  7915. "name": "Nicolas Grekas",
  7916. "email": "p@tchwork.com"
  7917. },
  7918. {
  7919. "name": "Symfony Community",
  7920. "homepage": "https://symfony.com/contributors"
  7921. }
  7922. ],
  7923. "description": "Provides an object-oriented API to generate and represent UIDs",
  7924. "homepage": "https://symfony.com",
  7925. "keywords": [
  7926. "UID",
  7927. "ulid",
  7928. "uuid"
  7929. ],
  7930. "support": {
  7931. "source": "https://github.com/symfony/uid/tree/v6.2.7"
  7932. },
  7933. "funding": [
  7934. {
  7935. "url": "https://symfony.com/sponsor",
  7936. "type": "custom"
  7937. },
  7938. {
  7939. "url": "https://github.com/fabpot",
  7940. "type": "github"
  7941. },
  7942. {
  7943. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7944. "type": "tidelift"
  7945. }
  7946. ],
  7947. "time": "2023-02-14T08:44:56+00:00"
  7948. },
  7949. {
  7950. "name": "symfony/var-dumper",
  7951. "version": "v6.2.7",
  7952. "source": {
  7953. "type": "git",
  7954. "url": "https://github.com/symfony/var-dumper.git",
  7955. "reference": "cf8d4ca1ddc1e3cc242375deb8fc23e54f5e2a1e"
  7956. },
  7957. "dist": {
  7958. "type": "zip",
  7959. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/cf8d4ca1ddc1e3cc242375deb8fc23e54f5e2a1e",
  7960. "reference": "cf8d4ca1ddc1e3cc242375deb8fc23e54f5e2a1e",
  7961. "shasum": ""
  7962. },
  7963. "require": {
  7964. "php": ">=8.1",
  7965. "symfony/polyfill-mbstring": "~1.0"
  7966. },
  7967. "conflict": {
  7968. "phpunit/phpunit": "<5.4.3",
  7969. "symfony/console": "<5.4"
  7970. },
  7971. "require-dev": {
  7972. "ext-iconv": "*",
  7973. "symfony/console": "^5.4|^6.0",
  7974. "symfony/process": "^5.4|^6.0",
  7975. "symfony/uid": "^5.4|^6.0",
  7976. "twig/twig": "^2.13|^3.0.4"
  7977. },
  7978. "suggest": {
  7979. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7980. "ext-intl": "To show region name in time zone dump",
  7981. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7982. },
  7983. "bin": [
  7984. "Resources/bin/var-dump-server"
  7985. ],
  7986. "type": "library",
  7987. "autoload": {
  7988. "files": [
  7989. "Resources/functions/dump.php"
  7990. ],
  7991. "psr-4": {
  7992. "Symfony\\Component\\VarDumper\\": ""
  7993. },
  7994. "exclude-from-classmap": [
  7995. "/Tests/"
  7996. ]
  7997. },
  7998. "notification-url": "https://packagist.org/downloads/",
  7999. "license": [
  8000. "MIT"
  8001. ],
  8002. "authors": [
  8003. {
  8004. "name": "Nicolas Grekas",
  8005. "email": "p@tchwork.com"
  8006. },
  8007. {
  8008. "name": "Symfony Community",
  8009. "homepage": "https://symfony.com/contributors"
  8010. }
  8011. ],
  8012. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8013. "homepage": "https://symfony.com",
  8014. "keywords": [
  8015. "debug",
  8016. "dump"
  8017. ],
  8018. "support": {
  8019. "source": "https://github.com/symfony/var-dumper/tree/v6.2.7"
  8020. },
  8021. "funding": [
  8022. {
  8023. "url": "https://symfony.com/sponsor",
  8024. "type": "custom"
  8025. },
  8026. {
  8027. "url": "https://github.com/fabpot",
  8028. "type": "github"
  8029. },
  8030. {
  8031. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8032. "type": "tidelift"
  8033. }
  8034. ],
  8035. "time": "2023-02-24T10:42:00+00:00"
  8036. },
  8037. {
  8038. "name": "tijsverkoyen/css-to-inline-styles",
  8039. "version": "2.2.6",
  8040. "source": {
  8041. "type": "git",
  8042. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8043. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  8044. },
  8045. "dist": {
  8046. "type": "zip",
  8047. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  8048. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  8049. "shasum": ""
  8050. },
  8051. "require": {
  8052. "ext-dom": "*",
  8053. "ext-libxml": "*",
  8054. "php": "^5.5 || ^7.0 || ^8.0",
  8055. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  8056. },
  8057. "require-dev": {
  8058. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8059. },
  8060. "type": "library",
  8061. "extra": {
  8062. "branch-alias": {
  8063. "dev-master": "2.2.x-dev"
  8064. }
  8065. },
  8066. "autoload": {
  8067. "psr-4": {
  8068. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8069. }
  8070. },
  8071. "notification-url": "https://packagist.org/downloads/",
  8072. "license": [
  8073. "BSD-3-Clause"
  8074. ],
  8075. "authors": [
  8076. {
  8077. "name": "Tijs Verkoyen",
  8078. "email": "css_to_inline_styles@verkoyen.eu",
  8079. "role": "Developer"
  8080. }
  8081. ],
  8082. "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.",
  8083. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8084. "support": {
  8085. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8086. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  8087. },
  8088. "time": "2023-01-03T09:29:04+00:00"
  8089. },
  8090. {
  8091. "name": "vlucas/phpdotenv",
  8092. "version": "v5.5.0",
  8093. "source": {
  8094. "type": "git",
  8095. "url": "https://github.com/vlucas/phpdotenv.git",
  8096. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  8097. },
  8098. "dist": {
  8099. "type": "zip",
  8100. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8101. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8102. "shasum": ""
  8103. },
  8104. "require": {
  8105. "ext-pcre": "*",
  8106. "graham-campbell/result-type": "^1.0.2",
  8107. "php": "^7.1.3 || ^8.0",
  8108. "phpoption/phpoption": "^1.8",
  8109. "symfony/polyfill-ctype": "^1.23",
  8110. "symfony/polyfill-mbstring": "^1.23.1",
  8111. "symfony/polyfill-php80": "^1.23.1"
  8112. },
  8113. "require-dev": {
  8114. "bamarni/composer-bin-plugin": "^1.4.1",
  8115. "ext-filter": "*",
  8116. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  8117. },
  8118. "suggest": {
  8119. "ext-filter": "Required to use the boolean validator."
  8120. },
  8121. "type": "library",
  8122. "extra": {
  8123. "bamarni-bin": {
  8124. "bin-links": true,
  8125. "forward-command": true
  8126. },
  8127. "branch-alias": {
  8128. "dev-master": "5.5-dev"
  8129. }
  8130. },
  8131. "autoload": {
  8132. "psr-4": {
  8133. "Dotenv\\": "src/"
  8134. }
  8135. },
  8136. "notification-url": "https://packagist.org/downloads/",
  8137. "license": [
  8138. "BSD-3-Clause"
  8139. ],
  8140. "authors": [
  8141. {
  8142. "name": "Graham Campbell",
  8143. "email": "hello@gjcampbell.co.uk",
  8144. "homepage": "https://github.com/GrahamCampbell"
  8145. },
  8146. {
  8147. "name": "Vance Lucas",
  8148. "email": "vance@vancelucas.com",
  8149. "homepage": "https://github.com/vlucas"
  8150. }
  8151. ],
  8152. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8153. "keywords": [
  8154. "dotenv",
  8155. "env",
  8156. "environment"
  8157. ],
  8158. "support": {
  8159. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8160. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  8161. },
  8162. "funding": [
  8163. {
  8164. "url": "https://github.com/GrahamCampbell",
  8165. "type": "github"
  8166. },
  8167. {
  8168. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8169. "type": "tidelift"
  8170. }
  8171. ],
  8172. "time": "2022-10-16T01:01:54+00:00"
  8173. },
  8174. {
  8175. "name": "voku/portable-ascii",
  8176. "version": "2.0.1",
  8177. "source": {
  8178. "type": "git",
  8179. "url": "https://github.com/voku/portable-ascii.git",
  8180. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  8181. },
  8182. "dist": {
  8183. "type": "zip",
  8184. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  8185. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  8186. "shasum": ""
  8187. },
  8188. "require": {
  8189. "php": ">=7.0.0"
  8190. },
  8191. "require-dev": {
  8192. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8193. },
  8194. "suggest": {
  8195. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8196. },
  8197. "type": "library",
  8198. "autoload": {
  8199. "psr-4": {
  8200. "voku\\": "src/voku/"
  8201. }
  8202. },
  8203. "notification-url": "https://packagist.org/downloads/",
  8204. "license": [
  8205. "MIT"
  8206. ],
  8207. "authors": [
  8208. {
  8209. "name": "Lars Moelleken",
  8210. "homepage": "http://www.moelleken.org/"
  8211. }
  8212. ],
  8213. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8214. "homepage": "https://github.com/voku/portable-ascii",
  8215. "keywords": [
  8216. "ascii",
  8217. "clean",
  8218. "php"
  8219. ],
  8220. "support": {
  8221. "issues": "https://github.com/voku/portable-ascii/issues",
  8222. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  8223. },
  8224. "funding": [
  8225. {
  8226. "url": "https://www.paypal.me/moelleken",
  8227. "type": "custom"
  8228. },
  8229. {
  8230. "url": "https://github.com/voku",
  8231. "type": "github"
  8232. },
  8233. {
  8234. "url": "https://opencollective.com/portable-ascii",
  8235. "type": "open_collective"
  8236. },
  8237. {
  8238. "url": "https://www.patreon.com/voku",
  8239. "type": "patreon"
  8240. },
  8241. {
  8242. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8243. "type": "tidelift"
  8244. }
  8245. ],
  8246. "time": "2022-03-08T17:03:00+00:00"
  8247. },
  8248. {
  8249. "name": "webmozart/assert",
  8250. "version": "1.11.0",
  8251. "source": {
  8252. "type": "git",
  8253. "url": "https://github.com/webmozarts/assert.git",
  8254. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8255. },
  8256. "dist": {
  8257. "type": "zip",
  8258. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8259. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8260. "shasum": ""
  8261. },
  8262. "require": {
  8263. "ext-ctype": "*",
  8264. "php": "^7.2 || ^8.0"
  8265. },
  8266. "conflict": {
  8267. "phpstan/phpstan": "<0.12.20",
  8268. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8269. },
  8270. "require-dev": {
  8271. "phpunit/phpunit": "^8.5.13"
  8272. },
  8273. "type": "library",
  8274. "extra": {
  8275. "branch-alias": {
  8276. "dev-master": "1.10-dev"
  8277. }
  8278. },
  8279. "autoload": {
  8280. "psr-4": {
  8281. "Webmozart\\Assert\\": "src/"
  8282. }
  8283. },
  8284. "notification-url": "https://packagist.org/downloads/",
  8285. "license": [
  8286. "MIT"
  8287. ],
  8288. "authors": [
  8289. {
  8290. "name": "Bernhard Schussek",
  8291. "email": "bschussek@gmail.com"
  8292. }
  8293. ],
  8294. "description": "Assertions to validate method input/output with nice error messages.",
  8295. "keywords": [
  8296. "assert",
  8297. "check",
  8298. "validate"
  8299. ],
  8300. "support": {
  8301. "issues": "https://github.com/webmozarts/assert/issues",
  8302. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8303. },
  8304. "time": "2022-06-03T18:03:27+00:00"
  8305. },
  8306. {
  8307. "name": "yajra/laravel-datatables-oracle",
  8308. "version": "v9.21.2",
  8309. "source": {
  8310. "type": "git",
  8311. "url": "https://github.com/yajra/laravel-datatables.git",
  8312. "reference": "a7fd01f06282923e9c63fa27fe6b391e21dc321a"
  8313. },
  8314. "dist": {
  8315. "type": "zip",
  8316. "url": "https://api.github.com/repos/yajra/laravel-datatables/zipball/a7fd01f06282923e9c63fa27fe6b391e21dc321a",
  8317. "reference": "a7fd01f06282923e9c63fa27fe6b391e21dc321a",
  8318. "shasum": ""
  8319. },
  8320. "require": {
  8321. "illuminate/database": "5.8.*|^6|^7|^8|^9",
  8322. "illuminate/filesystem": "5.8.*|^6|^7|^8|^9",
  8323. "illuminate/http": "5.8.*|^6|^7|^8|^9",
  8324. "illuminate/support": "5.8.*|^6|^7|^8|^9",
  8325. "illuminate/view": "5.8.*|^6|^7|^8|^9",
  8326. "php": "^7.1.3|^8"
  8327. },
  8328. "require-dev": {
  8329. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0|^7.0"
  8330. },
  8331. "suggest": {
  8332. "yajra/laravel-datatables-buttons": "Plugin for server-side exporting of dataTables.",
  8333. "yajra/laravel-datatables-editor": "Plugin to use DataTables Editor (requires a license).",
  8334. "yajra/laravel-datatables-fractal": "Plugin for server-side response using Fractal.",
  8335. "yajra/laravel-datatables-html": "Plugin for server-side HTML builder of dataTables."
  8336. },
  8337. "type": "library",
  8338. "extra": {
  8339. "branch-alias": {
  8340. "dev-master": "9.0-dev"
  8341. },
  8342. "laravel": {
  8343. "providers": [
  8344. "Yajra\\DataTables\\DataTablesServiceProvider"
  8345. ],
  8346. "aliases": {
  8347. "DataTables": "Yajra\\DataTables\\Facades\\DataTables"
  8348. }
  8349. }
  8350. },
  8351. "autoload": {
  8352. "files": [
  8353. "src/helper.php"
  8354. ],
  8355. "psr-4": {
  8356. "Yajra\\DataTables\\": "src/"
  8357. }
  8358. },
  8359. "notification-url": "https://packagist.org/downloads/",
  8360. "license": [
  8361. "MIT"
  8362. ],
  8363. "authors": [
  8364. {
  8365. "name": "Arjay Angeles",
  8366. "email": "aqangeles@gmail.com"
  8367. }
  8368. ],
  8369. "description": "jQuery DataTables API for Laravel 5|6|7|8|9",
  8370. "keywords": [
  8371. "datatables",
  8372. "jquery",
  8373. "laravel"
  8374. ],
  8375. "support": {
  8376. "issues": "https://github.com/yajra/laravel-datatables/issues",
  8377. "source": "https://github.com/yajra/laravel-datatables/tree/v9.21.2"
  8378. },
  8379. "funding": [
  8380. {
  8381. "url": "https://www.paypal.me/yajra",
  8382. "type": "custom"
  8383. },
  8384. {
  8385. "url": "https://www.patreon.com/yajra",
  8386. "type": "patreon"
  8387. }
  8388. ],
  8389. "time": "2022-07-12T04:48:03+00:00"
  8390. }
  8391. ],
  8392. "packages-dev": [
  8393. {
  8394. "name": "barryvdh/laravel-debugbar",
  8395. "version": "v3.8.1",
  8396. "source": {
  8397. "type": "git",
  8398. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  8399. "reference": "aff3235fecb4104203b1e62c32239c56530eee32"
  8400. },
  8401. "dist": {
  8402. "type": "zip",
  8403. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/aff3235fecb4104203b1e62c32239c56530eee32",
  8404. "reference": "aff3235fecb4104203b1e62c32239c56530eee32",
  8405. "shasum": ""
  8406. },
  8407. "require": {
  8408. "illuminate/routing": "^9|^10",
  8409. "illuminate/session": "^9|^10",
  8410. "illuminate/support": "^9|^10",
  8411. "maximebf/debugbar": "^1.18.2",
  8412. "php": "^8.0",
  8413. "symfony/finder": "^6"
  8414. },
  8415. "require-dev": {
  8416. "mockery/mockery": "^1.3.3",
  8417. "orchestra/testbench-dusk": "^5|^6|^7|^8",
  8418. "phpunit/phpunit": "^8.5.30|^9.0",
  8419. "squizlabs/php_codesniffer": "^3.5"
  8420. },
  8421. "type": "library",
  8422. "extra": {
  8423. "branch-alias": {
  8424. "dev-master": "3.8-dev"
  8425. },
  8426. "laravel": {
  8427. "providers": [
  8428. "Barryvdh\\Debugbar\\ServiceProvider"
  8429. ],
  8430. "aliases": {
  8431. "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar"
  8432. }
  8433. }
  8434. },
  8435. "autoload": {
  8436. "files": [
  8437. "src/helpers.php"
  8438. ],
  8439. "psr-4": {
  8440. "Barryvdh\\Debugbar\\": "src/"
  8441. }
  8442. },
  8443. "notification-url": "https://packagist.org/downloads/",
  8444. "license": [
  8445. "MIT"
  8446. ],
  8447. "authors": [
  8448. {
  8449. "name": "Barry vd. Heuvel",
  8450. "email": "barryvdh@gmail.com"
  8451. }
  8452. ],
  8453. "description": "PHP Debugbar integration for Laravel",
  8454. "keywords": [
  8455. "debug",
  8456. "debugbar",
  8457. "laravel",
  8458. "profiler",
  8459. "webprofiler"
  8460. ],
  8461. "support": {
  8462. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8463. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.8.1"
  8464. },
  8465. "funding": [
  8466. {
  8467. "url": "https://fruitcake.nl",
  8468. "type": "custom"
  8469. },
  8470. {
  8471. "url": "https://github.com/barryvdh",
  8472. "type": "github"
  8473. }
  8474. ],
  8475. "time": "2023-02-21T14:21:02+00:00"
  8476. },
  8477. {
  8478. "name": "doctrine/instantiator",
  8479. "version": "2.0.0",
  8480. "source": {
  8481. "type": "git",
  8482. "url": "https://github.com/doctrine/instantiator.git",
  8483. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  8484. },
  8485. "dist": {
  8486. "type": "zip",
  8487. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  8488. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  8489. "shasum": ""
  8490. },
  8491. "require": {
  8492. "php": "^8.1"
  8493. },
  8494. "require-dev": {
  8495. "doctrine/coding-standard": "^11",
  8496. "ext-pdo": "*",
  8497. "ext-phar": "*",
  8498. "phpbench/phpbench": "^1.2",
  8499. "phpstan/phpstan": "^1.9.4",
  8500. "phpstan/phpstan-phpunit": "^1.3",
  8501. "phpunit/phpunit": "^9.5.27",
  8502. "vimeo/psalm": "^5.4"
  8503. },
  8504. "type": "library",
  8505. "autoload": {
  8506. "psr-4": {
  8507. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8508. }
  8509. },
  8510. "notification-url": "https://packagist.org/downloads/",
  8511. "license": [
  8512. "MIT"
  8513. ],
  8514. "authors": [
  8515. {
  8516. "name": "Marco Pivetta",
  8517. "email": "ocramius@gmail.com",
  8518. "homepage": "https://ocramius.github.io/"
  8519. }
  8520. ],
  8521. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8522. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8523. "keywords": [
  8524. "constructor",
  8525. "instantiate"
  8526. ],
  8527. "support": {
  8528. "issues": "https://github.com/doctrine/instantiator/issues",
  8529. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  8530. },
  8531. "funding": [
  8532. {
  8533. "url": "https://www.doctrine-project.org/sponsorship.html",
  8534. "type": "custom"
  8535. },
  8536. {
  8537. "url": "https://www.patreon.com/phpdoctrine",
  8538. "type": "patreon"
  8539. },
  8540. {
  8541. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8542. "type": "tidelift"
  8543. }
  8544. ],
  8545. "time": "2022-12-30T00:23:10+00:00"
  8546. },
  8547. {
  8548. "name": "fakerphp/faker",
  8549. "version": "v1.21.0",
  8550. "source": {
  8551. "type": "git",
  8552. "url": "https://github.com/FakerPHP/Faker.git",
  8553. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d"
  8554. },
  8555. "dist": {
  8556. "type": "zip",
  8557. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d",
  8558. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d",
  8559. "shasum": ""
  8560. },
  8561. "require": {
  8562. "php": "^7.4 || ^8.0",
  8563. "psr/container": "^1.0 || ^2.0",
  8564. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8565. },
  8566. "conflict": {
  8567. "fzaninotto/faker": "*"
  8568. },
  8569. "require-dev": {
  8570. "bamarni/composer-bin-plugin": "^1.4.1",
  8571. "doctrine/persistence": "^1.3 || ^2.0",
  8572. "ext-intl": "*",
  8573. "phpunit/phpunit": "^9.5.26",
  8574. "symfony/phpunit-bridge": "^5.4.16"
  8575. },
  8576. "suggest": {
  8577. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8578. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8579. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8580. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8581. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8582. },
  8583. "type": "library",
  8584. "extra": {
  8585. "branch-alias": {
  8586. "dev-main": "v1.21-dev"
  8587. }
  8588. },
  8589. "autoload": {
  8590. "psr-4": {
  8591. "Faker\\": "src/Faker/"
  8592. }
  8593. },
  8594. "notification-url": "https://packagist.org/downloads/",
  8595. "license": [
  8596. "MIT"
  8597. ],
  8598. "authors": [
  8599. {
  8600. "name": "François Zaninotto"
  8601. }
  8602. ],
  8603. "description": "Faker is a PHP library that generates fake data for you.",
  8604. "keywords": [
  8605. "data",
  8606. "faker",
  8607. "fixtures"
  8608. ],
  8609. "support": {
  8610. "issues": "https://github.com/FakerPHP/Faker/issues",
  8611. "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0"
  8612. },
  8613. "time": "2022-12-13T13:54:32+00:00"
  8614. },
  8615. {
  8616. "name": "filp/whoops",
  8617. "version": "2.15.1",
  8618. "source": {
  8619. "type": "git",
  8620. "url": "https://github.com/filp/whoops.git",
  8621. "reference": "e864ac957acd66e1565f25efda61e37791a5db0b"
  8622. },
  8623. "dist": {
  8624. "type": "zip",
  8625. "url": "https://api.github.com/repos/filp/whoops/zipball/e864ac957acd66e1565f25efda61e37791a5db0b",
  8626. "reference": "e864ac957acd66e1565f25efda61e37791a5db0b",
  8627. "shasum": ""
  8628. },
  8629. "require": {
  8630. "php": "^5.5.9 || ^7.0 || ^8.0",
  8631. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8632. },
  8633. "require-dev": {
  8634. "mockery/mockery": "^0.9 || ^1.0",
  8635. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8636. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8637. },
  8638. "suggest": {
  8639. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8640. "whoops/soap": "Formats errors as SOAP responses"
  8641. },
  8642. "type": "library",
  8643. "extra": {
  8644. "branch-alias": {
  8645. "dev-master": "2.7-dev"
  8646. }
  8647. },
  8648. "autoload": {
  8649. "psr-4": {
  8650. "Whoops\\": "src/Whoops/"
  8651. }
  8652. },
  8653. "notification-url": "https://packagist.org/downloads/",
  8654. "license": [
  8655. "MIT"
  8656. ],
  8657. "authors": [
  8658. {
  8659. "name": "Filipe Dobreira",
  8660. "homepage": "https://github.com/filp",
  8661. "role": "Developer"
  8662. }
  8663. ],
  8664. "description": "php error handling for cool kids",
  8665. "homepage": "https://filp.github.io/whoops/",
  8666. "keywords": [
  8667. "error",
  8668. "exception",
  8669. "handling",
  8670. "library",
  8671. "throwable",
  8672. "whoops"
  8673. ],
  8674. "support": {
  8675. "issues": "https://github.com/filp/whoops/issues",
  8676. "source": "https://github.com/filp/whoops/tree/2.15.1"
  8677. },
  8678. "funding": [
  8679. {
  8680. "url": "https://github.com/denis-sokolov",
  8681. "type": "github"
  8682. }
  8683. ],
  8684. "time": "2023-03-06T18:09:13+00:00"
  8685. },
  8686. {
  8687. "name": "hamcrest/hamcrest-php",
  8688. "version": "v2.0.1",
  8689. "source": {
  8690. "type": "git",
  8691. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8692. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8693. },
  8694. "dist": {
  8695. "type": "zip",
  8696. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8697. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8698. "shasum": ""
  8699. },
  8700. "require": {
  8701. "php": "^5.3|^7.0|^8.0"
  8702. },
  8703. "replace": {
  8704. "cordoval/hamcrest-php": "*",
  8705. "davedevelopment/hamcrest-php": "*",
  8706. "kodova/hamcrest-php": "*"
  8707. },
  8708. "require-dev": {
  8709. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8710. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8711. },
  8712. "type": "library",
  8713. "extra": {
  8714. "branch-alias": {
  8715. "dev-master": "2.1-dev"
  8716. }
  8717. },
  8718. "autoload": {
  8719. "classmap": [
  8720. "hamcrest"
  8721. ]
  8722. },
  8723. "notification-url": "https://packagist.org/downloads/",
  8724. "license": [
  8725. "BSD-3-Clause"
  8726. ],
  8727. "description": "This is the PHP port of Hamcrest Matchers",
  8728. "keywords": [
  8729. "test"
  8730. ],
  8731. "support": {
  8732. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8733. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8734. },
  8735. "time": "2020-07-09T08:09:16+00:00"
  8736. },
  8737. {
  8738. "name": "laravel/sail",
  8739. "version": "v1.21.3",
  8740. "source": {
  8741. "type": "git",
  8742. "url": "https://github.com/laravel/sail.git",
  8743. "reference": "3042ff8cf403817c340d5a7762b2d32900239f46"
  8744. },
  8745. "dist": {
  8746. "type": "zip",
  8747. "url": "https://api.github.com/repos/laravel/sail/zipball/3042ff8cf403817c340d5a7762b2d32900239f46",
  8748. "reference": "3042ff8cf403817c340d5a7762b2d32900239f46",
  8749. "shasum": ""
  8750. },
  8751. "require": {
  8752. "illuminate/console": "^8.0|^9.0|^10.0",
  8753. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8754. "illuminate/support": "^8.0|^9.0|^10.0",
  8755. "php": "^7.3|^8.0",
  8756. "symfony/yaml": "^6.0"
  8757. },
  8758. "require-dev": {
  8759. "orchestra/testbench": "^6.0|^7.0|^8.0",
  8760. "phpstan/phpstan": "^1.10"
  8761. },
  8762. "bin": [
  8763. "bin/sail"
  8764. ],
  8765. "type": "library",
  8766. "extra": {
  8767. "branch-alias": {
  8768. "dev-master": "1.x-dev"
  8769. },
  8770. "laravel": {
  8771. "providers": [
  8772. "Laravel\\Sail\\SailServiceProvider"
  8773. ]
  8774. }
  8775. },
  8776. "autoload": {
  8777. "psr-4": {
  8778. "Laravel\\Sail\\": "src/"
  8779. }
  8780. },
  8781. "notification-url": "https://packagist.org/downloads/",
  8782. "license": [
  8783. "MIT"
  8784. ],
  8785. "authors": [
  8786. {
  8787. "name": "Taylor Otwell",
  8788. "email": "taylor@laravel.com"
  8789. }
  8790. ],
  8791. "description": "Docker files for running a basic Laravel application.",
  8792. "keywords": [
  8793. "docker",
  8794. "laravel"
  8795. ],
  8796. "support": {
  8797. "issues": "https://github.com/laravel/sail/issues",
  8798. "source": "https://github.com/laravel/sail"
  8799. },
  8800. "time": "2023-03-13T01:22:10+00:00"
  8801. },
  8802. {
  8803. "name": "maximebf/debugbar",
  8804. "version": "v1.18.2",
  8805. "source": {
  8806. "type": "git",
  8807. "url": "https://github.com/maximebf/php-debugbar.git",
  8808. "reference": "17dcf3f6ed112bb85a37cf13538fd8de49f5c274"
  8809. },
  8810. "dist": {
  8811. "type": "zip",
  8812. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/17dcf3f6ed112bb85a37cf13538fd8de49f5c274",
  8813. "reference": "17dcf3f6ed112bb85a37cf13538fd8de49f5c274",
  8814. "shasum": ""
  8815. },
  8816. "require": {
  8817. "php": "^7.1|^8",
  8818. "psr/log": "^1|^2|^3",
  8819. "symfony/var-dumper": "^4|^5|^6"
  8820. },
  8821. "require-dev": {
  8822. "phpunit/phpunit": ">=7.5.20 <10.0",
  8823. "twig/twig": "^1.38|^2.7|^3.0"
  8824. },
  8825. "suggest": {
  8826. "kriswallsmith/assetic": "The best way to manage assets",
  8827. "monolog/monolog": "Log using Monolog",
  8828. "predis/predis": "Redis storage"
  8829. },
  8830. "type": "library",
  8831. "extra": {
  8832. "branch-alias": {
  8833. "dev-master": "1.18-dev"
  8834. }
  8835. },
  8836. "autoload": {
  8837. "psr-4": {
  8838. "DebugBar\\": "src/DebugBar/"
  8839. }
  8840. },
  8841. "notification-url": "https://packagist.org/downloads/",
  8842. "license": [
  8843. "MIT"
  8844. ],
  8845. "authors": [
  8846. {
  8847. "name": "Maxime Bouroumeau-Fuseau",
  8848. "email": "maxime.bouroumeau@gmail.com",
  8849. "homepage": "http://maximebf.com"
  8850. },
  8851. {
  8852. "name": "Barry vd. Heuvel",
  8853. "email": "barryvdh@gmail.com"
  8854. }
  8855. ],
  8856. "description": "Debug bar in the browser for php application",
  8857. "homepage": "https://github.com/maximebf/php-debugbar",
  8858. "keywords": [
  8859. "debug",
  8860. "debugbar"
  8861. ],
  8862. "support": {
  8863. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8864. "source": "https://github.com/maximebf/php-debugbar/tree/v1.18.2"
  8865. },
  8866. "time": "2023-02-04T15:27:00+00:00"
  8867. },
  8868. {
  8869. "name": "mockery/mockery",
  8870. "version": "1.5.1",
  8871. "source": {
  8872. "type": "git",
  8873. "url": "https://github.com/mockery/mockery.git",
  8874. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  8875. },
  8876. "dist": {
  8877. "type": "zip",
  8878. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  8879. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  8880. "shasum": ""
  8881. },
  8882. "require": {
  8883. "hamcrest/hamcrest-php": "^2.0.1",
  8884. "lib-pcre": ">=7.0",
  8885. "php": "^7.3 || ^8.0"
  8886. },
  8887. "conflict": {
  8888. "phpunit/phpunit": "<8.0"
  8889. },
  8890. "require-dev": {
  8891. "phpunit/phpunit": "^8.5 || ^9.3"
  8892. },
  8893. "type": "library",
  8894. "extra": {
  8895. "branch-alias": {
  8896. "dev-master": "1.4.x-dev"
  8897. }
  8898. },
  8899. "autoload": {
  8900. "psr-0": {
  8901. "Mockery": "library/"
  8902. }
  8903. },
  8904. "notification-url": "https://packagist.org/downloads/",
  8905. "license": [
  8906. "BSD-3-Clause"
  8907. ],
  8908. "authors": [
  8909. {
  8910. "name": "Pádraic Brady",
  8911. "email": "padraic.brady@gmail.com",
  8912. "homepage": "http://blog.astrumfutura.com"
  8913. },
  8914. {
  8915. "name": "Dave Marshall",
  8916. "email": "dave.marshall@atstsolutions.co.uk",
  8917. "homepage": "http://davedevelopment.co.uk"
  8918. }
  8919. ],
  8920. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8921. "homepage": "https://github.com/mockery/mockery",
  8922. "keywords": [
  8923. "BDD",
  8924. "TDD",
  8925. "library",
  8926. "mock",
  8927. "mock objects",
  8928. "mockery",
  8929. "stub",
  8930. "test",
  8931. "test double",
  8932. "testing"
  8933. ],
  8934. "support": {
  8935. "issues": "https://github.com/mockery/mockery/issues",
  8936. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  8937. },
  8938. "time": "2022-09-07T15:32:08+00:00"
  8939. },
  8940. {
  8941. "name": "myclabs/deep-copy",
  8942. "version": "1.11.1",
  8943. "source": {
  8944. "type": "git",
  8945. "url": "https://github.com/myclabs/DeepCopy.git",
  8946. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8947. },
  8948. "dist": {
  8949. "type": "zip",
  8950. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8951. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8952. "shasum": ""
  8953. },
  8954. "require": {
  8955. "php": "^7.1 || ^8.0"
  8956. },
  8957. "conflict": {
  8958. "doctrine/collections": "<1.6.8",
  8959. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8960. },
  8961. "require-dev": {
  8962. "doctrine/collections": "^1.6.8",
  8963. "doctrine/common": "^2.13.3 || ^3.2.2",
  8964. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8965. },
  8966. "type": "library",
  8967. "autoload": {
  8968. "files": [
  8969. "src/DeepCopy/deep_copy.php"
  8970. ],
  8971. "psr-4": {
  8972. "DeepCopy\\": "src/DeepCopy/"
  8973. }
  8974. },
  8975. "notification-url": "https://packagist.org/downloads/",
  8976. "license": [
  8977. "MIT"
  8978. ],
  8979. "description": "Create deep copies (clones) of your objects",
  8980. "keywords": [
  8981. "clone",
  8982. "copy",
  8983. "duplicate",
  8984. "object",
  8985. "object graph"
  8986. ],
  8987. "support": {
  8988. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8989. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8990. },
  8991. "funding": [
  8992. {
  8993. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8994. "type": "tidelift"
  8995. }
  8996. ],
  8997. "time": "2023-03-08T13:26:56+00:00"
  8998. },
  8999. {
  9000. "name": "nunomaduro/collision",
  9001. "version": "v6.4.0",
  9002. "source": {
  9003. "type": "git",
  9004. "url": "https://github.com/nunomaduro/collision.git",
  9005. "reference": "f05978827b9343cba381ca05b8c7deee346b6015"
  9006. },
  9007. "dist": {
  9008. "type": "zip",
  9009. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015",
  9010. "reference": "f05978827b9343cba381ca05b8c7deee346b6015",
  9011. "shasum": ""
  9012. },
  9013. "require": {
  9014. "filp/whoops": "^2.14.5",
  9015. "php": "^8.0.0",
  9016. "symfony/console": "^6.0.2"
  9017. },
  9018. "require-dev": {
  9019. "brianium/paratest": "^6.4.1",
  9020. "laravel/framework": "^9.26.1",
  9021. "laravel/pint": "^1.1.1",
  9022. "nunomaduro/larastan": "^1.0.3",
  9023. "nunomaduro/mock-final-classes": "^1.1.0",
  9024. "orchestra/testbench": "^7.7",
  9025. "phpunit/phpunit": "^9.5.23",
  9026. "spatie/ignition": "^1.4.1"
  9027. },
  9028. "type": "library",
  9029. "extra": {
  9030. "branch-alias": {
  9031. "dev-develop": "6.x-dev"
  9032. },
  9033. "laravel": {
  9034. "providers": [
  9035. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9036. ]
  9037. }
  9038. },
  9039. "autoload": {
  9040. "psr-4": {
  9041. "NunoMaduro\\Collision\\": "src/"
  9042. }
  9043. },
  9044. "notification-url": "https://packagist.org/downloads/",
  9045. "license": [
  9046. "MIT"
  9047. ],
  9048. "authors": [
  9049. {
  9050. "name": "Nuno Maduro",
  9051. "email": "enunomaduro@gmail.com"
  9052. }
  9053. ],
  9054. "description": "Cli error handling for console/command-line PHP applications.",
  9055. "keywords": [
  9056. "artisan",
  9057. "cli",
  9058. "command-line",
  9059. "console",
  9060. "error",
  9061. "handling",
  9062. "laravel",
  9063. "laravel-zero",
  9064. "php",
  9065. "symfony"
  9066. ],
  9067. "support": {
  9068. "issues": "https://github.com/nunomaduro/collision/issues",
  9069. "source": "https://github.com/nunomaduro/collision"
  9070. },
  9071. "funding": [
  9072. {
  9073. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9074. "type": "custom"
  9075. },
  9076. {
  9077. "url": "https://github.com/nunomaduro",
  9078. "type": "github"
  9079. },
  9080. {
  9081. "url": "https://www.patreon.com/nunomaduro",
  9082. "type": "patreon"
  9083. }
  9084. ],
  9085. "time": "2023-01-03T12:54:54+00:00"
  9086. },
  9087. {
  9088. "name": "phar-io/manifest",
  9089. "version": "2.0.3",
  9090. "source": {
  9091. "type": "git",
  9092. "url": "https://github.com/phar-io/manifest.git",
  9093. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9094. },
  9095. "dist": {
  9096. "type": "zip",
  9097. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9098. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9099. "shasum": ""
  9100. },
  9101. "require": {
  9102. "ext-dom": "*",
  9103. "ext-phar": "*",
  9104. "ext-xmlwriter": "*",
  9105. "phar-io/version": "^3.0.1",
  9106. "php": "^7.2 || ^8.0"
  9107. },
  9108. "type": "library",
  9109. "extra": {
  9110. "branch-alias": {
  9111. "dev-master": "2.0.x-dev"
  9112. }
  9113. },
  9114. "autoload": {
  9115. "classmap": [
  9116. "src/"
  9117. ]
  9118. },
  9119. "notification-url": "https://packagist.org/downloads/",
  9120. "license": [
  9121. "BSD-3-Clause"
  9122. ],
  9123. "authors": [
  9124. {
  9125. "name": "Arne Blankerts",
  9126. "email": "arne@blankerts.de",
  9127. "role": "Developer"
  9128. },
  9129. {
  9130. "name": "Sebastian Heuer",
  9131. "email": "sebastian@phpeople.de",
  9132. "role": "Developer"
  9133. },
  9134. {
  9135. "name": "Sebastian Bergmann",
  9136. "email": "sebastian@phpunit.de",
  9137. "role": "Developer"
  9138. }
  9139. ],
  9140. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9141. "support": {
  9142. "issues": "https://github.com/phar-io/manifest/issues",
  9143. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9144. },
  9145. "time": "2021-07-20T11:28:43+00:00"
  9146. },
  9147. {
  9148. "name": "phar-io/version",
  9149. "version": "3.2.1",
  9150. "source": {
  9151. "type": "git",
  9152. "url": "https://github.com/phar-io/version.git",
  9153. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9154. },
  9155. "dist": {
  9156. "type": "zip",
  9157. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9158. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9159. "shasum": ""
  9160. },
  9161. "require": {
  9162. "php": "^7.2 || ^8.0"
  9163. },
  9164. "type": "library",
  9165. "autoload": {
  9166. "classmap": [
  9167. "src/"
  9168. ]
  9169. },
  9170. "notification-url": "https://packagist.org/downloads/",
  9171. "license": [
  9172. "BSD-3-Clause"
  9173. ],
  9174. "authors": [
  9175. {
  9176. "name": "Arne Blankerts",
  9177. "email": "arne@blankerts.de",
  9178. "role": "Developer"
  9179. },
  9180. {
  9181. "name": "Sebastian Heuer",
  9182. "email": "sebastian@phpeople.de",
  9183. "role": "Developer"
  9184. },
  9185. {
  9186. "name": "Sebastian Bergmann",
  9187. "email": "sebastian@phpunit.de",
  9188. "role": "Developer"
  9189. }
  9190. ],
  9191. "description": "Library for handling version information and constraints",
  9192. "support": {
  9193. "issues": "https://github.com/phar-io/version/issues",
  9194. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9195. },
  9196. "time": "2022-02-21T01:04:05+00:00"
  9197. },
  9198. {
  9199. "name": "phpunit/php-code-coverage",
  9200. "version": "9.2.26",
  9201. "source": {
  9202. "type": "git",
  9203. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9204. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  9205. },
  9206. "dist": {
  9207. "type": "zip",
  9208. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  9209. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  9210. "shasum": ""
  9211. },
  9212. "require": {
  9213. "ext-dom": "*",
  9214. "ext-libxml": "*",
  9215. "ext-xmlwriter": "*",
  9216. "nikic/php-parser": "^4.15",
  9217. "php": ">=7.3",
  9218. "phpunit/php-file-iterator": "^3.0.3",
  9219. "phpunit/php-text-template": "^2.0.2",
  9220. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9221. "sebastian/complexity": "^2.0",
  9222. "sebastian/environment": "^5.1.2",
  9223. "sebastian/lines-of-code": "^1.0.3",
  9224. "sebastian/version": "^3.0.1",
  9225. "theseer/tokenizer": "^1.2.0"
  9226. },
  9227. "require-dev": {
  9228. "phpunit/phpunit": "^9.3"
  9229. },
  9230. "suggest": {
  9231. "ext-pcov": "PHP extension that provides line coverage",
  9232. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9233. },
  9234. "type": "library",
  9235. "extra": {
  9236. "branch-alias": {
  9237. "dev-master": "9.2-dev"
  9238. }
  9239. },
  9240. "autoload": {
  9241. "classmap": [
  9242. "src/"
  9243. ]
  9244. },
  9245. "notification-url": "https://packagist.org/downloads/",
  9246. "license": [
  9247. "BSD-3-Clause"
  9248. ],
  9249. "authors": [
  9250. {
  9251. "name": "Sebastian Bergmann",
  9252. "email": "sebastian@phpunit.de",
  9253. "role": "lead"
  9254. }
  9255. ],
  9256. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9257. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9258. "keywords": [
  9259. "coverage",
  9260. "testing",
  9261. "xunit"
  9262. ],
  9263. "support": {
  9264. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9265. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  9266. },
  9267. "funding": [
  9268. {
  9269. "url": "https://github.com/sebastianbergmann",
  9270. "type": "github"
  9271. }
  9272. ],
  9273. "time": "2023-03-06T12:58:08+00:00"
  9274. },
  9275. {
  9276. "name": "phpunit/php-file-iterator",
  9277. "version": "3.0.6",
  9278. "source": {
  9279. "type": "git",
  9280. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9281. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9282. },
  9283. "dist": {
  9284. "type": "zip",
  9285. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9286. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9287. "shasum": ""
  9288. },
  9289. "require": {
  9290. "php": ">=7.3"
  9291. },
  9292. "require-dev": {
  9293. "phpunit/phpunit": "^9.3"
  9294. },
  9295. "type": "library",
  9296. "extra": {
  9297. "branch-alias": {
  9298. "dev-master": "3.0-dev"
  9299. }
  9300. },
  9301. "autoload": {
  9302. "classmap": [
  9303. "src/"
  9304. ]
  9305. },
  9306. "notification-url": "https://packagist.org/downloads/",
  9307. "license": [
  9308. "BSD-3-Clause"
  9309. ],
  9310. "authors": [
  9311. {
  9312. "name": "Sebastian Bergmann",
  9313. "email": "sebastian@phpunit.de",
  9314. "role": "lead"
  9315. }
  9316. ],
  9317. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9318. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9319. "keywords": [
  9320. "filesystem",
  9321. "iterator"
  9322. ],
  9323. "support": {
  9324. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9325. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9326. },
  9327. "funding": [
  9328. {
  9329. "url": "https://github.com/sebastianbergmann",
  9330. "type": "github"
  9331. }
  9332. ],
  9333. "time": "2021-12-02T12:48:52+00:00"
  9334. },
  9335. {
  9336. "name": "phpunit/php-invoker",
  9337. "version": "3.1.1",
  9338. "source": {
  9339. "type": "git",
  9340. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9341. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9342. },
  9343. "dist": {
  9344. "type": "zip",
  9345. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9346. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9347. "shasum": ""
  9348. },
  9349. "require": {
  9350. "php": ">=7.3"
  9351. },
  9352. "require-dev": {
  9353. "ext-pcntl": "*",
  9354. "phpunit/phpunit": "^9.3"
  9355. },
  9356. "suggest": {
  9357. "ext-pcntl": "*"
  9358. },
  9359. "type": "library",
  9360. "extra": {
  9361. "branch-alias": {
  9362. "dev-master": "3.1-dev"
  9363. }
  9364. },
  9365. "autoload": {
  9366. "classmap": [
  9367. "src/"
  9368. ]
  9369. },
  9370. "notification-url": "https://packagist.org/downloads/",
  9371. "license": [
  9372. "BSD-3-Clause"
  9373. ],
  9374. "authors": [
  9375. {
  9376. "name": "Sebastian Bergmann",
  9377. "email": "sebastian@phpunit.de",
  9378. "role": "lead"
  9379. }
  9380. ],
  9381. "description": "Invoke callables with a timeout",
  9382. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9383. "keywords": [
  9384. "process"
  9385. ],
  9386. "support": {
  9387. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9388. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9389. },
  9390. "funding": [
  9391. {
  9392. "url": "https://github.com/sebastianbergmann",
  9393. "type": "github"
  9394. }
  9395. ],
  9396. "time": "2020-09-28T05:58:55+00:00"
  9397. },
  9398. {
  9399. "name": "phpunit/php-text-template",
  9400. "version": "2.0.4",
  9401. "source": {
  9402. "type": "git",
  9403. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9404. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9405. },
  9406. "dist": {
  9407. "type": "zip",
  9408. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9409. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9410. "shasum": ""
  9411. },
  9412. "require": {
  9413. "php": ">=7.3"
  9414. },
  9415. "require-dev": {
  9416. "phpunit/phpunit": "^9.3"
  9417. },
  9418. "type": "library",
  9419. "extra": {
  9420. "branch-alias": {
  9421. "dev-master": "2.0-dev"
  9422. }
  9423. },
  9424. "autoload": {
  9425. "classmap": [
  9426. "src/"
  9427. ]
  9428. },
  9429. "notification-url": "https://packagist.org/downloads/",
  9430. "license": [
  9431. "BSD-3-Clause"
  9432. ],
  9433. "authors": [
  9434. {
  9435. "name": "Sebastian Bergmann",
  9436. "email": "sebastian@phpunit.de",
  9437. "role": "lead"
  9438. }
  9439. ],
  9440. "description": "Simple template engine.",
  9441. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9442. "keywords": [
  9443. "template"
  9444. ],
  9445. "support": {
  9446. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9447. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9448. },
  9449. "funding": [
  9450. {
  9451. "url": "https://github.com/sebastianbergmann",
  9452. "type": "github"
  9453. }
  9454. ],
  9455. "time": "2020-10-26T05:33:50+00:00"
  9456. },
  9457. {
  9458. "name": "phpunit/php-timer",
  9459. "version": "5.0.3",
  9460. "source": {
  9461. "type": "git",
  9462. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9463. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9464. },
  9465. "dist": {
  9466. "type": "zip",
  9467. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9468. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9469. "shasum": ""
  9470. },
  9471. "require": {
  9472. "php": ">=7.3"
  9473. },
  9474. "require-dev": {
  9475. "phpunit/phpunit": "^9.3"
  9476. },
  9477. "type": "library",
  9478. "extra": {
  9479. "branch-alias": {
  9480. "dev-master": "5.0-dev"
  9481. }
  9482. },
  9483. "autoload": {
  9484. "classmap": [
  9485. "src/"
  9486. ]
  9487. },
  9488. "notification-url": "https://packagist.org/downloads/",
  9489. "license": [
  9490. "BSD-3-Clause"
  9491. ],
  9492. "authors": [
  9493. {
  9494. "name": "Sebastian Bergmann",
  9495. "email": "sebastian@phpunit.de",
  9496. "role": "lead"
  9497. }
  9498. ],
  9499. "description": "Utility class for timing",
  9500. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9501. "keywords": [
  9502. "timer"
  9503. ],
  9504. "support": {
  9505. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9506. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9507. },
  9508. "funding": [
  9509. {
  9510. "url": "https://github.com/sebastianbergmann",
  9511. "type": "github"
  9512. }
  9513. ],
  9514. "time": "2020-10-26T13:16:10+00:00"
  9515. },
  9516. {
  9517. "name": "phpunit/phpunit",
  9518. "version": "9.6.6",
  9519. "source": {
  9520. "type": "git",
  9521. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9522. "reference": "b65d59a059d3004a040c16a82e07bbdf6cfdd115"
  9523. },
  9524. "dist": {
  9525. "type": "zip",
  9526. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b65d59a059d3004a040c16a82e07bbdf6cfdd115",
  9527. "reference": "b65d59a059d3004a040c16a82e07bbdf6cfdd115",
  9528. "shasum": ""
  9529. },
  9530. "require": {
  9531. "doctrine/instantiator": "^1.3.1 || ^2",
  9532. "ext-dom": "*",
  9533. "ext-json": "*",
  9534. "ext-libxml": "*",
  9535. "ext-mbstring": "*",
  9536. "ext-xml": "*",
  9537. "ext-xmlwriter": "*",
  9538. "myclabs/deep-copy": "^1.10.1",
  9539. "phar-io/manifest": "^2.0.3",
  9540. "phar-io/version": "^3.0.2",
  9541. "php": ">=7.3",
  9542. "phpunit/php-code-coverage": "^9.2.13",
  9543. "phpunit/php-file-iterator": "^3.0.5",
  9544. "phpunit/php-invoker": "^3.1.1",
  9545. "phpunit/php-text-template": "^2.0.3",
  9546. "phpunit/php-timer": "^5.0.2",
  9547. "sebastian/cli-parser": "^1.0.1",
  9548. "sebastian/code-unit": "^1.0.6",
  9549. "sebastian/comparator": "^4.0.8",
  9550. "sebastian/diff": "^4.0.3",
  9551. "sebastian/environment": "^5.1.3",
  9552. "sebastian/exporter": "^4.0.5",
  9553. "sebastian/global-state": "^5.0.1",
  9554. "sebastian/object-enumerator": "^4.0.3",
  9555. "sebastian/resource-operations": "^3.0.3",
  9556. "sebastian/type": "^3.2",
  9557. "sebastian/version": "^3.0.2"
  9558. },
  9559. "suggest": {
  9560. "ext-soap": "To be able to generate mocks based on WSDL files",
  9561. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9562. },
  9563. "bin": [
  9564. "phpunit"
  9565. ],
  9566. "type": "library",
  9567. "extra": {
  9568. "branch-alias": {
  9569. "dev-master": "9.6-dev"
  9570. }
  9571. },
  9572. "autoload": {
  9573. "files": [
  9574. "src/Framework/Assert/Functions.php"
  9575. ],
  9576. "classmap": [
  9577. "src/"
  9578. ]
  9579. },
  9580. "notification-url": "https://packagist.org/downloads/",
  9581. "license": [
  9582. "BSD-3-Clause"
  9583. ],
  9584. "authors": [
  9585. {
  9586. "name": "Sebastian Bergmann",
  9587. "email": "sebastian@phpunit.de",
  9588. "role": "lead"
  9589. }
  9590. ],
  9591. "description": "The PHP Unit Testing framework.",
  9592. "homepage": "https://phpunit.de/",
  9593. "keywords": [
  9594. "phpunit",
  9595. "testing",
  9596. "xunit"
  9597. ],
  9598. "support": {
  9599. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9600. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9601. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.6"
  9602. },
  9603. "funding": [
  9604. {
  9605. "url": "https://phpunit.de/sponsors.html",
  9606. "type": "custom"
  9607. },
  9608. {
  9609. "url": "https://github.com/sebastianbergmann",
  9610. "type": "github"
  9611. },
  9612. {
  9613. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9614. "type": "tidelift"
  9615. }
  9616. ],
  9617. "time": "2023-03-27T11:43:46+00:00"
  9618. },
  9619. {
  9620. "name": "sebastian/cli-parser",
  9621. "version": "1.0.1",
  9622. "source": {
  9623. "type": "git",
  9624. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9625. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9626. },
  9627. "dist": {
  9628. "type": "zip",
  9629. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9630. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9631. "shasum": ""
  9632. },
  9633. "require": {
  9634. "php": ">=7.3"
  9635. },
  9636. "require-dev": {
  9637. "phpunit/phpunit": "^9.3"
  9638. },
  9639. "type": "library",
  9640. "extra": {
  9641. "branch-alias": {
  9642. "dev-master": "1.0-dev"
  9643. }
  9644. },
  9645. "autoload": {
  9646. "classmap": [
  9647. "src/"
  9648. ]
  9649. },
  9650. "notification-url": "https://packagist.org/downloads/",
  9651. "license": [
  9652. "BSD-3-Clause"
  9653. ],
  9654. "authors": [
  9655. {
  9656. "name": "Sebastian Bergmann",
  9657. "email": "sebastian@phpunit.de",
  9658. "role": "lead"
  9659. }
  9660. ],
  9661. "description": "Library for parsing CLI options",
  9662. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9663. "support": {
  9664. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9665. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9666. },
  9667. "funding": [
  9668. {
  9669. "url": "https://github.com/sebastianbergmann",
  9670. "type": "github"
  9671. }
  9672. ],
  9673. "time": "2020-09-28T06:08:49+00:00"
  9674. },
  9675. {
  9676. "name": "sebastian/code-unit",
  9677. "version": "1.0.8",
  9678. "source": {
  9679. "type": "git",
  9680. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9681. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9682. },
  9683. "dist": {
  9684. "type": "zip",
  9685. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9686. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9687. "shasum": ""
  9688. },
  9689. "require": {
  9690. "php": ">=7.3"
  9691. },
  9692. "require-dev": {
  9693. "phpunit/phpunit": "^9.3"
  9694. },
  9695. "type": "library",
  9696. "extra": {
  9697. "branch-alias": {
  9698. "dev-master": "1.0-dev"
  9699. }
  9700. },
  9701. "autoload": {
  9702. "classmap": [
  9703. "src/"
  9704. ]
  9705. },
  9706. "notification-url": "https://packagist.org/downloads/",
  9707. "license": [
  9708. "BSD-3-Clause"
  9709. ],
  9710. "authors": [
  9711. {
  9712. "name": "Sebastian Bergmann",
  9713. "email": "sebastian@phpunit.de",
  9714. "role": "lead"
  9715. }
  9716. ],
  9717. "description": "Collection of value objects that represent the PHP code units",
  9718. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9719. "support": {
  9720. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9721. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9722. },
  9723. "funding": [
  9724. {
  9725. "url": "https://github.com/sebastianbergmann",
  9726. "type": "github"
  9727. }
  9728. ],
  9729. "time": "2020-10-26T13:08:54+00:00"
  9730. },
  9731. {
  9732. "name": "sebastian/code-unit-reverse-lookup",
  9733. "version": "2.0.3",
  9734. "source": {
  9735. "type": "git",
  9736. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9737. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9738. },
  9739. "dist": {
  9740. "type": "zip",
  9741. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9742. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9743. "shasum": ""
  9744. },
  9745. "require": {
  9746. "php": ">=7.3"
  9747. },
  9748. "require-dev": {
  9749. "phpunit/phpunit": "^9.3"
  9750. },
  9751. "type": "library",
  9752. "extra": {
  9753. "branch-alias": {
  9754. "dev-master": "2.0-dev"
  9755. }
  9756. },
  9757. "autoload": {
  9758. "classmap": [
  9759. "src/"
  9760. ]
  9761. },
  9762. "notification-url": "https://packagist.org/downloads/",
  9763. "license": [
  9764. "BSD-3-Clause"
  9765. ],
  9766. "authors": [
  9767. {
  9768. "name": "Sebastian Bergmann",
  9769. "email": "sebastian@phpunit.de"
  9770. }
  9771. ],
  9772. "description": "Looks up which function or method a line of code belongs to",
  9773. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9774. "support": {
  9775. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9776. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9777. },
  9778. "funding": [
  9779. {
  9780. "url": "https://github.com/sebastianbergmann",
  9781. "type": "github"
  9782. }
  9783. ],
  9784. "time": "2020-09-28T05:30:19+00:00"
  9785. },
  9786. {
  9787. "name": "sebastian/comparator",
  9788. "version": "4.0.8",
  9789. "source": {
  9790. "type": "git",
  9791. "url": "https://github.com/sebastianbergmann/comparator.git",
  9792. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9793. },
  9794. "dist": {
  9795. "type": "zip",
  9796. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9797. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9798. "shasum": ""
  9799. },
  9800. "require": {
  9801. "php": ">=7.3",
  9802. "sebastian/diff": "^4.0",
  9803. "sebastian/exporter": "^4.0"
  9804. },
  9805. "require-dev": {
  9806. "phpunit/phpunit": "^9.3"
  9807. },
  9808. "type": "library",
  9809. "extra": {
  9810. "branch-alias": {
  9811. "dev-master": "4.0-dev"
  9812. }
  9813. },
  9814. "autoload": {
  9815. "classmap": [
  9816. "src/"
  9817. ]
  9818. },
  9819. "notification-url": "https://packagist.org/downloads/",
  9820. "license": [
  9821. "BSD-3-Clause"
  9822. ],
  9823. "authors": [
  9824. {
  9825. "name": "Sebastian Bergmann",
  9826. "email": "sebastian@phpunit.de"
  9827. },
  9828. {
  9829. "name": "Jeff Welch",
  9830. "email": "whatthejeff@gmail.com"
  9831. },
  9832. {
  9833. "name": "Volker Dusch",
  9834. "email": "github@wallbash.com"
  9835. },
  9836. {
  9837. "name": "Bernhard Schussek",
  9838. "email": "bschussek@2bepublished.at"
  9839. }
  9840. ],
  9841. "description": "Provides the functionality to compare PHP values for equality",
  9842. "homepage": "https://github.com/sebastianbergmann/comparator",
  9843. "keywords": [
  9844. "comparator",
  9845. "compare",
  9846. "equality"
  9847. ],
  9848. "support": {
  9849. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9850. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9851. },
  9852. "funding": [
  9853. {
  9854. "url": "https://github.com/sebastianbergmann",
  9855. "type": "github"
  9856. }
  9857. ],
  9858. "time": "2022-09-14T12:41:17+00:00"
  9859. },
  9860. {
  9861. "name": "sebastian/complexity",
  9862. "version": "2.0.2",
  9863. "source": {
  9864. "type": "git",
  9865. "url": "https://github.com/sebastianbergmann/complexity.git",
  9866. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9867. },
  9868. "dist": {
  9869. "type": "zip",
  9870. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9871. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9872. "shasum": ""
  9873. },
  9874. "require": {
  9875. "nikic/php-parser": "^4.7",
  9876. "php": ">=7.3"
  9877. },
  9878. "require-dev": {
  9879. "phpunit/phpunit": "^9.3"
  9880. },
  9881. "type": "library",
  9882. "extra": {
  9883. "branch-alias": {
  9884. "dev-master": "2.0-dev"
  9885. }
  9886. },
  9887. "autoload": {
  9888. "classmap": [
  9889. "src/"
  9890. ]
  9891. },
  9892. "notification-url": "https://packagist.org/downloads/",
  9893. "license": [
  9894. "BSD-3-Clause"
  9895. ],
  9896. "authors": [
  9897. {
  9898. "name": "Sebastian Bergmann",
  9899. "email": "sebastian@phpunit.de",
  9900. "role": "lead"
  9901. }
  9902. ],
  9903. "description": "Library for calculating the complexity of PHP code units",
  9904. "homepage": "https://github.com/sebastianbergmann/complexity",
  9905. "support": {
  9906. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9907. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  9908. },
  9909. "funding": [
  9910. {
  9911. "url": "https://github.com/sebastianbergmann",
  9912. "type": "github"
  9913. }
  9914. ],
  9915. "time": "2020-10-26T15:52:27+00:00"
  9916. },
  9917. {
  9918. "name": "sebastian/diff",
  9919. "version": "4.0.4",
  9920. "source": {
  9921. "type": "git",
  9922. "url": "https://github.com/sebastianbergmann/diff.git",
  9923. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  9924. },
  9925. "dist": {
  9926. "type": "zip",
  9927. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9928. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9929. "shasum": ""
  9930. },
  9931. "require": {
  9932. "php": ">=7.3"
  9933. },
  9934. "require-dev": {
  9935. "phpunit/phpunit": "^9.3",
  9936. "symfony/process": "^4.2 || ^5"
  9937. },
  9938. "type": "library",
  9939. "extra": {
  9940. "branch-alias": {
  9941. "dev-master": "4.0-dev"
  9942. }
  9943. },
  9944. "autoload": {
  9945. "classmap": [
  9946. "src/"
  9947. ]
  9948. },
  9949. "notification-url": "https://packagist.org/downloads/",
  9950. "license": [
  9951. "BSD-3-Clause"
  9952. ],
  9953. "authors": [
  9954. {
  9955. "name": "Sebastian Bergmann",
  9956. "email": "sebastian@phpunit.de"
  9957. },
  9958. {
  9959. "name": "Kore Nordmann",
  9960. "email": "mail@kore-nordmann.de"
  9961. }
  9962. ],
  9963. "description": "Diff implementation",
  9964. "homepage": "https://github.com/sebastianbergmann/diff",
  9965. "keywords": [
  9966. "diff",
  9967. "udiff",
  9968. "unidiff",
  9969. "unified diff"
  9970. ],
  9971. "support": {
  9972. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9973. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  9974. },
  9975. "funding": [
  9976. {
  9977. "url": "https://github.com/sebastianbergmann",
  9978. "type": "github"
  9979. }
  9980. ],
  9981. "time": "2020-10-26T13:10:38+00:00"
  9982. },
  9983. {
  9984. "name": "sebastian/environment",
  9985. "version": "5.1.5",
  9986. "source": {
  9987. "type": "git",
  9988. "url": "https://github.com/sebastianbergmann/environment.git",
  9989. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9990. },
  9991. "dist": {
  9992. "type": "zip",
  9993. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9994. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9995. "shasum": ""
  9996. },
  9997. "require": {
  9998. "php": ">=7.3"
  9999. },
  10000. "require-dev": {
  10001. "phpunit/phpunit": "^9.3"
  10002. },
  10003. "suggest": {
  10004. "ext-posix": "*"
  10005. },
  10006. "type": "library",
  10007. "extra": {
  10008. "branch-alias": {
  10009. "dev-master": "5.1-dev"
  10010. }
  10011. },
  10012. "autoload": {
  10013. "classmap": [
  10014. "src/"
  10015. ]
  10016. },
  10017. "notification-url": "https://packagist.org/downloads/",
  10018. "license": [
  10019. "BSD-3-Clause"
  10020. ],
  10021. "authors": [
  10022. {
  10023. "name": "Sebastian Bergmann",
  10024. "email": "sebastian@phpunit.de"
  10025. }
  10026. ],
  10027. "description": "Provides functionality to handle HHVM/PHP environments",
  10028. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10029. "keywords": [
  10030. "Xdebug",
  10031. "environment",
  10032. "hhvm"
  10033. ],
  10034. "support": {
  10035. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10036. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10037. },
  10038. "funding": [
  10039. {
  10040. "url": "https://github.com/sebastianbergmann",
  10041. "type": "github"
  10042. }
  10043. ],
  10044. "time": "2023-02-03T06:03:51+00:00"
  10045. },
  10046. {
  10047. "name": "sebastian/exporter",
  10048. "version": "4.0.5",
  10049. "source": {
  10050. "type": "git",
  10051. "url": "https://github.com/sebastianbergmann/exporter.git",
  10052. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  10053. },
  10054. "dist": {
  10055. "type": "zip",
  10056. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10057. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10058. "shasum": ""
  10059. },
  10060. "require": {
  10061. "php": ">=7.3",
  10062. "sebastian/recursion-context": "^4.0"
  10063. },
  10064. "require-dev": {
  10065. "ext-mbstring": "*",
  10066. "phpunit/phpunit": "^9.3"
  10067. },
  10068. "type": "library",
  10069. "extra": {
  10070. "branch-alias": {
  10071. "dev-master": "4.0-dev"
  10072. }
  10073. },
  10074. "autoload": {
  10075. "classmap": [
  10076. "src/"
  10077. ]
  10078. },
  10079. "notification-url": "https://packagist.org/downloads/",
  10080. "license": [
  10081. "BSD-3-Clause"
  10082. ],
  10083. "authors": [
  10084. {
  10085. "name": "Sebastian Bergmann",
  10086. "email": "sebastian@phpunit.de"
  10087. },
  10088. {
  10089. "name": "Jeff Welch",
  10090. "email": "whatthejeff@gmail.com"
  10091. },
  10092. {
  10093. "name": "Volker Dusch",
  10094. "email": "github@wallbash.com"
  10095. },
  10096. {
  10097. "name": "Adam Harvey",
  10098. "email": "aharvey@php.net"
  10099. },
  10100. {
  10101. "name": "Bernhard Schussek",
  10102. "email": "bschussek@gmail.com"
  10103. }
  10104. ],
  10105. "description": "Provides the functionality to export PHP variables for visualization",
  10106. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10107. "keywords": [
  10108. "export",
  10109. "exporter"
  10110. ],
  10111. "support": {
  10112. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10113. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  10114. },
  10115. "funding": [
  10116. {
  10117. "url": "https://github.com/sebastianbergmann",
  10118. "type": "github"
  10119. }
  10120. ],
  10121. "time": "2022-09-14T06:03:37+00:00"
  10122. },
  10123. {
  10124. "name": "sebastian/global-state",
  10125. "version": "5.0.5",
  10126. "source": {
  10127. "type": "git",
  10128. "url": "https://github.com/sebastianbergmann/global-state.git",
  10129. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  10130. },
  10131. "dist": {
  10132. "type": "zip",
  10133. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10134. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10135. "shasum": ""
  10136. },
  10137. "require": {
  10138. "php": ">=7.3",
  10139. "sebastian/object-reflector": "^2.0",
  10140. "sebastian/recursion-context": "^4.0"
  10141. },
  10142. "require-dev": {
  10143. "ext-dom": "*",
  10144. "phpunit/phpunit": "^9.3"
  10145. },
  10146. "suggest": {
  10147. "ext-uopz": "*"
  10148. },
  10149. "type": "library",
  10150. "extra": {
  10151. "branch-alias": {
  10152. "dev-master": "5.0-dev"
  10153. }
  10154. },
  10155. "autoload": {
  10156. "classmap": [
  10157. "src/"
  10158. ]
  10159. },
  10160. "notification-url": "https://packagist.org/downloads/",
  10161. "license": [
  10162. "BSD-3-Clause"
  10163. ],
  10164. "authors": [
  10165. {
  10166. "name": "Sebastian Bergmann",
  10167. "email": "sebastian@phpunit.de"
  10168. }
  10169. ],
  10170. "description": "Snapshotting of global state",
  10171. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10172. "keywords": [
  10173. "global state"
  10174. ],
  10175. "support": {
  10176. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10177. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  10178. },
  10179. "funding": [
  10180. {
  10181. "url": "https://github.com/sebastianbergmann",
  10182. "type": "github"
  10183. }
  10184. ],
  10185. "time": "2022-02-14T08:28:10+00:00"
  10186. },
  10187. {
  10188. "name": "sebastian/lines-of-code",
  10189. "version": "1.0.3",
  10190. "source": {
  10191. "type": "git",
  10192. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10193. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10194. },
  10195. "dist": {
  10196. "type": "zip",
  10197. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10198. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10199. "shasum": ""
  10200. },
  10201. "require": {
  10202. "nikic/php-parser": "^4.6",
  10203. "php": ">=7.3"
  10204. },
  10205. "require-dev": {
  10206. "phpunit/phpunit": "^9.3"
  10207. },
  10208. "type": "library",
  10209. "extra": {
  10210. "branch-alias": {
  10211. "dev-master": "1.0-dev"
  10212. }
  10213. },
  10214. "autoload": {
  10215. "classmap": [
  10216. "src/"
  10217. ]
  10218. },
  10219. "notification-url": "https://packagist.org/downloads/",
  10220. "license": [
  10221. "BSD-3-Clause"
  10222. ],
  10223. "authors": [
  10224. {
  10225. "name": "Sebastian Bergmann",
  10226. "email": "sebastian@phpunit.de",
  10227. "role": "lead"
  10228. }
  10229. ],
  10230. "description": "Library for counting the lines of code in PHP source code",
  10231. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10232. "support": {
  10233. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10234. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10235. },
  10236. "funding": [
  10237. {
  10238. "url": "https://github.com/sebastianbergmann",
  10239. "type": "github"
  10240. }
  10241. ],
  10242. "time": "2020-11-28T06:42:11+00:00"
  10243. },
  10244. {
  10245. "name": "sebastian/object-enumerator",
  10246. "version": "4.0.4",
  10247. "source": {
  10248. "type": "git",
  10249. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10250. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10251. },
  10252. "dist": {
  10253. "type": "zip",
  10254. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10255. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10256. "shasum": ""
  10257. },
  10258. "require": {
  10259. "php": ">=7.3",
  10260. "sebastian/object-reflector": "^2.0",
  10261. "sebastian/recursion-context": "^4.0"
  10262. },
  10263. "require-dev": {
  10264. "phpunit/phpunit": "^9.3"
  10265. },
  10266. "type": "library",
  10267. "extra": {
  10268. "branch-alias": {
  10269. "dev-master": "4.0-dev"
  10270. }
  10271. },
  10272. "autoload": {
  10273. "classmap": [
  10274. "src/"
  10275. ]
  10276. },
  10277. "notification-url": "https://packagist.org/downloads/",
  10278. "license": [
  10279. "BSD-3-Clause"
  10280. ],
  10281. "authors": [
  10282. {
  10283. "name": "Sebastian Bergmann",
  10284. "email": "sebastian@phpunit.de"
  10285. }
  10286. ],
  10287. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10288. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10289. "support": {
  10290. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10291. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10292. },
  10293. "funding": [
  10294. {
  10295. "url": "https://github.com/sebastianbergmann",
  10296. "type": "github"
  10297. }
  10298. ],
  10299. "time": "2020-10-26T13:12:34+00:00"
  10300. },
  10301. {
  10302. "name": "sebastian/object-reflector",
  10303. "version": "2.0.4",
  10304. "source": {
  10305. "type": "git",
  10306. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10307. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10308. },
  10309. "dist": {
  10310. "type": "zip",
  10311. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10312. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10313. "shasum": ""
  10314. },
  10315. "require": {
  10316. "php": ">=7.3"
  10317. },
  10318. "require-dev": {
  10319. "phpunit/phpunit": "^9.3"
  10320. },
  10321. "type": "library",
  10322. "extra": {
  10323. "branch-alias": {
  10324. "dev-master": "2.0-dev"
  10325. }
  10326. },
  10327. "autoload": {
  10328. "classmap": [
  10329. "src/"
  10330. ]
  10331. },
  10332. "notification-url": "https://packagist.org/downloads/",
  10333. "license": [
  10334. "BSD-3-Clause"
  10335. ],
  10336. "authors": [
  10337. {
  10338. "name": "Sebastian Bergmann",
  10339. "email": "sebastian@phpunit.de"
  10340. }
  10341. ],
  10342. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10343. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10344. "support": {
  10345. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10346. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10347. },
  10348. "funding": [
  10349. {
  10350. "url": "https://github.com/sebastianbergmann",
  10351. "type": "github"
  10352. }
  10353. ],
  10354. "time": "2020-10-26T13:14:26+00:00"
  10355. },
  10356. {
  10357. "name": "sebastian/recursion-context",
  10358. "version": "4.0.5",
  10359. "source": {
  10360. "type": "git",
  10361. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10362. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10363. },
  10364. "dist": {
  10365. "type": "zip",
  10366. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10367. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10368. "shasum": ""
  10369. },
  10370. "require": {
  10371. "php": ">=7.3"
  10372. },
  10373. "require-dev": {
  10374. "phpunit/phpunit": "^9.3"
  10375. },
  10376. "type": "library",
  10377. "extra": {
  10378. "branch-alias": {
  10379. "dev-master": "4.0-dev"
  10380. }
  10381. },
  10382. "autoload": {
  10383. "classmap": [
  10384. "src/"
  10385. ]
  10386. },
  10387. "notification-url": "https://packagist.org/downloads/",
  10388. "license": [
  10389. "BSD-3-Clause"
  10390. ],
  10391. "authors": [
  10392. {
  10393. "name": "Sebastian Bergmann",
  10394. "email": "sebastian@phpunit.de"
  10395. },
  10396. {
  10397. "name": "Jeff Welch",
  10398. "email": "whatthejeff@gmail.com"
  10399. },
  10400. {
  10401. "name": "Adam Harvey",
  10402. "email": "aharvey@php.net"
  10403. }
  10404. ],
  10405. "description": "Provides functionality to recursively process PHP variables",
  10406. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10407. "support": {
  10408. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10409. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10410. },
  10411. "funding": [
  10412. {
  10413. "url": "https://github.com/sebastianbergmann",
  10414. "type": "github"
  10415. }
  10416. ],
  10417. "time": "2023-02-03T06:07:39+00:00"
  10418. },
  10419. {
  10420. "name": "sebastian/resource-operations",
  10421. "version": "3.0.3",
  10422. "source": {
  10423. "type": "git",
  10424. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10425. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10426. },
  10427. "dist": {
  10428. "type": "zip",
  10429. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10430. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10431. "shasum": ""
  10432. },
  10433. "require": {
  10434. "php": ">=7.3"
  10435. },
  10436. "require-dev": {
  10437. "phpunit/phpunit": "^9.0"
  10438. },
  10439. "type": "library",
  10440. "extra": {
  10441. "branch-alias": {
  10442. "dev-master": "3.0-dev"
  10443. }
  10444. },
  10445. "autoload": {
  10446. "classmap": [
  10447. "src/"
  10448. ]
  10449. },
  10450. "notification-url": "https://packagist.org/downloads/",
  10451. "license": [
  10452. "BSD-3-Clause"
  10453. ],
  10454. "authors": [
  10455. {
  10456. "name": "Sebastian Bergmann",
  10457. "email": "sebastian@phpunit.de"
  10458. }
  10459. ],
  10460. "description": "Provides a list of PHP built-in functions that operate on resources",
  10461. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10462. "support": {
  10463. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10464. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10465. },
  10466. "funding": [
  10467. {
  10468. "url": "https://github.com/sebastianbergmann",
  10469. "type": "github"
  10470. }
  10471. ],
  10472. "time": "2020-09-28T06:45:17+00:00"
  10473. },
  10474. {
  10475. "name": "sebastian/type",
  10476. "version": "3.2.1",
  10477. "source": {
  10478. "type": "git",
  10479. "url": "https://github.com/sebastianbergmann/type.git",
  10480. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10481. },
  10482. "dist": {
  10483. "type": "zip",
  10484. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10485. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10486. "shasum": ""
  10487. },
  10488. "require": {
  10489. "php": ">=7.3"
  10490. },
  10491. "require-dev": {
  10492. "phpunit/phpunit": "^9.5"
  10493. },
  10494. "type": "library",
  10495. "extra": {
  10496. "branch-alias": {
  10497. "dev-master": "3.2-dev"
  10498. }
  10499. },
  10500. "autoload": {
  10501. "classmap": [
  10502. "src/"
  10503. ]
  10504. },
  10505. "notification-url": "https://packagist.org/downloads/",
  10506. "license": [
  10507. "BSD-3-Clause"
  10508. ],
  10509. "authors": [
  10510. {
  10511. "name": "Sebastian Bergmann",
  10512. "email": "sebastian@phpunit.de",
  10513. "role": "lead"
  10514. }
  10515. ],
  10516. "description": "Collection of value objects that represent the types of the PHP type system",
  10517. "homepage": "https://github.com/sebastianbergmann/type",
  10518. "support": {
  10519. "issues": "https://github.com/sebastianbergmann/type/issues",
  10520. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10521. },
  10522. "funding": [
  10523. {
  10524. "url": "https://github.com/sebastianbergmann",
  10525. "type": "github"
  10526. }
  10527. ],
  10528. "time": "2023-02-03T06:13:03+00:00"
  10529. },
  10530. {
  10531. "name": "sebastian/version",
  10532. "version": "3.0.2",
  10533. "source": {
  10534. "type": "git",
  10535. "url": "https://github.com/sebastianbergmann/version.git",
  10536. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10537. },
  10538. "dist": {
  10539. "type": "zip",
  10540. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10541. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10542. "shasum": ""
  10543. },
  10544. "require": {
  10545. "php": ">=7.3"
  10546. },
  10547. "type": "library",
  10548. "extra": {
  10549. "branch-alias": {
  10550. "dev-master": "3.0-dev"
  10551. }
  10552. },
  10553. "autoload": {
  10554. "classmap": [
  10555. "src/"
  10556. ]
  10557. },
  10558. "notification-url": "https://packagist.org/downloads/",
  10559. "license": [
  10560. "BSD-3-Clause"
  10561. ],
  10562. "authors": [
  10563. {
  10564. "name": "Sebastian Bergmann",
  10565. "email": "sebastian@phpunit.de",
  10566. "role": "lead"
  10567. }
  10568. ],
  10569. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10570. "homepage": "https://github.com/sebastianbergmann/version",
  10571. "support": {
  10572. "issues": "https://github.com/sebastianbergmann/version/issues",
  10573. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10574. },
  10575. "funding": [
  10576. {
  10577. "url": "https://github.com/sebastianbergmann",
  10578. "type": "github"
  10579. }
  10580. ],
  10581. "time": "2020-09-28T06:39:44+00:00"
  10582. },
  10583. {
  10584. "name": "spatie/backtrace",
  10585. "version": "1.4.0",
  10586. "source": {
  10587. "type": "git",
  10588. "url": "https://github.com/spatie/backtrace.git",
  10589. "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c"
  10590. },
  10591. "dist": {
  10592. "type": "zip",
  10593. "url": "https://api.github.com/repos/spatie/backtrace/zipball/ec4dd16476b802dbdc6b4467f84032837e316b8c",
  10594. "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c",
  10595. "shasum": ""
  10596. },
  10597. "require": {
  10598. "php": "^7.3|^8.0"
  10599. },
  10600. "require-dev": {
  10601. "ext-json": "*",
  10602. "phpunit/phpunit": "^9.3",
  10603. "spatie/phpunit-snapshot-assertions": "^4.2",
  10604. "symfony/var-dumper": "^5.1"
  10605. },
  10606. "type": "library",
  10607. "autoload": {
  10608. "psr-4": {
  10609. "Spatie\\Backtrace\\": "src"
  10610. }
  10611. },
  10612. "notification-url": "https://packagist.org/downloads/",
  10613. "license": [
  10614. "MIT"
  10615. ],
  10616. "authors": [
  10617. {
  10618. "name": "Freek Van de Herten",
  10619. "email": "freek@spatie.be",
  10620. "homepage": "https://spatie.be",
  10621. "role": "Developer"
  10622. }
  10623. ],
  10624. "description": "A better backtrace",
  10625. "homepage": "https://github.com/spatie/backtrace",
  10626. "keywords": [
  10627. "Backtrace",
  10628. "spatie"
  10629. ],
  10630. "support": {
  10631. "source": "https://github.com/spatie/backtrace/tree/1.4.0"
  10632. },
  10633. "funding": [
  10634. {
  10635. "url": "https://github.com/sponsors/spatie",
  10636. "type": "github"
  10637. },
  10638. {
  10639. "url": "https://spatie.be/open-source/support-us",
  10640. "type": "other"
  10641. }
  10642. ],
  10643. "time": "2023-03-04T08:57:24+00:00"
  10644. },
  10645. {
  10646. "name": "spatie/flare-client-php",
  10647. "version": "1.3.5",
  10648. "source": {
  10649. "type": "git",
  10650. "url": "https://github.com/spatie/flare-client-php.git",
  10651. "reference": "3e5dd5ac4928f3d2d036bd02de5eb83fd0ef1f42"
  10652. },
  10653. "dist": {
  10654. "type": "zip",
  10655. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/3e5dd5ac4928f3d2d036bd02de5eb83fd0ef1f42",
  10656. "reference": "3e5dd5ac4928f3d2d036bd02de5eb83fd0ef1f42",
  10657. "shasum": ""
  10658. },
  10659. "require": {
  10660. "illuminate/pipeline": "^8.0|^9.0|^10.0",
  10661. "php": "^8.0",
  10662. "spatie/backtrace": "^1.2",
  10663. "symfony/http-foundation": "^5.0|^6.0",
  10664. "symfony/mime": "^5.2|^6.0",
  10665. "symfony/process": "^5.2|^6.0",
  10666. "symfony/var-dumper": "^5.2|^6.0"
  10667. },
  10668. "require-dev": {
  10669. "dms/phpunit-arraysubset-asserts": "^0.3.0",
  10670. "pestphp/pest": "^1.20",
  10671. "phpstan/extension-installer": "^1.1",
  10672. "phpstan/phpstan-deprecation-rules": "^1.0",
  10673. "phpstan/phpstan-phpunit": "^1.0",
  10674. "spatie/phpunit-snapshot-assertions": "^4.0"
  10675. },
  10676. "type": "library",
  10677. "extra": {
  10678. "branch-alias": {
  10679. "dev-main": "1.1.x-dev"
  10680. }
  10681. },
  10682. "autoload": {
  10683. "files": [
  10684. "src/helpers.php"
  10685. ],
  10686. "psr-4": {
  10687. "Spatie\\FlareClient\\": "src"
  10688. }
  10689. },
  10690. "notification-url": "https://packagist.org/downloads/",
  10691. "license": [
  10692. "MIT"
  10693. ],
  10694. "description": "Send PHP errors to Flare",
  10695. "homepage": "https://github.com/spatie/flare-client-php",
  10696. "keywords": [
  10697. "exception",
  10698. "flare",
  10699. "reporting",
  10700. "spatie"
  10701. ],
  10702. "support": {
  10703. "issues": "https://github.com/spatie/flare-client-php/issues",
  10704. "source": "https://github.com/spatie/flare-client-php/tree/1.3.5"
  10705. },
  10706. "funding": [
  10707. {
  10708. "url": "https://github.com/spatie",
  10709. "type": "github"
  10710. }
  10711. ],
  10712. "time": "2023-01-23T15:58:46+00:00"
  10713. },
  10714. {
  10715. "name": "spatie/ignition",
  10716. "version": "1.4.5",
  10717. "source": {
  10718. "type": "git",
  10719. "url": "https://github.com/spatie/ignition.git",
  10720. "reference": "cc09114b7057bd217b676f047544b33f5b6247e6"
  10721. },
  10722. "dist": {
  10723. "type": "zip",
  10724. "url": "https://api.github.com/repos/spatie/ignition/zipball/cc09114b7057bd217b676f047544b33f5b6247e6",
  10725. "reference": "cc09114b7057bd217b676f047544b33f5b6247e6",
  10726. "shasum": ""
  10727. },
  10728. "require": {
  10729. "ext-json": "*",
  10730. "ext-mbstring": "*",
  10731. "php": "^8.0",
  10732. "spatie/flare-client-php": "^1.1",
  10733. "symfony/console": "^5.4|^6.0",
  10734. "symfony/var-dumper": "^5.4|^6.0"
  10735. },
  10736. "require-dev": {
  10737. "mockery/mockery": "^1.4",
  10738. "pestphp/pest": "^1.20",
  10739. "phpstan/extension-installer": "^1.1",
  10740. "phpstan/phpstan-deprecation-rules": "^1.0",
  10741. "phpstan/phpstan-phpunit": "^1.0",
  10742. "symfony/process": "^5.4|^6.0"
  10743. },
  10744. "type": "library",
  10745. "extra": {
  10746. "branch-alias": {
  10747. "dev-main": "1.4.x-dev"
  10748. }
  10749. },
  10750. "autoload": {
  10751. "psr-4": {
  10752. "Spatie\\Ignition\\": "src"
  10753. }
  10754. },
  10755. "notification-url": "https://packagist.org/downloads/",
  10756. "license": [
  10757. "MIT"
  10758. ],
  10759. "authors": [
  10760. {
  10761. "name": "Spatie",
  10762. "email": "info@spatie.be",
  10763. "role": "Developer"
  10764. }
  10765. ],
  10766. "description": "A beautiful error page for PHP applications.",
  10767. "homepage": "https://flareapp.io/ignition",
  10768. "keywords": [
  10769. "error",
  10770. "flare",
  10771. "laravel",
  10772. "page"
  10773. ],
  10774. "support": {
  10775. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10776. "forum": "https://twitter.com/flareappio",
  10777. "issues": "https://github.com/spatie/ignition/issues",
  10778. "source": "https://github.com/spatie/ignition"
  10779. },
  10780. "funding": [
  10781. {
  10782. "url": "https://github.com/spatie",
  10783. "type": "github"
  10784. }
  10785. ],
  10786. "time": "2023-02-28T16:49:47+00:00"
  10787. },
  10788. {
  10789. "name": "spatie/laravel-ignition",
  10790. "version": "1.6.4",
  10791. "source": {
  10792. "type": "git",
  10793. "url": "https://github.com/spatie/laravel-ignition.git",
  10794. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc"
  10795. },
  10796. "dist": {
  10797. "type": "zip",
  10798. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  10799. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  10800. "shasum": ""
  10801. },
  10802. "require": {
  10803. "ext-curl": "*",
  10804. "ext-json": "*",
  10805. "ext-mbstring": "*",
  10806. "illuminate/support": "^8.77|^9.27",
  10807. "monolog/monolog": "^2.3",
  10808. "php": "^8.0",
  10809. "spatie/flare-client-php": "^1.0.1",
  10810. "spatie/ignition": "^1.4.1",
  10811. "symfony/console": "^5.0|^6.0",
  10812. "symfony/var-dumper": "^5.0|^6.0"
  10813. },
  10814. "require-dev": {
  10815. "filp/whoops": "^2.14",
  10816. "livewire/livewire": "^2.8|dev-develop",
  10817. "mockery/mockery": "^1.4",
  10818. "nunomaduro/larastan": "^1.0",
  10819. "orchestra/testbench": "^6.23|^7.0",
  10820. "pestphp/pest": "^1.20",
  10821. "phpstan/extension-installer": "^1.1",
  10822. "phpstan/phpstan-deprecation-rules": "^1.0",
  10823. "phpstan/phpstan-phpunit": "^1.0",
  10824. "spatie/laravel-ray": "^1.27"
  10825. },
  10826. "type": "library",
  10827. "extra": {
  10828. "laravel": {
  10829. "providers": [
  10830. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  10831. ],
  10832. "aliases": {
  10833. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  10834. }
  10835. }
  10836. },
  10837. "autoload": {
  10838. "files": [
  10839. "src/helpers.php"
  10840. ],
  10841. "psr-4": {
  10842. "Spatie\\LaravelIgnition\\": "src"
  10843. }
  10844. },
  10845. "notification-url": "https://packagist.org/downloads/",
  10846. "license": [
  10847. "MIT"
  10848. ],
  10849. "authors": [
  10850. {
  10851. "name": "Spatie",
  10852. "email": "info@spatie.be",
  10853. "role": "Developer"
  10854. }
  10855. ],
  10856. "description": "A beautiful error page for Laravel applications.",
  10857. "homepage": "https://flareapp.io/ignition",
  10858. "keywords": [
  10859. "error",
  10860. "flare",
  10861. "laravel",
  10862. "page"
  10863. ],
  10864. "support": {
  10865. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10866. "forum": "https://twitter.com/flareappio",
  10867. "issues": "https://github.com/spatie/laravel-ignition/issues",
  10868. "source": "https://github.com/spatie/laravel-ignition"
  10869. },
  10870. "funding": [
  10871. {
  10872. "url": "https://github.com/spatie",
  10873. "type": "github"
  10874. }
  10875. ],
  10876. "time": "2023-01-03T19:28:04+00:00"
  10877. },
  10878. {
  10879. "name": "symfony/yaml",
  10880. "version": "v6.2.7",
  10881. "source": {
  10882. "type": "git",
  10883. "url": "https://github.com/symfony/yaml.git",
  10884. "reference": "e8e6a1d59e050525f27a1f530aa9703423cb7f57"
  10885. },
  10886. "dist": {
  10887. "type": "zip",
  10888. "url": "https://api.github.com/repos/symfony/yaml/zipball/e8e6a1d59e050525f27a1f530aa9703423cb7f57",
  10889. "reference": "e8e6a1d59e050525f27a1f530aa9703423cb7f57",
  10890. "shasum": ""
  10891. },
  10892. "require": {
  10893. "php": ">=8.1",
  10894. "symfony/polyfill-ctype": "^1.8"
  10895. },
  10896. "conflict": {
  10897. "symfony/console": "<5.4"
  10898. },
  10899. "require-dev": {
  10900. "symfony/console": "^5.4|^6.0"
  10901. },
  10902. "suggest": {
  10903. "symfony/console": "For validating YAML files using the lint command"
  10904. },
  10905. "bin": [
  10906. "Resources/bin/yaml-lint"
  10907. ],
  10908. "type": "library",
  10909. "autoload": {
  10910. "psr-4": {
  10911. "Symfony\\Component\\Yaml\\": ""
  10912. },
  10913. "exclude-from-classmap": [
  10914. "/Tests/"
  10915. ]
  10916. },
  10917. "notification-url": "https://packagist.org/downloads/",
  10918. "license": [
  10919. "MIT"
  10920. ],
  10921. "authors": [
  10922. {
  10923. "name": "Fabien Potencier",
  10924. "email": "fabien@symfony.com"
  10925. },
  10926. {
  10927. "name": "Symfony Community",
  10928. "homepage": "https://symfony.com/contributors"
  10929. }
  10930. ],
  10931. "description": "Loads and dumps YAML files",
  10932. "homepage": "https://symfony.com",
  10933. "support": {
  10934. "source": "https://github.com/symfony/yaml/tree/v6.2.7"
  10935. },
  10936. "funding": [
  10937. {
  10938. "url": "https://symfony.com/sponsor",
  10939. "type": "custom"
  10940. },
  10941. {
  10942. "url": "https://github.com/fabpot",
  10943. "type": "github"
  10944. },
  10945. {
  10946. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10947. "type": "tidelift"
  10948. }
  10949. ],
  10950. "time": "2023-02-16T09:57:23+00:00"
  10951. },
  10952. {
  10953. "name": "theseer/tokenizer",
  10954. "version": "1.2.1",
  10955. "source": {
  10956. "type": "git",
  10957. "url": "https://github.com/theseer/tokenizer.git",
  10958. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10959. },
  10960. "dist": {
  10961. "type": "zip",
  10962. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10963. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10964. "shasum": ""
  10965. },
  10966. "require": {
  10967. "ext-dom": "*",
  10968. "ext-tokenizer": "*",
  10969. "ext-xmlwriter": "*",
  10970. "php": "^7.2 || ^8.0"
  10971. },
  10972. "type": "library",
  10973. "autoload": {
  10974. "classmap": [
  10975. "src/"
  10976. ]
  10977. },
  10978. "notification-url": "https://packagist.org/downloads/",
  10979. "license": [
  10980. "BSD-3-Clause"
  10981. ],
  10982. "authors": [
  10983. {
  10984. "name": "Arne Blankerts",
  10985. "email": "arne@blankerts.de",
  10986. "role": "Developer"
  10987. }
  10988. ],
  10989. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10990. "support": {
  10991. "issues": "https://github.com/theseer/tokenizer/issues",
  10992. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10993. },
  10994. "funding": [
  10995. {
  10996. "url": "https://github.com/theseer",
  10997. "type": "github"
  10998. }
  10999. ],
  11000. "time": "2021-07-28T10:34:58+00:00"
  11001. }
  11002. ],
  11003. "aliases": [],
  11004. "minimum-stability": "dev",
  11005. "stability-flags": [],
  11006. "prefer-stable": true,
  11007. "prefer-lowest": false,
  11008. "platform": {
  11009. "php": "^8.1",
  11010. "ext-intl": "*"
  11011. },
  11012. "platform-dev": [],
  11013. "platform-overrides": {
  11014. "php": "8.1"
  11015. },
  11016. "plugin-api-version": "2.3.0"
  11017. }