composer.lock 374 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459
  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": "be76c9bab8622d363a4eb843794e9e3e",
  8. "packages": [
  9. {
  10. "name": "aws/aws-crt-php",
  11. "version": "v1.0.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/awslabs/aws-crt-php.git",
  15. "reference": "3942776a8c99209908ee0b287746263725685732"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/3942776a8c99209908ee0b287746263725685732",
  20. "reference": "3942776a8c99209908ee0b287746263725685732",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^4.8.35|^5.4.3"
  28. },
  29. "type": "library",
  30. "autoload": {
  31. "classmap": [
  32. "src/"
  33. ]
  34. },
  35. "notification-url": "https://packagist.org/downloads/",
  36. "license": [
  37. "Apache-2.0"
  38. ],
  39. "authors": [
  40. {
  41. "name": "AWS SDK Common Runtime Team",
  42. "email": "aws-sdk-common-runtime@amazon.com"
  43. }
  44. ],
  45. "description": "AWS Common Runtime for PHP",
  46. "homepage": "http://aws.amazon.com/sdkforphp",
  47. "keywords": [
  48. "amazon",
  49. "aws",
  50. "crt",
  51. "sdk"
  52. ],
  53. "support": {
  54. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  55. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.0.2"
  56. },
  57. "time": "2021-09-03T22:57:30+00:00"
  58. },
  59. {
  60. "name": "aws/aws-sdk-php",
  61. "version": "3.255.9",
  62. "source": {
  63. "type": "git",
  64. "url": "https://github.com/aws/aws-sdk-php.git",
  65. "reference": "a001ab98b9e76a6f5cae327b3316b08fab37a296"
  66. },
  67. "dist": {
  68. "type": "zip",
  69. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/a001ab98b9e76a6f5cae327b3316b08fab37a296",
  70. "reference": "a001ab98b9e76a6f5cae327b3316b08fab37a296",
  71. "shasum": ""
  72. },
  73. "require": {
  74. "aws/aws-crt-php": "^1.0.2",
  75. "ext-json": "*",
  76. "ext-pcre": "*",
  77. "ext-simplexml": "*",
  78. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  79. "guzzlehttp/promises": "^1.4.0",
  80. "guzzlehttp/psr7": "^1.8.5 || ^2.3",
  81. "mtdowling/jmespath.php": "^2.6",
  82. "php": ">=5.5"
  83. },
  84. "require-dev": {
  85. "andrewsville/php-token-reflection": "^1.4",
  86. "aws/aws-php-sns-message-validator": "~1.0",
  87. "behat/behat": "~3.0",
  88. "composer/composer": "^1.10.22",
  89. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  90. "doctrine/cache": "~1.4",
  91. "ext-dom": "*",
  92. "ext-openssl": "*",
  93. "ext-pcntl": "*",
  94. "ext-sockets": "*",
  95. "nette/neon": "^2.3",
  96. "paragonie/random_compat": ">= 2",
  97. "phpunit/phpunit": "^4.8.35 || ^5.6.3 || ^9.5",
  98. "psr/cache": "^1.0",
  99. "psr/simple-cache": "^1.0",
  100. "sebastian/comparator": "^1.2.3 || ^4.0",
  101. "yoast/phpunit-polyfills": "^1.0"
  102. },
  103. "suggest": {
  104. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  105. "doctrine/cache": "To use the DoctrineCacheAdapter",
  106. "ext-curl": "To send requests using cURL",
  107. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  108. "ext-sockets": "To use client-side monitoring"
  109. },
  110. "type": "library",
  111. "extra": {
  112. "branch-alias": {
  113. "dev-master": "3.0-dev"
  114. }
  115. },
  116. "autoload": {
  117. "files": [
  118. "src/functions.php"
  119. ],
  120. "psr-4": {
  121. "Aws\\": "src/"
  122. }
  123. },
  124. "notification-url": "https://packagist.org/downloads/",
  125. "license": [
  126. "Apache-2.0"
  127. ],
  128. "authors": [
  129. {
  130. "name": "Amazon Web Services",
  131. "homepage": "http://aws.amazon.com"
  132. }
  133. ],
  134. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  135. "homepage": "http://aws.amazon.com/sdkforphp",
  136. "keywords": [
  137. "amazon",
  138. "aws",
  139. "cloud",
  140. "dynamodb",
  141. "ec2",
  142. "glacier",
  143. "s3",
  144. "sdk"
  145. ],
  146. "support": {
  147. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  148. "issues": "https://github.com/aws/aws-sdk-php/issues",
  149. "source": "https://github.com/aws/aws-sdk-php/tree/3.255.9"
  150. },
  151. "time": "2023-01-04T19:24:09+00:00"
  152. },
  153. {
  154. "name": "barryvdh/laravel-dompdf",
  155. "version": "v2.0.0",
  156. "source": {
  157. "type": "git",
  158. "url": "https://github.com/barryvdh/laravel-dompdf.git",
  159. "reference": "1d47648c6cef37f715ecb8bcc5f5a656ad372e27"
  160. },
  161. "dist": {
  162. "type": "zip",
  163. "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/1d47648c6cef37f715ecb8bcc5f5a656ad372e27",
  164. "reference": "1d47648c6cef37f715ecb8bcc5f5a656ad372e27",
  165. "shasum": ""
  166. },
  167. "require": {
  168. "dompdf/dompdf": "^2",
  169. "illuminate/support": "^6|^7|^8|^9",
  170. "php": "^7.2 || ^8.0"
  171. },
  172. "require-dev": {
  173. "nunomaduro/larastan": "^1|^2",
  174. "orchestra/testbench": "^4|^5|^6|^7",
  175. "phpro/grumphp": "^1",
  176. "squizlabs/php_codesniffer": "^3.5"
  177. },
  178. "type": "library",
  179. "extra": {
  180. "branch-alias": {
  181. "dev-master": "2.0-dev"
  182. },
  183. "laravel": {
  184. "providers": [
  185. "Barryvdh\\DomPDF\\ServiceProvider"
  186. ],
  187. "aliases": {
  188. "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf",
  189. "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf"
  190. }
  191. }
  192. },
  193. "autoload": {
  194. "psr-4": {
  195. "Barryvdh\\DomPDF\\": "src"
  196. }
  197. },
  198. "notification-url": "https://packagist.org/downloads/",
  199. "license": [
  200. "MIT"
  201. ],
  202. "authors": [
  203. {
  204. "name": "Barry vd. Heuvel",
  205. "email": "barryvdh@gmail.com"
  206. }
  207. ],
  208. "description": "A DOMPDF Wrapper for Laravel",
  209. "keywords": [
  210. "dompdf",
  211. "laravel",
  212. "pdf"
  213. ],
  214. "support": {
  215. "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
  216. "source": "https://github.com/barryvdh/laravel-dompdf/tree/v2.0.0"
  217. },
  218. "funding": [
  219. {
  220. "url": "https://fruitcake.nl",
  221. "type": "custom"
  222. },
  223. {
  224. "url": "https://github.com/barryvdh",
  225. "type": "github"
  226. }
  227. ],
  228. "time": "2022-07-06T11:12:10+00:00"
  229. },
  230. {
  231. "name": "biscolab/laravel-recaptcha",
  232. "version": "v5.4.0",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/biscolab/laravel-recaptcha.git",
  236. "reference": "1bab726402d5376553a439b88a0faa07e84488fd"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/biscolab/laravel-recaptcha/zipball/1bab726402d5376553a439b88a0faa07e84488fd",
  241. "reference": "1bab726402d5376553a439b88a0faa07e84488fd",
  242. "shasum": ""
  243. },
  244. "require": {
  245. "illuminate/routing": "^7.0|^8.0|^9.0",
  246. "illuminate/support": "^7.0|^8.0|^9.0",
  247. "php": "^7.3|^8.0"
  248. },
  249. "require-dev": {
  250. "orchestra/testbench": "5.*|6.*|^7.0",
  251. "phpunit/phpunit": "^9.1"
  252. },
  253. "suggest": {
  254. "biscolab/laravel-authlog": "It allows to handle logged-in users and force log-out if needed"
  255. },
  256. "type": "library",
  257. "extra": {
  258. "laravel": {
  259. "providers": [
  260. "Biscolab\\ReCaptcha\\ReCaptchaServiceProvider"
  261. ],
  262. "aliases": {
  263. "ReCaptcha": "Biscolab\\ReCaptcha\\Facades\\ReCaptcha"
  264. }
  265. }
  266. },
  267. "autoload": {
  268. "files": [
  269. "src/helpers.php"
  270. ],
  271. "psr-4": {
  272. "Biscolab\\ReCaptcha\\": "src/"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Roberto Belotti",
  282. "email": "roby.belotti@gmail.com",
  283. "homepage": "https://biscolab.com",
  284. "role": "Developer"
  285. }
  286. ],
  287. "description": "Simple and painless Google reCAPTCHA package for Laravel framework",
  288. "homepage": "https://biscolab.com/laravel-recaptcha",
  289. "keywords": [
  290. "captcha",
  291. "laravel",
  292. "recaptcha",
  293. "validation"
  294. ],
  295. "support": {
  296. "issues": "https://github.com/biscolab/laravel-recaptcha/issues",
  297. "source": "https://github.com/biscolab/laravel-recaptcha/tree/v5.4.0"
  298. },
  299. "time": "2022-05-07T12:52:46+00:00"
  300. },
  301. {
  302. "name": "brick/math",
  303. "version": "0.10.2",
  304. "source": {
  305. "type": "git",
  306. "url": "https://github.com/brick/math.git",
  307. "reference": "459f2781e1a08d52ee56b0b1444086e038561e3f"
  308. },
  309. "dist": {
  310. "type": "zip",
  311. "url": "https://api.github.com/repos/brick/math/zipball/459f2781e1a08d52ee56b0b1444086e038561e3f",
  312. "reference": "459f2781e1a08d52ee56b0b1444086e038561e3f",
  313. "shasum": ""
  314. },
  315. "require": {
  316. "ext-json": "*",
  317. "php": "^7.4 || ^8.0"
  318. },
  319. "require-dev": {
  320. "php-coveralls/php-coveralls": "^2.2",
  321. "phpunit/phpunit": "^9.0",
  322. "vimeo/psalm": "4.25.0"
  323. },
  324. "type": "library",
  325. "autoload": {
  326. "psr-4": {
  327. "Brick\\Math\\": "src/"
  328. }
  329. },
  330. "notification-url": "https://packagist.org/downloads/",
  331. "license": [
  332. "MIT"
  333. ],
  334. "description": "Arbitrary-precision arithmetic library",
  335. "keywords": [
  336. "Arbitrary-precision",
  337. "BigInteger",
  338. "BigRational",
  339. "arithmetic",
  340. "bigdecimal",
  341. "bignum",
  342. "brick",
  343. "math"
  344. ],
  345. "support": {
  346. "issues": "https://github.com/brick/math/issues",
  347. "source": "https://github.com/brick/math/tree/0.10.2"
  348. },
  349. "funding": [
  350. {
  351. "url": "https://github.com/BenMorel",
  352. "type": "github"
  353. }
  354. ],
  355. "time": "2022-08-10T22:54:19+00:00"
  356. },
  357. {
  358. "name": "dflydev/dot-access-data",
  359. "version": "v3.0.2",
  360. "source": {
  361. "type": "git",
  362. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  363. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  364. },
  365. "dist": {
  366. "type": "zip",
  367. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  368. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  369. "shasum": ""
  370. },
  371. "require": {
  372. "php": "^7.1 || ^8.0"
  373. },
  374. "require-dev": {
  375. "phpstan/phpstan": "^0.12.42",
  376. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  377. "scrutinizer/ocular": "1.6.0",
  378. "squizlabs/php_codesniffer": "^3.5",
  379. "vimeo/psalm": "^4.0.0"
  380. },
  381. "type": "library",
  382. "extra": {
  383. "branch-alias": {
  384. "dev-main": "3.x-dev"
  385. }
  386. },
  387. "autoload": {
  388. "psr-4": {
  389. "Dflydev\\DotAccessData\\": "src/"
  390. }
  391. },
  392. "notification-url": "https://packagist.org/downloads/",
  393. "license": [
  394. "MIT"
  395. ],
  396. "authors": [
  397. {
  398. "name": "Dragonfly Development Inc.",
  399. "email": "info@dflydev.com",
  400. "homepage": "http://dflydev.com"
  401. },
  402. {
  403. "name": "Beau Simensen",
  404. "email": "beau@dflydev.com",
  405. "homepage": "http://beausimensen.com"
  406. },
  407. {
  408. "name": "Carlos Frutos",
  409. "email": "carlos@kiwing.it",
  410. "homepage": "https://github.com/cfrutos"
  411. },
  412. {
  413. "name": "Colin O'Dell",
  414. "email": "colinodell@gmail.com",
  415. "homepage": "https://www.colinodell.com"
  416. }
  417. ],
  418. "description": "Given a deep data structure, access data by dot notation.",
  419. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  420. "keywords": [
  421. "access",
  422. "data",
  423. "dot",
  424. "notation"
  425. ],
  426. "support": {
  427. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  428. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  429. },
  430. "time": "2022-10-27T11:44:00+00:00"
  431. },
  432. {
  433. "name": "doctrine/cache",
  434. "version": "2.2.0",
  435. "source": {
  436. "type": "git",
  437. "url": "https://github.com/doctrine/cache.git",
  438. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  439. },
  440. "dist": {
  441. "type": "zip",
  442. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  443. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  444. "shasum": ""
  445. },
  446. "require": {
  447. "php": "~7.1 || ^8.0"
  448. },
  449. "conflict": {
  450. "doctrine/common": ">2.2,<2.4"
  451. },
  452. "require-dev": {
  453. "cache/integration-tests": "dev-master",
  454. "doctrine/coding-standard": "^9",
  455. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  456. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  457. "symfony/cache": "^4.4 || ^5.4 || ^6",
  458. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  459. },
  460. "type": "library",
  461. "autoload": {
  462. "psr-4": {
  463. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  464. }
  465. },
  466. "notification-url": "https://packagist.org/downloads/",
  467. "license": [
  468. "MIT"
  469. ],
  470. "authors": [
  471. {
  472. "name": "Guilherme Blanco",
  473. "email": "guilhermeblanco@gmail.com"
  474. },
  475. {
  476. "name": "Roman Borschel",
  477. "email": "roman@code-factory.org"
  478. },
  479. {
  480. "name": "Benjamin Eberlei",
  481. "email": "kontakt@beberlei.de"
  482. },
  483. {
  484. "name": "Jonathan Wage",
  485. "email": "jonwage@gmail.com"
  486. },
  487. {
  488. "name": "Johannes Schmitt",
  489. "email": "schmittjoh@gmail.com"
  490. }
  491. ],
  492. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  493. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  494. "keywords": [
  495. "abstraction",
  496. "apcu",
  497. "cache",
  498. "caching",
  499. "couchdb",
  500. "memcached",
  501. "php",
  502. "redis",
  503. "xcache"
  504. ],
  505. "support": {
  506. "issues": "https://github.com/doctrine/cache/issues",
  507. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  508. },
  509. "funding": [
  510. {
  511. "url": "https://www.doctrine-project.org/sponsorship.html",
  512. "type": "custom"
  513. },
  514. {
  515. "url": "https://www.patreon.com/phpdoctrine",
  516. "type": "patreon"
  517. },
  518. {
  519. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  520. "type": "tidelift"
  521. }
  522. ],
  523. "time": "2022-05-20T20:07:39+00:00"
  524. },
  525. {
  526. "name": "doctrine/dbal",
  527. "version": "3.5.2",
  528. "source": {
  529. "type": "git",
  530. "url": "https://github.com/doctrine/dbal.git",
  531. "reference": "63e513cebbbaf96a6795e5c5ee34d205831bfc85"
  532. },
  533. "dist": {
  534. "type": "zip",
  535. "url": "https://api.github.com/repos/doctrine/dbal/zipball/63e513cebbbaf96a6795e5c5ee34d205831bfc85",
  536. "reference": "63e513cebbbaf96a6795e5c5ee34d205831bfc85",
  537. "shasum": ""
  538. },
  539. "require": {
  540. "composer-runtime-api": "^2",
  541. "doctrine/cache": "^1.11|^2.0",
  542. "doctrine/deprecations": "^0.5.3|^1",
  543. "doctrine/event-manager": "^1|^2",
  544. "php": "^7.4 || ^8.0",
  545. "psr/cache": "^1|^2|^3",
  546. "psr/log": "^1|^2|^3"
  547. },
  548. "require-dev": {
  549. "doctrine/coding-standard": "11.0.0",
  550. "jetbrains/phpstorm-stubs": "2022.3",
  551. "phpstan/phpstan": "1.9.2",
  552. "phpstan/phpstan-strict-rules": "^1.4",
  553. "phpunit/phpunit": "9.5.27",
  554. "psalm/plugin-phpunit": "0.18.4",
  555. "squizlabs/php_codesniffer": "3.7.1",
  556. "symfony/cache": "^5.4|^6.0",
  557. "symfony/console": "^4.4|^5.4|^6.0",
  558. "vimeo/psalm": "4.30.0"
  559. },
  560. "suggest": {
  561. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  562. },
  563. "bin": [
  564. "bin/doctrine-dbal"
  565. ],
  566. "type": "library",
  567. "autoload": {
  568. "psr-4": {
  569. "Doctrine\\DBAL\\": "src"
  570. }
  571. },
  572. "notification-url": "https://packagist.org/downloads/",
  573. "license": [
  574. "MIT"
  575. ],
  576. "authors": [
  577. {
  578. "name": "Guilherme Blanco",
  579. "email": "guilhermeblanco@gmail.com"
  580. },
  581. {
  582. "name": "Roman Borschel",
  583. "email": "roman@code-factory.org"
  584. },
  585. {
  586. "name": "Benjamin Eberlei",
  587. "email": "kontakt@beberlei.de"
  588. },
  589. {
  590. "name": "Jonathan Wage",
  591. "email": "jonwage@gmail.com"
  592. }
  593. ],
  594. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  595. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  596. "keywords": [
  597. "abstraction",
  598. "database",
  599. "db2",
  600. "dbal",
  601. "mariadb",
  602. "mssql",
  603. "mysql",
  604. "oci8",
  605. "oracle",
  606. "pdo",
  607. "pgsql",
  608. "postgresql",
  609. "queryobject",
  610. "sasql",
  611. "sql",
  612. "sqlite",
  613. "sqlserver",
  614. "sqlsrv"
  615. ],
  616. "support": {
  617. "issues": "https://github.com/doctrine/dbal/issues",
  618. "source": "https://github.com/doctrine/dbal/tree/3.5.2"
  619. },
  620. "funding": [
  621. {
  622. "url": "https://www.doctrine-project.org/sponsorship.html",
  623. "type": "custom"
  624. },
  625. {
  626. "url": "https://www.patreon.com/phpdoctrine",
  627. "type": "patreon"
  628. },
  629. {
  630. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  631. "type": "tidelift"
  632. }
  633. ],
  634. "time": "2022-12-19T08:17:34+00:00"
  635. },
  636. {
  637. "name": "doctrine/deprecations",
  638. "version": "v1.0.0",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/doctrine/deprecations.git",
  642. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  647. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  648. "shasum": ""
  649. },
  650. "require": {
  651. "php": "^7.1|^8.0"
  652. },
  653. "require-dev": {
  654. "doctrine/coding-standard": "^9",
  655. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  656. "psr/log": "^1|^2|^3"
  657. },
  658. "suggest": {
  659. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  660. },
  661. "type": "library",
  662. "autoload": {
  663. "psr-4": {
  664. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  665. }
  666. },
  667. "notification-url": "https://packagist.org/downloads/",
  668. "license": [
  669. "MIT"
  670. ],
  671. "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.",
  672. "homepage": "https://www.doctrine-project.org/",
  673. "support": {
  674. "issues": "https://github.com/doctrine/deprecations/issues",
  675. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  676. },
  677. "time": "2022-05-02T15:47:09+00:00"
  678. },
  679. {
  680. "name": "doctrine/event-manager",
  681. "version": "2.0.0",
  682. "source": {
  683. "type": "git",
  684. "url": "https://github.com/doctrine/event-manager.git",
  685. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  686. },
  687. "dist": {
  688. "type": "zip",
  689. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  690. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  691. "shasum": ""
  692. },
  693. "require": {
  694. "php": "^8.1"
  695. },
  696. "conflict": {
  697. "doctrine/common": "<2.9"
  698. },
  699. "require-dev": {
  700. "doctrine/coding-standard": "^10",
  701. "phpstan/phpstan": "^1.8.8",
  702. "phpunit/phpunit": "^9.5",
  703. "vimeo/psalm": "^4.28"
  704. },
  705. "type": "library",
  706. "autoload": {
  707. "psr-4": {
  708. "Doctrine\\Common\\": "src"
  709. }
  710. },
  711. "notification-url": "https://packagist.org/downloads/",
  712. "license": [
  713. "MIT"
  714. ],
  715. "authors": [
  716. {
  717. "name": "Guilherme Blanco",
  718. "email": "guilhermeblanco@gmail.com"
  719. },
  720. {
  721. "name": "Roman Borschel",
  722. "email": "roman@code-factory.org"
  723. },
  724. {
  725. "name": "Benjamin Eberlei",
  726. "email": "kontakt@beberlei.de"
  727. },
  728. {
  729. "name": "Jonathan Wage",
  730. "email": "jonwage@gmail.com"
  731. },
  732. {
  733. "name": "Johannes Schmitt",
  734. "email": "schmittjoh@gmail.com"
  735. },
  736. {
  737. "name": "Marco Pivetta",
  738. "email": "ocramius@gmail.com"
  739. }
  740. ],
  741. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  742. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  743. "keywords": [
  744. "event",
  745. "event dispatcher",
  746. "event manager",
  747. "event system",
  748. "events"
  749. ],
  750. "support": {
  751. "issues": "https://github.com/doctrine/event-manager/issues",
  752. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  753. },
  754. "funding": [
  755. {
  756. "url": "https://www.doctrine-project.org/sponsorship.html",
  757. "type": "custom"
  758. },
  759. {
  760. "url": "https://www.patreon.com/phpdoctrine",
  761. "type": "patreon"
  762. },
  763. {
  764. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  765. "type": "tidelift"
  766. }
  767. ],
  768. "time": "2022-10-12T20:59:15+00:00"
  769. },
  770. {
  771. "name": "doctrine/inflector",
  772. "version": "2.0.6",
  773. "source": {
  774. "type": "git",
  775. "url": "https://github.com/doctrine/inflector.git",
  776. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  777. },
  778. "dist": {
  779. "type": "zip",
  780. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  781. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  782. "shasum": ""
  783. },
  784. "require": {
  785. "php": "^7.2 || ^8.0"
  786. },
  787. "require-dev": {
  788. "doctrine/coding-standard": "^10",
  789. "phpstan/phpstan": "^1.8",
  790. "phpstan/phpstan-phpunit": "^1.1",
  791. "phpstan/phpstan-strict-rules": "^1.3",
  792. "phpunit/phpunit": "^8.5 || ^9.5",
  793. "vimeo/psalm": "^4.25"
  794. },
  795. "type": "library",
  796. "autoload": {
  797. "psr-4": {
  798. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  799. }
  800. },
  801. "notification-url": "https://packagist.org/downloads/",
  802. "license": [
  803. "MIT"
  804. ],
  805. "authors": [
  806. {
  807. "name": "Guilherme Blanco",
  808. "email": "guilhermeblanco@gmail.com"
  809. },
  810. {
  811. "name": "Roman Borschel",
  812. "email": "roman@code-factory.org"
  813. },
  814. {
  815. "name": "Benjamin Eberlei",
  816. "email": "kontakt@beberlei.de"
  817. },
  818. {
  819. "name": "Jonathan Wage",
  820. "email": "jonwage@gmail.com"
  821. },
  822. {
  823. "name": "Johannes Schmitt",
  824. "email": "schmittjoh@gmail.com"
  825. }
  826. ],
  827. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  828. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  829. "keywords": [
  830. "inflection",
  831. "inflector",
  832. "lowercase",
  833. "manipulation",
  834. "php",
  835. "plural",
  836. "singular",
  837. "strings",
  838. "uppercase",
  839. "words"
  840. ],
  841. "support": {
  842. "issues": "https://github.com/doctrine/inflector/issues",
  843. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  844. },
  845. "funding": [
  846. {
  847. "url": "https://www.doctrine-project.org/sponsorship.html",
  848. "type": "custom"
  849. },
  850. {
  851. "url": "https://www.patreon.com/phpdoctrine",
  852. "type": "patreon"
  853. },
  854. {
  855. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  856. "type": "tidelift"
  857. }
  858. ],
  859. "time": "2022-10-20T09:10:12+00:00"
  860. },
  861. {
  862. "name": "doctrine/lexer",
  863. "version": "2.1.0",
  864. "source": {
  865. "type": "git",
  866. "url": "https://github.com/doctrine/lexer.git",
  867. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  868. },
  869. "dist": {
  870. "type": "zip",
  871. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  872. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  873. "shasum": ""
  874. },
  875. "require": {
  876. "doctrine/deprecations": "^1.0",
  877. "php": "^7.1 || ^8.0"
  878. },
  879. "require-dev": {
  880. "doctrine/coding-standard": "^9 || ^10",
  881. "phpstan/phpstan": "^1.3",
  882. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  883. "psalm/plugin-phpunit": "^0.18.3",
  884. "vimeo/psalm": "^4.11 || ^5.0"
  885. },
  886. "type": "library",
  887. "autoload": {
  888. "psr-4": {
  889. "Doctrine\\Common\\Lexer\\": "src"
  890. }
  891. },
  892. "notification-url": "https://packagist.org/downloads/",
  893. "license": [
  894. "MIT"
  895. ],
  896. "authors": [
  897. {
  898. "name": "Guilherme Blanco",
  899. "email": "guilhermeblanco@gmail.com"
  900. },
  901. {
  902. "name": "Roman Borschel",
  903. "email": "roman@code-factory.org"
  904. },
  905. {
  906. "name": "Johannes Schmitt",
  907. "email": "schmittjoh@gmail.com"
  908. }
  909. ],
  910. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  911. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  912. "keywords": [
  913. "annotations",
  914. "docblock",
  915. "lexer",
  916. "parser",
  917. "php"
  918. ],
  919. "support": {
  920. "issues": "https://github.com/doctrine/lexer/issues",
  921. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  922. },
  923. "funding": [
  924. {
  925. "url": "https://www.doctrine-project.org/sponsorship.html",
  926. "type": "custom"
  927. },
  928. {
  929. "url": "https://www.patreon.com/phpdoctrine",
  930. "type": "patreon"
  931. },
  932. {
  933. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  934. "type": "tidelift"
  935. }
  936. ],
  937. "time": "2022-12-14T08:49:07+00:00"
  938. },
  939. {
  940. "name": "dompdf/dompdf",
  941. "version": "v2.0.1",
  942. "source": {
  943. "type": "git",
  944. "url": "https://github.com/dompdf/dompdf.git",
  945. "reference": "c5310df0e22c758c85ea5288175fc6cd777bc085"
  946. },
  947. "dist": {
  948. "type": "zip",
  949. "url": "https://api.github.com/repos/dompdf/dompdf/zipball/c5310df0e22c758c85ea5288175fc6cd777bc085",
  950. "reference": "c5310df0e22c758c85ea5288175fc6cd777bc085",
  951. "shasum": ""
  952. },
  953. "require": {
  954. "ext-dom": "*",
  955. "ext-mbstring": "*",
  956. "masterminds/html5": "^2.0",
  957. "phenx/php-font-lib": ">=0.5.4 <1.0.0",
  958. "phenx/php-svg-lib": ">=0.3.3 <1.0.0",
  959. "php": "^7.1 || ^8.0"
  960. },
  961. "require-dev": {
  962. "ext-json": "*",
  963. "ext-zip": "*",
  964. "mockery/mockery": "^1.3",
  965. "phpunit/phpunit": "^7.5 || ^8 || ^9",
  966. "squizlabs/php_codesniffer": "^3.5"
  967. },
  968. "suggest": {
  969. "ext-gd": "Needed to process images",
  970. "ext-gmagick": "Improves image processing performance",
  971. "ext-imagick": "Improves image processing performance",
  972. "ext-zlib": "Needed for pdf stream compression"
  973. },
  974. "type": "library",
  975. "autoload": {
  976. "psr-4": {
  977. "Dompdf\\": "src/"
  978. },
  979. "classmap": [
  980. "lib/"
  981. ]
  982. },
  983. "notification-url": "https://packagist.org/downloads/",
  984. "license": [
  985. "LGPL-2.1"
  986. ],
  987. "authors": [
  988. {
  989. "name": "The Dompdf Community",
  990. "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md"
  991. }
  992. ],
  993. "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
  994. "homepage": "https://github.com/dompdf/dompdf",
  995. "support": {
  996. "issues": "https://github.com/dompdf/dompdf/issues",
  997. "source": "https://github.com/dompdf/dompdf/tree/v2.0.1"
  998. },
  999. "time": "2022-09-22T13:43:41+00:00"
  1000. },
  1001. {
  1002. "name": "dragonmantank/cron-expression",
  1003. "version": "v3.3.2",
  1004. "source": {
  1005. "type": "git",
  1006. "url": "https://github.com/dragonmantank/cron-expression.git",
  1007. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8"
  1008. },
  1009. "dist": {
  1010. "type": "zip",
  1011. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8",
  1012. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8",
  1013. "shasum": ""
  1014. },
  1015. "require": {
  1016. "php": "^7.2|^8.0",
  1017. "webmozart/assert": "^1.0"
  1018. },
  1019. "replace": {
  1020. "mtdowling/cron-expression": "^1.0"
  1021. },
  1022. "require-dev": {
  1023. "phpstan/extension-installer": "^1.0",
  1024. "phpstan/phpstan": "^1.0",
  1025. "phpstan/phpstan-webmozart-assert": "^1.0",
  1026. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1027. },
  1028. "type": "library",
  1029. "autoload": {
  1030. "psr-4": {
  1031. "Cron\\": "src/Cron/"
  1032. }
  1033. },
  1034. "notification-url": "https://packagist.org/downloads/",
  1035. "license": [
  1036. "MIT"
  1037. ],
  1038. "authors": [
  1039. {
  1040. "name": "Chris Tankersley",
  1041. "email": "chris@ctankersley.com",
  1042. "homepage": "https://github.com/dragonmantank"
  1043. }
  1044. ],
  1045. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1046. "keywords": [
  1047. "cron",
  1048. "schedule"
  1049. ],
  1050. "support": {
  1051. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1052. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2"
  1053. },
  1054. "funding": [
  1055. {
  1056. "url": "https://github.com/dragonmantank",
  1057. "type": "github"
  1058. }
  1059. ],
  1060. "time": "2022-09-10T18:51:20+00:00"
  1061. },
  1062. {
  1063. "name": "egulias/email-validator",
  1064. "version": "3.2.5",
  1065. "source": {
  1066. "type": "git",
  1067. "url": "https://github.com/egulias/EmailValidator.git",
  1068. "reference": "b531a2311709443320c786feb4519cfaf94af796"
  1069. },
  1070. "dist": {
  1071. "type": "zip",
  1072. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b531a2311709443320c786feb4519cfaf94af796",
  1073. "reference": "b531a2311709443320c786feb4519cfaf94af796",
  1074. "shasum": ""
  1075. },
  1076. "require": {
  1077. "doctrine/lexer": "^1.2|^2",
  1078. "php": ">=7.2",
  1079. "symfony/polyfill-intl-idn": "^1.15"
  1080. },
  1081. "require-dev": {
  1082. "phpunit/phpunit": "^8.5.8|^9.3.3",
  1083. "vimeo/psalm": "^4"
  1084. },
  1085. "suggest": {
  1086. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1087. },
  1088. "type": "library",
  1089. "extra": {
  1090. "branch-alias": {
  1091. "dev-master": "3.0.x-dev"
  1092. }
  1093. },
  1094. "autoload": {
  1095. "psr-4": {
  1096. "Egulias\\EmailValidator\\": "src"
  1097. }
  1098. },
  1099. "notification-url": "https://packagist.org/downloads/",
  1100. "license": [
  1101. "MIT"
  1102. ],
  1103. "authors": [
  1104. {
  1105. "name": "Eduardo Gulias Davis"
  1106. }
  1107. ],
  1108. "description": "A library for validating emails against several RFCs",
  1109. "homepage": "https://github.com/egulias/EmailValidator",
  1110. "keywords": [
  1111. "email",
  1112. "emailvalidation",
  1113. "emailvalidator",
  1114. "validation",
  1115. "validator"
  1116. ],
  1117. "support": {
  1118. "issues": "https://github.com/egulias/EmailValidator/issues",
  1119. "source": "https://github.com/egulias/EmailValidator/tree/3.2.5"
  1120. },
  1121. "funding": [
  1122. {
  1123. "url": "https://github.com/egulias",
  1124. "type": "github"
  1125. }
  1126. ],
  1127. "time": "2023-01-02T17:26:14+00:00"
  1128. },
  1129. {
  1130. "name": "facade/ignition-contracts",
  1131. "version": "1.0.2",
  1132. "source": {
  1133. "type": "git",
  1134. "url": "https://github.com/facade/ignition-contracts.git",
  1135. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1136. },
  1137. "dist": {
  1138. "type": "zip",
  1139. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1140. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1141. "shasum": ""
  1142. },
  1143. "require": {
  1144. "php": "^7.3|^8.0"
  1145. },
  1146. "require-dev": {
  1147. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1148. "phpunit/phpunit": "^9.3.11",
  1149. "vimeo/psalm": "^3.17.1"
  1150. },
  1151. "type": "library",
  1152. "autoload": {
  1153. "psr-4": {
  1154. "Facade\\IgnitionContracts\\": "src"
  1155. }
  1156. },
  1157. "notification-url": "https://packagist.org/downloads/",
  1158. "license": [
  1159. "MIT"
  1160. ],
  1161. "authors": [
  1162. {
  1163. "name": "Freek Van der Herten",
  1164. "email": "freek@spatie.be",
  1165. "homepage": "https://flareapp.io",
  1166. "role": "Developer"
  1167. }
  1168. ],
  1169. "description": "Solution contracts for Ignition",
  1170. "homepage": "https://github.com/facade/ignition-contracts",
  1171. "keywords": [
  1172. "contracts",
  1173. "flare",
  1174. "ignition"
  1175. ],
  1176. "support": {
  1177. "issues": "https://github.com/facade/ignition-contracts/issues",
  1178. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1179. },
  1180. "time": "2020-10-16T08:27:54+00:00"
  1181. },
  1182. {
  1183. "name": "fruitcake/php-cors",
  1184. "version": "v1.2.0",
  1185. "source": {
  1186. "type": "git",
  1187. "url": "https://github.com/fruitcake/php-cors.git",
  1188. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  1189. },
  1190. "dist": {
  1191. "type": "zip",
  1192. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1193. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1194. "shasum": ""
  1195. },
  1196. "require": {
  1197. "php": "^7.4|^8.0",
  1198. "symfony/http-foundation": "^4.4|^5.4|^6"
  1199. },
  1200. "require-dev": {
  1201. "phpstan/phpstan": "^1.4",
  1202. "phpunit/phpunit": "^9",
  1203. "squizlabs/php_codesniffer": "^3.5"
  1204. },
  1205. "type": "library",
  1206. "extra": {
  1207. "branch-alias": {
  1208. "dev-main": "1.1-dev"
  1209. }
  1210. },
  1211. "autoload": {
  1212. "psr-4": {
  1213. "Fruitcake\\Cors\\": "src/"
  1214. }
  1215. },
  1216. "notification-url": "https://packagist.org/downloads/",
  1217. "license": [
  1218. "MIT"
  1219. ],
  1220. "authors": [
  1221. {
  1222. "name": "Fruitcake",
  1223. "homepage": "https://fruitcake.nl"
  1224. },
  1225. {
  1226. "name": "Barryvdh",
  1227. "email": "barryvdh@gmail.com"
  1228. }
  1229. ],
  1230. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1231. "homepage": "https://github.com/fruitcake/php-cors",
  1232. "keywords": [
  1233. "cors",
  1234. "laravel",
  1235. "symfony"
  1236. ],
  1237. "support": {
  1238. "issues": "https://github.com/fruitcake/php-cors/issues",
  1239. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  1240. },
  1241. "funding": [
  1242. {
  1243. "url": "https://fruitcake.nl",
  1244. "type": "custom"
  1245. },
  1246. {
  1247. "url": "https://github.com/barryvdh",
  1248. "type": "github"
  1249. }
  1250. ],
  1251. "time": "2022-02-20T15:07:15+00:00"
  1252. },
  1253. {
  1254. "name": "graham-campbell/result-type",
  1255. "version": "v1.1.0",
  1256. "source": {
  1257. "type": "git",
  1258. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1259. "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8"
  1260. },
  1261. "dist": {
  1262. "type": "zip",
  1263. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/a878d45c1914464426dc94da61c9e1d36ae262a8",
  1264. "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8",
  1265. "shasum": ""
  1266. },
  1267. "require": {
  1268. "php": "^7.2.5 || ^8.0",
  1269. "phpoption/phpoption": "^1.9"
  1270. },
  1271. "require-dev": {
  1272. "phpunit/phpunit": "^8.5.28 || ^9.5.21"
  1273. },
  1274. "type": "library",
  1275. "autoload": {
  1276. "psr-4": {
  1277. "GrahamCampbell\\ResultType\\": "src/"
  1278. }
  1279. },
  1280. "notification-url": "https://packagist.org/downloads/",
  1281. "license": [
  1282. "MIT"
  1283. ],
  1284. "authors": [
  1285. {
  1286. "name": "Graham Campbell",
  1287. "email": "hello@gjcampbell.co.uk",
  1288. "homepage": "https://github.com/GrahamCampbell"
  1289. }
  1290. ],
  1291. "description": "An Implementation Of The Result Type",
  1292. "keywords": [
  1293. "Graham Campbell",
  1294. "GrahamCampbell",
  1295. "Result Type",
  1296. "Result-Type",
  1297. "result"
  1298. ],
  1299. "support": {
  1300. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1301. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.0"
  1302. },
  1303. "funding": [
  1304. {
  1305. "url": "https://github.com/GrahamCampbell",
  1306. "type": "github"
  1307. },
  1308. {
  1309. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1310. "type": "tidelift"
  1311. }
  1312. ],
  1313. "time": "2022-07-30T15:56:11+00:00"
  1314. },
  1315. {
  1316. "name": "guzzlehttp/guzzle",
  1317. "version": "7.5.0",
  1318. "source": {
  1319. "type": "git",
  1320. "url": "https://github.com/guzzle/guzzle.git",
  1321. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  1322. },
  1323. "dist": {
  1324. "type": "zip",
  1325. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  1326. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  1327. "shasum": ""
  1328. },
  1329. "require": {
  1330. "ext-json": "*",
  1331. "guzzlehttp/promises": "^1.5",
  1332. "guzzlehttp/psr7": "^1.9 || ^2.4",
  1333. "php": "^7.2.5 || ^8.0",
  1334. "psr/http-client": "^1.0",
  1335. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1336. },
  1337. "provide": {
  1338. "psr/http-client-implementation": "1.0"
  1339. },
  1340. "require-dev": {
  1341. "bamarni/composer-bin-plugin": "^1.8.1",
  1342. "ext-curl": "*",
  1343. "php-http/client-integration-tests": "^3.0",
  1344. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  1345. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1346. },
  1347. "suggest": {
  1348. "ext-curl": "Required for CURL handler support",
  1349. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1350. "psr/log": "Required for using the Log middleware"
  1351. },
  1352. "type": "library",
  1353. "extra": {
  1354. "bamarni-bin": {
  1355. "bin-links": true,
  1356. "forward-command": false
  1357. },
  1358. "branch-alias": {
  1359. "dev-master": "7.5-dev"
  1360. }
  1361. },
  1362. "autoload": {
  1363. "files": [
  1364. "src/functions_include.php"
  1365. ],
  1366. "psr-4": {
  1367. "GuzzleHttp\\": "src/"
  1368. }
  1369. },
  1370. "notification-url": "https://packagist.org/downloads/",
  1371. "license": [
  1372. "MIT"
  1373. ],
  1374. "authors": [
  1375. {
  1376. "name": "Graham Campbell",
  1377. "email": "hello@gjcampbell.co.uk",
  1378. "homepage": "https://github.com/GrahamCampbell"
  1379. },
  1380. {
  1381. "name": "Michael Dowling",
  1382. "email": "mtdowling@gmail.com",
  1383. "homepage": "https://github.com/mtdowling"
  1384. },
  1385. {
  1386. "name": "Jeremy Lindblom",
  1387. "email": "jeremeamia@gmail.com",
  1388. "homepage": "https://github.com/jeremeamia"
  1389. },
  1390. {
  1391. "name": "George Mponos",
  1392. "email": "gmponos@gmail.com",
  1393. "homepage": "https://github.com/gmponos"
  1394. },
  1395. {
  1396. "name": "Tobias Nyholm",
  1397. "email": "tobias.nyholm@gmail.com",
  1398. "homepage": "https://github.com/Nyholm"
  1399. },
  1400. {
  1401. "name": "Márk Sági-Kazár",
  1402. "email": "mark.sagikazar@gmail.com",
  1403. "homepage": "https://github.com/sagikazarmark"
  1404. },
  1405. {
  1406. "name": "Tobias Schultze",
  1407. "email": "webmaster@tubo-world.de",
  1408. "homepage": "https://github.com/Tobion"
  1409. }
  1410. ],
  1411. "description": "Guzzle is a PHP HTTP client library",
  1412. "keywords": [
  1413. "client",
  1414. "curl",
  1415. "framework",
  1416. "http",
  1417. "http client",
  1418. "psr-18",
  1419. "psr-7",
  1420. "rest",
  1421. "web service"
  1422. ],
  1423. "support": {
  1424. "issues": "https://github.com/guzzle/guzzle/issues",
  1425. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  1426. },
  1427. "funding": [
  1428. {
  1429. "url": "https://github.com/GrahamCampbell",
  1430. "type": "github"
  1431. },
  1432. {
  1433. "url": "https://github.com/Nyholm",
  1434. "type": "github"
  1435. },
  1436. {
  1437. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1438. "type": "tidelift"
  1439. }
  1440. ],
  1441. "time": "2022-08-28T15:39:27+00:00"
  1442. },
  1443. {
  1444. "name": "guzzlehttp/promises",
  1445. "version": "1.5.2",
  1446. "source": {
  1447. "type": "git",
  1448. "url": "https://github.com/guzzle/promises.git",
  1449. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  1450. },
  1451. "dist": {
  1452. "type": "zip",
  1453. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  1454. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  1455. "shasum": ""
  1456. },
  1457. "require": {
  1458. "php": ">=5.5"
  1459. },
  1460. "require-dev": {
  1461. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1462. },
  1463. "type": "library",
  1464. "extra": {
  1465. "branch-alias": {
  1466. "dev-master": "1.5-dev"
  1467. }
  1468. },
  1469. "autoload": {
  1470. "files": [
  1471. "src/functions_include.php"
  1472. ],
  1473. "psr-4": {
  1474. "GuzzleHttp\\Promise\\": "src/"
  1475. }
  1476. },
  1477. "notification-url": "https://packagist.org/downloads/",
  1478. "license": [
  1479. "MIT"
  1480. ],
  1481. "authors": [
  1482. {
  1483. "name": "Graham Campbell",
  1484. "email": "hello@gjcampbell.co.uk",
  1485. "homepage": "https://github.com/GrahamCampbell"
  1486. },
  1487. {
  1488. "name": "Michael Dowling",
  1489. "email": "mtdowling@gmail.com",
  1490. "homepage": "https://github.com/mtdowling"
  1491. },
  1492. {
  1493. "name": "Tobias Nyholm",
  1494. "email": "tobias.nyholm@gmail.com",
  1495. "homepage": "https://github.com/Nyholm"
  1496. },
  1497. {
  1498. "name": "Tobias Schultze",
  1499. "email": "webmaster@tubo-world.de",
  1500. "homepage": "https://github.com/Tobion"
  1501. }
  1502. ],
  1503. "description": "Guzzle promises library",
  1504. "keywords": [
  1505. "promise"
  1506. ],
  1507. "support": {
  1508. "issues": "https://github.com/guzzle/promises/issues",
  1509. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  1510. },
  1511. "funding": [
  1512. {
  1513. "url": "https://github.com/GrahamCampbell",
  1514. "type": "github"
  1515. },
  1516. {
  1517. "url": "https://github.com/Nyholm",
  1518. "type": "github"
  1519. },
  1520. {
  1521. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1522. "type": "tidelift"
  1523. }
  1524. ],
  1525. "time": "2022-08-28T14:55:35+00:00"
  1526. },
  1527. {
  1528. "name": "guzzlehttp/psr7",
  1529. "version": "2.4.3",
  1530. "source": {
  1531. "type": "git",
  1532. "url": "https://github.com/guzzle/psr7.git",
  1533. "reference": "67c26b443f348a51926030c83481b85718457d3d"
  1534. },
  1535. "dist": {
  1536. "type": "zip",
  1537. "url": "https://api.github.com/repos/guzzle/psr7/zipball/67c26b443f348a51926030c83481b85718457d3d",
  1538. "reference": "67c26b443f348a51926030c83481b85718457d3d",
  1539. "shasum": ""
  1540. },
  1541. "require": {
  1542. "php": "^7.2.5 || ^8.0",
  1543. "psr/http-factory": "^1.0",
  1544. "psr/http-message": "^1.0",
  1545. "ralouphie/getallheaders": "^3.0"
  1546. },
  1547. "provide": {
  1548. "psr/http-factory-implementation": "1.0",
  1549. "psr/http-message-implementation": "1.0"
  1550. },
  1551. "require-dev": {
  1552. "bamarni/composer-bin-plugin": "^1.8.1",
  1553. "http-interop/http-factory-tests": "^0.9",
  1554. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1555. },
  1556. "suggest": {
  1557. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1558. },
  1559. "type": "library",
  1560. "extra": {
  1561. "bamarni-bin": {
  1562. "bin-links": true,
  1563. "forward-command": false
  1564. },
  1565. "branch-alias": {
  1566. "dev-master": "2.4-dev"
  1567. }
  1568. },
  1569. "autoload": {
  1570. "psr-4": {
  1571. "GuzzleHttp\\Psr7\\": "src/"
  1572. }
  1573. },
  1574. "notification-url": "https://packagist.org/downloads/",
  1575. "license": [
  1576. "MIT"
  1577. ],
  1578. "authors": [
  1579. {
  1580. "name": "Graham Campbell",
  1581. "email": "hello@gjcampbell.co.uk",
  1582. "homepage": "https://github.com/GrahamCampbell"
  1583. },
  1584. {
  1585. "name": "Michael Dowling",
  1586. "email": "mtdowling@gmail.com",
  1587. "homepage": "https://github.com/mtdowling"
  1588. },
  1589. {
  1590. "name": "George Mponos",
  1591. "email": "gmponos@gmail.com",
  1592. "homepage": "https://github.com/gmponos"
  1593. },
  1594. {
  1595. "name": "Tobias Nyholm",
  1596. "email": "tobias.nyholm@gmail.com",
  1597. "homepage": "https://github.com/Nyholm"
  1598. },
  1599. {
  1600. "name": "Márk Sági-Kazár",
  1601. "email": "mark.sagikazar@gmail.com",
  1602. "homepage": "https://github.com/sagikazarmark"
  1603. },
  1604. {
  1605. "name": "Tobias Schultze",
  1606. "email": "webmaster@tubo-world.de",
  1607. "homepage": "https://github.com/Tobion"
  1608. },
  1609. {
  1610. "name": "Márk Sági-Kazár",
  1611. "email": "mark.sagikazar@gmail.com",
  1612. "homepage": "https://sagikazarmark.hu"
  1613. }
  1614. ],
  1615. "description": "PSR-7 message implementation that also provides common utility methods",
  1616. "keywords": [
  1617. "http",
  1618. "message",
  1619. "psr-7",
  1620. "request",
  1621. "response",
  1622. "stream",
  1623. "uri",
  1624. "url"
  1625. ],
  1626. "support": {
  1627. "issues": "https://github.com/guzzle/psr7/issues",
  1628. "source": "https://github.com/guzzle/psr7/tree/2.4.3"
  1629. },
  1630. "funding": [
  1631. {
  1632. "url": "https://github.com/GrahamCampbell",
  1633. "type": "github"
  1634. },
  1635. {
  1636. "url": "https://github.com/Nyholm",
  1637. "type": "github"
  1638. },
  1639. {
  1640. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1641. "type": "tidelift"
  1642. }
  1643. ],
  1644. "time": "2022-10-26T14:07:24+00:00"
  1645. },
  1646. {
  1647. "name": "hidehalo/nanoid-php",
  1648. "version": "1.1.12",
  1649. "source": {
  1650. "type": "git",
  1651. "url": "https://github.com/hidehalo/nanoid-php.git",
  1652. "reference": "3229400d7e69b127a9e4f8fdad2e498e64cdaae4"
  1653. },
  1654. "dist": {
  1655. "type": "zip",
  1656. "url": "https://api.github.com/repos/hidehalo/nanoid-php/zipball/3229400d7e69b127a9e4f8fdad2e498e64cdaae4",
  1657. "reference": "3229400d7e69b127a9e4f8fdad2e498e64cdaae4",
  1658. "shasum": ""
  1659. },
  1660. "require": {
  1661. "paragonie/random_compat": ">=2.0",
  1662. "php": "~5.6|~7.0|~8.0"
  1663. },
  1664. "require-dev": {
  1665. "phpunit/phpunit": ">=5.6",
  1666. "squizlabs/php_codesniffer": "^2.3"
  1667. },
  1668. "type": "library",
  1669. "extra": {
  1670. "branch-alias": {
  1671. "dev-master": "1.0-dev"
  1672. }
  1673. },
  1674. "autoload": {
  1675. "psr-4": {
  1676. "Hidehalo\\Nanoid\\": "src"
  1677. }
  1678. },
  1679. "notification-url": "https://packagist.org/downloads/",
  1680. "license": [
  1681. "MIT"
  1682. ],
  1683. "authors": [
  1684. {
  1685. "name": "hidehalo",
  1686. "email": "tianchen_cc@yeah.net",
  1687. "homepage": "https://github.com/hidehalo",
  1688. "role": "Owner"
  1689. }
  1690. ],
  1691. "description": "A copy of nanoid in PHP",
  1692. "homepage": "https://github.com/hidehalo/nanoid-php",
  1693. "keywords": [
  1694. "hidehalo",
  1695. "nanoid-php"
  1696. ],
  1697. "support": {
  1698. "issues": "https://github.com/hidehalo/nanoid-php/issues",
  1699. "source": "https://github.com/hidehalo/nanoid-php/tree/1.1.12"
  1700. },
  1701. "time": "2021-12-30T07:27:43+00:00"
  1702. },
  1703. {
  1704. "name": "kkomelin/laravel-translatable-string-exporter",
  1705. "version": "1.17.0",
  1706. "source": {
  1707. "type": "git",
  1708. "url": "https://github.com/kkomelin/laravel-translatable-string-exporter.git",
  1709. "reference": "0425f2c3add32df852c002b11bffe72c9c67ec89"
  1710. },
  1711. "dist": {
  1712. "type": "zip",
  1713. "url": "https://api.github.com/repos/kkomelin/laravel-translatable-string-exporter/zipball/0425f2c3add32df852c002b11bffe72c9c67ec89",
  1714. "reference": "0425f2c3add32df852c002b11bffe72c9c67ec89",
  1715. "shasum": ""
  1716. },
  1717. "require": {
  1718. "ext-json": "*",
  1719. "illuminate/support": "^5.4|^6|^7|^8|^9",
  1720. "illuminate/translation": "^5.4|^6|^7|^8|^9",
  1721. "php": "^7.2|^8.0",
  1722. "symfony/finder": "^3.2|^4|^5|^6"
  1723. },
  1724. "require-dev": {
  1725. "nunomaduro/larastan": "^1.0|^2.0",
  1726. "orchestra/testbench": "^3.4|^4.0|^5.0|^6.0|^7.0",
  1727. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  1728. },
  1729. "type": "library",
  1730. "extra": {
  1731. "laravel": {
  1732. "providers": [
  1733. "KKomelin\\TranslatableStringExporter\\Providers\\ExporterServiceProvider"
  1734. ]
  1735. }
  1736. },
  1737. "autoload": {
  1738. "psr-4": {
  1739. "KKomelin\\TranslatableStringExporter\\": "src/"
  1740. }
  1741. },
  1742. "notification-url": "https://packagist.org/downloads/",
  1743. "license": [
  1744. "MIT"
  1745. ],
  1746. "authors": [
  1747. {
  1748. "name": "Konstantin Komelin",
  1749. "email": "konstantin.komelin@gmail.com"
  1750. }
  1751. ],
  1752. "description": "Translatable String Exporter for Laravel",
  1753. "keywords": [
  1754. "export",
  1755. "exporter",
  1756. "json",
  1757. "laravel",
  1758. "localization",
  1759. "translation",
  1760. "translations"
  1761. ],
  1762. "support": {
  1763. "issues": "https://github.com/kkomelin/laravel-translatable-string-exporter/issues",
  1764. "source": "https://github.com/kkomelin/laravel-translatable-string-exporter/tree/1.17.0"
  1765. },
  1766. "time": "2022-06-13T07:13:55+00:00"
  1767. },
  1768. {
  1769. "name": "laravel/framework",
  1770. "version": "v9.46.0",
  1771. "source": {
  1772. "type": "git",
  1773. "url": "https://github.com/laravel/framework.git",
  1774. "reference": "62b05b6de5733d89378a279e40230a71e5ab5d92"
  1775. },
  1776. "dist": {
  1777. "type": "zip",
  1778. "url": "https://api.github.com/repos/laravel/framework/zipball/62b05b6de5733d89378a279e40230a71e5ab5d92",
  1779. "reference": "62b05b6de5733d89378a279e40230a71e5ab5d92",
  1780. "shasum": ""
  1781. },
  1782. "require": {
  1783. "doctrine/inflector": "^2.0",
  1784. "dragonmantank/cron-expression": "^3.3.2",
  1785. "egulias/email-validator": "^3.2.1",
  1786. "ext-mbstring": "*",
  1787. "ext-openssl": "*",
  1788. "fruitcake/php-cors": "^1.2",
  1789. "laravel/serializable-closure": "^1.2.2",
  1790. "league/commonmark": "^2.2.1",
  1791. "league/flysystem": "^3.8.0",
  1792. "monolog/monolog": "^2.0",
  1793. "nesbot/carbon": "^2.62.1",
  1794. "nunomaduro/termwind": "^1.13",
  1795. "php": "^8.0.2",
  1796. "psr/container": "^1.1.1|^2.0.1",
  1797. "psr/log": "^1.0|^2.0|^3.0",
  1798. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1799. "ramsey/uuid": "^4.7",
  1800. "symfony/console": "^6.0.9",
  1801. "symfony/error-handler": "^6.0",
  1802. "symfony/finder": "^6.0",
  1803. "symfony/http-foundation": "^6.0",
  1804. "symfony/http-kernel": "^6.0",
  1805. "symfony/mailer": "^6.0",
  1806. "symfony/mime": "^6.0",
  1807. "symfony/process": "^6.0",
  1808. "symfony/routing": "^6.0",
  1809. "symfony/uid": "^6.0",
  1810. "symfony/var-dumper": "^6.0",
  1811. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  1812. "vlucas/phpdotenv": "^5.4.1",
  1813. "voku/portable-ascii": "^2.0"
  1814. },
  1815. "conflict": {
  1816. "tightenco/collect": "<5.5.33"
  1817. },
  1818. "provide": {
  1819. "psr/container-implementation": "1.1|2.0",
  1820. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1821. },
  1822. "replace": {
  1823. "illuminate/auth": "self.version",
  1824. "illuminate/broadcasting": "self.version",
  1825. "illuminate/bus": "self.version",
  1826. "illuminate/cache": "self.version",
  1827. "illuminate/collections": "self.version",
  1828. "illuminate/conditionable": "self.version",
  1829. "illuminate/config": "self.version",
  1830. "illuminate/console": "self.version",
  1831. "illuminate/container": "self.version",
  1832. "illuminate/contracts": "self.version",
  1833. "illuminate/cookie": "self.version",
  1834. "illuminate/database": "self.version",
  1835. "illuminate/encryption": "self.version",
  1836. "illuminate/events": "self.version",
  1837. "illuminate/filesystem": "self.version",
  1838. "illuminate/hashing": "self.version",
  1839. "illuminate/http": "self.version",
  1840. "illuminate/log": "self.version",
  1841. "illuminate/macroable": "self.version",
  1842. "illuminate/mail": "self.version",
  1843. "illuminate/notifications": "self.version",
  1844. "illuminate/pagination": "self.version",
  1845. "illuminate/pipeline": "self.version",
  1846. "illuminate/queue": "self.version",
  1847. "illuminate/redis": "self.version",
  1848. "illuminate/routing": "self.version",
  1849. "illuminate/session": "self.version",
  1850. "illuminate/support": "self.version",
  1851. "illuminate/testing": "self.version",
  1852. "illuminate/translation": "self.version",
  1853. "illuminate/validation": "self.version",
  1854. "illuminate/view": "self.version"
  1855. },
  1856. "require-dev": {
  1857. "ably/ably-php": "^1.0",
  1858. "aws/aws-sdk-php": "^3.235.5",
  1859. "doctrine/dbal": "^2.13.3|^3.1.4",
  1860. "fakerphp/faker": "^1.21",
  1861. "guzzlehttp/guzzle": "^7.5",
  1862. "league/flysystem-aws-s3-v3": "^3.0",
  1863. "league/flysystem-ftp": "^3.0",
  1864. "league/flysystem-path-prefixing": "^3.3",
  1865. "league/flysystem-read-only": "^3.3",
  1866. "league/flysystem-sftp-v3": "^3.0",
  1867. "mockery/mockery": "^1.5.1",
  1868. "orchestra/testbench-core": "^7.16",
  1869. "pda/pheanstalk": "^4.0",
  1870. "phpstan/phpstan": "^1.4.7",
  1871. "phpunit/phpunit": "^9.5.8",
  1872. "predis/predis": "^1.1.9|^2.0.2",
  1873. "symfony/cache": "^6.0"
  1874. },
  1875. "suggest": {
  1876. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1877. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  1878. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1879. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1880. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1881. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1882. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1883. "ext-memcached": "Required to use the memcache cache driver.",
  1884. "ext-pcntl": "Required to use all features of the queue worker.",
  1885. "ext-posix": "Required to use all features of the queue worker.",
  1886. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1887. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1888. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1889. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  1890. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1891. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  1892. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  1893. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  1894. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  1895. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  1896. "mockery/mockery": "Required to use mocking (^1.5.1).",
  1897. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1898. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1899. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).",
  1900. "predis/predis": "Required to use the predis connector (^1.1.9|^2.0.2).",
  1901. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1902. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  1903. "symfony/cache": "Required to PSR-6 cache bridge (^6.0).",
  1904. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).",
  1905. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
  1906. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
  1907. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
  1908. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  1909. },
  1910. "type": "library",
  1911. "extra": {
  1912. "branch-alias": {
  1913. "dev-master": "9.x-dev"
  1914. }
  1915. },
  1916. "autoload": {
  1917. "files": [
  1918. "src/Illuminate/Collections/helpers.php",
  1919. "src/Illuminate/Events/functions.php",
  1920. "src/Illuminate/Foundation/helpers.php",
  1921. "src/Illuminate/Support/helpers.php"
  1922. ],
  1923. "psr-4": {
  1924. "Illuminate\\": "src/Illuminate/",
  1925. "Illuminate\\Support\\": [
  1926. "src/Illuminate/Macroable/",
  1927. "src/Illuminate/Collections/",
  1928. "src/Illuminate/Conditionable/"
  1929. ]
  1930. }
  1931. },
  1932. "notification-url": "https://packagist.org/downloads/",
  1933. "license": [
  1934. "MIT"
  1935. ],
  1936. "authors": [
  1937. {
  1938. "name": "Taylor Otwell",
  1939. "email": "taylor@laravel.com"
  1940. }
  1941. ],
  1942. "description": "The Laravel Framework.",
  1943. "homepage": "https://laravel.com",
  1944. "keywords": [
  1945. "framework",
  1946. "laravel"
  1947. ],
  1948. "support": {
  1949. "issues": "https://github.com/laravel/framework/issues",
  1950. "source": "https://github.com/laravel/framework"
  1951. },
  1952. "time": "2023-01-03T15:12:31+00:00"
  1953. },
  1954. {
  1955. "name": "laravel/serializable-closure",
  1956. "version": "v1.2.2",
  1957. "source": {
  1958. "type": "git",
  1959. "url": "https://github.com/laravel/serializable-closure.git",
  1960. "reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae"
  1961. },
  1962. "dist": {
  1963. "type": "zip",
  1964. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/47afb7fae28ed29057fdca37e16a84f90cc62fae",
  1965. "reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae",
  1966. "shasum": ""
  1967. },
  1968. "require": {
  1969. "php": "^7.3|^8.0"
  1970. },
  1971. "require-dev": {
  1972. "nesbot/carbon": "^2.61",
  1973. "pestphp/pest": "^1.21.3",
  1974. "phpstan/phpstan": "^1.8.2",
  1975. "symfony/var-dumper": "^5.4.11"
  1976. },
  1977. "type": "library",
  1978. "extra": {
  1979. "branch-alias": {
  1980. "dev-master": "1.x-dev"
  1981. }
  1982. },
  1983. "autoload": {
  1984. "psr-4": {
  1985. "Laravel\\SerializableClosure\\": "src/"
  1986. }
  1987. },
  1988. "notification-url": "https://packagist.org/downloads/",
  1989. "license": [
  1990. "MIT"
  1991. ],
  1992. "authors": [
  1993. {
  1994. "name": "Taylor Otwell",
  1995. "email": "taylor@laravel.com"
  1996. },
  1997. {
  1998. "name": "Nuno Maduro",
  1999. "email": "nuno@laravel.com"
  2000. }
  2001. ],
  2002. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2003. "keywords": [
  2004. "closure",
  2005. "laravel",
  2006. "serializable"
  2007. ],
  2008. "support": {
  2009. "issues": "https://github.com/laravel/serializable-closure/issues",
  2010. "source": "https://github.com/laravel/serializable-closure"
  2011. },
  2012. "time": "2022-09-08T13:45:54+00:00"
  2013. },
  2014. {
  2015. "name": "laravel/socialite",
  2016. "version": "v5.5.7",
  2017. "source": {
  2018. "type": "git",
  2019. "url": "https://github.com/laravel/socialite.git",
  2020. "reference": "ee6201f539ac47c3a55132449f9d20ee928f0ee2"
  2021. },
  2022. "dist": {
  2023. "type": "zip",
  2024. "url": "https://api.github.com/repos/laravel/socialite/zipball/ee6201f539ac47c3a55132449f9d20ee928f0ee2",
  2025. "reference": "ee6201f539ac47c3a55132449f9d20ee928f0ee2",
  2026. "shasum": ""
  2027. },
  2028. "require": {
  2029. "ext-json": "*",
  2030. "guzzlehttp/guzzle": "^6.0|^7.0",
  2031. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  2032. "illuminate/http": "^6.0|^7.0|^8.0|^9.0",
  2033. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  2034. "league/oauth1-client": "^1.10.1",
  2035. "php": "^7.2|^8.0"
  2036. },
  2037. "require-dev": {
  2038. "mockery/mockery": "^1.0",
  2039. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  2040. "phpunit/phpunit": "^8.0|^9.3"
  2041. },
  2042. "type": "library",
  2043. "extra": {
  2044. "branch-alias": {
  2045. "dev-master": "5.x-dev"
  2046. },
  2047. "laravel": {
  2048. "providers": [
  2049. "Laravel\\Socialite\\SocialiteServiceProvider"
  2050. ],
  2051. "aliases": {
  2052. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2053. }
  2054. }
  2055. },
  2056. "autoload": {
  2057. "psr-4": {
  2058. "Laravel\\Socialite\\": "src/"
  2059. }
  2060. },
  2061. "notification-url": "https://packagist.org/downloads/",
  2062. "license": [
  2063. "MIT"
  2064. ],
  2065. "authors": [
  2066. {
  2067. "name": "Taylor Otwell",
  2068. "email": "taylor@laravel.com"
  2069. }
  2070. ],
  2071. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2072. "homepage": "https://laravel.com",
  2073. "keywords": [
  2074. "laravel",
  2075. "oauth"
  2076. ],
  2077. "support": {
  2078. "issues": "https://github.com/laravel/socialite/issues",
  2079. "source": "https://github.com/laravel/socialite"
  2080. },
  2081. "time": "2022-12-28T12:35:23+00:00"
  2082. },
  2083. {
  2084. "name": "laravel/tinker",
  2085. "version": "v2.7.3",
  2086. "source": {
  2087. "type": "git",
  2088. "url": "https://github.com/laravel/tinker.git",
  2089. "reference": "5062061b4924af3392225dd482ca7b4d85d8b8ef"
  2090. },
  2091. "dist": {
  2092. "type": "zip",
  2093. "url": "https://api.github.com/repos/laravel/tinker/zipball/5062061b4924af3392225dd482ca7b4d85d8b8ef",
  2094. "reference": "5062061b4924af3392225dd482ca7b4d85d8b8ef",
  2095. "shasum": ""
  2096. },
  2097. "require": {
  2098. "illuminate/console": "^6.0|^7.0|^8.0|^9.0",
  2099. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  2100. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  2101. "php": "^7.2.5|^8.0",
  2102. "psy/psysh": "^0.10.4|^0.11.1",
  2103. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2104. },
  2105. "require-dev": {
  2106. "mockery/mockery": "~1.3.3|^1.4.2",
  2107. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2108. },
  2109. "suggest": {
  2110. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)."
  2111. },
  2112. "type": "library",
  2113. "extra": {
  2114. "branch-alias": {
  2115. "dev-master": "2.x-dev"
  2116. },
  2117. "laravel": {
  2118. "providers": [
  2119. "Laravel\\Tinker\\TinkerServiceProvider"
  2120. ]
  2121. }
  2122. },
  2123. "autoload": {
  2124. "psr-4": {
  2125. "Laravel\\Tinker\\": "src/"
  2126. }
  2127. },
  2128. "notification-url": "https://packagist.org/downloads/",
  2129. "license": [
  2130. "MIT"
  2131. ],
  2132. "authors": [
  2133. {
  2134. "name": "Taylor Otwell",
  2135. "email": "taylor@laravel.com"
  2136. }
  2137. ],
  2138. "description": "Powerful REPL for the Laravel framework.",
  2139. "keywords": [
  2140. "REPL",
  2141. "Tinker",
  2142. "laravel",
  2143. "psysh"
  2144. ],
  2145. "support": {
  2146. "issues": "https://github.com/laravel/tinker/issues",
  2147. "source": "https://github.com/laravel/tinker/tree/v2.7.3"
  2148. },
  2149. "time": "2022-11-09T15:11:38+00:00"
  2150. },
  2151. {
  2152. "name": "laravel/ui",
  2153. "version": "v3.4.6",
  2154. "source": {
  2155. "type": "git",
  2156. "url": "https://github.com/laravel/ui.git",
  2157. "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c"
  2158. },
  2159. "dist": {
  2160. "type": "zip",
  2161. "url": "https://api.github.com/repos/laravel/ui/zipball/65ec5c03f7fee2c8ecae785795b829a15be48c2c",
  2162. "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c",
  2163. "shasum": ""
  2164. },
  2165. "require": {
  2166. "illuminate/console": "^8.42|^9.0",
  2167. "illuminate/filesystem": "^8.42|^9.0",
  2168. "illuminate/support": "^8.82|^9.0",
  2169. "illuminate/validation": "^8.42|^9.0",
  2170. "php": "^7.3|^8.0"
  2171. },
  2172. "require-dev": {
  2173. "orchestra/testbench": "^6.23|^7.0"
  2174. },
  2175. "type": "library",
  2176. "extra": {
  2177. "branch-alias": {
  2178. "dev-master": "3.x-dev"
  2179. },
  2180. "laravel": {
  2181. "providers": [
  2182. "Laravel\\Ui\\UiServiceProvider"
  2183. ]
  2184. }
  2185. },
  2186. "autoload": {
  2187. "psr-4": {
  2188. "Laravel\\Ui\\": "src/",
  2189. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2190. }
  2191. },
  2192. "notification-url": "https://packagist.org/downloads/",
  2193. "license": [
  2194. "MIT"
  2195. ],
  2196. "authors": [
  2197. {
  2198. "name": "Taylor Otwell",
  2199. "email": "taylor@laravel.com"
  2200. }
  2201. ],
  2202. "description": "Laravel UI utilities and presets.",
  2203. "keywords": [
  2204. "laravel",
  2205. "ui"
  2206. ],
  2207. "support": {
  2208. "source": "https://github.com/laravel/ui/tree/v3.4.6"
  2209. },
  2210. "time": "2022-05-20T13:38:08+00:00"
  2211. },
  2212. {
  2213. "name": "laraveldaily/laravel-invoices",
  2214. "version": "3.0.2",
  2215. "source": {
  2216. "type": "git",
  2217. "url": "https://github.com/LaravelDaily/laravel-invoices.git",
  2218. "reference": "6dabfd95ef9819b80182ebea8267b64f77c89326"
  2219. },
  2220. "dist": {
  2221. "type": "zip",
  2222. "url": "https://api.github.com/repos/LaravelDaily/laravel-invoices/zipball/6dabfd95ef9819b80182ebea8267b64f77c89326",
  2223. "reference": "6dabfd95ef9819b80182ebea8267b64f77c89326",
  2224. "shasum": ""
  2225. },
  2226. "require": {
  2227. "barryvdh/laravel-dompdf": "^v2.0",
  2228. "illuminate/http": "^5.5|^6|^7|^8|^9",
  2229. "illuminate/support": "^5.5|^6|^7|^8|^9",
  2230. "php": "^7.3|^8.0"
  2231. },
  2232. "require-dev": {
  2233. "phpunit/phpunit": "^9.3",
  2234. "symfony/var-dumper": "^5.0"
  2235. },
  2236. "type": "library",
  2237. "extra": {
  2238. "laravel": {
  2239. "providers": [
  2240. "LaravelDaily\\Invoices\\InvoiceServiceProvider"
  2241. ],
  2242. "aliases": {
  2243. "Invoice": "LaravelDaily\\Invoices\\Facades\\Invoice"
  2244. }
  2245. }
  2246. },
  2247. "autoload": {
  2248. "psr-4": {
  2249. "LaravelDaily\\Invoices\\": "src"
  2250. }
  2251. },
  2252. "notification-url": "https://packagist.org/downloads/",
  2253. "license": [
  2254. "GPL-3.0-only"
  2255. ],
  2256. "authors": [
  2257. {
  2258. "name": "David Lun",
  2259. "email": "mysticcode@gmail.com",
  2260. "homepage": "https://lun.lt",
  2261. "role": "Developer"
  2262. }
  2263. ],
  2264. "description": "Missing invoices for Laravel",
  2265. "homepage": "https://github.com/LaravelDaily/laravel-invoices",
  2266. "keywords": [
  2267. "invoice",
  2268. "invoices",
  2269. "laravel",
  2270. "pdf"
  2271. ],
  2272. "support": {
  2273. "issues": "https://github.com/LaravelDaily/laravel-invoices/issues",
  2274. "source": "https://github.com/LaravelDaily/laravel-invoices/tree/3.0.2"
  2275. },
  2276. "time": "2022-08-05T06:57:45+00:00"
  2277. },
  2278. {
  2279. "name": "league/commonmark",
  2280. "version": "2.3.8",
  2281. "source": {
  2282. "type": "git",
  2283. "url": "https://github.com/thephpleague/commonmark.git",
  2284. "reference": "c493585c130544c4e91d2e0e131e6d35cb0cbc47"
  2285. },
  2286. "dist": {
  2287. "type": "zip",
  2288. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c493585c130544c4e91d2e0e131e6d35cb0cbc47",
  2289. "reference": "c493585c130544c4e91d2e0e131e6d35cb0cbc47",
  2290. "shasum": ""
  2291. },
  2292. "require": {
  2293. "ext-mbstring": "*",
  2294. "league/config": "^1.1.1",
  2295. "php": "^7.4 || ^8.0",
  2296. "psr/event-dispatcher": "^1.0",
  2297. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2298. "symfony/polyfill-php80": "^1.16"
  2299. },
  2300. "require-dev": {
  2301. "cebe/markdown": "^1.0",
  2302. "commonmark/cmark": "0.30.0",
  2303. "commonmark/commonmark.js": "0.30.0",
  2304. "composer/package-versions-deprecated": "^1.8",
  2305. "embed/embed": "^4.4",
  2306. "erusev/parsedown": "^1.0",
  2307. "ext-json": "*",
  2308. "github/gfm": "0.29.0",
  2309. "michelf/php-markdown": "^1.4 || ^2.0",
  2310. "nyholm/psr7": "^1.5",
  2311. "phpstan/phpstan": "^1.8.2",
  2312. "phpunit/phpunit": "^9.5.21",
  2313. "scrutinizer/ocular": "^1.8.1",
  2314. "symfony/finder": "^5.3 | ^6.0",
  2315. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2316. "unleashedtech/php-coding-standard": "^3.1.1",
  2317. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2318. },
  2319. "suggest": {
  2320. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2321. },
  2322. "type": "library",
  2323. "extra": {
  2324. "branch-alias": {
  2325. "dev-main": "2.4-dev"
  2326. }
  2327. },
  2328. "autoload": {
  2329. "psr-4": {
  2330. "League\\CommonMark\\": "src"
  2331. }
  2332. },
  2333. "notification-url": "https://packagist.org/downloads/",
  2334. "license": [
  2335. "BSD-3-Clause"
  2336. ],
  2337. "authors": [
  2338. {
  2339. "name": "Colin O'Dell",
  2340. "email": "colinodell@gmail.com",
  2341. "homepage": "https://www.colinodell.com",
  2342. "role": "Lead Developer"
  2343. }
  2344. ],
  2345. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2346. "homepage": "https://commonmark.thephpleague.com",
  2347. "keywords": [
  2348. "commonmark",
  2349. "flavored",
  2350. "gfm",
  2351. "github",
  2352. "github-flavored",
  2353. "markdown",
  2354. "md",
  2355. "parser"
  2356. ],
  2357. "support": {
  2358. "docs": "https://commonmark.thephpleague.com/",
  2359. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2360. "issues": "https://github.com/thephpleague/commonmark/issues",
  2361. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2362. "source": "https://github.com/thephpleague/commonmark"
  2363. },
  2364. "funding": [
  2365. {
  2366. "url": "https://www.colinodell.com/sponsor",
  2367. "type": "custom"
  2368. },
  2369. {
  2370. "url": "https://www.paypal.me/colinpodell/10.00",
  2371. "type": "custom"
  2372. },
  2373. {
  2374. "url": "https://github.com/colinodell",
  2375. "type": "github"
  2376. },
  2377. {
  2378. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2379. "type": "tidelift"
  2380. }
  2381. ],
  2382. "time": "2022-12-10T16:02:17+00:00"
  2383. },
  2384. {
  2385. "name": "league/config",
  2386. "version": "v1.2.0",
  2387. "source": {
  2388. "type": "git",
  2389. "url": "https://github.com/thephpleague/config.git",
  2390. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2391. },
  2392. "dist": {
  2393. "type": "zip",
  2394. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2395. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2396. "shasum": ""
  2397. },
  2398. "require": {
  2399. "dflydev/dot-access-data": "^3.0.1",
  2400. "nette/schema": "^1.2",
  2401. "php": "^7.4 || ^8.0"
  2402. },
  2403. "require-dev": {
  2404. "phpstan/phpstan": "^1.8.2",
  2405. "phpunit/phpunit": "^9.5.5",
  2406. "scrutinizer/ocular": "^1.8.1",
  2407. "unleashedtech/php-coding-standard": "^3.1",
  2408. "vimeo/psalm": "^4.7.3"
  2409. },
  2410. "type": "library",
  2411. "extra": {
  2412. "branch-alias": {
  2413. "dev-main": "1.2-dev"
  2414. }
  2415. },
  2416. "autoload": {
  2417. "psr-4": {
  2418. "League\\Config\\": "src"
  2419. }
  2420. },
  2421. "notification-url": "https://packagist.org/downloads/",
  2422. "license": [
  2423. "BSD-3-Clause"
  2424. ],
  2425. "authors": [
  2426. {
  2427. "name": "Colin O'Dell",
  2428. "email": "colinodell@gmail.com",
  2429. "homepage": "https://www.colinodell.com",
  2430. "role": "Lead Developer"
  2431. }
  2432. ],
  2433. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2434. "homepage": "https://config.thephpleague.com",
  2435. "keywords": [
  2436. "array",
  2437. "config",
  2438. "configuration",
  2439. "dot",
  2440. "dot-access",
  2441. "nested",
  2442. "schema"
  2443. ],
  2444. "support": {
  2445. "docs": "https://config.thephpleague.com/",
  2446. "issues": "https://github.com/thephpleague/config/issues",
  2447. "rss": "https://github.com/thephpleague/config/releases.atom",
  2448. "source": "https://github.com/thephpleague/config"
  2449. },
  2450. "funding": [
  2451. {
  2452. "url": "https://www.colinodell.com/sponsor",
  2453. "type": "custom"
  2454. },
  2455. {
  2456. "url": "https://www.paypal.me/colinpodell/10.00",
  2457. "type": "custom"
  2458. },
  2459. {
  2460. "url": "https://github.com/colinodell",
  2461. "type": "github"
  2462. }
  2463. ],
  2464. "time": "2022-12-11T20:36:23+00:00"
  2465. },
  2466. {
  2467. "name": "league/flysystem",
  2468. "version": "3.12.0",
  2469. "source": {
  2470. "type": "git",
  2471. "url": "https://github.com/thephpleague/flysystem.git",
  2472. "reference": "2aef65a47e44f2d6f9938f720f6dd697e7ba7b76"
  2473. },
  2474. "dist": {
  2475. "type": "zip",
  2476. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/2aef65a47e44f2d6f9938f720f6dd697e7ba7b76",
  2477. "reference": "2aef65a47e44f2d6f9938f720f6dd697e7ba7b76",
  2478. "shasum": ""
  2479. },
  2480. "require": {
  2481. "league/mime-type-detection": "^1.0.0",
  2482. "php": "^8.0.2"
  2483. },
  2484. "conflict": {
  2485. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2486. "guzzlehttp/guzzle": "<7.0",
  2487. "guzzlehttp/ringphp": "<1.1.1",
  2488. "phpseclib/phpseclib": "3.0.15",
  2489. "symfony/http-client": "<5.2"
  2490. },
  2491. "require-dev": {
  2492. "async-aws/s3": "^1.5",
  2493. "async-aws/simple-s3": "^1.1",
  2494. "aws/aws-sdk-php": "^3.198.1",
  2495. "composer/semver": "^3.0",
  2496. "ext-fileinfo": "*",
  2497. "ext-ftp": "*",
  2498. "ext-zip": "*",
  2499. "friendsofphp/php-cs-fixer": "^3.5",
  2500. "google/cloud-storage": "^1.23",
  2501. "microsoft/azure-storage-blob": "^1.1",
  2502. "phpseclib/phpseclib": "^3.0.14",
  2503. "phpstan/phpstan": "^0.12.26",
  2504. "phpunit/phpunit": "^9.5.11",
  2505. "sabre/dav": "^4.3.1"
  2506. },
  2507. "type": "library",
  2508. "autoload": {
  2509. "psr-4": {
  2510. "League\\Flysystem\\": "src"
  2511. }
  2512. },
  2513. "notification-url": "https://packagist.org/downloads/",
  2514. "license": [
  2515. "MIT"
  2516. ],
  2517. "authors": [
  2518. {
  2519. "name": "Frank de Jonge",
  2520. "email": "info@frankdejonge.nl"
  2521. }
  2522. ],
  2523. "description": "File storage abstraction for PHP",
  2524. "keywords": [
  2525. "WebDAV",
  2526. "aws",
  2527. "cloud",
  2528. "file",
  2529. "files",
  2530. "filesystem",
  2531. "filesystems",
  2532. "ftp",
  2533. "s3",
  2534. "sftp",
  2535. "storage"
  2536. ],
  2537. "support": {
  2538. "issues": "https://github.com/thephpleague/flysystem/issues",
  2539. "source": "https://github.com/thephpleague/flysystem/tree/3.12.0"
  2540. },
  2541. "funding": [
  2542. {
  2543. "url": "https://ecologi.com/frankdejonge",
  2544. "type": "custom"
  2545. },
  2546. {
  2547. "url": "https://github.com/frankdejonge",
  2548. "type": "github"
  2549. },
  2550. {
  2551. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2552. "type": "tidelift"
  2553. }
  2554. ],
  2555. "time": "2022-12-20T20:21:10+00:00"
  2556. },
  2557. {
  2558. "name": "league/flysystem-aws-s3-v3",
  2559. "version": "3.10.3",
  2560. "source": {
  2561. "type": "git",
  2562. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  2563. "reference": "f593bf91f94f2adf4f71513d29f1dfa693f2f640"
  2564. },
  2565. "dist": {
  2566. "type": "zip",
  2567. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/f593bf91f94f2adf4f71513d29f1dfa693f2f640",
  2568. "reference": "f593bf91f94f2adf4f71513d29f1dfa693f2f640",
  2569. "shasum": ""
  2570. },
  2571. "require": {
  2572. "aws/aws-sdk-php": "^3.132.4",
  2573. "league/flysystem": "^3.10.0",
  2574. "league/mime-type-detection": "^1.0.0",
  2575. "php": "^8.0.2"
  2576. },
  2577. "conflict": {
  2578. "guzzlehttp/guzzle": "<7.0",
  2579. "guzzlehttp/ringphp": "<1.1.1"
  2580. },
  2581. "type": "library",
  2582. "autoload": {
  2583. "psr-4": {
  2584. "League\\Flysystem\\AwsS3V3\\": ""
  2585. }
  2586. },
  2587. "notification-url": "https://packagist.org/downloads/",
  2588. "license": [
  2589. "MIT"
  2590. ],
  2591. "authors": [
  2592. {
  2593. "name": "Frank de Jonge",
  2594. "email": "info@frankdejonge.nl"
  2595. }
  2596. ],
  2597. "description": "AWS S3 filesystem adapter for Flysystem.",
  2598. "keywords": [
  2599. "Flysystem",
  2600. "aws",
  2601. "file",
  2602. "files",
  2603. "filesystem",
  2604. "s3",
  2605. "storage"
  2606. ],
  2607. "support": {
  2608. "issues": "https://github.com/thephpleague/flysystem-aws-s3-v3/issues",
  2609. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.10.3"
  2610. },
  2611. "funding": [
  2612. {
  2613. "url": "https://ecologi.com/frankdejonge",
  2614. "type": "custom"
  2615. },
  2616. {
  2617. "url": "https://github.com/frankdejonge",
  2618. "type": "github"
  2619. },
  2620. {
  2621. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2622. "type": "tidelift"
  2623. }
  2624. ],
  2625. "time": "2022-10-26T18:15:09+00:00"
  2626. },
  2627. {
  2628. "name": "league/mime-type-detection",
  2629. "version": "1.11.0",
  2630. "source": {
  2631. "type": "git",
  2632. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2633. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  2634. },
  2635. "dist": {
  2636. "type": "zip",
  2637. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2638. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2639. "shasum": ""
  2640. },
  2641. "require": {
  2642. "ext-fileinfo": "*",
  2643. "php": "^7.2 || ^8.0"
  2644. },
  2645. "require-dev": {
  2646. "friendsofphp/php-cs-fixer": "^3.2",
  2647. "phpstan/phpstan": "^0.12.68",
  2648. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2649. },
  2650. "type": "library",
  2651. "autoload": {
  2652. "psr-4": {
  2653. "League\\MimeTypeDetection\\": "src"
  2654. }
  2655. },
  2656. "notification-url": "https://packagist.org/downloads/",
  2657. "license": [
  2658. "MIT"
  2659. ],
  2660. "authors": [
  2661. {
  2662. "name": "Frank de Jonge",
  2663. "email": "info@frankdejonge.nl"
  2664. }
  2665. ],
  2666. "description": "Mime-type detection for Flysystem",
  2667. "support": {
  2668. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2669. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2670. },
  2671. "funding": [
  2672. {
  2673. "url": "https://github.com/frankdejonge",
  2674. "type": "github"
  2675. },
  2676. {
  2677. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2678. "type": "tidelift"
  2679. }
  2680. ],
  2681. "time": "2022-04-17T13:12:02+00:00"
  2682. },
  2683. {
  2684. "name": "league/oauth1-client",
  2685. "version": "v1.10.1",
  2686. "source": {
  2687. "type": "git",
  2688. "url": "https://github.com/thephpleague/oauth1-client.git",
  2689. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  2690. },
  2691. "dist": {
  2692. "type": "zip",
  2693. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  2694. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  2695. "shasum": ""
  2696. },
  2697. "require": {
  2698. "ext-json": "*",
  2699. "ext-openssl": "*",
  2700. "guzzlehttp/guzzle": "^6.0|^7.0",
  2701. "guzzlehttp/psr7": "^1.7|^2.0",
  2702. "php": ">=7.1||>=8.0"
  2703. },
  2704. "require-dev": {
  2705. "ext-simplexml": "*",
  2706. "friendsofphp/php-cs-fixer": "^2.17",
  2707. "mockery/mockery": "^1.3.3",
  2708. "phpstan/phpstan": "^0.12.42",
  2709. "phpunit/phpunit": "^7.5||9.5"
  2710. },
  2711. "suggest": {
  2712. "ext-simplexml": "For decoding XML-based responses."
  2713. },
  2714. "type": "library",
  2715. "extra": {
  2716. "branch-alias": {
  2717. "dev-master": "1.0-dev",
  2718. "dev-develop": "2.0-dev"
  2719. }
  2720. },
  2721. "autoload": {
  2722. "psr-4": {
  2723. "League\\OAuth1\\Client\\": "src/"
  2724. }
  2725. },
  2726. "notification-url": "https://packagist.org/downloads/",
  2727. "license": [
  2728. "MIT"
  2729. ],
  2730. "authors": [
  2731. {
  2732. "name": "Ben Corlett",
  2733. "email": "bencorlett@me.com",
  2734. "homepage": "http://www.webcomm.com.au",
  2735. "role": "Developer"
  2736. }
  2737. ],
  2738. "description": "OAuth 1.0 Client Library",
  2739. "keywords": [
  2740. "Authentication",
  2741. "SSO",
  2742. "authorization",
  2743. "bitbucket",
  2744. "identity",
  2745. "idp",
  2746. "oauth",
  2747. "oauth1",
  2748. "single sign on",
  2749. "trello",
  2750. "tumblr",
  2751. "twitter"
  2752. ],
  2753. "support": {
  2754. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  2755. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  2756. },
  2757. "time": "2022-04-15T14:02:14+00:00"
  2758. },
  2759. {
  2760. "name": "masterminds/html5",
  2761. "version": "2.7.6",
  2762. "source": {
  2763. "type": "git",
  2764. "url": "https://github.com/Masterminds/html5-php.git",
  2765. "reference": "897eb517a343a2281f11bc5556d6548db7d93947"
  2766. },
  2767. "dist": {
  2768. "type": "zip",
  2769. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947",
  2770. "reference": "897eb517a343a2281f11bc5556d6548db7d93947",
  2771. "shasum": ""
  2772. },
  2773. "require": {
  2774. "ext-ctype": "*",
  2775. "ext-dom": "*",
  2776. "ext-libxml": "*",
  2777. "php": ">=5.3.0"
  2778. },
  2779. "require-dev": {
  2780. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  2781. },
  2782. "type": "library",
  2783. "extra": {
  2784. "branch-alias": {
  2785. "dev-master": "2.7-dev"
  2786. }
  2787. },
  2788. "autoload": {
  2789. "psr-4": {
  2790. "Masterminds\\": "src"
  2791. }
  2792. },
  2793. "notification-url": "https://packagist.org/downloads/",
  2794. "license": [
  2795. "MIT"
  2796. ],
  2797. "authors": [
  2798. {
  2799. "name": "Matt Butcher",
  2800. "email": "technosophos@gmail.com"
  2801. },
  2802. {
  2803. "name": "Matt Farina",
  2804. "email": "matt@mattfarina.com"
  2805. },
  2806. {
  2807. "name": "Asmir Mustafic",
  2808. "email": "goetas@gmail.com"
  2809. }
  2810. ],
  2811. "description": "An HTML5 parser and serializer.",
  2812. "homepage": "http://masterminds.github.io/html5-php",
  2813. "keywords": [
  2814. "HTML5",
  2815. "dom",
  2816. "html",
  2817. "parser",
  2818. "querypath",
  2819. "serializer",
  2820. "xml"
  2821. ],
  2822. "support": {
  2823. "issues": "https://github.com/Masterminds/html5-php/issues",
  2824. "source": "https://github.com/Masterminds/html5-php/tree/2.7.6"
  2825. },
  2826. "time": "2022-08-18T16:18:26+00:00"
  2827. },
  2828. {
  2829. "name": "monolog/monolog",
  2830. "version": "2.8.0",
  2831. "source": {
  2832. "type": "git",
  2833. "url": "https://github.com/Seldaek/monolog.git",
  2834. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50"
  2835. },
  2836. "dist": {
  2837. "type": "zip",
  2838. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50",
  2839. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50",
  2840. "shasum": ""
  2841. },
  2842. "require": {
  2843. "php": ">=7.2",
  2844. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2845. },
  2846. "provide": {
  2847. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2848. },
  2849. "require-dev": {
  2850. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2851. "doctrine/couchdb": "~1.0@dev",
  2852. "elasticsearch/elasticsearch": "^7 || ^8",
  2853. "ext-json": "*",
  2854. "graylog2/gelf-php": "^1.4.2",
  2855. "guzzlehttp/guzzle": "^7.4",
  2856. "guzzlehttp/psr7": "^2.2",
  2857. "mongodb/mongodb": "^1.8",
  2858. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2859. "phpspec/prophecy": "^1.15",
  2860. "phpstan/phpstan": "^0.12.91",
  2861. "phpunit/phpunit": "^8.5.14",
  2862. "predis/predis": "^1.1 || ^2.0",
  2863. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2864. "ruflin/elastica": "^7",
  2865. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2866. "symfony/mailer": "^5.4 || ^6",
  2867. "symfony/mime": "^5.4 || ^6"
  2868. },
  2869. "suggest": {
  2870. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2871. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2872. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2873. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2874. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2875. "ext-mbstring": "Allow to work properly with unicode symbols",
  2876. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2877. "ext-openssl": "Required to send log messages using SSL",
  2878. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2879. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2880. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2881. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2882. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2883. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2884. },
  2885. "type": "library",
  2886. "extra": {
  2887. "branch-alias": {
  2888. "dev-main": "2.x-dev"
  2889. }
  2890. },
  2891. "autoload": {
  2892. "psr-4": {
  2893. "Monolog\\": "src/Monolog"
  2894. }
  2895. },
  2896. "notification-url": "https://packagist.org/downloads/",
  2897. "license": [
  2898. "MIT"
  2899. ],
  2900. "authors": [
  2901. {
  2902. "name": "Jordi Boggiano",
  2903. "email": "j.boggiano@seld.be",
  2904. "homepage": "https://seld.be"
  2905. }
  2906. ],
  2907. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2908. "homepage": "https://github.com/Seldaek/monolog",
  2909. "keywords": [
  2910. "log",
  2911. "logging",
  2912. "psr-3"
  2913. ],
  2914. "support": {
  2915. "issues": "https://github.com/Seldaek/monolog/issues",
  2916. "source": "https://github.com/Seldaek/monolog/tree/2.8.0"
  2917. },
  2918. "funding": [
  2919. {
  2920. "url": "https://github.com/Seldaek",
  2921. "type": "github"
  2922. },
  2923. {
  2924. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2925. "type": "tidelift"
  2926. }
  2927. ],
  2928. "time": "2022-07-24T11:55:47+00:00"
  2929. },
  2930. {
  2931. "name": "mtdowling/jmespath.php",
  2932. "version": "2.6.1",
  2933. "source": {
  2934. "type": "git",
  2935. "url": "https://github.com/jmespath/jmespath.php.git",
  2936. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  2937. },
  2938. "dist": {
  2939. "type": "zip",
  2940. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  2941. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  2942. "shasum": ""
  2943. },
  2944. "require": {
  2945. "php": "^5.4 || ^7.0 || ^8.0",
  2946. "symfony/polyfill-mbstring": "^1.17"
  2947. },
  2948. "require-dev": {
  2949. "composer/xdebug-handler": "^1.4 || ^2.0",
  2950. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  2951. },
  2952. "bin": [
  2953. "bin/jp.php"
  2954. ],
  2955. "type": "library",
  2956. "extra": {
  2957. "branch-alias": {
  2958. "dev-master": "2.6-dev"
  2959. }
  2960. },
  2961. "autoload": {
  2962. "files": [
  2963. "src/JmesPath.php"
  2964. ],
  2965. "psr-4": {
  2966. "JmesPath\\": "src/"
  2967. }
  2968. },
  2969. "notification-url": "https://packagist.org/downloads/",
  2970. "license": [
  2971. "MIT"
  2972. ],
  2973. "authors": [
  2974. {
  2975. "name": "Michael Dowling",
  2976. "email": "mtdowling@gmail.com",
  2977. "homepage": "https://github.com/mtdowling"
  2978. }
  2979. ],
  2980. "description": "Declaratively specify how to extract elements from a JSON document",
  2981. "keywords": [
  2982. "json",
  2983. "jsonpath"
  2984. ],
  2985. "support": {
  2986. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2987. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  2988. },
  2989. "time": "2021-06-14T00:11:39+00:00"
  2990. },
  2991. {
  2992. "name": "nesbot/carbon",
  2993. "version": "2.64.1",
  2994. "source": {
  2995. "type": "git",
  2996. "url": "https://github.com/briannesbitt/Carbon.git",
  2997. "reference": "f2e59963f4c4f4fdfb9fcfd752e8d2e2b79a4e2c"
  2998. },
  2999. "dist": {
  3000. "type": "zip",
  3001. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/f2e59963f4c4f4fdfb9fcfd752e8d2e2b79a4e2c",
  3002. "reference": "f2e59963f4c4f4fdfb9fcfd752e8d2e2b79a4e2c",
  3003. "shasum": ""
  3004. },
  3005. "require": {
  3006. "ext-json": "*",
  3007. "php": "^7.1.8 || ^8.0",
  3008. "symfony/polyfill-mbstring": "^1.0",
  3009. "symfony/polyfill-php80": "^1.16",
  3010. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3011. },
  3012. "require-dev": {
  3013. "doctrine/dbal": "^2.0 || ^3.1.4",
  3014. "doctrine/orm": "^2.7",
  3015. "friendsofphp/php-cs-fixer": "^3.0",
  3016. "kylekatarnls/multi-tester": "^2.0",
  3017. "ondrejmirtes/better-reflection": "*",
  3018. "phpmd/phpmd": "^2.9",
  3019. "phpstan/extension-installer": "^1.0",
  3020. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3021. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3022. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3023. "squizlabs/php_codesniffer": "^3.4"
  3024. },
  3025. "bin": [
  3026. "bin/carbon"
  3027. ],
  3028. "type": "library",
  3029. "extra": {
  3030. "branch-alias": {
  3031. "dev-3.x": "3.x-dev",
  3032. "dev-master": "2.x-dev"
  3033. },
  3034. "laravel": {
  3035. "providers": [
  3036. "Carbon\\Laravel\\ServiceProvider"
  3037. ]
  3038. },
  3039. "phpstan": {
  3040. "includes": [
  3041. "extension.neon"
  3042. ]
  3043. }
  3044. },
  3045. "autoload": {
  3046. "psr-4": {
  3047. "Carbon\\": "src/Carbon/"
  3048. }
  3049. },
  3050. "notification-url": "https://packagist.org/downloads/",
  3051. "license": [
  3052. "MIT"
  3053. ],
  3054. "authors": [
  3055. {
  3056. "name": "Brian Nesbitt",
  3057. "email": "brian@nesbot.com",
  3058. "homepage": "https://markido.com"
  3059. },
  3060. {
  3061. "name": "kylekatarnls",
  3062. "homepage": "https://github.com/kylekatarnls"
  3063. }
  3064. ],
  3065. "description": "An API extension for DateTime that supports 281 different languages.",
  3066. "homepage": "https://carbon.nesbot.com",
  3067. "keywords": [
  3068. "date",
  3069. "datetime",
  3070. "time"
  3071. ],
  3072. "support": {
  3073. "docs": "https://carbon.nesbot.com/docs",
  3074. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3075. "source": "https://github.com/briannesbitt/Carbon"
  3076. },
  3077. "funding": [
  3078. {
  3079. "url": "https://github.com/sponsors/kylekatarnls",
  3080. "type": "github"
  3081. },
  3082. {
  3083. "url": "https://opencollective.com/Carbon#sponsor",
  3084. "type": "opencollective"
  3085. },
  3086. {
  3087. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3088. "type": "tidelift"
  3089. }
  3090. ],
  3091. "time": "2023-01-01T23:17:36+00:00"
  3092. },
  3093. {
  3094. "name": "nette/schema",
  3095. "version": "v1.2.3",
  3096. "source": {
  3097. "type": "git",
  3098. "url": "https://github.com/nette/schema.git",
  3099. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  3100. },
  3101. "dist": {
  3102. "type": "zip",
  3103. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  3104. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  3105. "shasum": ""
  3106. },
  3107. "require": {
  3108. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3109. "php": ">=7.1 <8.3"
  3110. },
  3111. "require-dev": {
  3112. "nette/tester": "^2.3 || ^2.4",
  3113. "phpstan/phpstan-nette": "^1.0",
  3114. "tracy/tracy": "^2.7"
  3115. },
  3116. "type": "library",
  3117. "extra": {
  3118. "branch-alias": {
  3119. "dev-master": "1.2-dev"
  3120. }
  3121. },
  3122. "autoload": {
  3123. "classmap": [
  3124. "src/"
  3125. ]
  3126. },
  3127. "notification-url": "https://packagist.org/downloads/",
  3128. "license": [
  3129. "BSD-3-Clause",
  3130. "GPL-2.0-only",
  3131. "GPL-3.0-only"
  3132. ],
  3133. "authors": [
  3134. {
  3135. "name": "David Grudl",
  3136. "homepage": "https://davidgrudl.com"
  3137. },
  3138. {
  3139. "name": "Nette Community",
  3140. "homepage": "https://nette.org/contributors"
  3141. }
  3142. ],
  3143. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3144. "homepage": "https://nette.org",
  3145. "keywords": [
  3146. "config",
  3147. "nette"
  3148. ],
  3149. "support": {
  3150. "issues": "https://github.com/nette/schema/issues",
  3151. "source": "https://github.com/nette/schema/tree/v1.2.3"
  3152. },
  3153. "time": "2022-10-13T01:24:26+00:00"
  3154. },
  3155. {
  3156. "name": "nette/utils",
  3157. "version": "v3.2.8",
  3158. "source": {
  3159. "type": "git",
  3160. "url": "https://github.com/nette/utils.git",
  3161. "reference": "02a54c4c872b99e4ec05c4aec54b5a06eb0f6368"
  3162. },
  3163. "dist": {
  3164. "type": "zip",
  3165. "url": "https://api.github.com/repos/nette/utils/zipball/02a54c4c872b99e4ec05c4aec54b5a06eb0f6368",
  3166. "reference": "02a54c4c872b99e4ec05c4aec54b5a06eb0f6368",
  3167. "shasum": ""
  3168. },
  3169. "require": {
  3170. "php": ">=7.2 <8.3"
  3171. },
  3172. "conflict": {
  3173. "nette/di": "<3.0.6"
  3174. },
  3175. "require-dev": {
  3176. "nette/tester": "~2.0",
  3177. "phpstan/phpstan": "^1.0",
  3178. "tracy/tracy": "^2.3"
  3179. },
  3180. "suggest": {
  3181. "ext-gd": "to use Image",
  3182. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3183. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3184. "ext-json": "to use Nette\\Utils\\Json",
  3185. "ext-mbstring": "to use Strings::lower() etc...",
  3186. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3187. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3188. },
  3189. "type": "library",
  3190. "extra": {
  3191. "branch-alias": {
  3192. "dev-master": "3.2-dev"
  3193. }
  3194. },
  3195. "autoload": {
  3196. "classmap": [
  3197. "src/"
  3198. ]
  3199. },
  3200. "notification-url": "https://packagist.org/downloads/",
  3201. "license": [
  3202. "BSD-3-Clause",
  3203. "GPL-2.0-only",
  3204. "GPL-3.0-only"
  3205. ],
  3206. "authors": [
  3207. {
  3208. "name": "David Grudl",
  3209. "homepage": "https://davidgrudl.com"
  3210. },
  3211. {
  3212. "name": "Nette Community",
  3213. "homepage": "https://nette.org/contributors"
  3214. }
  3215. ],
  3216. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3217. "homepage": "https://nette.org",
  3218. "keywords": [
  3219. "array",
  3220. "core",
  3221. "datetime",
  3222. "images",
  3223. "json",
  3224. "nette",
  3225. "paginator",
  3226. "password",
  3227. "slugify",
  3228. "string",
  3229. "unicode",
  3230. "utf-8",
  3231. "utility",
  3232. "validation"
  3233. ],
  3234. "support": {
  3235. "issues": "https://github.com/nette/utils/issues",
  3236. "source": "https://github.com/nette/utils/tree/v3.2.8"
  3237. },
  3238. "time": "2022-09-12T23:36:20+00:00"
  3239. },
  3240. {
  3241. "name": "nikic/php-parser",
  3242. "version": "v4.15.2",
  3243. "source": {
  3244. "type": "git",
  3245. "url": "https://github.com/nikic/PHP-Parser.git",
  3246. "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc"
  3247. },
  3248. "dist": {
  3249. "type": "zip",
  3250. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc",
  3251. "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc",
  3252. "shasum": ""
  3253. },
  3254. "require": {
  3255. "ext-tokenizer": "*",
  3256. "php": ">=7.0"
  3257. },
  3258. "require-dev": {
  3259. "ircmaxell/php-yacc": "^0.0.7",
  3260. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3261. },
  3262. "bin": [
  3263. "bin/php-parse"
  3264. ],
  3265. "type": "library",
  3266. "extra": {
  3267. "branch-alias": {
  3268. "dev-master": "4.9-dev"
  3269. }
  3270. },
  3271. "autoload": {
  3272. "psr-4": {
  3273. "PhpParser\\": "lib/PhpParser"
  3274. }
  3275. },
  3276. "notification-url": "https://packagist.org/downloads/",
  3277. "license": [
  3278. "BSD-3-Clause"
  3279. ],
  3280. "authors": [
  3281. {
  3282. "name": "Nikita Popov"
  3283. }
  3284. ],
  3285. "description": "A PHP parser written in PHP",
  3286. "keywords": [
  3287. "parser",
  3288. "php"
  3289. ],
  3290. "support": {
  3291. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3292. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.2"
  3293. },
  3294. "time": "2022-11-12T15:38:23+00:00"
  3295. },
  3296. {
  3297. "name": "nunomaduro/termwind",
  3298. "version": "v1.15.0",
  3299. "source": {
  3300. "type": "git",
  3301. "url": "https://github.com/nunomaduro/termwind.git",
  3302. "reference": "594ab862396c16ead000de0c3c38f4a5cbe1938d"
  3303. },
  3304. "dist": {
  3305. "type": "zip",
  3306. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/594ab862396c16ead000de0c3c38f4a5cbe1938d",
  3307. "reference": "594ab862396c16ead000de0c3c38f4a5cbe1938d",
  3308. "shasum": ""
  3309. },
  3310. "require": {
  3311. "ext-mbstring": "*",
  3312. "php": "^8.0",
  3313. "symfony/console": "^5.3.0|^6.0.0"
  3314. },
  3315. "require-dev": {
  3316. "ergebnis/phpstan-rules": "^1.0.",
  3317. "illuminate/console": "^8.0|^9.0",
  3318. "illuminate/support": "^8.0|^9.0",
  3319. "laravel/pint": "^1.0.0",
  3320. "pestphp/pest": "^1.21.0",
  3321. "pestphp/pest-plugin-mock": "^1.0",
  3322. "phpstan/phpstan": "^1.4.6",
  3323. "phpstan/phpstan-strict-rules": "^1.1.0",
  3324. "symfony/var-dumper": "^5.2.7|^6.0.0",
  3325. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3326. },
  3327. "type": "library",
  3328. "extra": {
  3329. "laravel": {
  3330. "providers": [
  3331. "Termwind\\Laravel\\TermwindServiceProvider"
  3332. ]
  3333. }
  3334. },
  3335. "autoload": {
  3336. "files": [
  3337. "src/Functions.php"
  3338. ],
  3339. "psr-4": {
  3340. "Termwind\\": "src/"
  3341. }
  3342. },
  3343. "notification-url": "https://packagist.org/downloads/",
  3344. "license": [
  3345. "MIT"
  3346. ],
  3347. "authors": [
  3348. {
  3349. "name": "Nuno Maduro",
  3350. "email": "enunomaduro@gmail.com"
  3351. }
  3352. ],
  3353. "description": "Its like Tailwind CSS, but for the console.",
  3354. "keywords": [
  3355. "cli",
  3356. "console",
  3357. "css",
  3358. "package",
  3359. "php",
  3360. "style"
  3361. ],
  3362. "support": {
  3363. "issues": "https://github.com/nunomaduro/termwind/issues",
  3364. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.0"
  3365. },
  3366. "funding": [
  3367. {
  3368. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3369. "type": "custom"
  3370. },
  3371. {
  3372. "url": "https://github.com/nunomaduro",
  3373. "type": "github"
  3374. },
  3375. {
  3376. "url": "https://github.com/xiCO2k",
  3377. "type": "github"
  3378. }
  3379. ],
  3380. "time": "2022-12-20T19:00:15+00:00"
  3381. },
  3382. {
  3383. "name": "paragonie/random_compat",
  3384. "version": "v9.99.100",
  3385. "source": {
  3386. "type": "git",
  3387. "url": "https://github.com/paragonie/random_compat.git",
  3388. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3389. },
  3390. "dist": {
  3391. "type": "zip",
  3392. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3393. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3394. "shasum": ""
  3395. },
  3396. "require": {
  3397. "php": ">= 7"
  3398. },
  3399. "require-dev": {
  3400. "phpunit/phpunit": "4.*|5.*",
  3401. "vimeo/psalm": "^1"
  3402. },
  3403. "suggest": {
  3404. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3405. },
  3406. "type": "library",
  3407. "notification-url": "https://packagist.org/downloads/",
  3408. "license": [
  3409. "MIT"
  3410. ],
  3411. "authors": [
  3412. {
  3413. "name": "Paragon Initiative Enterprises",
  3414. "email": "security@paragonie.com",
  3415. "homepage": "https://paragonie.com"
  3416. }
  3417. ],
  3418. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3419. "keywords": [
  3420. "csprng",
  3421. "polyfill",
  3422. "pseudorandom",
  3423. "random"
  3424. ],
  3425. "support": {
  3426. "email": "info@paragonie.com",
  3427. "issues": "https://github.com/paragonie/random_compat/issues",
  3428. "source": "https://github.com/paragonie/random_compat"
  3429. },
  3430. "time": "2020-10-15T08:29:30+00:00"
  3431. },
  3432. {
  3433. "name": "paypal/paypal-checkout-sdk",
  3434. "version": "1.0.2",
  3435. "source": {
  3436. "type": "git",
  3437. "url": "https://github.com/paypal/Checkout-PHP-SDK.git",
  3438. "reference": "19992ce7051ff9e47e643f28abb8cc1b3e5f1812"
  3439. },
  3440. "dist": {
  3441. "type": "zip",
  3442. "url": "https://api.github.com/repos/paypal/Checkout-PHP-SDK/zipball/19992ce7051ff9e47e643f28abb8cc1b3e5f1812",
  3443. "reference": "19992ce7051ff9e47e643f28abb8cc1b3e5f1812",
  3444. "shasum": ""
  3445. },
  3446. "require": {
  3447. "paypal/paypalhttp": "1.0.1"
  3448. },
  3449. "require-dev": {
  3450. "phpunit/phpunit": "^5.7"
  3451. },
  3452. "type": "library",
  3453. "autoload": {
  3454. "psr-4": {
  3455. "Sample\\": "samples/",
  3456. "PayPalCheckoutSdk\\": "lib/PayPalCheckoutSdk"
  3457. }
  3458. },
  3459. "notification-url": "https://packagist.org/downloads/",
  3460. "license": [
  3461. "https://github.com/paypal/Checkout-PHP-SDK/blob/master/LICENSE"
  3462. ],
  3463. "authors": [
  3464. {
  3465. "name": "PayPal",
  3466. "homepage": "https://github.com/paypal/Checkout-PHP-SDK/contributors"
  3467. }
  3468. ],
  3469. "description": "PayPal's PHP SDK for Checkout REST APIs",
  3470. "homepage": "http://github.com/paypal/Checkout-PHP-SDK/",
  3471. "keywords": [
  3472. "checkout",
  3473. "orders",
  3474. "payments",
  3475. "paypal",
  3476. "rest",
  3477. "sdk"
  3478. ],
  3479. "support": {
  3480. "source": "https://github.com/paypal/Checkout-PHP-SDK/tree/1.0.2"
  3481. },
  3482. "abandoned": true,
  3483. "time": "2021-09-21T20:57:38+00:00"
  3484. },
  3485. {
  3486. "name": "paypal/paypalhttp",
  3487. "version": "1.0.1",
  3488. "source": {
  3489. "type": "git",
  3490. "url": "https://github.com/paypal/paypalhttp_php.git",
  3491. "reference": "7b09c89c80828e842c79230e7f156b61fbb68d25"
  3492. },
  3493. "dist": {
  3494. "type": "zip",
  3495. "url": "https://api.github.com/repos/paypal/paypalhttp_php/zipball/7b09c89c80828e842c79230e7f156b61fbb68d25",
  3496. "reference": "7b09c89c80828e842c79230e7f156b61fbb68d25",
  3497. "shasum": ""
  3498. },
  3499. "require": {
  3500. "ext-curl": "*"
  3501. },
  3502. "require-dev": {
  3503. "phpunit/phpunit": "^5.7",
  3504. "wiremock-php/wiremock-php": "1.43.2"
  3505. },
  3506. "type": "library",
  3507. "autoload": {
  3508. "psr-4": {
  3509. "PayPalHttp\\": "lib/PayPalHttp"
  3510. }
  3511. },
  3512. "notification-url": "https://packagist.org/downloads/",
  3513. "license": [
  3514. "MIT"
  3515. ],
  3516. "authors": [
  3517. {
  3518. "name": "PayPal",
  3519. "homepage": "https://github.com/paypal/paypalhttp_php/contributors"
  3520. }
  3521. ],
  3522. "support": {
  3523. "issues": "https://github.com/paypal/paypalhttp_php/issues",
  3524. "source": "https://github.com/paypal/paypalhttp_php/tree/1.0.1"
  3525. },
  3526. "time": "2021-09-14T21:35:26+00:00"
  3527. },
  3528. {
  3529. "name": "paypal/rest-api-sdk-php",
  3530. "version": "1.14.0",
  3531. "source": {
  3532. "type": "git",
  3533. "url": "https://github.com/paypal/PayPal-PHP-SDK.git",
  3534. "reference": "72e2f2466975bf128a31e02b15110180f059fc04"
  3535. },
  3536. "dist": {
  3537. "type": "zip",
  3538. "url": "https://api.github.com/repos/paypal/PayPal-PHP-SDK/zipball/72e2f2466975bf128a31e02b15110180f059fc04",
  3539. "reference": "72e2f2466975bf128a31e02b15110180f059fc04",
  3540. "shasum": ""
  3541. },
  3542. "require": {
  3543. "ext-curl": "*",
  3544. "ext-json": "*",
  3545. "php": ">=5.3.0",
  3546. "psr/log": "^1.0.0"
  3547. },
  3548. "require-dev": {
  3549. "phpunit/phpunit": "^4.8.35"
  3550. },
  3551. "type": "library",
  3552. "autoload": {
  3553. "psr-0": {
  3554. "PayPal": "lib/"
  3555. }
  3556. },
  3557. "notification-url": "https://packagist.org/downloads/",
  3558. "license": [
  3559. "Apache-2.0"
  3560. ],
  3561. "authors": [
  3562. {
  3563. "name": "PayPal",
  3564. "homepage": "https://github.com/paypal/rest-api-sdk-php/contributors"
  3565. }
  3566. ],
  3567. "description": "PayPal's PHP SDK for REST APIs",
  3568. "homepage": "http://paypal.github.io/PayPal-PHP-SDK/",
  3569. "keywords": [
  3570. "payments",
  3571. "paypal",
  3572. "rest",
  3573. "sdk"
  3574. ],
  3575. "support": {
  3576. "issues": "https://github.com/paypal/PayPal-PHP-SDK/issues",
  3577. "source": "https://github.com/paypal/PayPal-PHP-SDK/tree/master"
  3578. },
  3579. "abandoned": true,
  3580. "time": "2019-01-04T20:04:25+00:00"
  3581. },
  3582. {
  3583. "name": "phenx/php-font-lib",
  3584. "version": "0.5.4",
  3585. "source": {
  3586. "type": "git",
  3587. "url": "https://github.com/dompdf/php-font-lib.git",
  3588. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
  3589. },
  3590. "dist": {
  3591. "type": "zip",
  3592. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
  3593. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
  3594. "shasum": ""
  3595. },
  3596. "require": {
  3597. "ext-mbstring": "*"
  3598. },
  3599. "require-dev": {
  3600. "symfony/phpunit-bridge": "^3 || ^4 || ^5"
  3601. },
  3602. "type": "library",
  3603. "autoload": {
  3604. "psr-4": {
  3605. "FontLib\\": "src/FontLib"
  3606. }
  3607. },
  3608. "notification-url": "https://packagist.org/downloads/",
  3609. "license": [
  3610. "LGPL-3.0"
  3611. ],
  3612. "authors": [
  3613. {
  3614. "name": "Fabien Ménager",
  3615. "email": "fabien.menager@gmail.com"
  3616. }
  3617. ],
  3618. "description": "A library to read, parse, export and make subsets of different types of font files.",
  3619. "homepage": "https://github.com/PhenX/php-font-lib",
  3620. "support": {
  3621. "issues": "https://github.com/dompdf/php-font-lib/issues",
  3622. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
  3623. },
  3624. "time": "2021-12-17T19:44:54+00:00"
  3625. },
  3626. {
  3627. "name": "phenx/php-svg-lib",
  3628. "version": "0.5.0",
  3629. "source": {
  3630. "type": "git",
  3631. "url": "https://github.com/dompdf/php-svg-lib.git",
  3632. "reference": "76876c6cf3080bcb6f249d7d59705108166a6685"
  3633. },
  3634. "dist": {
  3635. "type": "zip",
  3636. "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/76876c6cf3080bcb6f249d7d59705108166a6685",
  3637. "reference": "76876c6cf3080bcb6f249d7d59705108166a6685",
  3638. "shasum": ""
  3639. },
  3640. "require": {
  3641. "ext-mbstring": "*",
  3642. "php": "^7.1 || ^8.0",
  3643. "sabberworm/php-css-parser": "^8.4"
  3644. },
  3645. "require-dev": {
  3646. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  3647. },
  3648. "type": "library",
  3649. "autoload": {
  3650. "psr-4": {
  3651. "Svg\\": "src/Svg"
  3652. }
  3653. },
  3654. "notification-url": "https://packagist.org/downloads/",
  3655. "license": [
  3656. "LGPL-3.0"
  3657. ],
  3658. "authors": [
  3659. {
  3660. "name": "Fabien Ménager",
  3661. "email": "fabien.menager@gmail.com"
  3662. }
  3663. ],
  3664. "description": "A library to read, parse and export to PDF SVG files.",
  3665. "homepage": "https://github.com/PhenX/php-svg-lib",
  3666. "support": {
  3667. "issues": "https://github.com/dompdf/php-svg-lib/issues",
  3668. "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.0"
  3669. },
  3670. "time": "2022-09-06T12:16:56+00:00"
  3671. },
  3672. {
  3673. "name": "phpoption/phpoption",
  3674. "version": "1.9.0",
  3675. "source": {
  3676. "type": "git",
  3677. "url": "https://github.com/schmittjoh/php-option.git",
  3678. "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab"
  3679. },
  3680. "dist": {
  3681. "type": "zip",
  3682. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dc5ff11e274a90cc1c743f66c9ad700ce50db9ab",
  3683. "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab",
  3684. "shasum": ""
  3685. },
  3686. "require": {
  3687. "php": "^7.2.5 || ^8.0"
  3688. },
  3689. "require-dev": {
  3690. "bamarni/composer-bin-plugin": "^1.8",
  3691. "phpunit/phpunit": "^8.5.28 || ^9.5.21"
  3692. },
  3693. "type": "library",
  3694. "extra": {
  3695. "bamarni-bin": {
  3696. "bin-links": true,
  3697. "forward-command": true
  3698. },
  3699. "branch-alias": {
  3700. "dev-master": "1.9-dev"
  3701. }
  3702. },
  3703. "autoload": {
  3704. "psr-4": {
  3705. "PhpOption\\": "src/PhpOption/"
  3706. }
  3707. },
  3708. "notification-url": "https://packagist.org/downloads/",
  3709. "license": [
  3710. "Apache-2.0"
  3711. ],
  3712. "authors": [
  3713. {
  3714. "name": "Johannes M. Schmitt",
  3715. "email": "schmittjoh@gmail.com",
  3716. "homepage": "https://github.com/schmittjoh"
  3717. },
  3718. {
  3719. "name": "Graham Campbell",
  3720. "email": "hello@gjcampbell.co.uk",
  3721. "homepage": "https://github.com/GrahamCampbell"
  3722. }
  3723. ],
  3724. "description": "Option Type for PHP",
  3725. "keywords": [
  3726. "language",
  3727. "option",
  3728. "php",
  3729. "type"
  3730. ],
  3731. "support": {
  3732. "issues": "https://github.com/schmittjoh/php-option/issues",
  3733. "source": "https://github.com/schmittjoh/php-option/tree/1.9.0"
  3734. },
  3735. "funding": [
  3736. {
  3737. "url": "https://github.com/GrahamCampbell",
  3738. "type": "github"
  3739. },
  3740. {
  3741. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3742. "type": "tidelift"
  3743. }
  3744. ],
  3745. "time": "2022-07-30T15:51:26+00:00"
  3746. },
  3747. {
  3748. "name": "psr/cache",
  3749. "version": "3.0.0",
  3750. "source": {
  3751. "type": "git",
  3752. "url": "https://github.com/php-fig/cache.git",
  3753. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  3754. },
  3755. "dist": {
  3756. "type": "zip",
  3757. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3758. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3759. "shasum": ""
  3760. },
  3761. "require": {
  3762. "php": ">=8.0.0"
  3763. },
  3764. "type": "library",
  3765. "extra": {
  3766. "branch-alias": {
  3767. "dev-master": "1.0.x-dev"
  3768. }
  3769. },
  3770. "autoload": {
  3771. "psr-4": {
  3772. "Psr\\Cache\\": "src/"
  3773. }
  3774. },
  3775. "notification-url": "https://packagist.org/downloads/",
  3776. "license": [
  3777. "MIT"
  3778. ],
  3779. "authors": [
  3780. {
  3781. "name": "PHP-FIG",
  3782. "homepage": "https://www.php-fig.org/"
  3783. }
  3784. ],
  3785. "description": "Common interface for caching libraries",
  3786. "keywords": [
  3787. "cache",
  3788. "psr",
  3789. "psr-6"
  3790. ],
  3791. "support": {
  3792. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  3793. },
  3794. "time": "2021-02-03T23:26:27+00:00"
  3795. },
  3796. {
  3797. "name": "psr/container",
  3798. "version": "2.0.2",
  3799. "source": {
  3800. "type": "git",
  3801. "url": "https://github.com/php-fig/container.git",
  3802. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3803. },
  3804. "dist": {
  3805. "type": "zip",
  3806. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3807. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3808. "shasum": ""
  3809. },
  3810. "require": {
  3811. "php": ">=7.4.0"
  3812. },
  3813. "type": "library",
  3814. "extra": {
  3815. "branch-alias": {
  3816. "dev-master": "2.0.x-dev"
  3817. }
  3818. },
  3819. "autoload": {
  3820. "psr-4": {
  3821. "Psr\\Container\\": "src/"
  3822. }
  3823. },
  3824. "notification-url": "https://packagist.org/downloads/",
  3825. "license": [
  3826. "MIT"
  3827. ],
  3828. "authors": [
  3829. {
  3830. "name": "PHP-FIG",
  3831. "homepage": "https://www.php-fig.org/"
  3832. }
  3833. ],
  3834. "description": "Common Container Interface (PHP FIG PSR-11)",
  3835. "homepage": "https://github.com/php-fig/container",
  3836. "keywords": [
  3837. "PSR-11",
  3838. "container",
  3839. "container-interface",
  3840. "container-interop",
  3841. "psr"
  3842. ],
  3843. "support": {
  3844. "issues": "https://github.com/php-fig/container/issues",
  3845. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3846. },
  3847. "time": "2021-11-05T16:47:00+00:00"
  3848. },
  3849. {
  3850. "name": "psr/event-dispatcher",
  3851. "version": "1.0.0",
  3852. "source": {
  3853. "type": "git",
  3854. "url": "https://github.com/php-fig/event-dispatcher.git",
  3855. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3856. },
  3857. "dist": {
  3858. "type": "zip",
  3859. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3860. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3861. "shasum": ""
  3862. },
  3863. "require": {
  3864. "php": ">=7.2.0"
  3865. },
  3866. "type": "library",
  3867. "extra": {
  3868. "branch-alias": {
  3869. "dev-master": "1.0.x-dev"
  3870. }
  3871. },
  3872. "autoload": {
  3873. "psr-4": {
  3874. "Psr\\EventDispatcher\\": "src/"
  3875. }
  3876. },
  3877. "notification-url": "https://packagist.org/downloads/",
  3878. "license": [
  3879. "MIT"
  3880. ],
  3881. "authors": [
  3882. {
  3883. "name": "PHP-FIG",
  3884. "homepage": "http://www.php-fig.org/"
  3885. }
  3886. ],
  3887. "description": "Standard interfaces for event handling.",
  3888. "keywords": [
  3889. "events",
  3890. "psr",
  3891. "psr-14"
  3892. ],
  3893. "support": {
  3894. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3895. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3896. },
  3897. "time": "2019-01-08T18:20:26+00:00"
  3898. },
  3899. {
  3900. "name": "psr/http-client",
  3901. "version": "1.0.1",
  3902. "source": {
  3903. "type": "git",
  3904. "url": "https://github.com/php-fig/http-client.git",
  3905. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3906. },
  3907. "dist": {
  3908. "type": "zip",
  3909. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3910. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3911. "shasum": ""
  3912. },
  3913. "require": {
  3914. "php": "^7.0 || ^8.0",
  3915. "psr/http-message": "^1.0"
  3916. },
  3917. "type": "library",
  3918. "extra": {
  3919. "branch-alias": {
  3920. "dev-master": "1.0.x-dev"
  3921. }
  3922. },
  3923. "autoload": {
  3924. "psr-4": {
  3925. "Psr\\Http\\Client\\": "src/"
  3926. }
  3927. },
  3928. "notification-url": "https://packagist.org/downloads/",
  3929. "license": [
  3930. "MIT"
  3931. ],
  3932. "authors": [
  3933. {
  3934. "name": "PHP-FIG",
  3935. "homepage": "http://www.php-fig.org/"
  3936. }
  3937. ],
  3938. "description": "Common interface for HTTP clients",
  3939. "homepage": "https://github.com/php-fig/http-client",
  3940. "keywords": [
  3941. "http",
  3942. "http-client",
  3943. "psr",
  3944. "psr-18"
  3945. ],
  3946. "support": {
  3947. "source": "https://github.com/php-fig/http-client/tree/master"
  3948. },
  3949. "time": "2020-06-29T06:28:15+00:00"
  3950. },
  3951. {
  3952. "name": "psr/http-factory",
  3953. "version": "1.0.1",
  3954. "source": {
  3955. "type": "git",
  3956. "url": "https://github.com/php-fig/http-factory.git",
  3957. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3958. },
  3959. "dist": {
  3960. "type": "zip",
  3961. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3962. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3963. "shasum": ""
  3964. },
  3965. "require": {
  3966. "php": ">=7.0.0",
  3967. "psr/http-message": "^1.0"
  3968. },
  3969. "type": "library",
  3970. "extra": {
  3971. "branch-alias": {
  3972. "dev-master": "1.0.x-dev"
  3973. }
  3974. },
  3975. "autoload": {
  3976. "psr-4": {
  3977. "Psr\\Http\\Message\\": "src/"
  3978. }
  3979. },
  3980. "notification-url": "https://packagist.org/downloads/",
  3981. "license": [
  3982. "MIT"
  3983. ],
  3984. "authors": [
  3985. {
  3986. "name": "PHP-FIG",
  3987. "homepage": "http://www.php-fig.org/"
  3988. }
  3989. ],
  3990. "description": "Common interfaces for PSR-7 HTTP message factories",
  3991. "keywords": [
  3992. "factory",
  3993. "http",
  3994. "message",
  3995. "psr",
  3996. "psr-17",
  3997. "psr-7",
  3998. "request",
  3999. "response"
  4000. ],
  4001. "support": {
  4002. "source": "https://github.com/php-fig/http-factory/tree/master"
  4003. },
  4004. "time": "2019-04-30T12:38:16+00:00"
  4005. },
  4006. {
  4007. "name": "psr/http-message",
  4008. "version": "1.0.1",
  4009. "source": {
  4010. "type": "git",
  4011. "url": "https://github.com/php-fig/http-message.git",
  4012. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4013. },
  4014. "dist": {
  4015. "type": "zip",
  4016. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4017. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4018. "shasum": ""
  4019. },
  4020. "require": {
  4021. "php": ">=5.3.0"
  4022. },
  4023. "type": "library",
  4024. "extra": {
  4025. "branch-alias": {
  4026. "dev-master": "1.0.x-dev"
  4027. }
  4028. },
  4029. "autoload": {
  4030. "psr-4": {
  4031. "Psr\\Http\\Message\\": "src/"
  4032. }
  4033. },
  4034. "notification-url": "https://packagist.org/downloads/",
  4035. "license": [
  4036. "MIT"
  4037. ],
  4038. "authors": [
  4039. {
  4040. "name": "PHP-FIG",
  4041. "homepage": "http://www.php-fig.org/"
  4042. }
  4043. ],
  4044. "description": "Common interface for HTTP messages",
  4045. "homepage": "https://github.com/php-fig/http-message",
  4046. "keywords": [
  4047. "http",
  4048. "http-message",
  4049. "psr",
  4050. "psr-7",
  4051. "request",
  4052. "response"
  4053. ],
  4054. "support": {
  4055. "source": "https://github.com/php-fig/http-message/tree/master"
  4056. },
  4057. "time": "2016-08-06T14:39:51+00:00"
  4058. },
  4059. {
  4060. "name": "psr/log",
  4061. "version": "1.1.4",
  4062. "source": {
  4063. "type": "git",
  4064. "url": "https://github.com/php-fig/log.git",
  4065. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4066. },
  4067. "dist": {
  4068. "type": "zip",
  4069. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4070. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4071. "shasum": ""
  4072. },
  4073. "require": {
  4074. "php": ">=5.3.0"
  4075. },
  4076. "type": "library",
  4077. "extra": {
  4078. "branch-alias": {
  4079. "dev-master": "1.1.x-dev"
  4080. }
  4081. },
  4082. "autoload": {
  4083. "psr-4": {
  4084. "Psr\\Log\\": "Psr/Log/"
  4085. }
  4086. },
  4087. "notification-url": "https://packagist.org/downloads/",
  4088. "license": [
  4089. "MIT"
  4090. ],
  4091. "authors": [
  4092. {
  4093. "name": "PHP-FIG",
  4094. "homepage": "https://www.php-fig.org/"
  4095. }
  4096. ],
  4097. "description": "Common interface for logging libraries",
  4098. "homepage": "https://github.com/php-fig/log",
  4099. "keywords": [
  4100. "log",
  4101. "psr",
  4102. "psr-3"
  4103. ],
  4104. "support": {
  4105. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4106. },
  4107. "time": "2021-05-03T11:20:27+00:00"
  4108. },
  4109. {
  4110. "name": "psr/simple-cache",
  4111. "version": "3.0.0",
  4112. "source": {
  4113. "type": "git",
  4114. "url": "https://github.com/php-fig/simple-cache.git",
  4115. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4116. },
  4117. "dist": {
  4118. "type": "zip",
  4119. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4120. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4121. "shasum": ""
  4122. },
  4123. "require": {
  4124. "php": ">=8.0.0"
  4125. },
  4126. "type": "library",
  4127. "extra": {
  4128. "branch-alias": {
  4129. "dev-master": "3.0.x-dev"
  4130. }
  4131. },
  4132. "autoload": {
  4133. "psr-4": {
  4134. "Psr\\SimpleCache\\": "src/"
  4135. }
  4136. },
  4137. "notification-url": "https://packagist.org/downloads/",
  4138. "license": [
  4139. "MIT"
  4140. ],
  4141. "authors": [
  4142. {
  4143. "name": "PHP-FIG",
  4144. "homepage": "https://www.php-fig.org/"
  4145. }
  4146. ],
  4147. "description": "Common interfaces for simple caching",
  4148. "keywords": [
  4149. "cache",
  4150. "caching",
  4151. "psr",
  4152. "psr-16",
  4153. "simple-cache"
  4154. ],
  4155. "support": {
  4156. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4157. },
  4158. "time": "2021-10-29T13:26:27+00:00"
  4159. },
  4160. {
  4161. "name": "psy/psysh",
  4162. "version": "v0.11.10",
  4163. "source": {
  4164. "type": "git",
  4165. "url": "https://github.com/bobthecow/psysh.git",
  4166. "reference": "e9eadffbed9c9deb5426fd107faae0452bf20a36"
  4167. },
  4168. "dist": {
  4169. "type": "zip",
  4170. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e9eadffbed9c9deb5426fd107faae0452bf20a36",
  4171. "reference": "e9eadffbed9c9deb5426fd107faae0452bf20a36",
  4172. "shasum": ""
  4173. },
  4174. "require": {
  4175. "ext-json": "*",
  4176. "ext-tokenizer": "*",
  4177. "nikic/php-parser": "^4.0 || ^3.1",
  4178. "php": "^8.0 || ^7.0.8",
  4179. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4180. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4181. },
  4182. "conflict": {
  4183. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4184. },
  4185. "require-dev": {
  4186. "bamarni/composer-bin-plugin": "^1.2"
  4187. },
  4188. "suggest": {
  4189. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4190. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4191. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4192. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4193. },
  4194. "bin": [
  4195. "bin/psysh"
  4196. ],
  4197. "type": "library",
  4198. "extra": {
  4199. "branch-alias": {
  4200. "dev-main": "0.11.x-dev"
  4201. }
  4202. },
  4203. "autoload": {
  4204. "files": [
  4205. "src/functions.php"
  4206. ],
  4207. "psr-4": {
  4208. "Psy\\": "src/"
  4209. }
  4210. },
  4211. "notification-url": "https://packagist.org/downloads/",
  4212. "license": [
  4213. "MIT"
  4214. ],
  4215. "authors": [
  4216. {
  4217. "name": "Justin Hileman",
  4218. "email": "justin@justinhileman.info",
  4219. "homepage": "http://justinhileman.com"
  4220. }
  4221. ],
  4222. "description": "An interactive shell for modern PHP.",
  4223. "homepage": "http://psysh.org",
  4224. "keywords": [
  4225. "REPL",
  4226. "console",
  4227. "interactive",
  4228. "shell"
  4229. ],
  4230. "support": {
  4231. "issues": "https://github.com/bobthecow/psysh/issues",
  4232. "source": "https://github.com/bobthecow/psysh/tree/v0.11.10"
  4233. },
  4234. "time": "2022-12-23T17:47:18+00:00"
  4235. },
  4236. {
  4237. "name": "qirolab/laravel-themer",
  4238. "version": "2.0.2",
  4239. "source": {
  4240. "type": "git",
  4241. "url": "https://github.com/qirolab/laravel-themer.git",
  4242. "reference": "9c4e17fe7334c921bf5c57395d926154cc25a1e8"
  4243. },
  4244. "dist": {
  4245. "type": "zip",
  4246. "url": "https://api.github.com/repos/qirolab/laravel-themer/zipball/9c4e17fe7334c921bf5c57395d926154cc25a1e8",
  4247. "reference": "9c4e17fe7334c921bf5c57395d926154cc25a1e8",
  4248. "shasum": ""
  4249. },
  4250. "require": {
  4251. "facade/ignition-contracts": "^1.0",
  4252. "illuminate/support": "^9.19",
  4253. "php": ">=7.1.0"
  4254. },
  4255. "require-dev": {
  4256. "orchestra/testbench": "^7.0",
  4257. "phpunit/phpunit": "^8.3|^9.0",
  4258. "vimeo/psalm": "^4.0"
  4259. },
  4260. "type": "library",
  4261. "extra": {
  4262. "laravel": {
  4263. "providers": [
  4264. "Qirolab\\Theme\\ThemeServiceProvider"
  4265. ]
  4266. }
  4267. },
  4268. "autoload": {
  4269. "psr-4": {
  4270. "Qirolab\\Theme\\": "src",
  4271. "Qirolab\\Theme\\Database\\Factories\\": "database/factories"
  4272. }
  4273. },
  4274. "notification-url": "https://packagist.org/downloads/",
  4275. "license": [
  4276. "MIT"
  4277. ],
  4278. "authors": [
  4279. {
  4280. "name": "Harish Kumar",
  4281. "email": "harish@qirolab.com",
  4282. "homepage": "https://qirolab.com",
  4283. "role": "Developer"
  4284. }
  4285. ],
  4286. "description": "A Laravel theme manager, that will help you organize and maintain your themes inside Laravel projects.",
  4287. "homepage": "https://qirolab.com",
  4288. "keywords": [
  4289. "laravel",
  4290. "laravel-theme",
  4291. "qirolab",
  4292. "theme"
  4293. ],
  4294. "support": {
  4295. "issues": "https://github.com/qirolab/laravel-themer/issues",
  4296. "source": "https://github.com/qirolab/laravel-themer/tree/2.0.2"
  4297. },
  4298. "funding": [
  4299. {
  4300. "url": "https://www.buymeacoffee.com/qirolab",
  4301. "type": "other"
  4302. }
  4303. ],
  4304. "time": "2022-09-03T21:30:32+00:00"
  4305. },
  4306. {
  4307. "name": "ralouphie/getallheaders",
  4308. "version": "3.0.3",
  4309. "source": {
  4310. "type": "git",
  4311. "url": "https://github.com/ralouphie/getallheaders.git",
  4312. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4313. },
  4314. "dist": {
  4315. "type": "zip",
  4316. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4317. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4318. "shasum": ""
  4319. },
  4320. "require": {
  4321. "php": ">=5.6"
  4322. },
  4323. "require-dev": {
  4324. "php-coveralls/php-coveralls": "^2.1",
  4325. "phpunit/phpunit": "^5 || ^6.5"
  4326. },
  4327. "type": "library",
  4328. "autoload": {
  4329. "files": [
  4330. "src/getallheaders.php"
  4331. ]
  4332. },
  4333. "notification-url": "https://packagist.org/downloads/",
  4334. "license": [
  4335. "MIT"
  4336. ],
  4337. "authors": [
  4338. {
  4339. "name": "Ralph Khattar",
  4340. "email": "ralph.khattar@gmail.com"
  4341. }
  4342. ],
  4343. "description": "A polyfill for getallheaders.",
  4344. "support": {
  4345. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4346. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4347. },
  4348. "time": "2019-03-08T08:55:37+00:00"
  4349. },
  4350. {
  4351. "name": "ramsey/collection",
  4352. "version": "2.0.0",
  4353. "source": {
  4354. "type": "git",
  4355. "url": "https://github.com/ramsey/collection.git",
  4356. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4357. },
  4358. "dist": {
  4359. "type": "zip",
  4360. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4361. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4362. "shasum": ""
  4363. },
  4364. "require": {
  4365. "php": "^8.1"
  4366. },
  4367. "require-dev": {
  4368. "captainhook/plugin-composer": "^5.3",
  4369. "ergebnis/composer-normalize": "^2.28.3",
  4370. "fakerphp/faker": "^1.21",
  4371. "hamcrest/hamcrest-php": "^2.0",
  4372. "jangregor/phpstan-prophecy": "^1.0",
  4373. "mockery/mockery": "^1.5",
  4374. "php-parallel-lint/php-console-highlighter": "^1.0",
  4375. "php-parallel-lint/php-parallel-lint": "^1.3",
  4376. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4377. "phpspec/prophecy-phpunit": "^2.0",
  4378. "phpstan/extension-installer": "^1.2",
  4379. "phpstan/phpstan": "^1.9",
  4380. "phpstan/phpstan-mockery": "^1.1",
  4381. "phpstan/phpstan-phpunit": "^1.3",
  4382. "phpunit/phpunit": "^9.5",
  4383. "psalm/plugin-mockery": "^1.1",
  4384. "psalm/plugin-phpunit": "^0.18.4",
  4385. "ramsey/coding-standard": "^2.0.3",
  4386. "ramsey/conventional-commits": "^1.3",
  4387. "vimeo/psalm": "^5.4"
  4388. },
  4389. "type": "library",
  4390. "extra": {
  4391. "captainhook": {
  4392. "force-install": true
  4393. },
  4394. "ramsey/conventional-commits": {
  4395. "configFile": "conventional-commits.json"
  4396. }
  4397. },
  4398. "autoload": {
  4399. "psr-4": {
  4400. "Ramsey\\Collection\\": "src/"
  4401. }
  4402. },
  4403. "notification-url": "https://packagist.org/downloads/",
  4404. "license": [
  4405. "MIT"
  4406. ],
  4407. "authors": [
  4408. {
  4409. "name": "Ben Ramsey",
  4410. "email": "ben@benramsey.com",
  4411. "homepage": "https://benramsey.com"
  4412. }
  4413. ],
  4414. "description": "A PHP library for representing and manipulating collections.",
  4415. "keywords": [
  4416. "array",
  4417. "collection",
  4418. "hash",
  4419. "map",
  4420. "queue",
  4421. "set"
  4422. ],
  4423. "support": {
  4424. "issues": "https://github.com/ramsey/collection/issues",
  4425. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4426. },
  4427. "funding": [
  4428. {
  4429. "url": "https://github.com/ramsey",
  4430. "type": "github"
  4431. },
  4432. {
  4433. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4434. "type": "tidelift"
  4435. }
  4436. ],
  4437. "time": "2022-12-31T21:50:55+00:00"
  4438. },
  4439. {
  4440. "name": "ramsey/uuid",
  4441. "version": "4.7.1",
  4442. "source": {
  4443. "type": "git",
  4444. "url": "https://github.com/ramsey/uuid.git",
  4445. "reference": "a1acf96007170234a8399586a6e2ab8feba109d1"
  4446. },
  4447. "dist": {
  4448. "type": "zip",
  4449. "url": "https://api.github.com/repos/ramsey/uuid/zipball/a1acf96007170234a8399586a6e2ab8feba109d1",
  4450. "reference": "a1acf96007170234a8399586a6e2ab8feba109d1",
  4451. "shasum": ""
  4452. },
  4453. "require": {
  4454. "brick/math": "^0.8.8 || ^0.9 || ^0.10",
  4455. "ext-json": "*",
  4456. "php": "^8.0",
  4457. "ramsey/collection": "^1.2 || ^2.0"
  4458. },
  4459. "replace": {
  4460. "rhumsaa/uuid": "self.version"
  4461. },
  4462. "require-dev": {
  4463. "captainhook/captainhook": "^5.10",
  4464. "captainhook/plugin-composer": "^5.3",
  4465. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4466. "doctrine/annotations": "^1.8",
  4467. "ergebnis/composer-normalize": "^2.15",
  4468. "mockery/mockery": "^1.3",
  4469. "paragonie/random-lib": "^2",
  4470. "php-mock/php-mock": "^2.2",
  4471. "php-mock/php-mock-mockery": "^1.3",
  4472. "php-parallel-lint/php-parallel-lint": "^1.1",
  4473. "phpbench/phpbench": "^1.0",
  4474. "phpstan/extension-installer": "^1.1",
  4475. "phpstan/phpstan": "^1.8",
  4476. "phpstan/phpstan-mockery": "^1.1",
  4477. "phpstan/phpstan-phpunit": "^1.1",
  4478. "phpunit/phpunit": "^8.5 || ^9",
  4479. "ramsey/composer-repl": "^1.4",
  4480. "slevomat/coding-standard": "^8.4",
  4481. "squizlabs/php_codesniffer": "^3.5",
  4482. "vimeo/psalm": "^4.9"
  4483. },
  4484. "suggest": {
  4485. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4486. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4487. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4488. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4489. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4490. },
  4491. "type": "library",
  4492. "extra": {
  4493. "captainhook": {
  4494. "force-install": true
  4495. }
  4496. },
  4497. "autoload": {
  4498. "files": [
  4499. "src/functions.php"
  4500. ],
  4501. "psr-4": {
  4502. "Ramsey\\Uuid\\": "src/"
  4503. }
  4504. },
  4505. "notification-url": "https://packagist.org/downloads/",
  4506. "license": [
  4507. "MIT"
  4508. ],
  4509. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4510. "keywords": [
  4511. "guid",
  4512. "identifier",
  4513. "uuid"
  4514. ],
  4515. "support": {
  4516. "issues": "https://github.com/ramsey/uuid/issues",
  4517. "source": "https://github.com/ramsey/uuid/tree/4.7.1"
  4518. },
  4519. "funding": [
  4520. {
  4521. "url": "https://github.com/ramsey",
  4522. "type": "github"
  4523. },
  4524. {
  4525. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4526. "type": "tidelift"
  4527. }
  4528. ],
  4529. "time": "2022-12-31T22:20:34+00:00"
  4530. },
  4531. {
  4532. "name": "sabberworm/php-css-parser",
  4533. "version": "8.4.0",
  4534. "source": {
  4535. "type": "git",
  4536. "url": "https://github.com/sabberworm/PHP-CSS-Parser.git",
  4537. "reference": "e41d2140031d533348b2192a83f02d8dd8a71d30"
  4538. },
  4539. "dist": {
  4540. "type": "zip",
  4541. "url": "https://api.github.com/repos/sabberworm/PHP-CSS-Parser/zipball/e41d2140031d533348b2192a83f02d8dd8a71d30",
  4542. "reference": "e41d2140031d533348b2192a83f02d8dd8a71d30",
  4543. "shasum": ""
  4544. },
  4545. "require": {
  4546. "ext-iconv": "*",
  4547. "php": ">=5.6.20"
  4548. },
  4549. "require-dev": {
  4550. "codacy/coverage": "^1.4",
  4551. "phpunit/phpunit": "^4.8.36"
  4552. },
  4553. "suggest": {
  4554. "ext-mbstring": "for parsing UTF-8 CSS"
  4555. },
  4556. "type": "library",
  4557. "autoload": {
  4558. "psr-4": {
  4559. "Sabberworm\\CSS\\": "src/"
  4560. }
  4561. },
  4562. "notification-url": "https://packagist.org/downloads/",
  4563. "license": [
  4564. "MIT"
  4565. ],
  4566. "authors": [
  4567. {
  4568. "name": "Raphael Schweikert"
  4569. }
  4570. ],
  4571. "description": "Parser for CSS Files written in PHP",
  4572. "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  4573. "keywords": [
  4574. "css",
  4575. "parser",
  4576. "stylesheet"
  4577. ],
  4578. "support": {
  4579. "issues": "https://github.com/sabberworm/PHP-CSS-Parser/issues",
  4580. "source": "https://github.com/sabberworm/PHP-CSS-Parser/tree/8.4.0"
  4581. },
  4582. "time": "2021-12-11T13:40:54+00:00"
  4583. },
  4584. {
  4585. "name": "socialiteproviders/discord",
  4586. "version": "4.1.1",
  4587. "source": {
  4588. "type": "git",
  4589. "url": "https://github.com/SocialiteProviders/Discord.git",
  4590. "reference": "c6eddeb07ace7473e82d02d4db852dfacf5ef574"
  4591. },
  4592. "dist": {
  4593. "type": "zip",
  4594. "url": "https://api.github.com/repos/SocialiteProviders/Discord/zipball/c6eddeb07ace7473e82d02d4db852dfacf5ef574",
  4595. "reference": "c6eddeb07ace7473e82d02d4db852dfacf5ef574",
  4596. "shasum": ""
  4597. },
  4598. "require": {
  4599. "ext-json": "*",
  4600. "php": "^7.2 || ^8.0",
  4601. "socialiteproviders/manager": "~4.0"
  4602. },
  4603. "type": "library",
  4604. "autoload": {
  4605. "psr-4": {
  4606. "SocialiteProviders\\Discord\\": ""
  4607. }
  4608. },
  4609. "notification-url": "https://packagist.org/downloads/",
  4610. "license": [
  4611. "MIT"
  4612. ],
  4613. "authors": [
  4614. {
  4615. "name": "Christopher Eklund",
  4616. "email": "eklundchristopher@gmail.com"
  4617. }
  4618. ],
  4619. "description": "Discord OAuth2 Provider for Laravel Socialite",
  4620. "support": {
  4621. "source": "https://github.com/SocialiteProviders/Discord/tree/4.1.1"
  4622. },
  4623. "time": "2021-01-05T22:03:58+00:00"
  4624. },
  4625. {
  4626. "name": "socialiteproviders/manager",
  4627. "version": "v4.2.0",
  4628. "source": {
  4629. "type": "git",
  4630. "url": "https://github.com/SocialiteProviders/Manager.git",
  4631. "reference": "738276dfbc2b68a9145db7b3df1588d53db528a1"
  4632. },
  4633. "dist": {
  4634. "type": "zip",
  4635. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/738276dfbc2b68a9145db7b3df1588d53db528a1",
  4636. "reference": "738276dfbc2b68a9145db7b3df1588d53db528a1",
  4637. "shasum": ""
  4638. },
  4639. "require": {
  4640. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0",
  4641. "laravel/socialite": "~5.0",
  4642. "php": "^7.4 || ^8.0"
  4643. },
  4644. "require-dev": {
  4645. "mockery/mockery": "^1.2",
  4646. "phpunit/phpunit": "^6.0 || ^9.0"
  4647. },
  4648. "type": "library",
  4649. "extra": {
  4650. "laravel": {
  4651. "providers": [
  4652. "SocialiteProviders\\Manager\\ServiceProvider"
  4653. ]
  4654. }
  4655. },
  4656. "autoload": {
  4657. "psr-4": {
  4658. "SocialiteProviders\\Manager\\": "src/"
  4659. }
  4660. },
  4661. "notification-url": "https://packagist.org/downloads/",
  4662. "license": [
  4663. "MIT"
  4664. ],
  4665. "authors": [
  4666. {
  4667. "name": "Andy Wendt",
  4668. "email": "andy@awendt.com"
  4669. },
  4670. {
  4671. "name": "Anton Komarev",
  4672. "email": "a.komarev@cybercog.su"
  4673. },
  4674. {
  4675. "name": "Miguel Piedrafita",
  4676. "email": "soy@miguelpiedrafita.com"
  4677. },
  4678. {
  4679. "name": "atymic",
  4680. "email": "atymicq@gmail.com",
  4681. "homepage": "https://atymic.dev"
  4682. }
  4683. ],
  4684. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  4685. "homepage": "https://socialiteproviders.com",
  4686. "keywords": [
  4687. "laravel",
  4688. "manager",
  4689. "oauth",
  4690. "providers",
  4691. "socialite"
  4692. ],
  4693. "support": {
  4694. "issues": "https://github.com/socialiteproviders/manager/issues",
  4695. "source": "https://github.com/socialiteproviders/manager"
  4696. },
  4697. "time": "2022-09-02T10:20:10+00:00"
  4698. },
  4699. {
  4700. "name": "spatie/laravel-activitylog",
  4701. "version": "4.7.2",
  4702. "source": {
  4703. "type": "git",
  4704. "url": "https://github.com/spatie/laravel-activitylog.git",
  4705. "reference": "eee61436e2984119fd71fc338a45ec7d68e3b548"
  4706. },
  4707. "dist": {
  4708. "type": "zip",
  4709. "url": "https://api.github.com/repos/spatie/laravel-activitylog/zipball/eee61436e2984119fd71fc338a45ec7d68e3b548",
  4710. "reference": "eee61436e2984119fd71fc338a45ec7d68e3b548",
  4711. "shasum": ""
  4712. },
  4713. "require": {
  4714. "illuminate/config": "^8.0 || ^9.0",
  4715. "illuminate/database": "^8.69 || ^9.27",
  4716. "illuminate/support": "^8.0 || ^9.0",
  4717. "php": "^8.0",
  4718. "spatie/laravel-package-tools": "^1.6.3"
  4719. },
  4720. "require-dev": {
  4721. "ext-json": "*",
  4722. "orchestra/testbench": "^6.23 || ^7.0",
  4723. "pestphp/pest": "^1.20"
  4724. },
  4725. "type": "library",
  4726. "extra": {
  4727. "laravel": {
  4728. "providers": [
  4729. "Spatie\\Activitylog\\ActivitylogServiceProvider"
  4730. ]
  4731. }
  4732. },
  4733. "autoload": {
  4734. "files": [
  4735. "src/helpers.php"
  4736. ],
  4737. "psr-4": {
  4738. "Spatie\\Activitylog\\": "src"
  4739. }
  4740. },
  4741. "notification-url": "https://packagist.org/downloads/",
  4742. "license": [
  4743. "MIT"
  4744. ],
  4745. "authors": [
  4746. {
  4747. "name": "Freek Van der Herten",
  4748. "email": "freek@spatie.be",
  4749. "homepage": "https://spatie.be",
  4750. "role": "Developer"
  4751. },
  4752. {
  4753. "name": "Sebastian De Deyne",
  4754. "email": "sebastian@spatie.be",
  4755. "homepage": "https://spatie.be",
  4756. "role": "Developer"
  4757. },
  4758. {
  4759. "name": "Tom Witkowski",
  4760. "email": "dev.gummibeer@gmail.com",
  4761. "homepage": "https://gummibeer.de",
  4762. "role": "Developer"
  4763. }
  4764. ],
  4765. "description": "A very simple activity logger to monitor the users of your website or application",
  4766. "homepage": "https://github.com/spatie/activitylog",
  4767. "keywords": [
  4768. "activity",
  4769. "laravel",
  4770. "log",
  4771. "spatie",
  4772. "user"
  4773. ],
  4774. "support": {
  4775. "issues": "https://github.com/spatie/laravel-activitylog/issues",
  4776. "source": "https://github.com/spatie/laravel-activitylog/tree/4.7.2"
  4777. },
  4778. "funding": [
  4779. {
  4780. "url": "https://spatie.be/open-source/support-us",
  4781. "type": "custom"
  4782. },
  4783. {
  4784. "url": "https://github.com/spatie",
  4785. "type": "github"
  4786. }
  4787. ],
  4788. "time": "2022-11-14T12:16:46+00:00"
  4789. },
  4790. {
  4791. "name": "spatie/laravel-package-tools",
  4792. "version": "1.13.8",
  4793. "source": {
  4794. "type": "git",
  4795. "url": "https://github.com/spatie/laravel-package-tools.git",
  4796. "reference": "781a2f637237e69c277eb401063acf15e2b4156b"
  4797. },
  4798. "dist": {
  4799. "type": "zip",
  4800. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/781a2f637237e69c277eb401063acf15e2b4156b",
  4801. "reference": "781a2f637237e69c277eb401063acf15e2b4156b",
  4802. "shasum": ""
  4803. },
  4804. "require": {
  4805. "illuminate/contracts": "^9.28",
  4806. "php": "^8.0"
  4807. },
  4808. "require-dev": {
  4809. "mockery/mockery": "^1.5",
  4810. "orchestra/testbench": "^7.7",
  4811. "pestphp/pest": "^1.22",
  4812. "phpunit/phpunit": "^9.5.24",
  4813. "spatie/pest-plugin-test-time": "^1.1"
  4814. },
  4815. "type": "library",
  4816. "autoload": {
  4817. "psr-4": {
  4818. "Spatie\\LaravelPackageTools\\": "src"
  4819. }
  4820. },
  4821. "notification-url": "https://packagist.org/downloads/",
  4822. "license": [
  4823. "MIT"
  4824. ],
  4825. "authors": [
  4826. {
  4827. "name": "Freek Van der Herten",
  4828. "email": "freek@spatie.be",
  4829. "role": "Developer"
  4830. }
  4831. ],
  4832. "description": "Tools for creating Laravel packages",
  4833. "homepage": "https://github.com/spatie/laravel-package-tools",
  4834. "keywords": [
  4835. "laravel-package-tools",
  4836. "spatie"
  4837. ],
  4838. "support": {
  4839. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  4840. "source": "https://github.com/spatie/laravel-package-tools/tree/1.13.8"
  4841. },
  4842. "funding": [
  4843. {
  4844. "url": "https://github.com/spatie",
  4845. "type": "github"
  4846. }
  4847. ],
  4848. "time": "2022-12-20T14:09:05+00:00"
  4849. },
  4850. {
  4851. "name": "spatie/laravel-query-builder",
  4852. "version": "5.1.1",
  4853. "source": {
  4854. "type": "git",
  4855. "url": "https://github.com/spatie/laravel-query-builder.git",
  4856. "reference": "14a6802cd513cfd2abf68044cca5fd7391eb543d"
  4857. },
  4858. "dist": {
  4859. "type": "zip",
  4860. "url": "https://api.github.com/repos/spatie/laravel-query-builder/zipball/14a6802cd513cfd2abf68044cca5fd7391eb543d",
  4861. "reference": "14a6802cd513cfd2abf68044cca5fd7391eb543d",
  4862. "shasum": ""
  4863. },
  4864. "require": {
  4865. "illuminate/database": "^9.0",
  4866. "illuminate/http": "^9.0",
  4867. "illuminate/support": "^9.0",
  4868. "php": "^8.0",
  4869. "spatie/laravel-package-tools": "^1.11"
  4870. },
  4871. "require-dev": {
  4872. "ext-json": "*",
  4873. "mockery/mockery": "^1.4",
  4874. "orchestra/testbench": "^7.0",
  4875. "pestphp/pest": "^1.20",
  4876. "spatie/laravel-ray": "^1.28"
  4877. },
  4878. "type": "library",
  4879. "extra": {
  4880. "laravel": {
  4881. "providers": [
  4882. "Spatie\\QueryBuilder\\QueryBuilderServiceProvider"
  4883. ]
  4884. }
  4885. },
  4886. "autoload": {
  4887. "psr-4": {
  4888. "Spatie\\QueryBuilder\\": "src",
  4889. "Spatie\\QueryBuilder\\Database\\Factories\\": "database/factories"
  4890. }
  4891. },
  4892. "notification-url": "https://packagist.org/downloads/",
  4893. "license": [
  4894. "MIT"
  4895. ],
  4896. "authors": [
  4897. {
  4898. "name": "Alex Vanderbist",
  4899. "email": "alex@spatie.be",
  4900. "homepage": "https://spatie.be",
  4901. "role": "Developer"
  4902. }
  4903. ],
  4904. "description": "Easily build Eloquent queries from API requests",
  4905. "homepage": "https://github.com/spatie/laravel-query-builder",
  4906. "keywords": [
  4907. "laravel-query-builder",
  4908. "spatie"
  4909. ],
  4910. "support": {
  4911. "issues": "https://github.com/spatie/laravel-query-builder/issues",
  4912. "source": "https://github.com/spatie/laravel-query-builder"
  4913. },
  4914. "funding": [
  4915. {
  4916. "url": "https://spatie.be/open-source/support-us",
  4917. "type": "custom"
  4918. }
  4919. ],
  4920. "time": "2022-12-02T21:28:40+00:00"
  4921. },
  4922. {
  4923. "name": "spatie/laravel-validation-rules",
  4924. "version": "3.2.1",
  4925. "source": {
  4926. "type": "git",
  4927. "url": "https://github.com/spatie/laravel-validation-rules.git",
  4928. "reference": "47a63a724e10d72432d0dcdf438d1fecbc963bae"
  4929. },
  4930. "dist": {
  4931. "type": "zip",
  4932. "url": "https://api.github.com/repos/spatie/laravel-validation-rules/zipball/47a63a724e10d72432d0dcdf438d1fecbc963bae",
  4933. "reference": "47a63a724e10d72432d0dcdf438d1fecbc963bae",
  4934. "shasum": ""
  4935. },
  4936. "require": {
  4937. "illuminate/support": "^8.0|^9.0",
  4938. "php": "^7.4|^8.0"
  4939. },
  4940. "require-dev": {
  4941. "league/iso3166": "^3.0",
  4942. "myclabs/php-enum": "^1.6",
  4943. "orchestra/testbench": "^6.23|^7.0",
  4944. "phpunit/phpunit": "^9.4",
  4945. "spatie/enum": "^2.2|^3.0"
  4946. },
  4947. "suggest": {
  4948. "league/iso3166": "Needed for the CountryCode rule and Currency rule"
  4949. },
  4950. "type": "library",
  4951. "extra": {
  4952. "laravel": {
  4953. "providers": [
  4954. "Spatie\\ValidationRules\\ValidationRulesServiceProvider"
  4955. ]
  4956. }
  4957. },
  4958. "autoload": {
  4959. "psr-4": {
  4960. "Spatie\\ValidationRules\\": "src",
  4961. "Spatie\\ValidationRules\\Database\\Factories\\": "database/factories"
  4962. }
  4963. },
  4964. "notification-url": "https://packagist.org/downloads/",
  4965. "license": [
  4966. "MIT"
  4967. ],
  4968. "authors": [
  4969. {
  4970. "name": "Freek Van der Herten",
  4971. "email": "freek@spatie.be",
  4972. "homepage": "https://spatie.be",
  4973. "role": "Developer"
  4974. }
  4975. ],
  4976. "description": "A set of useful Laravel validation rules",
  4977. "homepage": "https://github.com/spatie/laravel-validation-rules",
  4978. "keywords": [
  4979. "laravel-validation-rules",
  4980. "spatie"
  4981. ],
  4982. "support": {
  4983. "issues": "https://github.com/spatie/laravel-validation-rules/issues",
  4984. "source": "https://github.com/spatie/laravel-validation-rules/tree/3.2.1"
  4985. },
  4986. "funding": [
  4987. {
  4988. "url": "https://github.com/spatie",
  4989. "type": "github"
  4990. }
  4991. ],
  4992. "time": "2022-08-01T11:52:01+00:00"
  4993. },
  4994. {
  4995. "name": "stripe/stripe-php",
  4996. "version": "v7.128.0",
  4997. "source": {
  4998. "type": "git",
  4999. "url": "https://github.com/stripe/stripe-php.git",
  5000. "reference": "c704949c49b72985c76cc61063aa26fefbd2724e"
  5001. },
  5002. "dist": {
  5003. "type": "zip",
  5004. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/c704949c49b72985c76cc61063aa26fefbd2724e",
  5005. "reference": "c704949c49b72985c76cc61063aa26fefbd2724e",
  5006. "shasum": ""
  5007. },
  5008. "require": {
  5009. "ext-curl": "*",
  5010. "ext-json": "*",
  5011. "ext-mbstring": "*",
  5012. "php": ">=5.6.0"
  5013. },
  5014. "require-dev": {
  5015. "friendsofphp/php-cs-fixer": "3.5.0",
  5016. "phpstan/phpstan": "^1.2",
  5017. "phpunit/phpunit": "^5.7 || ^9.0",
  5018. "squizlabs/php_codesniffer": "^3.3"
  5019. },
  5020. "type": "library",
  5021. "extra": {
  5022. "branch-alias": {
  5023. "dev-master": "2.0-dev"
  5024. }
  5025. },
  5026. "autoload": {
  5027. "psr-4": {
  5028. "Stripe\\": "lib/"
  5029. }
  5030. },
  5031. "notification-url": "https://packagist.org/downloads/",
  5032. "license": [
  5033. "MIT"
  5034. ],
  5035. "authors": [
  5036. {
  5037. "name": "Stripe and contributors",
  5038. "homepage": "https://github.com/stripe/stripe-php/contributors"
  5039. }
  5040. ],
  5041. "description": "Stripe PHP Library",
  5042. "homepage": "https://stripe.com/",
  5043. "keywords": [
  5044. "api",
  5045. "payment processing",
  5046. "stripe"
  5047. ],
  5048. "support": {
  5049. "issues": "https://github.com/stripe/stripe-php/issues",
  5050. "source": "https://github.com/stripe/stripe-php/tree/v7.128.0"
  5051. },
  5052. "time": "2022-05-05T17:18:02+00:00"
  5053. },
  5054. {
  5055. "name": "symfony/console",
  5056. "version": "v6.2.3",
  5057. "source": {
  5058. "type": "git",
  5059. "url": "https://github.com/symfony/console.git",
  5060. "reference": "0f579613e771dba2dbb8211c382342a641f5da06"
  5061. },
  5062. "dist": {
  5063. "type": "zip",
  5064. "url": "https://api.github.com/repos/symfony/console/zipball/0f579613e771dba2dbb8211c382342a641f5da06",
  5065. "reference": "0f579613e771dba2dbb8211c382342a641f5da06",
  5066. "shasum": ""
  5067. },
  5068. "require": {
  5069. "php": ">=8.1",
  5070. "symfony/deprecation-contracts": "^2.1|^3",
  5071. "symfony/polyfill-mbstring": "~1.0",
  5072. "symfony/service-contracts": "^1.1|^2|^3",
  5073. "symfony/string": "^5.4|^6.0"
  5074. },
  5075. "conflict": {
  5076. "symfony/dependency-injection": "<5.4",
  5077. "symfony/dotenv": "<5.4",
  5078. "symfony/event-dispatcher": "<5.4",
  5079. "symfony/lock": "<5.4",
  5080. "symfony/process": "<5.4"
  5081. },
  5082. "provide": {
  5083. "psr/log-implementation": "1.0|2.0|3.0"
  5084. },
  5085. "require-dev": {
  5086. "psr/log": "^1|^2|^3",
  5087. "symfony/config": "^5.4|^6.0",
  5088. "symfony/dependency-injection": "^5.4|^6.0",
  5089. "symfony/event-dispatcher": "^5.4|^6.0",
  5090. "symfony/lock": "^5.4|^6.0",
  5091. "symfony/process": "^5.4|^6.0",
  5092. "symfony/var-dumper": "^5.4|^6.0"
  5093. },
  5094. "suggest": {
  5095. "psr/log": "For using the console logger",
  5096. "symfony/event-dispatcher": "",
  5097. "symfony/lock": "",
  5098. "symfony/process": ""
  5099. },
  5100. "type": "library",
  5101. "autoload": {
  5102. "psr-4": {
  5103. "Symfony\\Component\\Console\\": ""
  5104. },
  5105. "exclude-from-classmap": [
  5106. "/Tests/"
  5107. ]
  5108. },
  5109. "notification-url": "https://packagist.org/downloads/",
  5110. "license": [
  5111. "MIT"
  5112. ],
  5113. "authors": [
  5114. {
  5115. "name": "Fabien Potencier",
  5116. "email": "fabien@symfony.com"
  5117. },
  5118. {
  5119. "name": "Symfony Community",
  5120. "homepage": "https://symfony.com/contributors"
  5121. }
  5122. ],
  5123. "description": "Eases the creation of beautiful and testable command line interfaces",
  5124. "homepage": "https://symfony.com",
  5125. "keywords": [
  5126. "cli",
  5127. "command line",
  5128. "console",
  5129. "terminal"
  5130. ],
  5131. "support": {
  5132. "source": "https://github.com/symfony/console/tree/v6.2.3"
  5133. },
  5134. "funding": [
  5135. {
  5136. "url": "https://symfony.com/sponsor",
  5137. "type": "custom"
  5138. },
  5139. {
  5140. "url": "https://github.com/fabpot",
  5141. "type": "github"
  5142. },
  5143. {
  5144. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5145. "type": "tidelift"
  5146. }
  5147. ],
  5148. "time": "2022-12-28T14:26:22+00:00"
  5149. },
  5150. {
  5151. "name": "symfony/css-selector",
  5152. "version": "v6.2.3",
  5153. "source": {
  5154. "type": "git",
  5155. "url": "https://github.com/symfony/css-selector.git",
  5156. "reference": "ab1df4ba3ded7b724766ba3a6e0eca0418e74f80"
  5157. },
  5158. "dist": {
  5159. "type": "zip",
  5160. "url": "https://api.github.com/repos/symfony/css-selector/zipball/ab1df4ba3ded7b724766ba3a6e0eca0418e74f80",
  5161. "reference": "ab1df4ba3ded7b724766ba3a6e0eca0418e74f80",
  5162. "shasum": ""
  5163. },
  5164. "require": {
  5165. "php": ">=8.1"
  5166. },
  5167. "type": "library",
  5168. "autoload": {
  5169. "psr-4": {
  5170. "Symfony\\Component\\CssSelector\\": ""
  5171. },
  5172. "exclude-from-classmap": [
  5173. "/Tests/"
  5174. ]
  5175. },
  5176. "notification-url": "https://packagist.org/downloads/",
  5177. "license": [
  5178. "MIT"
  5179. ],
  5180. "authors": [
  5181. {
  5182. "name": "Fabien Potencier",
  5183. "email": "fabien@symfony.com"
  5184. },
  5185. {
  5186. "name": "Jean-François Simon",
  5187. "email": "jeanfrancois.simon@sensiolabs.com"
  5188. },
  5189. {
  5190. "name": "Symfony Community",
  5191. "homepage": "https://symfony.com/contributors"
  5192. }
  5193. ],
  5194. "description": "Converts CSS selectors to XPath expressions",
  5195. "homepage": "https://symfony.com",
  5196. "support": {
  5197. "source": "https://github.com/symfony/css-selector/tree/v6.2.3"
  5198. },
  5199. "funding": [
  5200. {
  5201. "url": "https://symfony.com/sponsor",
  5202. "type": "custom"
  5203. },
  5204. {
  5205. "url": "https://github.com/fabpot",
  5206. "type": "github"
  5207. },
  5208. {
  5209. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5210. "type": "tidelift"
  5211. }
  5212. ],
  5213. "time": "2022-12-28T14:26:22+00:00"
  5214. },
  5215. {
  5216. "name": "symfony/deprecation-contracts",
  5217. "version": "v3.2.0",
  5218. "source": {
  5219. "type": "git",
  5220. "url": "https://github.com/symfony/deprecation-contracts.git",
  5221. "reference": "1ee04c65529dea5d8744774d474e7cbd2f1206d3"
  5222. },
  5223. "dist": {
  5224. "type": "zip",
  5225. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/1ee04c65529dea5d8744774d474e7cbd2f1206d3",
  5226. "reference": "1ee04c65529dea5d8744774d474e7cbd2f1206d3",
  5227. "shasum": ""
  5228. },
  5229. "require": {
  5230. "php": ">=8.1"
  5231. },
  5232. "type": "library",
  5233. "extra": {
  5234. "branch-alias": {
  5235. "dev-main": "3.3-dev"
  5236. },
  5237. "thanks": {
  5238. "name": "symfony/contracts",
  5239. "url": "https://github.com/symfony/contracts"
  5240. }
  5241. },
  5242. "autoload": {
  5243. "files": [
  5244. "function.php"
  5245. ]
  5246. },
  5247. "notification-url": "https://packagist.org/downloads/",
  5248. "license": [
  5249. "MIT"
  5250. ],
  5251. "authors": [
  5252. {
  5253. "name": "Nicolas Grekas",
  5254. "email": "p@tchwork.com"
  5255. },
  5256. {
  5257. "name": "Symfony Community",
  5258. "homepage": "https://symfony.com/contributors"
  5259. }
  5260. ],
  5261. "description": "A generic function and convention to trigger deprecation notices",
  5262. "homepage": "https://symfony.com",
  5263. "support": {
  5264. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.0"
  5265. },
  5266. "funding": [
  5267. {
  5268. "url": "https://symfony.com/sponsor",
  5269. "type": "custom"
  5270. },
  5271. {
  5272. "url": "https://github.com/fabpot",
  5273. "type": "github"
  5274. },
  5275. {
  5276. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5277. "type": "tidelift"
  5278. }
  5279. ],
  5280. "time": "2022-11-25T10:21:52+00:00"
  5281. },
  5282. {
  5283. "name": "symfony/error-handler",
  5284. "version": "v6.2.3",
  5285. "source": {
  5286. "type": "git",
  5287. "url": "https://github.com/symfony/error-handler.git",
  5288. "reference": "0926124c95d220499e2baf0fb465772af3a4eddb"
  5289. },
  5290. "dist": {
  5291. "type": "zip",
  5292. "url": "https://api.github.com/repos/symfony/error-handler/zipball/0926124c95d220499e2baf0fb465772af3a4eddb",
  5293. "reference": "0926124c95d220499e2baf0fb465772af3a4eddb",
  5294. "shasum": ""
  5295. },
  5296. "require": {
  5297. "php": ">=8.1",
  5298. "psr/log": "^1|^2|^3",
  5299. "symfony/var-dumper": "^5.4|^6.0"
  5300. },
  5301. "require-dev": {
  5302. "symfony/deprecation-contracts": "^2.1|^3",
  5303. "symfony/http-kernel": "^5.4|^6.0",
  5304. "symfony/serializer": "^5.4|^6.0"
  5305. },
  5306. "bin": [
  5307. "Resources/bin/patch-type-declarations"
  5308. ],
  5309. "type": "library",
  5310. "autoload": {
  5311. "psr-4": {
  5312. "Symfony\\Component\\ErrorHandler\\": ""
  5313. },
  5314. "exclude-from-classmap": [
  5315. "/Tests/"
  5316. ]
  5317. },
  5318. "notification-url": "https://packagist.org/downloads/",
  5319. "license": [
  5320. "MIT"
  5321. ],
  5322. "authors": [
  5323. {
  5324. "name": "Fabien Potencier",
  5325. "email": "fabien@symfony.com"
  5326. },
  5327. {
  5328. "name": "Symfony Community",
  5329. "homepage": "https://symfony.com/contributors"
  5330. }
  5331. ],
  5332. "description": "Provides tools to manage errors and ease debugging PHP code",
  5333. "homepage": "https://symfony.com",
  5334. "support": {
  5335. "source": "https://github.com/symfony/error-handler/tree/v6.2.3"
  5336. },
  5337. "funding": [
  5338. {
  5339. "url": "https://symfony.com/sponsor",
  5340. "type": "custom"
  5341. },
  5342. {
  5343. "url": "https://github.com/fabpot",
  5344. "type": "github"
  5345. },
  5346. {
  5347. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5348. "type": "tidelift"
  5349. }
  5350. ],
  5351. "time": "2022-12-19T14:33:49+00:00"
  5352. },
  5353. {
  5354. "name": "symfony/event-dispatcher",
  5355. "version": "v6.2.2",
  5356. "source": {
  5357. "type": "git",
  5358. "url": "https://github.com/symfony/event-dispatcher.git",
  5359. "reference": "3ffeb31139b49bf6ef0bc09d1db95eac053388d1"
  5360. },
  5361. "dist": {
  5362. "type": "zip",
  5363. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3ffeb31139b49bf6ef0bc09d1db95eac053388d1",
  5364. "reference": "3ffeb31139b49bf6ef0bc09d1db95eac053388d1",
  5365. "shasum": ""
  5366. },
  5367. "require": {
  5368. "php": ">=8.1",
  5369. "symfony/event-dispatcher-contracts": "^2|^3"
  5370. },
  5371. "conflict": {
  5372. "symfony/dependency-injection": "<5.4"
  5373. },
  5374. "provide": {
  5375. "psr/event-dispatcher-implementation": "1.0",
  5376. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5377. },
  5378. "require-dev": {
  5379. "psr/log": "^1|^2|^3",
  5380. "symfony/config": "^5.4|^6.0",
  5381. "symfony/dependency-injection": "^5.4|^6.0",
  5382. "symfony/error-handler": "^5.4|^6.0",
  5383. "symfony/expression-language": "^5.4|^6.0",
  5384. "symfony/http-foundation": "^5.4|^6.0",
  5385. "symfony/service-contracts": "^1.1|^2|^3",
  5386. "symfony/stopwatch": "^5.4|^6.0"
  5387. },
  5388. "suggest": {
  5389. "symfony/dependency-injection": "",
  5390. "symfony/http-kernel": ""
  5391. },
  5392. "type": "library",
  5393. "autoload": {
  5394. "psr-4": {
  5395. "Symfony\\Component\\EventDispatcher\\": ""
  5396. },
  5397. "exclude-from-classmap": [
  5398. "/Tests/"
  5399. ]
  5400. },
  5401. "notification-url": "https://packagist.org/downloads/",
  5402. "license": [
  5403. "MIT"
  5404. ],
  5405. "authors": [
  5406. {
  5407. "name": "Fabien Potencier",
  5408. "email": "fabien@symfony.com"
  5409. },
  5410. {
  5411. "name": "Symfony Community",
  5412. "homepage": "https://symfony.com/contributors"
  5413. }
  5414. ],
  5415. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5416. "homepage": "https://symfony.com",
  5417. "support": {
  5418. "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.2"
  5419. },
  5420. "funding": [
  5421. {
  5422. "url": "https://symfony.com/sponsor",
  5423. "type": "custom"
  5424. },
  5425. {
  5426. "url": "https://github.com/fabpot",
  5427. "type": "github"
  5428. },
  5429. {
  5430. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5431. "type": "tidelift"
  5432. }
  5433. ],
  5434. "time": "2022-12-14T16:11:27+00:00"
  5435. },
  5436. {
  5437. "name": "symfony/event-dispatcher-contracts",
  5438. "version": "v3.2.0",
  5439. "source": {
  5440. "type": "git",
  5441. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5442. "reference": "0782b0b52a737a05b4383d0df35a474303cabdae"
  5443. },
  5444. "dist": {
  5445. "type": "zip",
  5446. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0782b0b52a737a05b4383d0df35a474303cabdae",
  5447. "reference": "0782b0b52a737a05b4383d0df35a474303cabdae",
  5448. "shasum": ""
  5449. },
  5450. "require": {
  5451. "php": ">=8.1",
  5452. "psr/event-dispatcher": "^1"
  5453. },
  5454. "suggest": {
  5455. "symfony/event-dispatcher-implementation": ""
  5456. },
  5457. "type": "library",
  5458. "extra": {
  5459. "branch-alias": {
  5460. "dev-main": "3.3-dev"
  5461. },
  5462. "thanks": {
  5463. "name": "symfony/contracts",
  5464. "url": "https://github.com/symfony/contracts"
  5465. }
  5466. },
  5467. "autoload": {
  5468. "psr-4": {
  5469. "Symfony\\Contracts\\EventDispatcher\\": ""
  5470. }
  5471. },
  5472. "notification-url": "https://packagist.org/downloads/",
  5473. "license": [
  5474. "MIT"
  5475. ],
  5476. "authors": [
  5477. {
  5478. "name": "Nicolas Grekas",
  5479. "email": "p@tchwork.com"
  5480. },
  5481. {
  5482. "name": "Symfony Community",
  5483. "homepage": "https://symfony.com/contributors"
  5484. }
  5485. ],
  5486. "description": "Generic abstractions related to dispatching event",
  5487. "homepage": "https://symfony.com",
  5488. "keywords": [
  5489. "abstractions",
  5490. "contracts",
  5491. "decoupling",
  5492. "interfaces",
  5493. "interoperability",
  5494. "standards"
  5495. ],
  5496. "support": {
  5497. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.0"
  5498. },
  5499. "funding": [
  5500. {
  5501. "url": "https://symfony.com/sponsor",
  5502. "type": "custom"
  5503. },
  5504. {
  5505. "url": "https://github.com/fabpot",
  5506. "type": "github"
  5507. },
  5508. {
  5509. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5510. "type": "tidelift"
  5511. }
  5512. ],
  5513. "time": "2022-11-25T10:21:52+00:00"
  5514. },
  5515. {
  5516. "name": "symfony/finder",
  5517. "version": "v6.2.3",
  5518. "source": {
  5519. "type": "git",
  5520. "url": "https://github.com/symfony/finder.git",
  5521. "reference": "81eefbddfde282ee33b437ba5e13d7753211ae8e"
  5522. },
  5523. "dist": {
  5524. "type": "zip",
  5525. "url": "https://api.github.com/repos/symfony/finder/zipball/81eefbddfde282ee33b437ba5e13d7753211ae8e",
  5526. "reference": "81eefbddfde282ee33b437ba5e13d7753211ae8e",
  5527. "shasum": ""
  5528. },
  5529. "require": {
  5530. "php": ">=8.1"
  5531. },
  5532. "require-dev": {
  5533. "symfony/filesystem": "^6.0"
  5534. },
  5535. "type": "library",
  5536. "autoload": {
  5537. "psr-4": {
  5538. "Symfony\\Component\\Finder\\": ""
  5539. },
  5540. "exclude-from-classmap": [
  5541. "/Tests/"
  5542. ]
  5543. },
  5544. "notification-url": "https://packagist.org/downloads/",
  5545. "license": [
  5546. "MIT"
  5547. ],
  5548. "authors": [
  5549. {
  5550. "name": "Fabien Potencier",
  5551. "email": "fabien@symfony.com"
  5552. },
  5553. {
  5554. "name": "Symfony Community",
  5555. "homepage": "https://symfony.com/contributors"
  5556. }
  5557. ],
  5558. "description": "Finds files and directories via an intuitive fluent interface",
  5559. "homepage": "https://symfony.com",
  5560. "support": {
  5561. "source": "https://github.com/symfony/finder/tree/v6.2.3"
  5562. },
  5563. "funding": [
  5564. {
  5565. "url": "https://symfony.com/sponsor",
  5566. "type": "custom"
  5567. },
  5568. {
  5569. "url": "https://github.com/fabpot",
  5570. "type": "github"
  5571. },
  5572. {
  5573. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5574. "type": "tidelift"
  5575. }
  5576. ],
  5577. "time": "2022-12-22T17:55:15+00:00"
  5578. },
  5579. {
  5580. "name": "symfony/http-client",
  5581. "version": "v6.2.2",
  5582. "source": {
  5583. "type": "git",
  5584. "url": "https://github.com/symfony/http-client.git",
  5585. "reference": "7054ad466f836309aef511789b9c697bc986d8ce"
  5586. },
  5587. "dist": {
  5588. "type": "zip",
  5589. "url": "https://api.github.com/repos/symfony/http-client/zipball/7054ad466f836309aef511789b9c697bc986d8ce",
  5590. "reference": "7054ad466f836309aef511789b9c697bc986d8ce",
  5591. "shasum": ""
  5592. },
  5593. "require": {
  5594. "php": ">=8.1",
  5595. "psr/log": "^1|^2|^3",
  5596. "symfony/deprecation-contracts": "^2.1|^3",
  5597. "symfony/http-client-contracts": "^3",
  5598. "symfony/service-contracts": "^1.0|^2|^3"
  5599. },
  5600. "provide": {
  5601. "php-http/async-client-implementation": "*",
  5602. "php-http/client-implementation": "*",
  5603. "psr/http-client-implementation": "1.0",
  5604. "symfony/http-client-implementation": "3.0"
  5605. },
  5606. "require-dev": {
  5607. "amphp/amp": "^2.5",
  5608. "amphp/http-client": "^4.2.1",
  5609. "amphp/http-tunnel": "^1.0",
  5610. "amphp/socket": "^1.1",
  5611. "guzzlehttp/promises": "^1.4",
  5612. "nyholm/psr7": "^1.0",
  5613. "php-http/httplug": "^1.0|^2.0",
  5614. "psr/http-client": "^1.0",
  5615. "symfony/dependency-injection": "^5.4|^6.0",
  5616. "symfony/http-kernel": "^5.4|^6.0",
  5617. "symfony/process": "^5.4|^6.0",
  5618. "symfony/stopwatch": "^5.4|^6.0"
  5619. },
  5620. "type": "library",
  5621. "autoload": {
  5622. "psr-4": {
  5623. "Symfony\\Component\\HttpClient\\": ""
  5624. },
  5625. "exclude-from-classmap": [
  5626. "/Tests/"
  5627. ]
  5628. },
  5629. "notification-url": "https://packagist.org/downloads/",
  5630. "license": [
  5631. "MIT"
  5632. ],
  5633. "authors": [
  5634. {
  5635. "name": "Nicolas Grekas",
  5636. "email": "p@tchwork.com"
  5637. },
  5638. {
  5639. "name": "Symfony Community",
  5640. "homepage": "https://symfony.com/contributors"
  5641. }
  5642. ],
  5643. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  5644. "homepage": "https://symfony.com",
  5645. "support": {
  5646. "source": "https://github.com/symfony/http-client/tree/v6.2.2"
  5647. },
  5648. "funding": [
  5649. {
  5650. "url": "https://symfony.com/sponsor",
  5651. "type": "custom"
  5652. },
  5653. {
  5654. "url": "https://github.com/fabpot",
  5655. "type": "github"
  5656. },
  5657. {
  5658. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5659. "type": "tidelift"
  5660. }
  5661. ],
  5662. "time": "2022-12-14T16:11:27+00:00"
  5663. },
  5664. {
  5665. "name": "symfony/http-client-contracts",
  5666. "version": "v3.1.1",
  5667. "source": {
  5668. "type": "git",
  5669. "url": "https://github.com/symfony/http-client-contracts.git",
  5670. "reference": "fd038f08c623ab5d22b26e9ba35afe8c79071800"
  5671. },
  5672. "dist": {
  5673. "type": "zip",
  5674. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/fd038f08c623ab5d22b26e9ba35afe8c79071800",
  5675. "reference": "fd038f08c623ab5d22b26e9ba35afe8c79071800",
  5676. "shasum": ""
  5677. },
  5678. "require": {
  5679. "php": ">=8.1"
  5680. },
  5681. "suggest": {
  5682. "symfony/http-client-implementation": ""
  5683. },
  5684. "type": "library",
  5685. "extra": {
  5686. "branch-alias": {
  5687. "dev-main": "3.1-dev"
  5688. },
  5689. "thanks": {
  5690. "name": "symfony/contracts",
  5691. "url": "https://github.com/symfony/contracts"
  5692. }
  5693. },
  5694. "autoload": {
  5695. "psr-4": {
  5696. "Symfony\\Contracts\\HttpClient\\": ""
  5697. },
  5698. "exclude-from-classmap": [
  5699. "/Test/"
  5700. ]
  5701. },
  5702. "notification-url": "https://packagist.org/downloads/",
  5703. "license": [
  5704. "MIT"
  5705. ],
  5706. "authors": [
  5707. {
  5708. "name": "Nicolas Grekas",
  5709. "email": "p@tchwork.com"
  5710. },
  5711. {
  5712. "name": "Symfony Community",
  5713. "homepage": "https://symfony.com/contributors"
  5714. }
  5715. ],
  5716. "description": "Generic abstractions related to HTTP clients",
  5717. "homepage": "https://symfony.com",
  5718. "keywords": [
  5719. "abstractions",
  5720. "contracts",
  5721. "decoupling",
  5722. "interfaces",
  5723. "interoperability",
  5724. "standards"
  5725. ],
  5726. "support": {
  5727. "source": "https://github.com/symfony/http-client-contracts/tree/v3.1.1"
  5728. },
  5729. "funding": [
  5730. {
  5731. "url": "https://symfony.com/sponsor",
  5732. "type": "custom"
  5733. },
  5734. {
  5735. "url": "https://github.com/fabpot",
  5736. "type": "github"
  5737. },
  5738. {
  5739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5740. "type": "tidelift"
  5741. }
  5742. ],
  5743. "time": "2022-04-22T07:30:54+00:00"
  5744. },
  5745. {
  5746. "name": "symfony/http-foundation",
  5747. "version": "v6.2.2",
  5748. "source": {
  5749. "type": "git",
  5750. "url": "https://github.com/symfony/http-foundation.git",
  5751. "reference": "ddf4dd35de1623e7c02013523e6c2137b67b636f"
  5752. },
  5753. "dist": {
  5754. "type": "zip",
  5755. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ddf4dd35de1623e7c02013523e6c2137b67b636f",
  5756. "reference": "ddf4dd35de1623e7c02013523e6c2137b67b636f",
  5757. "shasum": ""
  5758. },
  5759. "require": {
  5760. "php": ">=8.1",
  5761. "symfony/deprecation-contracts": "^2.1|^3",
  5762. "symfony/polyfill-mbstring": "~1.1"
  5763. },
  5764. "conflict": {
  5765. "symfony/cache": "<6.2"
  5766. },
  5767. "require-dev": {
  5768. "predis/predis": "~1.0",
  5769. "symfony/cache": "^5.4|^6.0",
  5770. "symfony/dependency-injection": "^5.4|^6.0",
  5771. "symfony/expression-language": "^5.4|^6.0",
  5772. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5773. "symfony/mime": "^5.4|^6.0",
  5774. "symfony/rate-limiter": "^5.2|^6.0"
  5775. },
  5776. "suggest": {
  5777. "symfony/mime": "To use the file extension guesser"
  5778. },
  5779. "type": "library",
  5780. "autoload": {
  5781. "psr-4": {
  5782. "Symfony\\Component\\HttpFoundation\\": ""
  5783. },
  5784. "exclude-from-classmap": [
  5785. "/Tests/"
  5786. ]
  5787. },
  5788. "notification-url": "https://packagist.org/downloads/",
  5789. "license": [
  5790. "MIT"
  5791. ],
  5792. "authors": [
  5793. {
  5794. "name": "Fabien Potencier",
  5795. "email": "fabien@symfony.com"
  5796. },
  5797. {
  5798. "name": "Symfony Community",
  5799. "homepage": "https://symfony.com/contributors"
  5800. }
  5801. ],
  5802. "description": "Defines an object-oriented layer for the HTTP specification",
  5803. "homepage": "https://symfony.com",
  5804. "support": {
  5805. "source": "https://github.com/symfony/http-foundation/tree/v6.2.2"
  5806. },
  5807. "funding": [
  5808. {
  5809. "url": "https://symfony.com/sponsor",
  5810. "type": "custom"
  5811. },
  5812. {
  5813. "url": "https://github.com/fabpot",
  5814. "type": "github"
  5815. },
  5816. {
  5817. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5818. "type": "tidelift"
  5819. }
  5820. ],
  5821. "time": "2022-12-14T16:11:27+00:00"
  5822. },
  5823. {
  5824. "name": "symfony/http-kernel",
  5825. "version": "v6.2.4",
  5826. "source": {
  5827. "type": "git",
  5828. "url": "https://github.com/symfony/http-kernel.git",
  5829. "reference": "74f2e638ec3fa0315443bd85fab7fc8066b77f83"
  5830. },
  5831. "dist": {
  5832. "type": "zip",
  5833. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/74f2e638ec3fa0315443bd85fab7fc8066b77f83",
  5834. "reference": "74f2e638ec3fa0315443bd85fab7fc8066b77f83",
  5835. "shasum": ""
  5836. },
  5837. "require": {
  5838. "php": ">=8.1",
  5839. "psr/log": "^1|^2|^3",
  5840. "symfony/deprecation-contracts": "^2.1|^3",
  5841. "symfony/error-handler": "^6.1",
  5842. "symfony/event-dispatcher": "^5.4|^6.0",
  5843. "symfony/http-foundation": "^5.4|^6.0",
  5844. "symfony/polyfill-ctype": "^1.8"
  5845. },
  5846. "conflict": {
  5847. "symfony/browser-kit": "<5.4",
  5848. "symfony/cache": "<5.4",
  5849. "symfony/config": "<6.1",
  5850. "symfony/console": "<5.4",
  5851. "symfony/dependency-injection": "<6.2",
  5852. "symfony/doctrine-bridge": "<5.4",
  5853. "symfony/form": "<5.4",
  5854. "symfony/http-client": "<5.4",
  5855. "symfony/mailer": "<5.4",
  5856. "symfony/messenger": "<5.4",
  5857. "symfony/translation": "<5.4",
  5858. "symfony/twig-bridge": "<5.4",
  5859. "symfony/validator": "<5.4",
  5860. "twig/twig": "<2.13"
  5861. },
  5862. "provide": {
  5863. "psr/log-implementation": "1.0|2.0|3.0"
  5864. },
  5865. "require-dev": {
  5866. "psr/cache": "^1.0|^2.0|^3.0",
  5867. "symfony/browser-kit": "^5.4|^6.0",
  5868. "symfony/config": "^6.1",
  5869. "symfony/console": "^5.4|^6.0",
  5870. "symfony/css-selector": "^5.4|^6.0",
  5871. "symfony/dependency-injection": "^6.2",
  5872. "symfony/dom-crawler": "^5.4|^6.0",
  5873. "symfony/expression-language": "^5.4|^6.0",
  5874. "symfony/finder": "^5.4|^6.0",
  5875. "symfony/http-client-contracts": "^1.1|^2|^3",
  5876. "symfony/process": "^5.4|^6.0",
  5877. "symfony/routing": "^5.4|^6.0",
  5878. "symfony/stopwatch": "^5.4|^6.0",
  5879. "symfony/translation": "^5.4|^6.0",
  5880. "symfony/translation-contracts": "^1.1|^2|^3",
  5881. "symfony/uid": "^5.4|^6.0",
  5882. "twig/twig": "^2.13|^3.0.4"
  5883. },
  5884. "suggest": {
  5885. "symfony/browser-kit": "",
  5886. "symfony/config": "",
  5887. "symfony/console": "",
  5888. "symfony/dependency-injection": ""
  5889. },
  5890. "type": "library",
  5891. "autoload": {
  5892. "psr-4": {
  5893. "Symfony\\Component\\HttpKernel\\": ""
  5894. },
  5895. "exclude-from-classmap": [
  5896. "/Tests/"
  5897. ]
  5898. },
  5899. "notification-url": "https://packagist.org/downloads/",
  5900. "license": [
  5901. "MIT"
  5902. ],
  5903. "authors": [
  5904. {
  5905. "name": "Fabien Potencier",
  5906. "email": "fabien@symfony.com"
  5907. },
  5908. {
  5909. "name": "Symfony Community",
  5910. "homepage": "https://symfony.com/contributors"
  5911. }
  5912. ],
  5913. "description": "Provides a structured process for converting a Request into a Response",
  5914. "homepage": "https://symfony.com",
  5915. "support": {
  5916. "source": "https://github.com/symfony/http-kernel/tree/v6.2.4"
  5917. },
  5918. "funding": [
  5919. {
  5920. "url": "https://symfony.com/sponsor",
  5921. "type": "custom"
  5922. },
  5923. {
  5924. "url": "https://github.com/fabpot",
  5925. "type": "github"
  5926. },
  5927. {
  5928. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5929. "type": "tidelift"
  5930. }
  5931. ],
  5932. "time": "2022-12-29T19:05:08+00:00"
  5933. },
  5934. {
  5935. "name": "symfony/intl",
  5936. "version": "v6.2.0",
  5937. "source": {
  5938. "type": "git",
  5939. "url": "https://github.com/symfony/intl.git",
  5940. "reference": "04726ae6cec43582f7dfbfc67a313d1ecdd81c0f"
  5941. },
  5942. "dist": {
  5943. "type": "zip",
  5944. "url": "https://api.github.com/repos/symfony/intl/zipball/04726ae6cec43582f7dfbfc67a313d1ecdd81c0f",
  5945. "reference": "04726ae6cec43582f7dfbfc67a313d1ecdd81c0f",
  5946. "shasum": ""
  5947. },
  5948. "require": {
  5949. "php": ">=8.1"
  5950. },
  5951. "require-dev": {
  5952. "symfony/filesystem": "^5.4|^6.0",
  5953. "symfony/finder": "^5.4|^6.0"
  5954. },
  5955. "type": "library",
  5956. "autoload": {
  5957. "psr-4": {
  5958. "Symfony\\Component\\Intl\\": ""
  5959. },
  5960. "exclude-from-classmap": [
  5961. "/Tests/"
  5962. ]
  5963. },
  5964. "notification-url": "https://packagist.org/downloads/",
  5965. "license": [
  5966. "MIT"
  5967. ],
  5968. "authors": [
  5969. {
  5970. "name": "Bernhard Schussek",
  5971. "email": "bschussek@gmail.com"
  5972. },
  5973. {
  5974. "name": "Eriksen Costa",
  5975. "email": "eriksen.costa@infranology.com.br"
  5976. },
  5977. {
  5978. "name": "Igor Wiedler",
  5979. "email": "igor@wiedler.ch"
  5980. },
  5981. {
  5982. "name": "Symfony Community",
  5983. "homepage": "https://symfony.com/contributors"
  5984. }
  5985. ],
  5986. "description": "Provides a PHP replacement layer for the C intl extension that includes additional data from the ICU library",
  5987. "homepage": "https://symfony.com",
  5988. "keywords": [
  5989. "i18n",
  5990. "icu",
  5991. "internationalization",
  5992. "intl",
  5993. "l10n",
  5994. "localization"
  5995. ],
  5996. "support": {
  5997. "source": "https://github.com/symfony/intl/tree/v6.2.0"
  5998. },
  5999. "funding": [
  6000. {
  6001. "url": "https://symfony.com/sponsor",
  6002. "type": "custom"
  6003. },
  6004. {
  6005. "url": "https://github.com/fabpot",
  6006. "type": "github"
  6007. },
  6008. {
  6009. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6010. "type": "tidelift"
  6011. }
  6012. ],
  6013. "time": "2022-11-02T09:08:04+00:00"
  6014. },
  6015. {
  6016. "name": "symfony/mailer",
  6017. "version": "v6.2.2",
  6018. "source": {
  6019. "type": "git",
  6020. "url": "https://github.com/symfony/mailer.git",
  6021. "reference": "b355ad81f1d2987c47dcd3b04d5dce669e1e62e6"
  6022. },
  6023. "dist": {
  6024. "type": "zip",
  6025. "url": "https://api.github.com/repos/symfony/mailer/zipball/b355ad81f1d2987c47dcd3b04d5dce669e1e62e6",
  6026. "reference": "b355ad81f1d2987c47dcd3b04d5dce669e1e62e6",
  6027. "shasum": ""
  6028. },
  6029. "require": {
  6030. "egulias/email-validator": "^2.1.10|^3",
  6031. "php": ">=8.1",
  6032. "psr/event-dispatcher": "^1",
  6033. "psr/log": "^1|^2|^3",
  6034. "symfony/event-dispatcher": "^5.4|^6.0",
  6035. "symfony/mime": "^6.2",
  6036. "symfony/service-contracts": "^1.1|^2|^3"
  6037. },
  6038. "conflict": {
  6039. "symfony/http-kernel": "<5.4",
  6040. "symfony/messenger": "<6.2",
  6041. "symfony/mime": "<6.2",
  6042. "symfony/twig-bridge": "<6.2.1"
  6043. },
  6044. "require-dev": {
  6045. "symfony/console": "^5.4|^6.0",
  6046. "symfony/http-client-contracts": "^1.1|^2|^3",
  6047. "symfony/messenger": "^6.2",
  6048. "symfony/twig-bridge": "^6.2"
  6049. },
  6050. "type": "library",
  6051. "autoload": {
  6052. "psr-4": {
  6053. "Symfony\\Component\\Mailer\\": ""
  6054. },
  6055. "exclude-from-classmap": [
  6056. "/Tests/"
  6057. ]
  6058. },
  6059. "notification-url": "https://packagist.org/downloads/",
  6060. "license": [
  6061. "MIT"
  6062. ],
  6063. "authors": [
  6064. {
  6065. "name": "Fabien Potencier",
  6066. "email": "fabien@symfony.com"
  6067. },
  6068. {
  6069. "name": "Symfony Community",
  6070. "homepage": "https://symfony.com/contributors"
  6071. }
  6072. ],
  6073. "description": "Helps sending emails",
  6074. "homepage": "https://symfony.com",
  6075. "support": {
  6076. "source": "https://github.com/symfony/mailer/tree/v6.2.2"
  6077. },
  6078. "funding": [
  6079. {
  6080. "url": "https://symfony.com/sponsor",
  6081. "type": "custom"
  6082. },
  6083. {
  6084. "url": "https://github.com/fabpot",
  6085. "type": "github"
  6086. },
  6087. {
  6088. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6089. "type": "tidelift"
  6090. }
  6091. ],
  6092. "time": "2022-12-14T16:11:27+00:00"
  6093. },
  6094. {
  6095. "name": "symfony/mailgun-mailer",
  6096. "version": "v6.2.0",
  6097. "source": {
  6098. "type": "git",
  6099. "url": "https://github.com/symfony/mailgun-mailer.git",
  6100. "reference": "c5364fbcf5581ba9eae569db12b380b9255ce238"
  6101. },
  6102. "dist": {
  6103. "type": "zip",
  6104. "url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/c5364fbcf5581ba9eae569db12b380b9255ce238",
  6105. "reference": "c5364fbcf5581ba9eae569db12b380b9255ce238",
  6106. "shasum": ""
  6107. },
  6108. "require": {
  6109. "php": ">=8.1",
  6110. "symfony/mailer": "^5.4|^6.0"
  6111. },
  6112. "require-dev": {
  6113. "symfony/http-client": "^5.4|^6.0"
  6114. },
  6115. "type": "symfony-mailer-bridge",
  6116. "autoload": {
  6117. "psr-4": {
  6118. "Symfony\\Component\\Mailer\\Bridge\\Mailgun\\": ""
  6119. },
  6120. "exclude-from-classmap": [
  6121. "/Tests/"
  6122. ]
  6123. },
  6124. "notification-url": "https://packagist.org/downloads/",
  6125. "license": [
  6126. "MIT"
  6127. ],
  6128. "authors": [
  6129. {
  6130. "name": "Fabien Potencier",
  6131. "email": "fabien@symfony.com"
  6132. },
  6133. {
  6134. "name": "Symfony Community",
  6135. "homepage": "https://symfony.com/contributors"
  6136. }
  6137. ],
  6138. "description": "Symfony Mailgun Mailer Bridge",
  6139. "homepage": "https://symfony.com",
  6140. "support": {
  6141. "source": "https://github.com/symfony/mailgun-mailer/tree/v6.2.0"
  6142. },
  6143. "funding": [
  6144. {
  6145. "url": "https://symfony.com/sponsor",
  6146. "type": "custom"
  6147. },
  6148. {
  6149. "url": "https://github.com/fabpot",
  6150. "type": "github"
  6151. },
  6152. {
  6153. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6154. "type": "tidelift"
  6155. }
  6156. ],
  6157. "time": "2022-10-09T08:55:40+00:00"
  6158. },
  6159. {
  6160. "name": "symfony/mime",
  6161. "version": "v6.2.2",
  6162. "source": {
  6163. "type": "git",
  6164. "url": "https://github.com/symfony/mime.git",
  6165. "reference": "8c98bf40406e791043890a163f6f6599b9cfa1ed"
  6166. },
  6167. "dist": {
  6168. "type": "zip",
  6169. "url": "https://api.github.com/repos/symfony/mime/zipball/8c98bf40406e791043890a163f6f6599b9cfa1ed",
  6170. "reference": "8c98bf40406e791043890a163f6f6599b9cfa1ed",
  6171. "shasum": ""
  6172. },
  6173. "require": {
  6174. "php": ">=8.1",
  6175. "symfony/polyfill-intl-idn": "^1.10",
  6176. "symfony/polyfill-mbstring": "^1.0"
  6177. },
  6178. "conflict": {
  6179. "egulias/email-validator": "~3.0.0",
  6180. "phpdocumentor/reflection-docblock": "<3.2.2",
  6181. "phpdocumentor/type-resolver": "<1.4.0",
  6182. "symfony/mailer": "<5.4",
  6183. "symfony/serializer": "<6.2"
  6184. },
  6185. "require-dev": {
  6186. "egulias/email-validator": "^2.1.10|^3.1",
  6187. "league/html-to-markdown": "^5.0",
  6188. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6189. "symfony/dependency-injection": "^5.4|^6.0",
  6190. "symfony/property-access": "^5.4|^6.0",
  6191. "symfony/property-info": "^5.4|^6.0",
  6192. "symfony/serializer": "^6.2"
  6193. },
  6194. "type": "library",
  6195. "autoload": {
  6196. "psr-4": {
  6197. "Symfony\\Component\\Mime\\": ""
  6198. },
  6199. "exclude-from-classmap": [
  6200. "/Tests/"
  6201. ]
  6202. },
  6203. "notification-url": "https://packagist.org/downloads/",
  6204. "license": [
  6205. "MIT"
  6206. ],
  6207. "authors": [
  6208. {
  6209. "name": "Fabien Potencier",
  6210. "email": "fabien@symfony.com"
  6211. },
  6212. {
  6213. "name": "Symfony Community",
  6214. "homepage": "https://symfony.com/contributors"
  6215. }
  6216. ],
  6217. "description": "Allows manipulating MIME messages",
  6218. "homepage": "https://symfony.com",
  6219. "keywords": [
  6220. "mime",
  6221. "mime-type"
  6222. ],
  6223. "support": {
  6224. "source": "https://github.com/symfony/mime/tree/v6.2.2"
  6225. },
  6226. "funding": [
  6227. {
  6228. "url": "https://symfony.com/sponsor",
  6229. "type": "custom"
  6230. },
  6231. {
  6232. "url": "https://github.com/fabpot",
  6233. "type": "github"
  6234. },
  6235. {
  6236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6237. "type": "tidelift"
  6238. }
  6239. ],
  6240. "time": "2022-12-14T16:38:10+00:00"
  6241. },
  6242. {
  6243. "name": "symfony/polyfill-ctype",
  6244. "version": "v1.27.0",
  6245. "source": {
  6246. "type": "git",
  6247. "url": "https://github.com/symfony/polyfill-ctype.git",
  6248. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  6249. },
  6250. "dist": {
  6251. "type": "zip",
  6252. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  6253. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  6254. "shasum": ""
  6255. },
  6256. "require": {
  6257. "php": ">=7.1"
  6258. },
  6259. "provide": {
  6260. "ext-ctype": "*"
  6261. },
  6262. "suggest": {
  6263. "ext-ctype": "For best performance"
  6264. },
  6265. "type": "library",
  6266. "extra": {
  6267. "branch-alias": {
  6268. "dev-main": "1.27-dev"
  6269. },
  6270. "thanks": {
  6271. "name": "symfony/polyfill",
  6272. "url": "https://github.com/symfony/polyfill"
  6273. }
  6274. },
  6275. "autoload": {
  6276. "files": [
  6277. "bootstrap.php"
  6278. ],
  6279. "psr-4": {
  6280. "Symfony\\Polyfill\\Ctype\\": ""
  6281. }
  6282. },
  6283. "notification-url": "https://packagist.org/downloads/",
  6284. "license": [
  6285. "MIT"
  6286. ],
  6287. "authors": [
  6288. {
  6289. "name": "Gert de Pagter",
  6290. "email": "BackEndTea@gmail.com"
  6291. },
  6292. {
  6293. "name": "Symfony Community",
  6294. "homepage": "https://symfony.com/contributors"
  6295. }
  6296. ],
  6297. "description": "Symfony polyfill for ctype functions",
  6298. "homepage": "https://symfony.com",
  6299. "keywords": [
  6300. "compatibility",
  6301. "ctype",
  6302. "polyfill",
  6303. "portable"
  6304. ],
  6305. "support": {
  6306. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  6307. },
  6308. "funding": [
  6309. {
  6310. "url": "https://symfony.com/sponsor",
  6311. "type": "custom"
  6312. },
  6313. {
  6314. "url": "https://github.com/fabpot",
  6315. "type": "github"
  6316. },
  6317. {
  6318. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6319. "type": "tidelift"
  6320. }
  6321. ],
  6322. "time": "2022-11-03T14:55:06+00:00"
  6323. },
  6324. {
  6325. "name": "symfony/polyfill-intl-grapheme",
  6326. "version": "v1.27.0",
  6327. "source": {
  6328. "type": "git",
  6329. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6330. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  6331. },
  6332. "dist": {
  6333. "type": "zip",
  6334. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  6335. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  6336. "shasum": ""
  6337. },
  6338. "require": {
  6339. "php": ">=7.1"
  6340. },
  6341. "suggest": {
  6342. "ext-intl": "For best performance"
  6343. },
  6344. "type": "library",
  6345. "extra": {
  6346. "branch-alias": {
  6347. "dev-main": "1.27-dev"
  6348. },
  6349. "thanks": {
  6350. "name": "symfony/polyfill",
  6351. "url": "https://github.com/symfony/polyfill"
  6352. }
  6353. },
  6354. "autoload": {
  6355. "files": [
  6356. "bootstrap.php"
  6357. ],
  6358. "psr-4": {
  6359. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6360. }
  6361. },
  6362. "notification-url": "https://packagist.org/downloads/",
  6363. "license": [
  6364. "MIT"
  6365. ],
  6366. "authors": [
  6367. {
  6368. "name": "Nicolas Grekas",
  6369. "email": "p@tchwork.com"
  6370. },
  6371. {
  6372. "name": "Symfony Community",
  6373. "homepage": "https://symfony.com/contributors"
  6374. }
  6375. ],
  6376. "description": "Symfony polyfill for intl's grapheme_* functions",
  6377. "homepage": "https://symfony.com",
  6378. "keywords": [
  6379. "compatibility",
  6380. "grapheme",
  6381. "intl",
  6382. "polyfill",
  6383. "portable",
  6384. "shim"
  6385. ],
  6386. "support": {
  6387. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  6388. },
  6389. "funding": [
  6390. {
  6391. "url": "https://symfony.com/sponsor",
  6392. "type": "custom"
  6393. },
  6394. {
  6395. "url": "https://github.com/fabpot",
  6396. "type": "github"
  6397. },
  6398. {
  6399. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6400. "type": "tidelift"
  6401. }
  6402. ],
  6403. "time": "2022-11-03T14:55:06+00:00"
  6404. },
  6405. {
  6406. "name": "symfony/polyfill-intl-idn",
  6407. "version": "v1.27.0",
  6408. "source": {
  6409. "type": "git",
  6410. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6411. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  6412. },
  6413. "dist": {
  6414. "type": "zip",
  6415. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  6416. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  6417. "shasum": ""
  6418. },
  6419. "require": {
  6420. "php": ">=7.1",
  6421. "symfony/polyfill-intl-normalizer": "^1.10",
  6422. "symfony/polyfill-php72": "^1.10"
  6423. },
  6424. "suggest": {
  6425. "ext-intl": "For best performance"
  6426. },
  6427. "type": "library",
  6428. "extra": {
  6429. "branch-alias": {
  6430. "dev-main": "1.27-dev"
  6431. },
  6432. "thanks": {
  6433. "name": "symfony/polyfill",
  6434. "url": "https://github.com/symfony/polyfill"
  6435. }
  6436. },
  6437. "autoload": {
  6438. "files": [
  6439. "bootstrap.php"
  6440. ],
  6441. "psr-4": {
  6442. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6443. }
  6444. },
  6445. "notification-url": "https://packagist.org/downloads/",
  6446. "license": [
  6447. "MIT"
  6448. ],
  6449. "authors": [
  6450. {
  6451. "name": "Laurent Bassin",
  6452. "email": "laurent@bassin.info"
  6453. },
  6454. {
  6455. "name": "Trevor Rowbotham",
  6456. "email": "trevor.rowbotham@pm.me"
  6457. },
  6458. {
  6459. "name": "Symfony Community",
  6460. "homepage": "https://symfony.com/contributors"
  6461. }
  6462. ],
  6463. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6464. "homepage": "https://symfony.com",
  6465. "keywords": [
  6466. "compatibility",
  6467. "idn",
  6468. "intl",
  6469. "polyfill",
  6470. "portable",
  6471. "shim"
  6472. ],
  6473. "support": {
  6474. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  6475. },
  6476. "funding": [
  6477. {
  6478. "url": "https://symfony.com/sponsor",
  6479. "type": "custom"
  6480. },
  6481. {
  6482. "url": "https://github.com/fabpot",
  6483. "type": "github"
  6484. },
  6485. {
  6486. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6487. "type": "tidelift"
  6488. }
  6489. ],
  6490. "time": "2022-11-03T14:55:06+00:00"
  6491. },
  6492. {
  6493. "name": "symfony/polyfill-intl-normalizer",
  6494. "version": "v1.27.0",
  6495. "source": {
  6496. "type": "git",
  6497. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6498. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  6499. },
  6500. "dist": {
  6501. "type": "zip",
  6502. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  6503. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  6504. "shasum": ""
  6505. },
  6506. "require": {
  6507. "php": ">=7.1"
  6508. },
  6509. "suggest": {
  6510. "ext-intl": "For best performance"
  6511. },
  6512. "type": "library",
  6513. "extra": {
  6514. "branch-alias": {
  6515. "dev-main": "1.27-dev"
  6516. },
  6517. "thanks": {
  6518. "name": "symfony/polyfill",
  6519. "url": "https://github.com/symfony/polyfill"
  6520. }
  6521. },
  6522. "autoload": {
  6523. "files": [
  6524. "bootstrap.php"
  6525. ],
  6526. "psr-4": {
  6527. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6528. },
  6529. "classmap": [
  6530. "Resources/stubs"
  6531. ]
  6532. },
  6533. "notification-url": "https://packagist.org/downloads/",
  6534. "license": [
  6535. "MIT"
  6536. ],
  6537. "authors": [
  6538. {
  6539. "name": "Nicolas Grekas",
  6540. "email": "p@tchwork.com"
  6541. },
  6542. {
  6543. "name": "Symfony Community",
  6544. "homepage": "https://symfony.com/contributors"
  6545. }
  6546. ],
  6547. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6548. "homepage": "https://symfony.com",
  6549. "keywords": [
  6550. "compatibility",
  6551. "intl",
  6552. "normalizer",
  6553. "polyfill",
  6554. "portable",
  6555. "shim"
  6556. ],
  6557. "support": {
  6558. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  6559. },
  6560. "funding": [
  6561. {
  6562. "url": "https://symfony.com/sponsor",
  6563. "type": "custom"
  6564. },
  6565. {
  6566. "url": "https://github.com/fabpot",
  6567. "type": "github"
  6568. },
  6569. {
  6570. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6571. "type": "tidelift"
  6572. }
  6573. ],
  6574. "time": "2022-11-03T14:55:06+00:00"
  6575. },
  6576. {
  6577. "name": "symfony/polyfill-mbstring",
  6578. "version": "v1.27.0",
  6579. "source": {
  6580. "type": "git",
  6581. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6582. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  6583. },
  6584. "dist": {
  6585. "type": "zip",
  6586. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  6587. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  6588. "shasum": ""
  6589. },
  6590. "require": {
  6591. "php": ">=7.1"
  6592. },
  6593. "provide": {
  6594. "ext-mbstring": "*"
  6595. },
  6596. "suggest": {
  6597. "ext-mbstring": "For best performance"
  6598. },
  6599. "type": "library",
  6600. "extra": {
  6601. "branch-alias": {
  6602. "dev-main": "1.27-dev"
  6603. },
  6604. "thanks": {
  6605. "name": "symfony/polyfill",
  6606. "url": "https://github.com/symfony/polyfill"
  6607. }
  6608. },
  6609. "autoload": {
  6610. "files": [
  6611. "bootstrap.php"
  6612. ],
  6613. "psr-4": {
  6614. "Symfony\\Polyfill\\Mbstring\\": ""
  6615. }
  6616. },
  6617. "notification-url": "https://packagist.org/downloads/",
  6618. "license": [
  6619. "MIT"
  6620. ],
  6621. "authors": [
  6622. {
  6623. "name": "Nicolas Grekas",
  6624. "email": "p@tchwork.com"
  6625. },
  6626. {
  6627. "name": "Symfony Community",
  6628. "homepage": "https://symfony.com/contributors"
  6629. }
  6630. ],
  6631. "description": "Symfony polyfill for the Mbstring extension",
  6632. "homepage": "https://symfony.com",
  6633. "keywords": [
  6634. "compatibility",
  6635. "mbstring",
  6636. "polyfill",
  6637. "portable",
  6638. "shim"
  6639. ],
  6640. "support": {
  6641. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  6642. },
  6643. "funding": [
  6644. {
  6645. "url": "https://symfony.com/sponsor",
  6646. "type": "custom"
  6647. },
  6648. {
  6649. "url": "https://github.com/fabpot",
  6650. "type": "github"
  6651. },
  6652. {
  6653. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6654. "type": "tidelift"
  6655. }
  6656. ],
  6657. "time": "2022-11-03T14:55:06+00:00"
  6658. },
  6659. {
  6660. "name": "symfony/polyfill-php72",
  6661. "version": "v1.27.0",
  6662. "source": {
  6663. "type": "git",
  6664. "url": "https://github.com/symfony/polyfill-php72.git",
  6665. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  6666. },
  6667. "dist": {
  6668. "type": "zip",
  6669. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  6670. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  6671. "shasum": ""
  6672. },
  6673. "require": {
  6674. "php": ">=7.1"
  6675. },
  6676. "type": "library",
  6677. "extra": {
  6678. "branch-alias": {
  6679. "dev-main": "1.27-dev"
  6680. },
  6681. "thanks": {
  6682. "name": "symfony/polyfill",
  6683. "url": "https://github.com/symfony/polyfill"
  6684. }
  6685. },
  6686. "autoload": {
  6687. "files": [
  6688. "bootstrap.php"
  6689. ],
  6690. "psr-4": {
  6691. "Symfony\\Polyfill\\Php72\\": ""
  6692. }
  6693. },
  6694. "notification-url": "https://packagist.org/downloads/",
  6695. "license": [
  6696. "MIT"
  6697. ],
  6698. "authors": [
  6699. {
  6700. "name": "Nicolas Grekas",
  6701. "email": "p@tchwork.com"
  6702. },
  6703. {
  6704. "name": "Symfony Community",
  6705. "homepage": "https://symfony.com/contributors"
  6706. }
  6707. ],
  6708. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6709. "homepage": "https://symfony.com",
  6710. "keywords": [
  6711. "compatibility",
  6712. "polyfill",
  6713. "portable",
  6714. "shim"
  6715. ],
  6716. "support": {
  6717. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  6718. },
  6719. "funding": [
  6720. {
  6721. "url": "https://symfony.com/sponsor",
  6722. "type": "custom"
  6723. },
  6724. {
  6725. "url": "https://github.com/fabpot",
  6726. "type": "github"
  6727. },
  6728. {
  6729. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6730. "type": "tidelift"
  6731. }
  6732. ],
  6733. "time": "2022-11-03T14:55:06+00:00"
  6734. },
  6735. {
  6736. "name": "symfony/polyfill-php80",
  6737. "version": "v1.27.0",
  6738. "source": {
  6739. "type": "git",
  6740. "url": "https://github.com/symfony/polyfill-php80.git",
  6741. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  6742. },
  6743. "dist": {
  6744. "type": "zip",
  6745. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  6746. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  6747. "shasum": ""
  6748. },
  6749. "require": {
  6750. "php": ">=7.1"
  6751. },
  6752. "type": "library",
  6753. "extra": {
  6754. "branch-alias": {
  6755. "dev-main": "1.27-dev"
  6756. },
  6757. "thanks": {
  6758. "name": "symfony/polyfill",
  6759. "url": "https://github.com/symfony/polyfill"
  6760. }
  6761. },
  6762. "autoload": {
  6763. "files": [
  6764. "bootstrap.php"
  6765. ],
  6766. "psr-4": {
  6767. "Symfony\\Polyfill\\Php80\\": ""
  6768. },
  6769. "classmap": [
  6770. "Resources/stubs"
  6771. ]
  6772. },
  6773. "notification-url": "https://packagist.org/downloads/",
  6774. "license": [
  6775. "MIT"
  6776. ],
  6777. "authors": [
  6778. {
  6779. "name": "Ion Bazan",
  6780. "email": "ion.bazan@gmail.com"
  6781. },
  6782. {
  6783. "name": "Nicolas Grekas",
  6784. "email": "p@tchwork.com"
  6785. },
  6786. {
  6787. "name": "Symfony Community",
  6788. "homepage": "https://symfony.com/contributors"
  6789. }
  6790. ],
  6791. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6792. "homepage": "https://symfony.com",
  6793. "keywords": [
  6794. "compatibility",
  6795. "polyfill",
  6796. "portable",
  6797. "shim"
  6798. ],
  6799. "support": {
  6800. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  6801. },
  6802. "funding": [
  6803. {
  6804. "url": "https://symfony.com/sponsor",
  6805. "type": "custom"
  6806. },
  6807. {
  6808. "url": "https://github.com/fabpot",
  6809. "type": "github"
  6810. },
  6811. {
  6812. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6813. "type": "tidelift"
  6814. }
  6815. ],
  6816. "time": "2022-11-03T14:55:06+00:00"
  6817. },
  6818. {
  6819. "name": "symfony/polyfill-uuid",
  6820. "version": "v1.27.0",
  6821. "source": {
  6822. "type": "git",
  6823. "url": "https://github.com/symfony/polyfill-uuid.git",
  6824. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166"
  6825. },
  6826. "dist": {
  6827. "type": "zip",
  6828. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166",
  6829. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166",
  6830. "shasum": ""
  6831. },
  6832. "require": {
  6833. "php": ">=7.1"
  6834. },
  6835. "provide": {
  6836. "ext-uuid": "*"
  6837. },
  6838. "suggest": {
  6839. "ext-uuid": "For best performance"
  6840. },
  6841. "type": "library",
  6842. "extra": {
  6843. "branch-alias": {
  6844. "dev-main": "1.27-dev"
  6845. },
  6846. "thanks": {
  6847. "name": "symfony/polyfill",
  6848. "url": "https://github.com/symfony/polyfill"
  6849. }
  6850. },
  6851. "autoload": {
  6852. "files": [
  6853. "bootstrap.php"
  6854. ],
  6855. "psr-4": {
  6856. "Symfony\\Polyfill\\Uuid\\": ""
  6857. }
  6858. },
  6859. "notification-url": "https://packagist.org/downloads/",
  6860. "license": [
  6861. "MIT"
  6862. ],
  6863. "authors": [
  6864. {
  6865. "name": "Grégoire Pineau",
  6866. "email": "lyrixx@lyrixx.info"
  6867. },
  6868. {
  6869. "name": "Symfony Community",
  6870. "homepage": "https://symfony.com/contributors"
  6871. }
  6872. ],
  6873. "description": "Symfony polyfill for uuid functions",
  6874. "homepage": "https://symfony.com",
  6875. "keywords": [
  6876. "compatibility",
  6877. "polyfill",
  6878. "portable",
  6879. "uuid"
  6880. ],
  6881. "support": {
  6882. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0"
  6883. },
  6884. "funding": [
  6885. {
  6886. "url": "https://symfony.com/sponsor",
  6887. "type": "custom"
  6888. },
  6889. {
  6890. "url": "https://github.com/fabpot",
  6891. "type": "github"
  6892. },
  6893. {
  6894. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6895. "type": "tidelift"
  6896. }
  6897. ],
  6898. "time": "2022-11-03T14:55:06+00:00"
  6899. },
  6900. {
  6901. "name": "symfony/process",
  6902. "version": "v6.2.0",
  6903. "source": {
  6904. "type": "git",
  6905. "url": "https://github.com/symfony/process.git",
  6906. "reference": "ba6e55359f8f755fe996c58a81e00eaa67a35877"
  6907. },
  6908. "dist": {
  6909. "type": "zip",
  6910. "url": "https://api.github.com/repos/symfony/process/zipball/ba6e55359f8f755fe996c58a81e00eaa67a35877",
  6911. "reference": "ba6e55359f8f755fe996c58a81e00eaa67a35877",
  6912. "shasum": ""
  6913. },
  6914. "require": {
  6915. "php": ">=8.1"
  6916. },
  6917. "type": "library",
  6918. "autoload": {
  6919. "psr-4": {
  6920. "Symfony\\Component\\Process\\": ""
  6921. },
  6922. "exclude-from-classmap": [
  6923. "/Tests/"
  6924. ]
  6925. },
  6926. "notification-url": "https://packagist.org/downloads/",
  6927. "license": [
  6928. "MIT"
  6929. ],
  6930. "authors": [
  6931. {
  6932. "name": "Fabien Potencier",
  6933. "email": "fabien@symfony.com"
  6934. },
  6935. {
  6936. "name": "Symfony Community",
  6937. "homepage": "https://symfony.com/contributors"
  6938. }
  6939. ],
  6940. "description": "Executes commands in sub-processes",
  6941. "homepage": "https://symfony.com",
  6942. "support": {
  6943. "source": "https://github.com/symfony/process/tree/v6.2.0"
  6944. },
  6945. "funding": [
  6946. {
  6947. "url": "https://symfony.com/sponsor",
  6948. "type": "custom"
  6949. },
  6950. {
  6951. "url": "https://github.com/fabpot",
  6952. "type": "github"
  6953. },
  6954. {
  6955. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6956. "type": "tidelift"
  6957. }
  6958. ],
  6959. "time": "2022-11-02T09:08:04+00:00"
  6960. },
  6961. {
  6962. "name": "symfony/routing",
  6963. "version": "v6.2.3",
  6964. "source": {
  6965. "type": "git",
  6966. "url": "https://github.com/symfony/routing.git",
  6967. "reference": "35fec764f3e2c8c08fb340d275c84bc78ca7e0c9"
  6968. },
  6969. "dist": {
  6970. "type": "zip",
  6971. "url": "https://api.github.com/repos/symfony/routing/zipball/35fec764f3e2c8c08fb340d275c84bc78ca7e0c9",
  6972. "reference": "35fec764f3e2c8c08fb340d275c84bc78ca7e0c9",
  6973. "shasum": ""
  6974. },
  6975. "require": {
  6976. "php": ">=8.1"
  6977. },
  6978. "conflict": {
  6979. "doctrine/annotations": "<1.12",
  6980. "symfony/config": "<6.2",
  6981. "symfony/dependency-injection": "<5.4",
  6982. "symfony/yaml": "<5.4"
  6983. },
  6984. "require-dev": {
  6985. "doctrine/annotations": "^1.12|^2",
  6986. "psr/log": "^1|^2|^3",
  6987. "symfony/config": "^6.2",
  6988. "symfony/dependency-injection": "^5.4|^6.0",
  6989. "symfony/expression-language": "^5.4|^6.0",
  6990. "symfony/http-foundation": "^5.4|^6.0",
  6991. "symfony/yaml": "^5.4|^6.0"
  6992. },
  6993. "suggest": {
  6994. "symfony/config": "For using the all-in-one router or any loader",
  6995. "symfony/expression-language": "For using expression matching",
  6996. "symfony/http-foundation": "For using a Symfony Request object",
  6997. "symfony/yaml": "For using the YAML loader"
  6998. },
  6999. "type": "library",
  7000. "autoload": {
  7001. "psr-4": {
  7002. "Symfony\\Component\\Routing\\": ""
  7003. },
  7004. "exclude-from-classmap": [
  7005. "/Tests/"
  7006. ]
  7007. },
  7008. "notification-url": "https://packagist.org/downloads/",
  7009. "license": [
  7010. "MIT"
  7011. ],
  7012. "authors": [
  7013. {
  7014. "name": "Fabien Potencier",
  7015. "email": "fabien@symfony.com"
  7016. },
  7017. {
  7018. "name": "Symfony Community",
  7019. "homepage": "https://symfony.com/contributors"
  7020. }
  7021. ],
  7022. "description": "Maps an HTTP request to a set of configuration variables",
  7023. "homepage": "https://symfony.com",
  7024. "keywords": [
  7025. "router",
  7026. "routing",
  7027. "uri",
  7028. "url"
  7029. ],
  7030. "support": {
  7031. "source": "https://github.com/symfony/routing/tree/v6.2.3"
  7032. },
  7033. "funding": [
  7034. {
  7035. "url": "https://symfony.com/sponsor",
  7036. "type": "custom"
  7037. },
  7038. {
  7039. "url": "https://github.com/fabpot",
  7040. "type": "github"
  7041. },
  7042. {
  7043. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7044. "type": "tidelift"
  7045. }
  7046. ],
  7047. "time": "2022-12-20T16:41:15+00:00"
  7048. },
  7049. {
  7050. "name": "symfony/service-contracts",
  7051. "version": "v3.2.0",
  7052. "source": {
  7053. "type": "git",
  7054. "url": "https://github.com/symfony/service-contracts.git",
  7055. "reference": "aac98028c69df04ee77eb69b96b86ee51fbf4b75"
  7056. },
  7057. "dist": {
  7058. "type": "zip",
  7059. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/aac98028c69df04ee77eb69b96b86ee51fbf4b75",
  7060. "reference": "aac98028c69df04ee77eb69b96b86ee51fbf4b75",
  7061. "shasum": ""
  7062. },
  7063. "require": {
  7064. "php": ">=8.1",
  7065. "psr/container": "^2.0"
  7066. },
  7067. "conflict": {
  7068. "ext-psr": "<1.1|>=2"
  7069. },
  7070. "suggest": {
  7071. "symfony/service-implementation": ""
  7072. },
  7073. "type": "library",
  7074. "extra": {
  7075. "branch-alias": {
  7076. "dev-main": "3.3-dev"
  7077. },
  7078. "thanks": {
  7079. "name": "symfony/contracts",
  7080. "url": "https://github.com/symfony/contracts"
  7081. }
  7082. },
  7083. "autoload": {
  7084. "psr-4": {
  7085. "Symfony\\Contracts\\Service\\": ""
  7086. },
  7087. "exclude-from-classmap": [
  7088. "/Test/"
  7089. ]
  7090. },
  7091. "notification-url": "https://packagist.org/downloads/",
  7092. "license": [
  7093. "MIT"
  7094. ],
  7095. "authors": [
  7096. {
  7097. "name": "Nicolas Grekas",
  7098. "email": "p@tchwork.com"
  7099. },
  7100. {
  7101. "name": "Symfony Community",
  7102. "homepage": "https://symfony.com/contributors"
  7103. }
  7104. ],
  7105. "description": "Generic abstractions related to writing services",
  7106. "homepage": "https://symfony.com",
  7107. "keywords": [
  7108. "abstractions",
  7109. "contracts",
  7110. "decoupling",
  7111. "interfaces",
  7112. "interoperability",
  7113. "standards"
  7114. ],
  7115. "support": {
  7116. "source": "https://github.com/symfony/service-contracts/tree/v3.2.0"
  7117. },
  7118. "funding": [
  7119. {
  7120. "url": "https://symfony.com/sponsor",
  7121. "type": "custom"
  7122. },
  7123. {
  7124. "url": "https://github.com/fabpot",
  7125. "type": "github"
  7126. },
  7127. {
  7128. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7129. "type": "tidelift"
  7130. }
  7131. ],
  7132. "time": "2022-11-25T10:21:52+00:00"
  7133. },
  7134. {
  7135. "name": "symfony/string",
  7136. "version": "v6.2.2",
  7137. "source": {
  7138. "type": "git",
  7139. "url": "https://github.com/symfony/string.git",
  7140. "reference": "863219fd713fa41cbcd285a79723f94672faff4d"
  7141. },
  7142. "dist": {
  7143. "type": "zip",
  7144. "url": "https://api.github.com/repos/symfony/string/zipball/863219fd713fa41cbcd285a79723f94672faff4d",
  7145. "reference": "863219fd713fa41cbcd285a79723f94672faff4d",
  7146. "shasum": ""
  7147. },
  7148. "require": {
  7149. "php": ">=8.1",
  7150. "symfony/polyfill-ctype": "~1.8",
  7151. "symfony/polyfill-intl-grapheme": "~1.0",
  7152. "symfony/polyfill-intl-normalizer": "~1.0",
  7153. "symfony/polyfill-mbstring": "~1.0"
  7154. },
  7155. "conflict": {
  7156. "symfony/translation-contracts": "<2.0"
  7157. },
  7158. "require-dev": {
  7159. "symfony/error-handler": "^5.4|^6.0",
  7160. "symfony/http-client": "^5.4|^6.0",
  7161. "symfony/intl": "^6.2",
  7162. "symfony/translation-contracts": "^2.0|^3.0",
  7163. "symfony/var-exporter": "^5.4|^6.0"
  7164. },
  7165. "type": "library",
  7166. "autoload": {
  7167. "files": [
  7168. "Resources/functions.php"
  7169. ],
  7170. "psr-4": {
  7171. "Symfony\\Component\\String\\": ""
  7172. },
  7173. "exclude-from-classmap": [
  7174. "/Tests/"
  7175. ]
  7176. },
  7177. "notification-url": "https://packagist.org/downloads/",
  7178. "license": [
  7179. "MIT"
  7180. ],
  7181. "authors": [
  7182. {
  7183. "name": "Nicolas Grekas",
  7184. "email": "p@tchwork.com"
  7185. },
  7186. {
  7187. "name": "Symfony Community",
  7188. "homepage": "https://symfony.com/contributors"
  7189. }
  7190. ],
  7191. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7192. "homepage": "https://symfony.com",
  7193. "keywords": [
  7194. "grapheme",
  7195. "i18n",
  7196. "string",
  7197. "unicode",
  7198. "utf-8",
  7199. "utf8"
  7200. ],
  7201. "support": {
  7202. "source": "https://github.com/symfony/string/tree/v6.2.2"
  7203. },
  7204. "funding": [
  7205. {
  7206. "url": "https://symfony.com/sponsor",
  7207. "type": "custom"
  7208. },
  7209. {
  7210. "url": "https://github.com/fabpot",
  7211. "type": "github"
  7212. },
  7213. {
  7214. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7215. "type": "tidelift"
  7216. }
  7217. ],
  7218. "time": "2022-12-14T16:11:27+00:00"
  7219. },
  7220. {
  7221. "name": "symfony/translation",
  7222. "version": "v6.2.3",
  7223. "source": {
  7224. "type": "git",
  7225. "url": "https://github.com/symfony/translation.git",
  7226. "reference": "a2a15404ef4c15d92c205718eb828b225a144379"
  7227. },
  7228. "dist": {
  7229. "type": "zip",
  7230. "url": "https://api.github.com/repos/symfony/translation/zipball/a2a15404ef4c15d92c205718eb828b225a144379",
  7231. "reference": "a2a15404ef4c15d92c205718eb828b225a144379",
  7232. "shasum": ""
  7233. },
  7234. "require": {
  7235. "php": ">=8.1",
  7236. "symfony/polyfill-mbstring": "~1.0",
  7237. "symfony/translation-contracts": "^2.3|^3.0"
  7238. },
  7239. "conflict": {
  7240. "symfony/config": "<5.4",
  7241. "symfony/console": "<5.4",
  7242. "symfony/dependency-injection": "<5.4",
  7243. "symfony/http-kernel": "<5.4",
  7244. "symfony/twig-bundle": "<5.4",
  7245. "symfony/yaml": "<5.4"
  7246. },
  7247. "provide": {
  7248. "symfony/translation-implementation": "2.3|3.0"
  7249. },
  7250. "require-dev": {
  7251. "nikic/php-parser": "^4.13",
  7252. "psr/log": "^1|^2|^3",
  7253. "symfony/config": "^5.4|^6.0",
  7254. "symfony/console": "^5.4|^6.0",
  7255. "symfony/dependency-injection": "^5.4|^6.0",
  7256. "symfony/finder": "^5.4|^6.0",
  7257. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7258. "symfony/http-kernel": "^5.4|^6.0",
  7259. "symfony/intl": "^5.4|^6.0",
  7260. "symfony/polyfill-intl-icu": "^1.21",
  7261. "symfony/routing": "^5.4|^6.0",
  7262. "symfony/service-contracts": "^1.1.2|^2|^3",
  7263. "symfony/yaml": "^5.4|^6.0"
  7264. },
  7265. "suggest": {
  7266. "nikic/php-parser": "To use PhpAstExtractor",
  7267. "psr/log-implementation": "To use logging capability in translator",
  7268. "symfony/config": "",
  7269. "symfony/yaml": ""
  7270. },
  7271. "type": "library",
  7272. "autoload": {
  7273. "files": [
  7274. "Resources/functions.php"
  7275. ],
  7276. "psr-4": {
  7277. "Symfony\\Component\\Translation\\": ""
  7278. },
  7279. "exclude-from-classmap": [
  7280. "/Tests/"
  7281. ]
  7282. },
  7283. "notification-url": "https://packagist.org/downloads/",
  7284. "license": [
  7285. "MIT"
  7286. ],
  7287. "authors": [
  7288. {
  7289. "name": "Fabien Potencier",
  7290. "email": "fabien@symfony.com"
  7291. },
  7292. {
  7293. "name": "Symfony Community",
  7294. "homepage": "https://symfony.com/contributors"
  7295. }
  7296. ],
  7297. "description": "Provides tools to internationalize your application",
  7298. "homepage": "https://symfony.com",
  7299. "support": {
  7300. "source": "https://github.com/symfony/translation/tree/v6.2.3"
  7301. },
  7302. "funding": [
  7303. {
  7304. "url": "https://symfony.com/sponsor",
  7305. "type": "custom"
  7306. },
  7307. {
  7308. "url": "https://github.com/fabpot",
  7309. "type": "github"
  7310. },
  7311. {
  7312. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7313. "type": "tidelift"
  7314. }
  7315. ],
  7316. "time": "2022-12-23T14:11:11+00:00"
  7317. },
  7318. {
  7319. "name": "symfony/translation-contracts",
  7320. "version": "v3.2.0",
  7321. "source": {
  7322. "type": "git",
  7323. "url": "https://github.com/symfony/translation-contracts.git",
  7324. "reference": "68cce71402305a015f8c1589bfada1280dc64fe7"
  7325. },
  7326. "dist": {
  7327. "type": "zip",
  7328. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/68cce71402305a015f8c1589bfada1280dc64fe7",
  7329. "reference": "68cce71402305a015f8c1589bfada1280dc64fe7",
  7330. "shasum": ""
  7331. },
  7332. "require": {
  7333. "php": ">=8.1"
  7334. },
  7335. "suggest": {
  7336. "symfony/translation-implementation": ""
  7337. },
  7338. "type": "library",
  7339. "extra": {
  7340. "branch-alias": {
  7341. "dev-main": "3.3-dev"
  7342. },
  7343. "thanks": {
  7344. "name": "symfony/contracts",
  7345. "url": "https://github.com/symfony/contracts"
  7346. }
  7347. },
  7348. "autoload": {
  7349. "psr-4": {
  7350. "Symfony\\Contracts\\Translation\\": ""
  7351. },
  7352. "exclude-from-classmap": [
  7353. "/Test/"
  7354. ]
  7355. },
  7356. "notification-url": "https://packagist.org/downloads/",
  7357. "license": [
  7358. "MIT"
  7359. ],
  7360. "authors": [
  7361. {
  7362. "name": "Nicolas Grekas",
  7363. "email": "p@tchwork.com"
  7364. },
  7365. {
  7366. "name": "Symfony Community",
  7367. "homepage": "https://symfony.com/contributors"
  7368. }
  7369. ],
  7370. "description": "Generic abstractions related to translation",
  7371. "homepage": "https://symfony.com",
  7372. "keywords": [
  7373. "abstractions",
  7374. "contracts",
  7375. "decoupling",
  7376. "interfaces",
  7377. "interoperability",
  7378. "standards"
  7379. ],
  7380. "support": {
  7381. "source": "https://github.com/symfony/translation-contracts/tree/v3.2.0"
  7382. },
  7383. "funding": [
  7384. {
  7385. "url": "https://symfony.com/sponsor",
  7386. "type": "custom"
  7387. },
  7388. {
  7389. "url": "https://github.com/fabpot",
  7390. "type": "github"
  7391. },
  7392. {
  7393. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7394. "type": "tidelift"
  7395. }
  7396. ],
  7397. "time": "2022-11-25T10:21:52+00:00"
  7398. },
  7399. {
  7400. "name": "symfony/uid",
  7401. "version": "v6.2.0",
  7402. "source": {
  7403. "type": "git",
  7404. "url": "https://github.com/symfony/uid.git",
  7405. "reference": "4f9f537e57261519808a7ce1d941490736522bbc"
  7406. },
  7407. "dist": {
  7408. "type": "zip",
  7409. "url": "https://api.github.com/repos/symfony/uid/zipball/4f9f537e57261519808a7ce1d941490736522bbc",
  7410. "reference": "4f9f537e57261519808a7ce1d941490736522bbc",
  7411. "shasum": ""
  7412. },
  7413. "require": {
  7414. "php": ">=8.1",
  7415. "symfony/polyfill-uuid": "^1.15"
  7416. },
  7417. "require-dev": {
  7418. "symfony/console": "^5.4|^6.0"
  7419. },
  7420. "type": "library",
  7421. "autoload": {
  7422. "psr-4": {
  7423. "Symfony\\Component\\Uid\\": ""
  7424. },
  7425. "exclude-from-classmap": [
  7426. "/Tests/"
  7427. ]
  7428. },
  7429. "notification-url": "https://packagist.org/downloads/",
  7430. "license": [
  7431. "MIT"
  7432. ],
  7433. "authors": [
  7434. {
  7435. "name": "Grégoire Pineau",
  7436. "email": "lyrixx@lyrixx.info"
  7437. },
  7438. {
  7439. "name": "Nicolas Grekas",
  7440. "email": "p@tchwork.com"
  7441. },
  7442. {
  7443. "name": "Symfony Community",
  7444. "homepage": "https://symfony.com/contributors"
  7445. }
  7446. ],
  7447. "description": "Provides an object-oriented API to generate and represent UIDs",
  7448. "homepage": "https://symfony.com",
  7449. "keywords": [
  7450. "UID",
  7451. "ulid",
  7452. "uuid"
  7453. ],
  7454. "support": {
  7455. "source": "https://github.com/symfony/uid/tree/v6.2.0"
  7456. },
  7457. "funding": [
  7458. {
  7459. "url": "https://symfony.com/sponsor",
  7460. "type": "custom"
  7461. },
  7462. {
  7463. "url": "https://github.com/fabpot",
  7464. "type": "github"
  7465. },
  7466. {
  7467. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7468. "type": "tidelift"
  7469. }
  7470. ],
  7471. "time": "2022-10-09T08:55:40+00:00"
  7472. },
  7473. {
  7474. "name": "symfony/var-dumper",
  7475. "version": "v6.2.3",
  7476. "source": {
  7477. "type": "git",
  7478. "url": "https://github.com/symfony/var-dumper.git",
  7479. "reference": "fdbadd4803bc3c96ef89238c9c9e2ebe424ec2e0"
  7480. },
  7481. "dist": {
  7482. "type": "zip",
  7483. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/fdbadd4803bc3c96ef89238c9c9e2ebe424ec2e0",
  7484. "reference": "fdbadd4803bc3c96ef89238c9c9e2ebe424ec2e0",
  7485. "shasum": ""
  7486. },
  7487. "require": {
  7488. "php": ">=8.1",
  7489. "symfony/polyfill-mbstring": "~1.0"
  7490. },
  7491. "conflict": {
  7492. "phpunit/phpunit": "<5.4.3",
  7493. "symfony/console": "<5.4"
  7494. },
  7495. "require-dev": {
  7496. "ext-iconv": "*",
  7497. "symfony/console": "^5.4|^6.0",
  7498. "symfony/process": "^5.4|^6.0",
  7499. "symfony/uid": "^5.4|^6.0",
  7500. "twig/twig": "^2.13|^3.0.4"
  7501. },
  7502. "suggest": {
  7503. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7504. "ext-intl": "To show region name in time zone dump",
  7505. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7506. },
  7507. "bin": [
  7508. "Resources/bin/var-dump-server"
  7509. ],
  7510. "type": "library",
  7511. "autoload": {
  7512. "files": [
  7513. "Resources/functions/dump.php"
  7514. ],
  7515. "psr-4": {
  7516. "Symfony\\Component\\VarDumper\\": ""
  7517. },
  7518. "exclude-from-classmap": [
  7519. "/Tests/"
  7520. ]
  7521. },
  7522. "notification-url": "https://packagist.org/downloads/",
  7523. "license": [
  7524. "MIT"
  7525. ],
  7526. "authors": [
  7527. {
  7528. "name": "Nicolas Grekas",
  7529. "email": "p@tchwork.com"
  7530. },
  7531. {
  7532. "name": "Symfony Community",
  7533. "homepage": "https://symfony.com/contributors"
  7534. }
  7535. ],
  7536. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7537. "homepage": "https://symfony.com",
  7538. "keywords": [
  7539. "debug",
  7540. "dump"
  7541. ],
  7542. "support": {
  7543. "source": "https://github.com/symfony/var-dumper/tree/v6.2.3"
  7544. },
  7545. "funding": [
  7546. {
  7547. "url": "https://symfony.com/sponsor",
  7548. "type": "custom"
  7549. },
  7550. {
  7551. "url": "https://github.com/fabpot",
  7552. "type": "github"
  7553. },
  7554. {
  7555. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7556. "type": "tidelift"
  7557. }
  7558. ],
  7559. "time": "2022-12-22T17:55:15+00:00"
  7560. },
  7561. {
  7562. "name": "tijsverkoyen/css-to-inline-styles",
  7563. "version": "2.2.6",
  7564. "source": {
  7565. "type": "git",
  7566. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7567. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  7568. },
  7569. "dist": {
  7570. "type": "zip",
  7571. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7572. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7573. "shasum": ""
  7574. },
  7575. "require": {
  7576. "ext-dom": "*",
  7577. "ext-libxml": "*",
  7578. "php": "^5.5 || ^7.0 || ^8.0",
  7579. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7580. },
  7581. "require-dev": {
  7582. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7583. },
  7584. "type": "library",
  7585. "extra": {
  7586. "branch-alias": {
  7587. "dev-master": "2.2.x-dev"
  7588. }
  7589. },
  7590. "autoload": {
  7591. "psr-4": {
  7592. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7593. }
  7594. },
  7595. "notification-url": "https://packagist.org/downloads/",
  7596. "license": [
  7597. "BSD-3-Clause"
  7598. ],
  7599. "authors": [
  7600. {
  7601. "name": "Tijs Verkoyen",
  7602. "email": "css_to_inline_styles@verkoyen.eu",
  7603. "role": "Developer"
  7604. }
  7605. ],
  7606. "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.",
  7607. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7608. "support": {
  7609. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7610. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  7611. },
  7612. "time": "2023-01-03T09:29:04+00:00"
  7613. },
  7614. {
  7615. "name": "vlucas/phpdotenv",
  7616. "version": "v5.5.0",
  7617. "source": {
  7618. "type": "git",
  7619. "url": "https://github.com/vlucas/phpdotenv.git",
  7620. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  7621. },
  7622. "dist": {
  7623. "type": "zip",
  7624. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  7625. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  7626. "shasum": ""
  7627. },
  7628. "require": {
  7629. "ext-pcre": "*",
  7630. "graham-campbell/result-type": "^1.0.2",
  7631. "php": "^7.1.3 || ^8.0",
  7632. "phpoption/phpoption": "^1.8",
  7633. "symfony/polyfill-ctype": "^1.23",
  7634. "symfony/polyfill-mbstring": "^1.23.1",
  7635. "symfony/polyfill-php80": "^1.23.1"
  7636. },
  7637. "require-dev": {
  7638. "bamarni/composer-bin-plugin": "^1.4.1",
  7639. "ext-filter": "*",
  7640. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  7641. },
  7642. "suggest": {
  7643. "ext-filter": "Required to use the boolean validator."
  7644. },
  7645. "type": "library",
  7646. "extra": {
  7647. "bamarni-bin": {
  7648. "bin-links": true,
  7649. "forward-command": true
  7650. },
  7651. "branch-alias": {
  7652. "dev-master": "5.5-dev"
  7653. }
  7654. },
  7655. "autoload": {
  7656. "psr-4": {
  7657. "Dotenv\\": "src/"
  7658. }
  7659. },
  7660. "notification-url": "https://packagist.org/downloads/",
  7661. "license": [
  7662. "BSD-3-Clause"
  7663. ],
  7664. "authors": [
  7665. {
  7666. "name": "Graham Campbell",
  7667. "email": "hello@gjcampbell.co.uk",
  7668. "homepage": "https://github.com/GrahamCampbell"
  7669. },
  7670. {
  7671. "name": "Vance Lucas",
  7672. "email": "vance@vancelucas.com",
  7673. "homepage": "https://github.com/vlucas"
  7674. }
  7675. ],
  7676. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7677. "keywords": [
  7678. "dotenv",
  7679. "env",
  7680. "environment"
  7681. ],
  7682. "support": {
  7683. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7684. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  7685. },
  7686. "funding": [
  7687. {
  7688. "url": "https://github.com/GrahamCampbell",
  7689. "type": "github"
  7690. },
  7691. {
  7692. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7693. "type": "tidelift"
  7694. }
  7695. ],
  7696. "time": "2022-10-16T01:01:54+00:00"
  7697. },
  7698. {
  7699. "name": "voku/portable-ascii",
  7700. "version": "2.0.1",
  7701. "source": {
  7702. "type": "git",
  7703. "url": "https://github.com/voku/portable-ascii.git",
  7704. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  7705. },
  7706. "dist": {
  7707. "type": "zip",
  7708. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  7709. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  7710. "shasum": ""
  7711. },
  7712. "require": {
  7713. "php": ">=7.0.0"
  7714. },
  7715. "require-dev": {
  7716. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7717. },
  7718. "suggest": {
  7719. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7720. },
  7721. "type": "library",
  7722. "autoload": {
  7723. "psr-4": {
  7724. "voku\\": "src/voku/"
  7725. }
  7726. },
  7727. "notification-url": "https://packagist.org/downloads/",
  7728. "license": [
  7729. "MIT"
  7730. ],
  7731. "authors": [
  7732. {
  7733. "name": "Lars Moelleken",
  7734. "homepage": "http://www.moelleken.org/"
  7735. }
  7736. ],
  7737. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7738. "homepage": "https://github.com/voku/portable-ascii",
  7739. "keywords": [
  7740. "ascii",
  7741. "clean",
  7742. "php"
  7743. ],
  7744. "support": {
  7745. "issues": "https://github.com/voku/portable-ascii/issues",
  7746. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  7747. },
  7748. "funding": [
  7749. {
  7750. "url": "https://www.paypal.me/moelleken",
  7751. "type": "custom"
  7752. },
  7753. {
  7754. "url": "https://github.com/voku",
  7755. "type": "github"
  7756. },
  7757. {
  7758. "url": "https://opencollective.com/portable-ascii",
  7759. "type": "open_collective"
  7760. },
  7761. {
  7762. "url": "https://www.patreon.com/voku",
  7763. "type": "patreon"
  7764. },
  7765. {
  7766. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7767. "type": "tidelift"
  7768. }
  7769. ],
  7770. "time": "2022-03-08T17:03:00+00:00"
  7771. },
  7772. {
  7773. "name": "webmozart/assert",
  7774. "version": "1.11.0",
  7775. "source": {
  7776. "type": "git",
  7777. "url": "https://github.com/webmozarts/assert.git",
  7778. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7779. },
  7780. "dist": {
  7781. "type": "zip",
  7782. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7783. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7784. "shasum": ""
  7785. },
  7786. "require": {
  7787. "ext-ctype": "*",
  7788. "php": "^7.2 || ^8.0"
  7789. },
  7790. "conflict": {
  7791. "phpstan/phpstan": "<0.12.20",
  7792. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7793. },
  7794. "require-dev": {
  7795. "phpunit/phpunit": "^8.5.13"
  7796. },
  7797. "type": "library",
  7798. "extra": {
  7799. "branch-alias": {
  7800. "dev-master": "1.10-dev"
  7801. }
  7802. },
  7803. "autoload": {
  7804. "psr-4": {
  7805. "Webmozart\\Assert\\": "src/"
  7806. }
  7807. },
  7808. "notification-url": "https://packagist.org/downloads/",
  7809. "license": [
  7810. "MIT"
  7811. ],
  7812. "authors": [
  7813. {
  7814. "name": "Bernhard Schussek",
  7815. "email": "bschussek@gmail.com"
  7816. }
  7817. ],
  7818. "description": "Assertions to validate method input/output with nice error messages.",
  7819. "keywords": [
  7820. "assert",
  7821. "check",
  7822. "validate"
  7823. ],
  7824. "support": {
  7825. "issues": "https://github.com/webmozarts/assert/issues",
  7826. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7827. },
  7828. "time": "2022-06-03T18:03:27+00:00"
  7829. },
  7830. {
  7831. "name": "yajra/laravel-datatables-oracle",
  7832. "version": "v9.21.2",
  7833. "source": {
  7834. "type": "git",
  7835. "url": "https://github.com/yajra/laravel-datatables.git",
  7836. "reference": "a7fd01f06282923e9c63fa27fe6b391e21dc321a"
  7837. },
  7838. "dist": {
  7839. "type": "zip",
  7840. "url": "https://api.github.com/repos/yajra/laravel-datatables/zipball/a7fd01f06282923e9c63fa27fe6b391e21dc321a",
  7841. "reference": "a7fd01f06282923e9c63fa27fe6b391e21dc321a",
  7842. "shasum": ""
  7843. },
  7844. "require": {
  7845. "illuminate/database": "5.8.*|^6|^7|^8|^9",
  7846. "illuminate/filesystem": "5.8.*|^6|^7|^8|^9",
  7847. "illuminate/http": "5.8.*|^6|^7|^8|^9",
  7848. "illuminate/support": "5.8.*|^6|^7|^8|^9",
  7849. "illuminate/view": "5.8.*|^6|^7|^8|^9",
  7850. "php": "^7.1.3|^8"
  7851. },
  7852. "require-dev": {
  7853. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0|^7.0"
  7854. },
  7855. "suggest": {
  7856. "yajra/laravel-datatables-buttons": "Plugin for server-side exporting of dataTables.",
  7857. "yajra/laravel-datatables-editor": "Plugin to use DataTables Editor (requires a license).",
  7858. "yajra/laravel-datatables-fractal": "Plugin for server-side response using Fractal.",
  7859. "yajra/laravel-datatables-html": "Plugin for server-side HTML builder of dataTables."
  7860. },
  7861. "type": "library",
  7862. "extra": {
  7863. "branch-alias": {
  7864. "dev-master": "9.0-dev"
  7865. },
  7866. "laravel": {
  7867. "providers": [
  7868. "Yajra\\DataTables\\DataTablesServiceProvider"
  7869. ],
  7870. "aliases": {
  7871. "DataTables": "Yajra\\DataTables\\Facades\\DataTables"
  7872. }
  7873. }
  7874. },
  7875. "autoload": {
  7876. "files": [
  7877. "src/helper.php"
  7878. ],
  7879. "psr-4": {
  7880. "Yajra\\DataTables\\": "src/"
  7881. }
  7882. },
  7883. "notification-url": "https://packagist.org/downloads/",
  7884. "license": [
  7885. "MIT"
  7886. ],
  7887. "authors": [
  7888. {
  7889. "name": "Arjay Angeles",
  7890. "email": "aqangeles@gmail.com"
  7891. }
  7892. ],
  7893. "description": "jQuery DataTables API for Laravel 5|6|7|8|9",
  7894. "keywords": [
  7895. "datatables",
  7896. "jquery",
  7897. "laravel"
  7898. ],
  7899. "support": {
  7900. "issues": "https://github.com/yajra/laravel-datatables/issues",
  7901. "source": "https://github.com/yajra/laravel-datatables/tree/v9.21.2"
  7902. },
  7903. "funding": [
  7904. {
  7905. "url": "https://www.paypal.me/yajra",
  7906. "type": "custom"
  7907. },
  7908. {
  7909. "url": "https://www.patreon.com/yajra",
  7910. "type": "patreon"
  7911. }
  7912. ],
  7913. "time": "2022-07-12T04:48:03+00:00"
  7914. }
  7915. ],
  7916. "packages-dev": [
  7917. {
  7918. "name": "barryvdh/laravel-debugbar",
  7919. "version": "v3.7.0",
  7920. "source": {
  7921. "type": "git",
  7922. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7923. "reference": "3372ed65e6d2039d663ed19aa699956f9d346271"
  7924. },
  7925. "dist": {
  7926. "type": "zip",
  7927. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/3372ed65e6d2039d663ed19aa699956f9d346271",
  7928. "reference": "3372ed65e6d2039d663ed19aa699956f9d346271",
  7929. "shasum": ""
  7930. },
  7931. "require": {
  7932. "illuminate/routing": "^7|^8|^9",
  7933. "illuminate/session": "^7|^8|^9",
  7934. "illuminate/support": "^7|^8|^9",
  7935. "maximebf/debugbar": "^1.17.2",
  7936. "php": ">=7.2.5",
  7937. "symfony/finder": "^5|^6"
  7938. },
  7939. "require-dev": {
  7940. "mockery/mockery": "^1.3.3",
  7941. "orchestra/testbench-dusk": "^5|^6|^7",
  7942. "phpunit/phpunit": "^8.5|^9.0",
  7943. "squizlabs/php_codesniffer": "^3.5"
  7944. },
  7945. "type": "library",
  7946. "extra": {
  7947. "branch-alias": {
  7948. "dev-master": "3.6-dev"
  7949. },
  7950. "laravel": {
  7951. "providers": [
  7952. "Barryvdh\\Debugbar\\ServiceProvider"
  7953. ],
  7954. "aliases": {
  7955. "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar"
  7956. }
  7957. }
  7958. },
  7959. "autoload": {
  7960. "files": [
  7961. "src/helpers.php"
  7962. ],
  7963. "psr-4": {
  7964. "Barryvdh\\Debugbar\\": "src/"
  7965. }
  7966. },
  7967. "notification-url": "https://packagist.org/downloads/",
  7968. "license": [
  7969. "MIT"
  7970. ],
  7971. "authors": [
  7972. {
  7973. "name": "Barry vd. Heuvel",
  7974. "email": "barryvdh@gmail.com"
  7975. }
  7976. ],
  7977. "description": "PHP Debugbar integration for Laravel",
  7978. "keywords": [
  7979. "debug",
  7980. "debugbar",
  7981. "laravel",
  7982. "profiler",
  7983. "webprofiler"
  7984. ],
  7985. "support": {
  7986. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  7987. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.7.0"
  7988. },
  7989. "funding": [
  7990. {
  7991. "url": "https://fruitcake.nl",
  7992. "type": "custom"
  7993. },
  7994. {
  7995. "url": "https://github.com/barryvdh",
  7996. "type": "github"
  7997. }
  7998. ],
  7999. "time": "2022-07-11T09:26:42+00:00"
  8000. },
  8001. {
  8002. "name": "doctrine/instantiator",
  8003. "version": "1.5.0",
  8004. "source": {
  8005. "type": "git",
  8006. "url": "https://github.com/doctrine/instantiator.git",
  8007. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8008. },
  8009. "dist": {
  8010. "type": "zip",
  8011. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8012. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8013. "shasum": ""
  8014. },
  8015. "require": {
  8016. "php": "^7.1 || ^8.0"
  8017. },
  8018. "require-dev": {
  8019. "doctrine/coding-standard": "^9 || ^11",
  8020. "ext-pdo": "*",
  8021. "ext-phar": "*",
  8022. "phpbench/phpbench": "^0.16 || ^1",
  8023. "phpstan/phpstan": "^1.4",
  8024. "phpstan/phpstan-phpunit": "^1",
  8025. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8026. "vimeo/psalm": "^4.30 || ^5.4"
  8027. },
  8028. "type": "library",
  8029. "autoload": {
  8030. "psr-4": {
  8031. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8032. }
  8033. },
  8034. "notification-url": "https://packagist.org/downloads/",
  8035. "license": [
  8036. "MIT"
  8037. ],
  8038. "authors": [
  8039. {
  8040. "name": "Marco Pivetta",
  8041. "email": "ocramius@gmail.com",
  8042. "homepage": "https://ocramius.github.io/"
  8043. }
  8044. ],
  8045. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8046. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8047. "keywords": [
  8048. "constructor",
  8049. "instantiate"
  8050. ],
  8051. "support": {
  8052. "issues": "https://github.com/doctrine/instantiator/issues",
  8053. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8054. },
  8055. "funding": [
  8056. {
  8057. "url": "https://www.doctrine-project.org/sponsorship.html",
  8058. "type": "custom"
  8059. },
  8060. {
  8061. "url": "https://www.patreon.com/phpdoctrine",
  8062. "type": "patreon"
  8063. },
  8064. {
  8065. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8066. "type": "tidelift"
  8067. }
  8068. ],
  8069. "time": "2022-12-30T00:15:36+00:00"
  8070. },
  8071. {
  8072. "name": "fakerphp/faker",
  8073. "version": "v1.21.0",
  8074. "source": {
  8075. "type": "git",
  8076. "url": "https://github.com/FakerPHP/Faker.git",
  8077. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d"
  8078. },
  8079. "dist": {
  8080. "type": "zip",
  8081. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d",
  8082. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d",
  8083. "shasum": ""
  8084. },
  8085. "require": {
  8086. "php": "^7.4 || ^8.0",
  8087. "psr/container": "^1.0 || ^2.0",
  8088. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8089. },
  8090. "conflict": {
  8091. "fzaninotto/faker": "*"
  8092. },
  8093. "require-dev": {
  8094. "bamarni/composer-bin-plugin": "^1.4.1",
  8095. "doctrine/persistence": "^1.3 || ^2.0",
  8096. "ext-intl": "*",
  8097. "phpunit/phpunit": "^9.5.26",
  8098. "symfony/phpunit-bridge": "^5.4.16"
  8099. },
  8100. "suggest": {
  8101. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8102. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8103. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8104. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8105. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8106. },
  8107. "type": "library",
  8108. "extra": {
  8109. "branch-alias": {
  8110. "dev-main": "v1.21-dev"
  8111. }
  8112. },
  8113. "autoload": {
  8114. "psr-4": {
  8115. "Faker\\": "src/Faker/"
  8116. }
  8117. },
  8118. "notification-url": "https://packagist.org/downloads/",
  8119. "license": [
  8120. "MIT"
  8121. ],
  8122. "authors": [
  8123. {
  8124. "name": "François Zaninotto"
  8125. }
  8126. ],
  8127. "description": "Faker is a PHP library that generates fake data for you.",
  8128. "keywords": [
  8129. "data",
  8130. "faker",
  8131. "fixtures"
  8132. ],
  8133. "support": {
  8134. "issues": "https://github.com/FakerPHP/Faker/issues",
  8135. "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0"
  8136. },
  8137. "time": "2022-12-13T13:54:32+00:00"
  8138. },
  8139. {
  8140. "name": "filp/whoops",
  8141. "version": "2.14.6",
  8142. "source": {
  8143. "type": "git",
  8144. "url": "https://github.com/filp/whoops.git",
  8145. "reference": "f7948baaa0330277c729714910336383286305da"
  8146. },
  8147. "dist": {
  8148. "type": "zip",
  8149. "url": "https://api.github.com/repos/filp/whoops/zipball/f7948baaa0330277c729714910336383286305da",
  8150. "reference": "f7948baaa0330277c729714910336383286305da",
  8151. "shasum": ""
  8152. },
  8153. "require": {
  8154. "php": "^5.5.9 || ^7.0 || ^8.0",
  8155. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8156. },
  8157. "require-dev": {
  8158. "mockery/mockery": "^0.9 || ^1.0",
  8159. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8160. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8161. },
  8162. "suggest": {
  8163. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8164. "whoops/soap": "Formats errors as SOAP responses"
  8165. },
  8166. "type": "library",
  8167. "extra": {
  8168. "branch-alias": {
  8169. "dev-master": "2.7-dev"
  8170. }
  8171. },
  8172. "autoload": {
  8173. "psr-4": {
  8174. "Whoops\\": "src/Whoops/"
  8175. }
  8176. },
  8177. "notification-url": "https://packagist.org/downloads/",
  8178. "license": [
  8179. "MIT"
  8180. ],
  8181. "authors": [
  8182. {
  8183. "name": "Filipe Dobreira",
  8184. "homepage": "https://github.com/filp",
  8185. "role": "Developer"
  8186. }
  8187. ],
  8188. "description": "php error handling for cool kids",
  8189. "homepage": "https://filp.github.io/whoops/",
  8190. "keywords": [
  8191. "error",
  8192. "exception",
  8193. "handling",
  8194. "library",
  8195. "throwable",
  8196. "whoops"
  8197. ],
  8198. "support": {
  8199. "issues": "https://github.com/filp/whoops/issues",
  8200. "source": "https://github.com/filp/whoops/tree/2.14.6"
  8201. },
  8202. "funding": [
  8203. {
  8204. "url": "https://github.com/denis-sokolov",
  8205. "type": "github"
  8206. }
  8207. ],
  8208. "time": "2022-11-02T16:23:29+00:00"
  8209. },
  8210. {
  8211. "name": "hamcrest/hamcrest-php",
  8212. "version": "v2.0.1",
  8213. "source": {
  8214. "type": "git",
  8215. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8216. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8217. },
  8218. "dist": {
  8219. "type": "zip",
  8220. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8221. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8222. "shasum": ""
  8223. },
  8224. "require": {
  8225. "php": "^5.3|^7.0|^8.0"
  8226. },
  8227. "replace": {
  8228. "cordoval/hamcrest-php": "*",
  8229. "davedevelopment/hamcrest-php": "*",
  8230. "kodova/hamcrest-php": "*"
  8231. },
  8232. "require-dev": {
  8233. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8234. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8235. },
  8236. "type": "library",
  8237. "extra": {
  8238. "branch-alias": {
  8239. "dev-master": "2.1-dev"
  8240. }
  8241. },
  8242. "autoload": {
  8243. "classmap": [
  8244. "hamcrest"
  8245. ]
  8246. },
  8247. "notification-url": "https://packagist.org/downloads/",
  8248. "license": [
  8249. "BSD-3-Clause"
  8250. ],
  8251. "description": "This is the PHP port of Hamcrest Matchers",
  8252. "keywords": [
  8253. "test"
  8254. ],
  8255. "support": {
  8256. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8257. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8258. },
  8259. "time": "2020-07-09T08:09:16+00:00"
  8260. },
  8261. {
  8262. "name": "laravel/sail",
  8263. "version": "v1.17.0",
  8264. "source": {
  8265. "type": "git",
  8266. "url": "https://github.com/laravel/sail.git",
  8267. "reference": "7d69da7b2bdb8cbe8da6663eb2ae0e00c884bf80"
  8268. },
  8269. "dist": {
  8270. "type": "zip",
  8271. "url": "https://api.github.com/repos/laravel/sail/zipball/7d69da7b2bdb8cbe8da6663eb2ae0e00c884bf80",
  8272. "reference": "7d69da7b2bdb8cbe8da6663eb2ae0e00c884bf80",
  8273. "shasum": ""
  8274. },
  8275. "require": {
  8276. "illuminate/console": "^8.0|^9.0",
  8277. "illuminate/contracts": "^8.0|^9.0",
  8278. "illuminate/support": "^8.0|^9.0",
  8279. "php": "^7.3|^8.0"
  8280. },
  8281. "bin": [
  8282. "bin/sail"
  8283. ],
  8284. "type": "library",
  8285. "extra": {
  8286. "branch-alias": {
  8287. "dev-master": "1.x-dev"
  8288. },
  8289. "laravel": {
  8290. "providers": [
  8291. "Laravel\\Sail\\SailServiceProvider"
  8292. ]
  8293. }
  8294. },
  8295. "autoload": {
  8296. "psr-4": {
  8297. "Laravel\\Sail\\": "src/"
  8298. }
  8299. },
  8300. "notification-url": "https://packagist.org/downloads/",
  8301. "license": [
  8302. "MIT"
  8303. ],
  8304. "authors": [
  8305. {
  8306. "name": "Taylor Otwell",
  8307. "email": "taylor@laravel.com"
  8308. }
  8309. ],
  8310. "description": "Docker files for running a basic Laravel application.",
  8311. "keywords": [
  8312. "docker",
  8313. "laravel"
  8314. ],
  8315. "support": {
  8316. "issues": "https://github.com/laravel/sail/issues",
  8317. "source": "https://github.com/laravel/sail"
  8318. },
  8319. "time": "2022-12-22T14:46:08+00:00"
  8320. },
  8321. {
  8322. "name": "maximebf/debugbar",
  8323. "version": "v1.18.1",
  8324. "source": {
  8325. "type": "git",
  8326. "url": "https://github.com/maximebf/php-debugbar.git",
  8327. "reference": "ba0af68dd4316834701ecb30a00ce9604ced3ee9"
  8328. },
  8329. "dist": {
  8330. "type": "zip",
  8331. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/ba0af68dd4316834701ecb30a00ce9604ced3ee9",
  8332. "reference": "ba0af68dd4316834701ecb30a00ce9604ced3ee9",
  8333. "shasum": ""
  8334. },
  8335. "require": {
  8336. "php": "^7.1|^8",
  8337. "psr/log": "^1|^2|^3",
  8338. "symfony/var-dumper": "^2.6|^3|^4|^5|^6"
  8339. },
  8340. "require-dev": {
  8341. "phpunit/phpunit": "^7.5.20 || ^9.4.2",
  8342. "twig/twig": "^1.38|^2.7|^3.0"
  8343. },
  8344. "suggest": {
  8345. "kriswallsmith/assetic": "The best way to manage assets",
  8346. "monolog/monolog": "Log using Monolog",
  8347. "predis/predis": "Redis storage"
  8348. },
  8349. "type": "library",
  8350. "extra": {
  8351. "branch-alias": {
  8352. "dev-master": "1.18-dev"
  8353. }
  8354. },
  8355. "autoload": {
  8356. "psr-4": {
  8357. "DebugBar\\": "src/DebugBar/"
  8358. }
  8359. },
  8360. "notification-url": "https://packagist.org/downloads/",
  8361. "license": [
  8362. "MIT"
  8363. ],
  8364. "authors": [
  8365. {
  8366. "name": "Maxime Bouroumeau-Fuseau",
  8367. "email": "maxime.bouroumeau@gmail.com",
  8368. "homepage": "http://maximebf.com"
  8369. },
  8370. {
  8371. "name": "Barry vd. Heuvel",
  8372. "email": "barryvdh@gmail.com"
  8373. }
  8374. ],
  8375. "description": "Debug bar in the browser for php application",
  8376. "homepage": "https://github.com/maximebf/php-debugbar",
  8377. "keywords": [
  8378. "debug",
  8379. "debugbar"
  8380. ],
  8381. "support": {
  8382. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8383. "source": "https://github.com/maximebf/php-debugbar/tree/v1.18.1"
  8384. },
  8385. "time": "2022-03-31T14:55:54+00:00"
  8386. },
  8387. {
  8388. "name": "mockery/mockery",
  8389. "version": "1.5.1",
  8390. "source": {
  8391. "type": "git",
  8392. "url": "https://github.com/mockery/mockery.git",
  8393. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  8394. },
  8395. "dist": {
  8396. "type": "zip",
  8397. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  8398. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  8399. "shasum": ""
  8400. },
  8401. "require": {
  8402. "hamcrest/hamcrest-php": "^2.0.1",
  8403. "lib-pcre": ">=7.0",
  8404. "php": "^7.3 || ^8.0"
  8405. },
  8406. "conflict": {
  8407. "phpunit/phpunit": "<8.0"
  8408. },
  8409. "require-dev": {
  8410. "phpunit/phpunit": "^8.5 || ^9.3"
  8411. },
  8412. "type": "library",
  8413. "extra": {
  8414. "branch-alias": {
  8415. "dev-master": "1.4.x-dev"
  8416. }
  8417. },
  8418. "autoload": {
  8419. "psr-0": {
  8420. "Mockery": "library/"
  8421. }
  8422. },
  8423. "notification-url": "https://packagist.org/downloads/",
  8424. "license": [
  8425. "BSD-3-Clause"
  8426. ],
  8427. "authors": [
  8428. {
  8429. "name": "Pádraic Brady",
  8430. "email": "padraic.brady@gmail.com",
  8431. "homepage": "http://blog.astrumfutura.com"
  8432. },
  8433. {
  8434. "name": "Dave Marshall",
  8435. "email": "dave.marshall@atstsolutions.co.uk",
  8436. "homepage": "http://davedevelopment.co.uk"
  8437. }
  8438. ],
  8439. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8440. "homepage": "https://github.com/mockery/mockery",
  8441. "keywords": [
  8442. "BDD",
  8443. "TDD",
  8444. "library",
  8445. "mock",
  8446. "mock objects",
  8447. "mockery",
  8448. "stub",
  8449. "test",
  8450. "test double",
  8451. "testing"
  8452. ],
  8453. "support": {
  8454. "issues": "https://github.com/mockery/mockery/issues",
  8455. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  8456. },
  8457. "time": "2022-09-07T15:32:08+00:00"
  8458. },
  8459. {
  8460. "name": "myclabs/deep-copy",
  8461. "version": "1.11.0",
  8462. "source": {
  8463. "type": "git",
  8464. "url": "https://github.com/myclabs/DeepCopy.git",
  8465. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  8466. },
  8467. "dist": {
  8468. "type": "zip",
  8469. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  8470. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  8471. "shasum": ""
  8472. },
  8473. "require": {
  8474. "php": "^7.1 || ^8.0"
  8475. },
  8476. "conflict": {
  8477. "doctrine/collections": "<1.6.8",
  8478. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8479. },
  8480. "require-dev": {
  8481. "doctrine/collections": "^1.6.8",
  8482. "doctrine/common": "^2.13.3 || ^3.2.2",
  8483. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8484. },
  8485. "type": "library",
  8486. "autoload": {
  8487. "files": [
  8488. "src/DeepCopy/deep_copy.php"
  8489. ],
  8490. "psr-4": {
  8491. "DeepCopy\\": "src/DeepCopy/"
  8492. }
  8493. },
  8494. "notification-url": "https://packagist.org/downloads/",
  8495. "license": [
  8496. "MIT"
  8497. ],
  8498. "description": "Create deep copies (clones) of your objects",
  8499. "keywords": [
  8500. "clone",
  8501. "copy",
  8502. "duplicate",
  8503. "object",
  8504. "object graph"
  8505. ],
  8506. "support": {
  8507. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8508. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  8509. },
  8510. "funding": [
  8511. {
  8512. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8513. "type": "tidelift"
  8514. }
  8515. ],
  8516. "time": "2022-03-03T13:19:32+00:00"
  8517. },
  8518. {
  8519. "name": "nunomaduro/collision",
  8520. "version": "v6.4.0",
  8521. "source": {
  8522. "type": "git",
  8523. "url": "https://github.com/nunomaduro/collision.git",
  8524. "reference": "f05978827b9343cba381ca05b8c7deee346b6015"
  8525. },
  8526. "dist": {
  8527. "type": "zip",
  8528. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015",
  8529. "reference": "f05978827b9343cba381ca05b8c7deee346b6015",
  8530. "shasum": ""
  8531. },
  8532. "require": {
  8533. "filp/whoops": "^2.14.5",
  8534. "php": "^8.0.0",
  8535. "symfony/console": "^6.0.2"
  8536. },
  8537. "require-dev": {
  8538. "brianium/paratest": "^6.4.1",
  8539. "laravel/framework": "^9.26.1",
  8540. "laravel/pint": "^1.1.1",
  8541. "nunomaduro/larastan": "^1.0.3",
  8542. "nunomaduro/mock-final-classes": "^1.1.0",
  8543. "orchestra/testbench": "^7.7",
  8544. "phpunit/phpunit": "^9.5.23",
  8545. "spatie/ignition": "^1.4.1"
  8546. },
  8547. "type": "library",
  8548. "extra": {
  8549. "branch-alias": {
  8550. "dev-develop": "6.x-dev"
  8551. },
  8552. "laravel": {
  8553. "providers": [
  8554. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8555. ]
  8556. }
  8557. },
  8558. "autoload": {
  8559. "psr-4": {
  8560. "NunoMaduro\\Collision\\": "src/"
  8561. }
  8562. },
  8563. "notification-url": "https://packagist.org/downloads/",
  8564. "license": [
  8565. "MIT"
  8566. ],
  8567. "authors": [
  8568. {
  8569. "name": "Nuno Maduro",
  8570. "email": "enunomaduro@gmail.com"
  8571. }
  8572. ],
  8573. "description": "Cli error handling for console/command-line PHP applications.",
  8574. "keywords": [
  8575. "artisan",
  8576. "cli",
  8577. "command-line",
  8578. "console",
  8579. "error",
  8580. "handling",
  8581. "laravel",
  8582. "laravel-zero",
  8583. "php",
  8584. "symfony"
  8585. ],
  8586. "support": {
  8587. "issues": "https://github.com/nunomaduro/collision/issues",
  8588. "source": "https://github.com/nunomaduro/collision"
  8589. },
  8590. "funding": [
  8591. {
  8592. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8593. "type": "custom"
  8594. },
  8595. {
  8596. "url": "https://github.com/nunomaduro",
  8597. "type": "github"
  8598. },
  8599. {
  8600. "url": "https://www.patreon.com/nunomaduro",
  8601. "type": "patreon"
  8602. }
  8603. ],
  8604. "time": "2023-01-03T12:54:54+00:00"
  8605. },
  8606. {
  8607. "name": "phar-io/manifest",
  8608. "version": "2.0.3",
  8609. "source": {
  8610. "type": "git",
  8611. "url": "https://github.com/phar-io/manifest.git",
  8612. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8613. },
  8614. "dist": {
  8615. "type": "zip",
  8616. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8617. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8618. "shasum": ""
  8619. },
  8620. "require": {
  8621. "ext-dom": "*",
  8622. "ext-phar": "*",
  8623. "ext-xmlwriter": "*",
  8624. "phar-io/version": "^3.0.1",
  8625. "php": "^7.2 || ^8.0"
  8626. },
  8627. "type": "library",
  8628. "extra": {
  8629. "branch-alias": {
  8630. "dev-master": "2.0.x-dev"
  8631. }
  8632. },
  8633. "autoload": {
  8634. "classmap": [
  8635. "src/"
  8636. ]
  8637. },
  8638. "notification-url": "https://packagist.org/downloads/",
  8639. "license": [
  8640. "BSD-3-Clause"
  8641. ],
  8642. "authors": [
  8643. {
  8644. "name": "Arne Blankerts",
  8645. "email": "arne@blankerts.de",
  8646. "role": "Developer"
  8647. },
  8648. {
  8649. "name": "Sebastian Heuer",
  8650. "email": "sebastian@phpeople.de",
  8651. "role": "Developer"
  8652. },
  8653. {
  8654. "name": "Sebastian Bergmann",
  8655. "email": "sebastian@phpunit.de",
  8656. "role": "Developer"
  8657. }
  8658. ],
  8659. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8660. "support": {
  8661. "issues": "https://github.com/phar-io/manifest/issues",
  8662. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8663. },
  8664. "time": "2021-07-20T11:28:43+00:00"
  8665. },
  8666. {
  8667. "name": "phar-io/version",
  8668. "version": "3.2.1",
  8669. "source": {
  8670. "type": "git",
  8671. "url": "https://github.com/phar-io/version.git",
  8672. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8673. },
  8674. "dist": {
  8675. "type": "zip",
  8676. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8677. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8678. "shasum": ""
  8679. },
  8680. "require": {
  8681. "php": "^7.2 || ^8.0"
  8682. },
  8683. "type": "library",
  8684. "autoload": {
  8685. "classmap": [
  8686. "src/"
  8687. ]
  8688. },
  8689. "notification-url": "https://packagist.org/downloads/",
  8690. "license": [
  8691. "BSD-3-Clause"
  8692. ],
  8693. "authors": [
  8694. {
  8695. "name": "Arne Blankerts",
  8696. "email": "arne@blankerts.de",
  8697. "role": "Developer"
  8698. },
  8699. {
  8700. "name": "Sebastian Heuer",
  8701. "email": "sebastian@phpeople.de",
  8702. "role": "Developer"
  8703. },
  8704. {
  8705. "name": "Sebastian Bergmann",
  8706. "email": "sebastian@phpunit.de",
  8707. "role": "Developer"
  8708. }
  8709. ],
  8710. "description": "Library for handling version information and constraints",
  8711. "support": {
  8712. "issues": "https://github.com/phar-io/version/issues",
  8713. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8714. },
  8715. "time": "2022-02-21T01:04:05+00:00"
  8716. },
  8717. {
  8718. "name": "phpunit/php-code-coverage",
  8719. "version": "9.2.23",
  8720. "source": {
  8721. "type": "git",
  8722. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8723. "reference": "9f1f0f9a2fbb680b26d1cf9b61b6eac43a6e4e9c"
  8724. },
  8725. "dist": {
  8726. "type": "zip",
  8727. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/9f1f0f9a2fbb680b26d1cf9b61b6eac43a6e4e9c",
  8728. "reference": "9f1f0f9a2fbb680b26d1cf9b61b6eac43a6e4e9c",
  8729. "shasum": ""
  8730. },
  8731. "require": {
  8732. "ext-dom": "*",
  8733. "ext-libxml": "*",
  8734. "ext-xmlwriter": "*",
  8735. "nikic/php-parser": "^4.14",
  8736. "php": ">=7.3",
  8737. "phpunit/php-file-iterator": "^3.0.3",
  8738. "phpunit/php-text-template": "^2.0.2",
  8739. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8740. "sebastian/complexity": "^2.0",
  8741. "sebastian/environment": "^5.1.2",
  8742. "sebastian/lines-of-code": "^1.0.3",
  8743. "sebastian/version": "^3.0.1",
  8744. "theseer/tokenizer": "^1.2.0"
  8745. },
  8746. "require-dev": {
  8747. "phpunit/phpunit": "^9.3"
  8748. },
  8749. "suggest": {
  8750. "ext-pcov": "*",
  8751. "ext-xdebug": "*"
  8752. },
  8753. "type": "library",
  8754. "extra": {
  8755. "branch-alias": {
  8756. "dev-master": "9.2-dev"
  8757. }
  8758. },
  8759. "autoload": {
  8760. "classmap": [
  8761. "src/"
  8762. ]
  8763. },
  8764. "notification-url": "https://packagist.org/downloads/",
  8765. "license": [
  8766. "BSD-3-Clause"
  8767. ],
  8768. "authors": [
  8769. {
  8770. "name": "Sebastian Bergmann",
  8771. "email": "sebastian@phpunit.de",
  8772. "role": "lead"
  8773. }
  8774. ],
  8775. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8776. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8777. "keywords": [
  8778. "coverage",
  8779. "testing",
  8780. "xunit"
  8781. ],
  8782. "support": {
  8783. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8784. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.23"
  8785. },
  8786. "funding": [
  8787. {
  8788. "url": "https://github.com/sebastianbergmann",
  8789. "type": "github"
  8790. }
  8791. ],
  8792. "time": "2022-12-28T12:41:10+00:00"
  8793. },
  8794. {
  8795. "name": "phpunit/php-file-iterator",
  8796. "version": "3.0.6",
  8797. "source": {
  8798. "type": "git",
  8799. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8800. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8801. },
  8802. "dist": {
  8803. "type": "zip",
  8804. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8805. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8806. "shasum": ""
  8807. },
  8808. "require": {
  8809. "php": ">=7.3"
  8810. },
  8811. "require-dev": {
  8812. "phpunit/phpunit": "^9.3"
  8813. },
  8814. "type": "library",
  8815. "extra": {
  8816. "branch-alias": {
  8817. "dev-master": "3.0-dev"
  8818. }
  8819. },
  8820. "autoload": {
  8821. "classmap": [
  8822. "src/"
  8823. ]
  8824. },
  8825. "notification-url": "https://packagist.org/downloads/",
  8826. "license": [
  8827. "BSD-3-Clause"
  8828. ],
  8829. "authors": [
  8830. {
  8831. "name": "Sebastian Bergmann",
  8832. "email": "sebastian@phpunit.de",
  8833. "role": "lead"
  8834. }
  8835. ],
  8836. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8837. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8838. "keywords": [
  8839. "filesystem",
  8840. "iterator"
  8841. ],
  8842. "support": {
  8843. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8844. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8845. },
  8846. "funding": [
  8847. {
  8848. "url": "https://github.com/sebastianbergmann",
  8849. "type": "github"
  8850. }
  8851. ],
  8852. "time": "2021-12-02T12:48:52+00:00"
  8853. },
  8854. {
  8855. "name": "phpunit/php-invoker",
  8856. "version": "3.1.1",
  8857. "source": {
  8858. "type": "git",
  8859. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8860. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8861. },
  8862. "dist": {
  8863. "type": "zip",
  8864. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8865. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8866. "shasum": ""
  8867. },
  8868. "require": {
  8869. "php": ">=7.3"
  8870. },
  8871. "require-dev": {
  8872. "ext-pcntl": "*",
  8873. "phpunit/phpunit": "^9.3"
  8874. },
  8875. "suggest": {
  8876. "ext-pcntl": "*"
  8877. },
  8878. "type": "library",
  8879. "extra": {
  8880. "branch-alias": {
  8881. "dev-master": "3.1-dev"
  8882. }
  8883. },
  8884. "autoload": {
  8885. "classmap": [
  8886. "src/"
  8887. ]
  8888. },
  8889. "notification-url": "https://packagist.org/downloads/",
  8890. "license": [
  8891. "BSD-3-Clause"
  8892. ],
  8893. "authors": [
  8894. {
  8895. "name": "Sebastian Bergmann",
  8896. "email": "sebastian@phpunit.de",
  8897. "role": "lead"
  8898. }
  8899. ],
  8900. "description": "Invoke callables with a timeout",
  8901. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8902. "keywords": [
  8903. "process"
  8904. ],
  8905. "support": {
  8906. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8907. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8908. },
  8909. "funding": [
  8910. {
  8911. "url": "https://github.com/sebastianbergmann",
  8912. "type": "github"
  8913. }
  8914. ],
  8915. "time": "2020-09-28T05:58:55+00:00"
  8916. },
  8917. {
  8918. "name": "phpunit/php-text-template",
  8919. "version": "2.0.4",
  8920. "source": {
  8921. "type": "git",
  8922. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8923. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8924. },
  8925. "dist": {
  8926. "type": "zip",
  8927. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8928. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8929. "shasum": ""
  8930. },
  8931. "require": {
  8932. "php": ">=7.3"
  8933. },
  8934. "require-dev": {
  8935. "phpunit/phpunit": "^9.3"
  8936. },
  8937. "type": "library",
  8938. "extra": {
  8939. "branch-alias": {
  8940. "dev-master": "2.0-dev"
  8941. }
  8942. },
  8943. "autoload": {
  8944. "classmap": [
  8945. "src/"
  8946. ]
  8947. },
  8948. "notification-url": "https://packagist.org/downloads/",
  8949. "license": [
  8950. "BSD-3-Clause"
  8951. ],
  8952. "authors": [
  8953. {
  8954. "name": "Sebastian Bergmann",
  8955. "email": "sebastian@phpunit.de",
  8956. "role": "lead"
  8957. }
  8958. ],
  8959. "description": "Simple template engine.",
  8960. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8961. "keywords": [
  8962. "template"
  8963. ],
  8964. "support": {
  8965. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8966. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8967. },
  8968. "funding": [
  8969. {
  8970. "url": "https://github.com/sebastianbergmann",
  8971. "type": "github"
  8972. }
  8973. ],
  8974. "time": "2020-10-26T05:33:50+00:00"
  8975. },
  8976. {
  8977. "name": "phpunit/php-timer",
  8978. "version": "5.0.3",
  8979. "source": {
  8980. "type": "git",
  8981. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8982. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8983. },
  8984. "dist": {
  8985. "type": "zip",
  8986. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8987. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8988. "shasum": ""
  8989. },
  8990. "require": {
  8991. "php": ">=7.3"
  8992. },
  8993. "require-dev": {
  8994. "phpunit/phpunit": "^9.3"
  8995. },
  8996. "type": "library",
  8997. "extra": {
  8998. "branch-alias": {
  8999. "dev-master": "5.0-dev"
  9000. }
  9001. },
  9002. "autoload": {
  9003. "classmap": [
  9004. "src/"
  9005. ]
  9006. },
  9007. "notification-url": "https://packagist.org/downloads/",
  9008. "license": [
  9009. "BSD-3-Clause"
  9010. ],
  9011. "authors": [
  9012. {
  9013. "name": "Sebastian Bergmann",
  9014. "email": "sebastian@phpunit.de",
  9015. "role": "lead"
  9016. }
  9017. ],
  9018. "description": "Utility class for timing",
  9019. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9020. "keywords": [
  9021. "timer"
  9022. ],
  9023. "support": {
  9024. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9025. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9026. },
  9027. "funding": [
  9028. {
  9029. "url": "https://github.com/sebastianbergmann",
  9030. "type": "github"
  9031. }
  9032. ],
  9033. "time": "2020-10-26T13:16:10+00:00"
  9034. },
  9035. {
  9036. "name": "phpunit/phpunit",
  9037. "version": "9.5.27",
  9038. "source": {
  9039. "type": "git",
  9040. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9041. "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38"
  9042. },
  9043. "dist": {
  9044. "type": "zip",
  9045. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a2bc7ffdca99f92d959b3f2270529334030bba38",
  9046. "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38",
  9047. "shasum": ""
  9048. },
  9049. "require": {
  9050. "doctrine/instantiator": "^1.3.1",
  9051. "ext-dom": "*",
  9052. "ext-json": "*",
  9053. "ext-libxml": "*",
  9054. "ext-mbstring": "*",
  9055. "ext-xml": "*",
  9056. "ext-xmlwriter": "*",
  9057. "myclabs/deep-copy": "^1.10.1",
  9058. "phar-io/manifest": "^2.0.3",
  9059. "phar-io/version": "^3.0.2",
  9060. "php": ">=7.3",
  9061. "phpunit/php-code-coverage": "^9.2.13",
  9062. "phpunit/php-file-iterator": "^3.0.5",
  9063. "phpunit/php-invoker": "^3.1.1",
  9064. "phpunit/php-text-template": "^2.0.3",
  9065. "phpunit/php-timer": "^5.0.2",
  9066. "sebastian/cli-parser": "^1.0.1",
  9067. "sebastian/code-unit": "^1.0.6",
  9068. "sebastian/comparator": "^4.0.8",
  9069. "sebastian/diff": "^4.0.3",
  9070. "sebastian/environment": "^5.1.3",
  9071. "sebastian/exporter": "^4.0.5",
  9072. "sebastian/global-state": "^5.0.1",
  9073. "sebastian/object-enumerator": "^4.0.3",
  9074. "sebastian/resource-operations": "^3.0.3",
  9075. "sebastian/type": "^3.2",
  9076. "sebastian/version": "^3.0.2"
  9077. },
  9078. "suggest": {
  9079. "ext-soap": "*",
  9080. "ext-xdebug": "*"
  9081. },
  9082. "bin": [
  9083. "phpunit"
  9084. ],
  9085. "type": "library",
  9086. "extra": {
  9087. "branch-alias": {
  9088. "dev-master": "9.5-dev"
  9089. }
  9090. },
  9091. "autoload": {
  9092. "files": [
  9093. "src/Framework/Assert/Functions.php"
  9094. ],
  9095. "classmap": [
  9096. "src/"
  9097. ]
  9098. },
  9099. "notification-url": "https://packagist.org/downloads/",
  9100. "license": [
  9101. "BSD-3-Clause"
  9102. ],
  9103. "authors": [
  9104. {
  9105. "name": "Sebastian Bergmann",
  9106. "email": "sebastian@phpunit.de",
  9107. "role": "lead"
  9108. }
  9109. ],
  9110. "description": "The PHP Unit Testing framework.",
  9111. "homepage": "https://phpunit.de/",
  9112. "keywords": [
  9113. "phpunit",
  9114. "testing",
  9115. "xunit"
  9116. ],
  9117. "support": {
  9118. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9119. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.27"
  9120. },
  9121. "funding": [
  9122. {
  9123. "url": "https://phpunit.de/sponsors.html",
  9124. "type": "custom"
  9125. },
  9126. {
  9127. "url": "https://github.com/sebastianbergmann",
  9128. "type": "github"
  9129. },
  9130. {
  9131. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9132. "type": "tidelift"
  9133. }
  9134. ],
  9135. "time": "2022-12-09T07:31:23+00:00"
  9136. },
  9137. {
  9138. "name": "sebastian/cli-parser",
  9139. "version": "1.0.1",
  9140. "source": {
  9141. "type": "git",
  9142. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9143. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9144. },
  9145. "dist": {
  9146. "type": "zip",
  9147. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9148. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9149. "shasum": ""
  9150. },
  9151. "require": {
  9152. "php": ">=7.3"
  9153. },
  9154. "require-dev": {
  9155. "phpunit/phpunit": "^9.3"
  9156. },
  9157. "type": "library",
  9158. "extra": {
  9159. "branch-alias": {
  9160. "dev-master": "1.0-dev"
  9161. }
  9162. },
  9163. "autoload": {
  9164. "classmap": [
  9165. "src/"
  9166. ]
  9167. },
  9168. "notification-url": "https://packagist.org/downloads/",
  9169. "license": [
  9170. "BSD-3-Clause"
  9171. ],
  9172. "authors": [
  9173. {
  9174. "name": "Sebastian Bergmann",
  9175. "email": "sebastian@phpunit.de",
  9176. "role": "lead"
  9177. }
  9178. ],
  9179. "description": "Library for parsing CLI options",
  9180. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9181. "support": {
  9182. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9183. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9184. },
  9185. "funding": [
  9186. {
  9187. "url": "https://github.com/sebastianbergmann",
  9188. "type": "github"
  9189. }
  9190. ],
  9191. "time": "2020-09-28T06:08:49+00:00"
  9192. },
  9193. {
  9194. "name": "sebastian/code-unit",
  9195. "version": "1.0.8",
  9196. "source": {
  9197. "type": "git",
  9198. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9199. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9200. },
  9201. "dist": {
  9202. "type": "zip",
  9203. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9204. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9205. "shasum": ""
  9206. },
  9207. "require": {
  9208. "php": ">=7.3"
  9209. },
  9210. "require-dev": {
  9211. "phpunit/phpunit": "^9.3"
  9212. },
  9213. "type": "library",
  9214. "extra": {
  9215. "branch-alias": {
  9216. "dev-master": "1.0-dev"
  9217. }
  9218. },
  9219. "autoload": {
  9220. "classmap": [
  9221. "src/"
  9222. ]
  9223. },
  9224. "notification-url": "https://packagist.org/downloads/",
  9225. "license": [
  9226. "BSD-3-Clause"
  9227. ],
  9228. "authors": [
  9229. {
  9230. "name": "Sebastian Bergmann",
  9231. "email": "sebastian@phpunit.de",
  9232. "role": "lead"
  9233. }
  9234. ],
  9235. "description": "Collection of value objects that represent the PHP code units",
  9236. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9237. "support": {
  9238. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9239. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9240. },
  9241. "funding": [
  9242. {
  9243. "url": "https://github.com/sebastianbergmann",
  9244. "type": "github"
  9245. }
  9246. ],
  9247. "time": "2020-10-26T13:08:54+00:00"
  9248. },
  9249. {
  9250. "name": "sebastian/code-unit-reverse-lookup",
  9251. "version": "2.0.3",
  9252. "source": {
  9253. "type": "git",
  9254. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9255. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9256. },
  9257. "dist": {
  9258. "type": "zip",
  9259. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9260. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9261. "shasum": ""
  9262. },
  9263. "require": {
  9264. "php": ">=7.3"
  9265. },
  9266. "require-dev": {
  9267. "phpunit/phpunit": "^9.3"
  9268. },
  9269. "type": "library",
  9270. "extra": {
  9271. "branch-alias": {
  9272. "dev-master": "2.0-dev"
  9273. }
  9274. },
  9275. "autoload": {
  9276. "classmap": [
  9277. "src/"
  9278. ]
  9279. },
  9280. "notification-url": "https://packagist.org/downloads/",
  9281. "license": [
  9282. "BSD-3-Clause"
  9283. ],
  9284. "authors": [
  9285. {
  9286. "name": "Sebastian Bergmann",
  9287. "email": "sebastian@phpunit.de"
  9288. }
  9289. ],
  9290. "description": "Looks up which function or method a line of code belongs to",
  9291. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9292. "support": {
  9293. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9294. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9295. },
  9296. "funding": [
  9297. {
  9298. "url": "https://github.com/sebastianbergmann",
  9299. "type": "github"
  9300. }
  9301. ],
  9302. "time": "2020-09-28T05:30:19+00:00"
  9303. },
  9304. {
  9305. "name": "sebastian/comparator",
  9306. "version": "4.0.8",
  9307. "source": {
  9308. "type": "git",
  9309. "url": "https://github.com/sebastianbergmann/comparator.git",
  9310. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9311. },
  9312. "dist": {
  9313. "type": "zip",
  9314. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9315. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9316. "shasum": ""
  9317. },
  9318. "require": {
  9319. "php": ">=7.3",
  9320. "sebastian/diff": "^4.0",
  9321. "sebastian/exporter": "^4.0"
  9322. },
  9323. "require-dev": {
  9324. "phpunit/phpunit": "^9.3"
  9325. },
  9326. "type": "library",
  9327. "extra": {
  9328. "branch-alias": {
  9329. "dev-master": "4.0-dev"
  9330. }
  9331. },
  9332. "autoload": {
  9333. "classmap": [
  9334. "src/"
  9335. ]
  9336. },
  9337. "notification-url": "https://packagist.org/downloads/",
  9338. "license": [
  9339. "BSD-3-Clause"
  9340. ],
  9341. "authors": [
  9342. {
  9343. "name": "Sebastian Bergmann",
  9344. "email": "sebastian@phpunit.de"
  9345. },
  9346. {
  9347. "name": "Jeff Welch",
  9348. "email": "whatthejeff@gmail.com"
  9349. },
  9350. {
  9351. "name": "Volker Dusch",
  9352. "email": "github@wallbash.com"
  9353. },
  9354. {
  9355. "name": "Bernhard Schussek",
  9356. "email": "bschussek@2bepublished.at"
  9357. }
  9358. ],
  9359. "description": "Provides the functionality to compare PHP values for equality",
  9360. "homepage": "https://github.com/sebastianbergmann/comparator",
  9361. "keywords": [
  9362. "comparator",
  9363. "compare",
  9364. "equality"
  9365. ],
  9366. "support": {
  9367. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9368. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9369. },
  9370. "funding": [
  9371. {
  9372. "url": "https://github.com/sebastianbergmann",
  9373. "type": "github"
  9374. }
  9375. ],
  9376. "time": "2022-09-14T12:41:17+00:00"
  9377. },
  9378. {
  9379. "name": "sebastian/complexity",
  9380. "version": "2.0.2",
  9381. "source": {
  9382. "type": "git",
  9383. "url": "https://github.com/sebastianbergmann/complexity.git",
  9384. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9385. },
  9386. "dist": {
  9387. "type": "zip",
  9388. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9389. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9390. "shasum": ""
  9391. },
  9392. "require": {
  9393. "nikic/php-parser": "^4.7",
  9394. "php": ">=7.3"
  9395. },
  9396. "require-dev": {
  9397. "phpunit/phpunit": "^9.3"
  9398. },
  9399. "type": "library",
  9400. "extra": {
  9401. "branch-alias": {
  9402. "dev-master": "2.0-dev"
  9403. }
  9404. },
  9405. "autoload": {
  9406. "classmap": [
  9407. "src/"
  9408. ]
  9409. },
  9410. "notification-url": "https://packagist.org/downloads/",
  9411. "license": [
  9412. "BSD-3-Clause"
  9413. ],
  9414. "authors": [
  9415. {
  9416. "name": "Sebastian Bergmann",
  9417. "email": "sebastian@phpunit.de",
  9418. "role": "lead"
  9419. }
  9420. ],
  9421. "description": "Library for calculating the complexity of PHP code units",
  9422. "homepage": "https://github.com/sebastianbergmann/complexity",
  9423. "support": {
  9424. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9425. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  9426. },
  9427. "funding": [
  9428. {
  9429. "url": "https://github.com/sebastianbergmann",
  9430. "type": "github"
  9431. }
  9432. ],
  9433. "time": "2020-10-26T15:52:27+00:00"
  9434. },
  9435. {
  9436. "name": "sebastian/diff",
  9437. "version": "4.0.4",
  9438. "source": {
  9439. "type": "git",
  9440. "url": "https://github.com/sebastianbergmann/diff.git",
  9441. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  9442. },
  9443. "dist": {
  9444. "type": "zip",
  9445. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9446. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9447. "shasum": ""
  9448. },
  9449. "require": {
  9450. "php": ">=7.3"
  9451. },
  9452. "require-dev": {
  9453. "phpunit/phpunit": "^9.3",
  9454. "symfony/process": "^4.2 || ^5"
  9455. },
  9456. "type": "library",
  9457. "extra": {
  9458. "branch-alias": {
  9459. "dev-master": "4.0-dev"
  9460. }
  9461. },
  9462. "autoload": {
  9463. "classmap": [
  9464. "src/"
  9465. ]
  9466. },
  9467. "notification-url": "https://packagist.org/downloads/",
  9468. "license": [
  9469. "BSD-3-Clause"
  9470. ],
  9471. "authors": [
  9472. {
  9473. "name": "Sebastian Bergmann",
  9474. "email": "sebastian@phpunit.de"
  9475. },
  9476. {
  9477. "name": "Kore Nordmann",
  9478. "email": "mail@kore-nordmann.de"
  9479. }
  9480. ],
  9481. "description": "Diff implementation",
  9482. "homepage": "https://github.com/sebastianbergmann/diff",
  9483. "keywords": [
  9484. "diff",
  9485. "udiff",
  9486. "unidiff",
  9487. "unified diff"
  9488. ],
  9489. "support": {
  9490. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9491. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  9492. },
  9493. "funding": [
  9494. {
  9495. "url": "https://github.com/sebastianbergmann",
  9496. "type": "github"
  9497. }
  9498. ],
  9499. "time": "2020-10-26T13:10:38+00:00"
  9500. },
  9501. {
  9502. "name": "sebastian/environment",
  9503. "version": "5.1.4",
  9504. "source": {
  9505. "type": "git",
  9506. "url": "https://github.com/sebastianbergmann/environment.git",
  9507. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  9508. },
  9509. "dist": {
  9510. "type": "zip",
  9511. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  9512. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  9513. "shasum": ""
  9514. },
  9515. "require": {
  9516. "php": ">=7.3"
  9517. },
  9518. "require-dev": {
  9519. "phpunit/phpunit": "^9.3"
  9520. },
  9521. "suggest": {
  9522. "ext-posix": "*"
  9523. },
  9524. "type": "library",
  9525. "extra": {
  9526. "branch-alias": {
  9527. "dev-master": "5.1-dev"
  9528. }
  9529. },
  9530. "autoload": {
  9531. "classmap": [
  9532. "src/"
  9533. ]
  9534. },
  9535. "notification-url": "https://packagist.org/downloads/",
  9536. "license": [
  9537. "BSD-3-Clause"
  9538. ],
  9539. "authors": [
  9540. {
  9541. "name": "Sebastian Bergmann",
  9542. "email": "sebastian@phpunit.de"
  9543. }
  9544. ],
  9545. "description": "Provides functionality to handle HHVM/PHP environments",
  9546. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9547. "keywords": [
  9548. "Xdebug",
  9549. "environment",
  9550. "hhvm"
  9551. ],
  9552. "support": {
  9553. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9554. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  9555. },
  9556. "funding": [
  9557. {
  9558. "url": "https://github.com/sebastianbergmann",
  9559. "type": "github"
  9560. }
  9561. ],
  9562. "time": "2022-04-03T09:37:03+00:00"
  9563. },
  9564. {
  9565. "name": "sebastian/exporter",
  9566. "version": "4.0.5",
  9567. "source": {
  9568. "type": "git",
  9569. "url": "https://github.com/sebastianbergmann/exporter.git",
  9570. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  9571. },
  9572. "dist": {
  9573. "type": "zip",
  9574. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9575. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9576. "shasum": ""
  9577. },
  9578. "require": {
  9579. "php": ">=7.3",
  9580. "sebastian/recursion-context": "^4.0"
  9581. },
  9582. "require-dev": {
  9583. "ext-mbstring": "*",
  9584. "phpunit/phpunit": "^9.3"
  9585. },
  9586. "type": "library",
  9587. "extra": {
  9588. "branch-alias": {
  9589. "dev-master": "4.0-dev"
  9590. }
  9591. },
  9592. "autoload": {
  9593. "classmap": [
  9594. "src/"
  9595. ]
  9596. },
  9597. "notification-url": "https://packagist.org/downloads/",
  9598. "license": [
  9599. "BSD-3-Clause"
  9600. ],
  9601. "authors": [
  9602. {
  9603. "name": "Sebastian Bergmann",
  9604. "email": "sebastian@phpunit.de"
  9605. },
  9606. {
  9607. "name": "Jeff Welch",
  9608. "email": "whatthejeff@gmail.com"
  9609. },
  9610. {
  9611. "name": "Volker Dusch",
  9612. "email": "github@wallbash.com"
  9613. },
  9614. {
  9615. "name": "Adam Harvey",
  9616. "email": "aharvey@php.net"
  9617. },
  9618. {
  9619. "name": "Bernhard Schussek",
  9620. "email": "bschussek@gmail.com"
  9621. }
  9622. ],
  9623. "description": "Provides the functionality to export PHP variables for visualization",
  9624. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9625. "keywords": [
  9626. "export",
  9627. "exporter"
  9628. ],
  9629. "support": {
  9630. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9631. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  9632. },
  9633. "funding": [
  9634. {
  9635. "url": "https://github.com/sebastianbergmann",
  9636. "type": "github"
  9637. }
  9638. ],
  9639. "time": "2022-09-14T06:03:37+00:00"
  9640. },
  9641. {
  9642. "name": "sebastian/global-state",
  9643. "version": "5.0.5",
  9644. "source": {
  9645. "type": "git",
  9646. "url": "https://github.com/sebastianbergmann/global-state.git",
  9647. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  9648. },
  9649. "dist": {
  9650. "type": "zip",
  9651. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9652. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9653. "shasum": ""
  9654. },
  9655. "require": {
  9656. "php": ">=7.3",
  9657. "sebastian/object-reflector": "^2.0",
  9658. "sebastian/recursion-context": "^4.0"
  9659. },
  9660. "require-dev": {
  9661. "ext-dom": "*",
  9662. "phpunit/phpunit": "^9.3"
  9663. },
  9664. "suggest": {
  9665. "ext-uopz": "*"
  9666. },
  9667. "type": "library",
  9668. "extra": {
  9669. "branch-alias": {
  9670. "dev-master": "5.0-dev"
  9671. }
  9672. },
  9673. "autoload": {
  9674. "classmap": [
  9675. "src/"
  9676. ]
  9677. },
  9678. "notification-url": "https://packagist.org/downloads/",
  9679. "license": [
  9680. "BSD-3-Clause"
  9681. ],
  9682. "authors": [
  9683. {
  9684. "name": "Sebastian Bergmann",
  9685. "email": "sebastian@phpunit.de"
  9686. }
  9687. ],
  9688. "description": "Snapshotting of global state",
  9689. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9690. "keywords": [
  9691. "global state"
  9692. ],
  9693. "support": {
  9694. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9695. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  9696. },
  9697. "funding": [
  9698. {
  9699. "url": "https://github.com/sebastianbergmann",
  9700. "type": "github"
  9701. }
  9702. ],
  9703. "time": "2022-02-14T08:28:10+00:00"
  9704. },
  9705. {
  9706. "name": "sebastian/lines-of-code",
  9707. "version": "1.0.3",
  9708. "source": {
  9709. "type": "git",
  9710. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9711. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  9712. },
  9713. "dist": {
  9714. "type": "zip",
  9715. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9716. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9717. "shasum": ""
  9718. },
  9719. "require": {
  9720. "nikic/php-parser": "^4.6",
  9721. "php": ">=7.3"
  9722. },
  9723. "require-dev": {
  9724. "phpunit/phpunit": "^9.3"
  9725. },
  9726. "type": "library",
  9727. "extra": {
  9728. "branch-alias": {
  9729. "dev-master": "1.0-dev"
  9730. }
  9731. },
  9732. "autoload": {
  9733. "classmap": [
  9734. "src/"
  9735. ]
  9736. },
  9737. "notification-url": "https://packagist.org/downloads/",
  9738. "license": [
  9739. "BSD-3-Clause"
  9740. ],
  9741. "authors": [
  9742. {
  9743. "name": "Sebastian Bergmann",
  9744. "email": "sebastian@phpunit.de",
  9745. "role": "lead"
  9746. }
  9747. ],
  9748. "description": "Library for counting the lines of code in PHP source code",
  9749. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9750. "support": {
  9751. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9752. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  9753. },
  9754. "funding": [
  9755. {
  9756. "url": "https://github.com/sebastianbergmann",
  9757. "type": "github"
  9758. }
  9759. ],
  9760. "time": "2020-11-28T06:42:11+00:00"
  9761. },
  9762. {
  9763. "name": "sebastian/object-enumerator",
  9764. "version": "4.0.4",
  9765. "source": {
  9766. "type": "git",
  9767. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9768. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9769. },
  9770. "dist": {
  9771. "type": "zip",
  9772. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9773. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9774. "shasum": ""
  9775. },
  9776. "require": {
  9777. "php": ">=7.3",
  9778. "sebastian/object-reflector": "^2.0",
  9779. "sebastian/recursion-context": "^4.0"
  9780. },
  9781. "require-dev": {
  9782. "phpunit/phpunit": "^9.3"
  9783. },
  9784. "type": "library",
  9785. "extra": {
  9786. "branch-alias": {
  9787. "dev-master": "4.0-dev"
  9788. }
  9789. },
  9790. "autoload": {
  9791. "classmap": [
  9792. "src/"
  9793. ]
  9794. },
  9795. "notification-url": "https://packagist.org/downloads/",
  9796. "license": [
  9797. "BSD-3-Clause"
  9798. ],
  9799. "authors": [
  9800. {
  9801. "name": "Sebastian Bergmann",
  9802. "email": "sebastian@phpunit.de"
  9803. }
  9804. ],
  9805. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9806. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9807. "support": {
  9808. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9809. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9810. },
  9811. "funding": [
  9812. {
  9813. "url": "https://github.com/sebastianbergmann",
  9814. "type": "github"
  9815. }
  9816. ],
  9817. "time": "2020-10-26T13:12:34+00:00"
  9818. },
  9819. {
  9820. "name": "sebastian/object-reflector",
  9821. "version": "2.0.4",
  9822. "source": {
  9823. "type": "git",
  9824. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9825. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9826. },
  9827. "dist": {
  9828. "type": "zip",
  9829. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9830. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9831. "shasum": ""
  9832. },
  9833. "require": {
  9834. "php": ">=7.3"
  9835. },
  9836. "require-dev": {
  9837. "phpunit/phpunit": "^9.3"
  9838. },
  9839. "type": "library",
  9840. "extra": {
  9841. "branch-alias": {
  9842. "dev-master": "2.0-dev"
  9843. }
  9844. },
  9845. "autoload": {
  9846. "classmap": [
  9847. "src/"
  9848. ]
  9849. },
  9850. "notification-url": "https://packagist.org/downloads/",
  9851. "license": [
  9852. "BSD-3-Clause"
  9853. ],
  9854. "authors": [
  9855. {
  9856. "name": "Sebastian Bergmann",
  9857. "email": "sebastian@phpunit.de"
  9858. }
  9859. ],
  9860. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9861. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9862. "support": {
  9863. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9864. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9865. },
  9866. "funding": [
  9867. {
  9868. "url": "https://github.com/sebastianbergmann",
  9869. "type": "github"
  9870. }
  9871. ],
  9872. "time": "2020-10-26T13:14:26+00:00"
  9873. },
  9874. {
  9875. "name": "sebastian/recursion-context",
  9876. "version": "4.0.4",
  9877. "source": {
  9878. "type": "git",
  9879. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9880. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  9881. },
  9882. "dist": {
  9883. "type": "zip",
  9884. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  9885. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  9886. "shasum": ""
  9887. },
  9888. "require": {
  9889. "php": ">=7.3"
  9890. },
  9891. "require-dev": {
  9892. "phpunit/phpunit": "^9.3"
  9893. },
  9894. "type": "library",
  9895. "extra": {
  9896. "branch-alias": {
  9897. "dev-master": "4.0-dev"
  9898. }
  9899. },
  9900. "autoload": {
  9901. "classmap": [
  9902. "src/"
  9903. ]
  9904. },
  9905. "notification-url": "https://packagist.org/downloads/",
  9906. "license": [
  9907. "BSD-3-Clause"
  9908. ],
  9909. "authors": [
  9910. {
  9911. "name": "Sebastian Bergmann",
  9912. "email": "sebastian@phpunit.de"
  9913. },
  9914. {
  9915. "name": "Jeff Welch",
  9916. "email": "whatthejeff@gmail.com"
  9917. },
  9918. {
  9919. "name": "Adam Harvey",
  9920. "email": "aharvey@php.net"
  9921. }
  9922. ],
  9923. "description": "Provides functionality to recursively process PHP variables",
  9924. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9925. "support": {
  9926. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9927. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  9928. },
  9929. "funding": [
  9930. {
  9931. "url": "https://github.com/sebastianbergmann",
  9932. "type": "github"
  9933. }
  9934. ],
  9935. "time": "2020-10-26T13:17:30+00:00"
  9936. },
  9937. {
  9938. "name": "sebastian/resource-operations",
  9939. "version": "3.0.3",
  9940. "source": {
  9941. "type": "git",
  9942. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9943. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  9944. },
  9945. "dist": {
  9946. "type": "zip",
  9947. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9948. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9949. "shasum": ""
  9950. },
  9951. "require": {
  9952. "php": ">=7.3"
  9953. },
  9954. "require-dev": {
  9955. "phpunit/phpunit": "^9.0"
  9956. },
  9957. "type": "library",
  9958. "extra": {
  9959. "branch-alias": {
  9960. "dev-master": "3.0-dev"
  9961. }
  9962. },
  9963. "autoload": {
  9964. "classmap": [
  9965. "src/"
  9966. ]
  9967. },
  9968. "notification-url": "https://packagist.org/downloads/",
  9969. "license": [
  9970. "BSD-3-Clause"
  9971. ],
  9972. "authors": [
  9973. {
  9974. "name": "Sebastian Bergmann",
  9975. "email": "sebastian@phpunit.de"
  9976. }
  9977. ],
  9978. "description": "Provides a list of PHP built-in functions that operate on resources",
  9979. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9980. "support": {
  9981. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9982. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  9983. },
  9984. "funding": [
  9985. {
  9986. "url": "https://github.com/sebastianbergmann",
  9987. "type": "github"
  9988. }
  9989. ],
  9990. "time": "2020-09-28T06:45:17+00:00"
  9991. },
  9992. {
  9993. "name": "sebastian/type",
  9994. "version": "3.2.0",
  9995. "source": {
  9996. "type": "git",
  9997. "url": "https://github.com/sebastianbergmann/type.git",
  9998. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e"
  9999. },
  10000. "dist": {
  10001. "type": "zip",
  10002. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  10003. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  10004. "shasum": ""
  10005. },
  10006. "require": {
  10007. "php": ">=7.3"
  10008. },
  10009. "require-dev": {
  10010. "phpunit/phpunit": "^9.5"
  10011. },
  10012. "type": "library",
  10013. "extra": {
  10014. "branch-alias": {
  10015. "dev-master": "3.2-dev"
  10016. }
  10017. },
  10018. "autoload": {
  10019. "classmap": [
  10020. "src/"
  10021. ]
  10022. },
  10023. "notification-url": "https://packagist.org/downloads/",
  10024. "license": [
  10025. "BSD-3-Clause"
  10026. ],
  10027. "authors": [
  10028. {
  10029. "name": "Sebastian Bergmann",
  10030. "email": "sebastian@phpunit.de",
  10031. "role": "lead"
  10032. }
  10033. ],
  10034. "description": "Collection of value objects that represent the types of the PHP type system",
  10035. "homepage": "https://github.com/sebastianbergmann/type",
  10036. "support": {
  10037. "issues": "https://github.com/sebastianbergmann/type/issues",
  10038. "source": "https://github.com/sebastianbergmann/type/tree/3.2.0"
  10039. },
  10040. "funding": [
  10041. {
  10042. "url": "https://github.com/sebastianbergmann",
  10043. "type": "github"
  10044. }
  10045. ],
  10046. "time": "2022-09-12T14:47:03+00:00"
  10047. },
  10048. {
  10049. "name": "sebastian/version",
  10050. "version": "3.0.2",
  10051. "source": {
  10052. "type": "git",
  10053. "url": "https://github.com/sebastianbergmann/version.git",
  10054. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10055. },
  10056. "dist": {
  10057. "type": "zip",
  10058. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10059. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10060. "shasum": ""
  10061. },
  10062. "require": {
  10063. "php": ">=7.3"
  10064. },
  10065. "type": "library",
  10066. "extra": {
  10067. "branch-alias": {
  10068. "dev-master": "3.0-dev"
  10069. }
  10070. },
  10071. "autoload": {
  10072. "classmap": [
  10073. "src/"
  10074. ]
  10075. },
  10076. "notification-url": "https://packagist.org/downloads/",
  10077. "license": [
  10078. "BSD-3-Clause"
  10079. ],
  10080. "authors": [
  10081. {
  10082. "name": "Sebastian Bergmann",
  10083. "email": "sebastian@phpunit.de",
  10084. "role": "lead"
  10085. }
  10086. ],
  10087. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10088. "homepage": "https://github.com/sebastianbergmann/version",
  10089. "support": {
  10090. "issues": "https://github.com/sebastianbergmann/version/issues",
  10091. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10092. },
  10093. "funding": [
  10094. {
  10095. "url": "https://github.com/sebastianbergmann",
  10096. "type": "github"
  10097. }
  10098. ],
  10099. "time": "2020-09-28T06:39:44+00:00"
  10100. },
  10101. {
  10102. "name": "spatie/backtrace",
  10103. "version": "1.2.1",
  10104. "source": {
  10105. "type": "git",
  10106. "url": "https://github.com/spatie/backtrace.git",
  10107. "reference": "4ee7d41aa5268107906ea8a4d9ceccde136dbd5b"
  10108. },
  10109. "dist": {
  10110. "type": "zip",
  10111. "url": "https://api.github.com/repos/spatie/backtrace/zipball/4ee7d41aa5268107906ea8a4d9ceccde136dbd5b",
  10112. "reference": "4ee7d41aa5268107906ea8a4d9ceccde136dbd5b",
  10113. "shasum": ""
  10114. },
  10115. "require": {
  10116. "php": "^7.3|^8.0"
  10117. },
  10118. "require-dev": {
  10119. "ext-json": "*",
  10120. "phpunit/phpunit": "^9.3",
  10121. "symfony/var-dumper": "^5.1"
  10122. },
  10123. "type": "library",
  10124. "autoload": {
  10125. "psr-4": {
  10126. "Spatie\\Backtrace\\": "src"
  10127. }
  10128. },
  10129. "notification-url": "https://packagist.org/downloads/",
  10130. "license": [
  10131. "MIT"
  10132. ],
  10133. "authors": [
  10134. {
  10135. "name": "Freek Van de Herten",
  10136. "email": "freek@spatie.be",
  10137. "homepage": "https://spatie.be",
  10138. "role": "Developer"
  10139. }
  10140. ],
  10141. "description": "A better backtrace",
  10142. "homepage": "https://github.com/spatie/backtrace",
  10143. "keywords": [
  10144. "Backtrace",
  10145. "spatie"
  10146. ],
  10147. "support": {
  10148. "issues": "https://github.com/spatie/backtrace/issues",
  10149. "source": "https://github.com/spatie/backtrace/tree/1.2.1"
  10150. },
  10151. "funding": [
  10152. {
  10153. "url": "https://github.com/sponsors/spatie",
  10154. "type": "github"
  10155. },
  10156. {
  10157. "url": "https://spatie.be/open-source/support-us",
  10158. "type": "other"
  10159. }
  10160. ],
  10161. "time": "2021-11-09T10:57:15+00:00"
  10162. },
  10163. {
  10164. "name": "spatie/flare-client-php",
  10165. "version": "1.3.2",
  10166. "source": {
  10167. "type": "git",
  10168. "url": "https://github.com/spatie/flare-client-php.git",
  10169. "reference": "609903bd154ba3d71f5e23a91c3b431fa8f71868"
  10170. },
  10171. "dist": {
  10172. "type": "zip",
  10173. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/609903bd154ba3d71f5e23a91c3b431fa8f71868",
  10174. "reference": "609903bd154ba3d71f5e23a91c3b431fa8f71868",
  10175. "shasum": ""
  10176. },
  10177. "require": {
  10178. "illuminate/pipeline": "^8.0|^9.0",
  10179. "php": "^8.0",
  10180. "spatie/backtrace": "^1.2",
  10181. "symfony/http-foundation": "^5.0|^6.0",
  10182. "symfony/mime": "^5.2|^6.0",
  10183. "symfony/process": "^5.2|^6.0",
  10184. "symfony/var-dumper": "^5.2|^6.0"
  10185. },
  10186. "require-dev": {
  10187. "dms/phpunit-arraysubset-asserts": "^0.3.0",
  10188. "pestphp/pest": "^1.20",
  10189. "phpstan/extension-installer": "^1.1",
  10190. "phpstan/phpstan-deprecation-rules": "^1.0",
  10191. "phpstan/phpstan-phpunit": "^1.0",
  10192. "spatie/phpunit-snapshot-assertions": "^4.0"
  10193. },
  10194. "type": "library",
  10195. "extra": {
  10196. "branch-alias": {
  10197. "dev-main": "1.1.x-dev"
  10198. }
  10199. },
  10200. "autoload": {
  10201. "files": [
  10202. "src/helpers.php"
  10203. ],
  10204. "psr-4": {
  10205. "Spatie\\FlareClient\\": "src"
  10206. }
  10207. },
  10208. "notification-url": "https://packagist.org/downloads/",
  10209. "license": [
  10210. "MIT"
  10211. ],
  10212. "description": "Send PHP errors to Flare",
  10213. "homepage": "https://github.com/spatie/flare-client-php",
  10214. "keywords": [
  10215. "exception",
  10216. "flare",
  10217. "reporting",
  10218. "spatie"
  10219. ],
  10220. "support": {
  10221. "issues": "https://github.com/spatie/flare-client-php/issues",
  10222. "source": "https://github.com/spatie/flare-client-php/tree/1.3.2"
  10223. },
  10224. "funding": [
  10225. {
  10226. "url": "https://github.com/spatie",
  10227. "type": "github"
  10228. }
  10229. ],
  10230. "time": "2022-12-26T14:36:46+00:00"
  10231. },
  10232. {
  10233. "name": "spatie/ignition",
  10234. "version": "1.4.1",
  10235. "source": {
  10236. "type": "git",
  10237. "url": "https://github.com/spatie/ignition.git",
  10238. "reference": "dd3d456779108d7078baf4e43f8c2b937d9794a1"
  10239. },
  10240. "dist": {
  10241. "type": "zip",
  10242. "url": "https://api.github.com/repos/spatie/ignition/zipball/dd3d456779108d7078baf4e43f8c2b937d9794a1",
  10243. "reference": "dd3d456779108d7078baf4e43f8c2b937d9794a1",
  10244. "shasum": ""
  10245. },
  10246. "require": {
  10247. "ext-json": "*",
  10248. "ext-mbstring": "*",
  10249. "monolog/monolog": "^2.0",
  10250. "php": "^8.0",
  10251. "spatie/flare-client-php": "^1.1",
  10252. "symfony/console": "^5.4|^6.0",
  10253. "symfony/var-dumper": "^5.4|^6.0"
  10254. },
  10255. "require-dev": {
  10256. "mockery/mockery": "^1.4",
  10257. "pestphp/pest": "^1.20",
  10258. "phpstan/extension-installer": "^1.1",
  10259. "phpstan/phpstan-deprecation-rules": "^1.0",
  10260. "phpstan/phpstan-phpunit": "^1.0",
  10261. "symfony/process": "^5.4|^6.0"
  10262. },
  10263. "type": "library",
  10264. "extra": {
  10265. "branch-alias": {
  10266. "dev-main": "1.2.x-dev"
  10267. }
  10268. },
  10269. "autoload": {
  10270. "psr-4": {
  10271. "Spatie\\Ignition\\": "src"
  10272. }
  10273. },
  10274. "notification-url": "https://packagist.org/downloads/",
  10275. "license": [
  10276. "MIT"
  10277. ],
  10278. "authors": [
  10279. {
  10280. "name": "Spatie",
  10281. "email": "info@spatie.be",
  10282. "role": "Developer"
  10283. }
  10284. ],
  10285. "description": "A beautiful error page for PHP applications.",
  10286. "homepage": "https://flareapp.io/ignition",
  10287. "keywords": [
  10288. "error",
  10289. "flare",
  10290. "laravel",
  10291. "page"
  10292. ],
  10293. "support": {
  10294. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10295. "forum": "https://twitter.com/flareappio",
  10296. "issues": "https://github.com/spatie/ignition/issues",
  10297. "source": "https://github.com/spatie/ignition"
  10298. },
  10299. "funding": [
  10300. {
  10301. "url": "https://github.com/spatie",
  10302. "type": "github"
  10303. }
  10304. ],
  10305. "time": "2022-08-26T11:51:15+00:00"
  10306. },
  10307. {
  10308. "name": "spatie/laravel-ignition",
  10309. "version": "1.6.4",
  10310. "source": {
  10311. "type": "git",
  10312. "url": "https://github.com/spatie/laravel-ignition.git",
  10313. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc"
  10314. },
  10315. "dist": {
  10316. "type": "zip",
  10317. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  10318. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  10319. "shasum": ""
  10320. },
  10321. "require": {
  10322. "ext-curl": "*",
  10323. "ext-json": "*",
  10324. "ext-mbstring": "*",
  10325. "illuminate/support": "^8.77|^9.27",
  10326. "monolog/monolog": "^2.3",
  10327. "php": "^8.0",
  10328. "spatie/flare-client-php": "^1.0.1",
  10329. "spatie/ignition": "^1.4.1",
  10330. "symfony/console": "^5.0|^6.0",
  10331. "symfony/var-dumper": "^5.0|^6.0"
  10332. },
  10333. "require-dev": {
  10334. "filp/whoops": "^2.14",
  10335. "livewire/livewire": "^2.8|dev-develop",
  10336. "mockery/mockery": "^1.4",
  10337. "nunomaduro/larastan": "^1.0",
  10338. "orchestra/testbench": "^6.23|^7.0",
  10339. "pestphp/pest": "^1.20",
  10340. "phpstan/extension-installer": "^1.1",
  10341. "phpstan/phpstan-deprecation-rules": "^1.0",
  10342. "phpstan/phpstan-phpunit": "^1.0",
  10343. "spatie/laravel-ray": "^1.27"
  10344. },
  10345. "type": "library",
  10346. "extra": {
  10347. "laravel": {
  10348. "providers": [
  10349. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  10350. ],
  10351. "aliases": {
  10352. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  10353. }
  10354. }
  10355. },
  10356. "autoload": {
  10357. "files": [
  10358. "src/helpers.php"
  10359. ],
  10360. "psr-4": {
  10361. "Spatie\\LaravelIgnition\\": "src"
  10362. }
  10363. },
  10364. "notification-url": "https://packagist.org/downloads/",
  10365. "license": [
  10366. "MIT"
  10367. ],
  10368. "authors": [
  10369. {
  10370. "name": "Spatie",
  10371. "email": "info@spatie.be",
  10372. "role": "Developer"
  10373. }
  10374. ],
  10375. "description": "A beautiful error page for Laravel applications.",
  10376. "homepage": "https://flareapp.io/ignition",
  10377. "keywords": [
  10378. "error",
  10379. "flare",
  10380. "laravel",
  10381. "page"
  10382. ],
  10383. "support": {
  10384. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10385. "forum": "https://twitter.com/flareappio",
  10386. "issues": "https://github.com/spatie/laravel-ignition/issues",
  10387. "source": "https://github.com/spatie/laravel-ignition"
  10388. },
  10389. "funding": [
  10390. {
  10391. "url": "https://github.com/spatie",
  10392. "type": "github"
  10393. }
  10394. ],
  10395. "time": "2023-01-03T19:28:04+00:00"
  10396. },
  10397. {
  10398. "name": "theseer/tokenizer",
  10399. "version": "1.2.1",
  10400. "source": {
  10401. "type": "git",
  10402. "url": "https://github.com/theseer/tokenizer.git",
  10403. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10404. },
  10405. "dist": {
  10406. "type": "zip",
  10407. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10408. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10409. "shasum": ""
  10410. },
  10411. "require": {
  10412. "ext-dom": "*",
  10413. "ext-tokenizer": "*",
  10414. "ext-xmlwriter": "*",
  10415. "php": "^7.2 || ^8.0"
  10416. },
  10417. "type": "library",
  10418. "autoload": {
  10419. "classmap": [
  10420. "src/"
  10421. ]
  10422. },
  10423. "notification-url": "https://packagist.org/downloads/",
  10424. "license": [
  10425. "BSD-3-Clause"
  10426. ],
  10427. "authors": [
  10428. {
  10429. "name": "Arne Blankerts",
  10430. "email": "arne@blankerts.de",
  10431. "role": "Developer"
  10432. }
  10433. ],
  10434. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10435. "support": {
  10436. "issues": "https://github.com/theseer/tokenizer/issues",
  10437. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10438. },
  10439. "funding": [
  10440. {
  10441. "url": "https://github.com/theseer",
  10442. "type": "github"
  10443. }
  10444. ],
  10445. "time": "2021-07-28T10:34:58+00:00"
  10446. }
  10447. ],
  10448. "aliases": [],
  10449. "minimum-stability": "dev",
  10450. "stability-flags": [],
  10451. "prefer-stable": true,
  10452. "prefer-lowest": false,
  10453. "platform": {
  10454. "php": "^8.0|^7.4",
  10455. "ext-intl": "*"
  10456. },
  10457. "platform-dev": [],
  10458. "plugin-api-version": "2.1.0"
  10459. }