composer.lock 277 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745
  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": "12524947d8c752f84bc21aaaede06bfa",
  8. "packages": [
  9. {
  10. "name": "brick/math",
  11. "version": "0.9.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/brick/math.git",
  15. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  20. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-json": "*",
  25. "php": "^7.1 || ^8.0"
  26. },
  27. "require-dev": {
  28. "php-coveralls/php-coveralls": "^2.2",
  29. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  30. "vimeo/psalm": "4.9.2"
  31. },
  32. "type": "library",
  33. "autoload": {
  34. "psr-4": {
  35. "Brick\\Math\\": "src/"
  36. }
  37. },
  38. "notification-url": "https://packagist.org/downloads/",
  39. "license": [
  40. "MIT"
  41. ],
  42. "description": "Arbitrary-precision arithmetic library",
  43. "keywords": [
  44. "Arbitrary-precision",
  45. "BigInteger",
  46. "BigRational",
  47. "arithmetic",
  48. "bigdecimal",
  49. "bignum",
  50. "brick",
  51. "math"
  52. ],
  53. "support": {
  54. "issues": "https://github.com/brick/math/issues",
  55. "source": "https://github.com/brick/math/tree/0.9.3"
  56. },
  57. "funding": [
  58. {
  59. "url": "https://github.com/BenMorel",
  60. "type": "github"
  61. },
  62. {
  63. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  64. "type": "tidelift"
  65. }
  66. ],
  67. "time": "2021-08-15T20:50:18+00:00"
  68. },
  69. {
  70. "name": "dflydev/dot-access-data",
  71. "version": "v3.0.1",
  72. "source": {
  73. "type": "git",
  74. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  75. "reference": "0992cc19268b259a39e86f296da5f0677841f42c"
  76. },
  77. "dist": {
  78. "type": "zip",
  79. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c",
  80. "reference": "0992cc19268b259a39e86f296da5f0677841f42c",
  81. "shasum": ""
  82. },
  83. "require": {
  84. "php": "^7.1 || ^8.0"
  85. },
  86. "require-dev": {
  87. "phpstan/phpstan": "^0.12.42",
  88. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  89. "scrutinizer/ocular": "1.6.0",
  90. "squizlabs/php_codesniffer": "^3.5",
  91. "vimeo/psalm": "^3.14"
  92. },
  93. "type": "library",
  94. "extra": {
  95. "branch-alias": {
  96. "dev-main": "3.x-dev"
  97. }
  98. },
  99. "autoload": {
  100. "psr-4": {
  101. "Dflydev\\DotAccessData\\": "src/"
  102. }
  103. },
  104. "notification-url": "https://packagist.org/downloads/",
  105. "license": [
  106. "MIT"
  107. ],
  108. "authors": [
  109. {
  110. "name": "Dragonfly Development Inc.",
  111. "email": "info@dflydev.com",
  112. "homepage": "http://dflydev.com"
  113. },
  114. {
  115. "name": "Beau Simensen",
  116. "email": "beau@dflydev.com",
  117. "homepage": "http://beausimensen.com"
  118. },
  119. {
  120. "name": "Carlos Frutos",
  121. "email": "carlos@kiwing.it",
  122. "homepage": "https://github.com/cfrutos"
  123. },
  124. {
  125. "name": "Colin O'Dell",
  126. "email": "colinodell@gmail.com",
  127. "homepage": "https://www.colinodell.com"
  128. }
  129. ],
  130. "description": "Given a deep data structure, access data by dot notation.",
  131. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  132. "keywords": [
  133. "access",
  134. "data",
  135. "dot",
  136. "notation"
  137. ],
  138. "support": {
  139. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  140. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1"
  141. },
  142. "time": "2021-08-13T13:06:58+00:00"
  143. },
  144. {
  145. "name": "doctrine/inflector",
  146. "version": "2.0.4",
  147. "source": {
  148. "type": "git",
  149. "url": "https://github.com/doctrine/inflector.git",
  150. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  151. },
  152. "dist": {
  153. "type": "zip",
  154. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  155. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  156. "shasum": ""
  157. },
  158. "require": {
  159. "php": "^7.2 || ^8.0"
  160. },
  161. "require-dev": {
  162. "doctrine/coding-standard": "^8.2",
  163. "phpstan/phpstan": "^0.12",
  164. "phpstan/phpstan-phpunit": "^0.12",
  165. "phpstan/phpstan-strict-rules": "^0.12",
  166. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  167. "vimeo/psalm": "^4.10"
  168. },
  169. "type": "library",
  170. "autoload": {
  171. "psr-4": {
  172. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  173. }
  174. },
  175. "notification-url": "https://packagist.org/downloads/",
  176. "license": [
  177. "MIT"
  178. ],
  179. "authors": [
  180. {
  181. "name": "Guilherme Blanco",
  182. "email": "guilhermeblanco@gmail.com"
  183. },
  184. {
  185. "name": "Roman Borschel",
  186. "email": "roman@code-factory.org"
  187. },
  188. {
  189. "name": "Benjamin Eberlei",
  190. "email": "kontakt@beberlei.de"
  191. },
  192. {
  193. "name": "Jonathan Wage",
  194. "email": "jonwage@gmail.com"
  195. },
  196. {
  197. "name": "Johannes Schmitt",
  198. "email": "schmittjoh@gmail.com"
  199. }
  200. ],
  201. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  202. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  203. "keywords": [
  204. "inflection",
  205. "inflector",
  206. "lowercase",
  207. "manipulation",
  208. "php",
  209. "plural",
  210. "singular",
  211. "strings",
  212. "uppercase",
  213. "words"
  214. ],
  215. "support": {
  216. "issues": "https://github.com/doctrine/inflector/issues",
  217. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  218. },
  219. "funding": [
  220. {
  221. "url": "https://www.doctrine-project.org/sponsorship.html",
  222. "type": "custom"
  223. },
  224. {
  225. "url": "https://www.patreon.com/phpdoctrine",
  226. "type": "patreon"
  227. },
  228. {
  229. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  230. "type": "tidelift"
  231. }
  232. ],
  233. "time": "2021-10-22T20:16:43+00:00"
  234. },
  235. {
  236. "name": "doctrine/lexer",
  237. "version": "1.2.3",
  238. "source": {
  239. "type": "git",
  240. "url": "https://github.com/doctrine/lexer.git",
  241. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  242. },
  243. "dist": {
  244. "type": "zip",
  245. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  246. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  247. "shasum": ""
  248. },
  249. "require": {
  250. "php": "^7.1 || ^8.0"
  251. },
  252. "require-dev": {
  253. "doctrine/coding-standard": "^9.0",
  254. "phpstan/phpstan": "^1.3",
  255. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  256. "vimeo/psalm": "^4.11"
  257. },
  258. "type": "library",
  259. "autoload": {
  260. "psr-4": {
  261. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  262. }
  263. },
  264. "notification-url": "https://packagist.org/downloads/",
  265. "license": [
  266. "MIT"
  267. ],
  268. "authors": [
  269. {
  270. "name": "Guilherme Blanco",
  271. "email": "guilhermeblanco@gmail.com"
  272. },
  273. {
  274. "name": "Roman Borschel",
  275. "email": "roman@code-factory.org"
  276. },
  277. {
  278. "name": "Johannes Schmitt",
  279. "email": "schmittjoh@gmail.com"
  280. }
  281. ],
  282. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  283. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  284. "keywords": [
  285. "annotations",
  286. "docblock",
  287. "lexer",
  288. "parser",
  289. "php"
  290. ],
  291. "support": {
  292. "issues": "https://github.com/doctrine/lexer/issues",
  293. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  294. },
  295. "funding": [
  296. {
  297. "url": "https://www.doctrine-project.org/sponsorship.html",
  298. "type": "custom"
  299. },
  300. {
  301. "url": "https://www.patreon.com/phpdoctrine",
  302. "type": "patreon"
  303. },
  304. {
  305. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  306. "type": "tidelift"
  307. }
  308. ],
  309. "time": "2022-02-28T11:07:21+00:00"
  310. },
  311. {
  312. "name": "dragonmantank/cron-expression",
  313. "version": "v3.3.1",
  314. "source": {
  315. "type": "git",
  316. "url": "https://github.com/dragonmantank/cron-expression.git",
  317. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa"
  318. },
  319. "dist": {
  320. "type": "zip",
  321. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  322. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  323. "shasum": ""
  324. },
  325. "require": {
  326. "php": "^7.2|^8.0",
  327. "webmozart/assert": "^1.0"
  328. },
  329. "replace": {
  330. "mtdowling/cron-expression": "^1.0"
  331. },
  332. "require-dev": {
  333. "phpstan/extension-installer": "^1.0",
  334. "phpstan/phpstan": "^1.0",
  335. "phpstan/phpstan-webmozart-assert": "^1.0",
  336. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  337. },
  338. "type": "library",
  339. "autoload": {
  340. "psr-4": {
  341. "Cron\\": "src/Cron/"
  342. }
  343. },
  344. "notification-url": "https://packagist.org/downloads/",
  345. "license": [
  346. "MIT"
  347. ],
  348. "authors": [
  349. {
  350. "name": "Chris Tankersley",
  351. "email": "chris@ctankersley.com",
  352. "homepage": "https://github.com/dragonmantank"
  353. }
  354. ],
  355. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  356. "keywords": [
  357. "cron",
  358. "schedule"
  359. ],
  360. "support": {
  361. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  362. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.1"
  363. },
  364. "funding": [
  365. {
  366. "url": "https://github.com/dragonmantank",
  367. "type": "github"
  368. }
  369. ],
  370. "time": "2022-01-18T15:43:28+00:00"
  371. },
  372. {
  373. "name": "egulias/email-validator",
  374. "version": "3.1.2",
  375. "source": {
  376. "type": "git",
  377. "url": "https://github.com/egulias/EmailValidator.git",
  378. "reference": "ee0db30118f661fb166bcffbf5d82032df484697"
  379. },
  380. "dist": {
  381. "type": "zip",
  382. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ee0db30118f661fb166bcffbf5d82032df484697",
  383. "reference": "ee0db30118f661fb166bcffbf5d82032df484697",
  384. "shasum": ""
  385. },
  386. "require": {
  387. "doctrine/lexer": "^1.2",
  388. "php": ">=7.2",
  389. "symfony/polyfill-intl-idn": "^1.15"
  390. },
  391. "require-dev": {
  392. "php-coveralls/php-coveralls": "^2.2",
  393. "phpunit/phpunit": "^8.5.8|^9.3.3",
  394. "vimeo/psalm": "^4"
  395. },
  396. "suggest": {
  397. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  398. },
  399. "type": "library",
  400. "extra": {
  401. "branch-alias": {
  402. "dev-master": "3.0.x-dev"
  403. }
  404. },
  405. "autoload": {
  406. "psr-4": {
  407. "Egulias\\EmailValidator\\": "src"
  408. }
  409. },
  410. "notification-url": "https://packagist.org/downloads/",
  411. "license": [
  412. "MIT"
  413. ],
  414. "authors": [
  415. {
  416. "name": "Eduardo Gulias Davis"
  417. }
  418. ],
  419. "description": "A library for validating emails against several RFCs",
  420. "homepage": "https://github.com/egulias/EmailValidator",
  421. "keywords": [
  422. "email",
  423. "emailvalidation",
  424. "emailvalidator",
  425. "validation",
  426. "validator"
  427. ],
  428. "support": {
  429. "issues": "https://github.com/egulias/EmailValidator/issues",
  430. "source": "https://github.com/egulias/EmailValidator/tree/3.1.2"
  431. },
  432. "funding": [
  433. {
  434. "url": "https://github.com/egulias",
  435. "type": "github"
  436. }
  437. ],
  438. "time": "2021-10-11T09:18:27+00:00"
  439. },
  440. {
  441. "name": "fruitcake/php-cors",
  442. "version": "v1.2.0",
  443. "source": {
  444. "type": "git",
  445. "url": "https://github.com/fruitcake/php-cors.git",
  446. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  447. },
  448. "dist": {
  449. "type": "zip",
  450. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  451. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  452. "shasum": ""
  453. },
  454. "require": {
  455. "php": "^7.4|^8.0",
  456. "symfony/http-foundation": "^4.4|^5.4|^6"
  457. },
  458. "require-dev": {
  459. "phpstan/phpstan": "^1.4",
  460. "phpunit/phpunit": "^9",
  461. "squizlabs/php_codesniffer": "^3.5"
  462. },
  463. "type": "library",
  464. "extra": {
  465. "branch-alias": {
  466. "dev-main": "1.1-dev"
  467. }
  468. },
  469. "autoload": {
  470. "psr-4": {
  471. "Fruitcake\\Cors\\": "src/"
  472. }
  473. },
  474. "notification-url": "https://packagist.org/downloads/",
  475. "license": [
  476. "MIT"
  477. ],
  478. "authors": [
  479. {
  480. "name": "Fruitcake",
  481. "homepage": "https://fruitcake.nl"
  482. },
  483. {
  484. "name": "Barryvdh",
  485. "email": "barryvdh@gmail.com"
  486. }
  487. ],
  488. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  489. "homepage": "https://github.com/fruitcake/php-cors",
  490. "keywords": [
  491. "cors",
  492. "laravel",
  493. "symfony"
  494. ],
  495. "support": {
  496. "issues": "https://github.com/fruitcake/php-cors/issues",
  497. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  498. },
  499. "funding": [
  500. {
  501. "url": "https://fruitcake.nl",
  502. "type": "custom"
  503. },
  504. {
  505. "url": "https://github.com/barryvdh",
  506. "type": "github"
  507. }
  508. ],
  509. "time": "2022-02-20T15:07:15+00:00"
  510. },
  511. {
  512. "name": "graham-campbell/result-type",
  513. "version": "v1.0.4",
  514. "source": {
  515. "type": "git",
  516. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  517. "reference": "0690bde05318336c7221785f2a932467f98b64ca"
  518. },
  519. "dist": {
  520. "type": "zip",
  521. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/0690bde05318336c7221785f2a932467f98b64ca",
  522. "reference": "0690bde05318336c7221785f2a932467f98b64ca",
  523. "shasum": ""
  524. },
  525. "require": {
  526. "php": "^7.0 || ^8.0",
  527. "phpoption/phpoption": "^1.8"
  528. },
  529. "require-dev": {
  530. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  531. },
  532. "type": "library",
  533. "autoload": {
  534. "psr-4": {
  535. "GrahamCampbell\\ResultType\\": "src/"
  536. }
  537. },
  538. "notification-url": "https://packagist.org/downloads/",
  539. "license": [
  540. "MIT"
  541. ],
  542. "authors": [
  543. {
  544. "name": "Graham Campbell",
  545. "email": "hello@gjcampbell.co.uk",
  546. "homepage": "https://github.com/GrahamCampbell"
  547. }
  548. ],
  549. "description": "An Implementation Of The Result Type",
  550. "keywords": [
  551. "Graham Campbell",
  552. "GrahamCampbell",
  553. "Result Type",
  554. "Result-Type",
  555. "result"
  556. ],
  557. "support": {
  558. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  559. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.4"
  560. },
  561. "funding": [
  562. {
  563. "url": "https://github.com/GrahamCampbell",
  564. "type": "github"
  565. },
  566. {
  567. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  568. "type": "tidelift"
  569. }
  570. ],
  571. "time": "2021-11-21T21:41:47+00:00"
  572. },
  573. {
  574. "name": "guzzlehttp/guzzle",
  575. "version": "7.4.2",
  576. "source": {
  577. "type": "git",
  578. "url": "https://github.com/guzzle/guzzle.git",
  579. "reference": "ac1ec1cd9b5624694c3a40be801d94137afb12b4"
  580. },
  581. "dist": {
  582. "type": "zip",
  583. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/ac1ec1cd9b5624694c3a40be801d94137afb12b4",
  584. "reference": "ac1ec1cd9b5624694c3a40be801d94137afb12b4",
  585. "shasum": ""
  586. },
  587. "require": {
  588. "ext-json": "*",
  589. "guzzlehttp/promises": "^1.5",
  590. "guzzlehttp/psr7": "^1.8.3 || ^2.1",
  591. "php": "^7.2.5 || ^8.0",
  592. "psr/http-client": "^1.0",
  593. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  594. },
  595. "provide": {
  596. "psr/http-client-implementation": "1.0"
  597. },
  598. "require-dev": {
  599. "bamarni/composer-bin-plugin": "^1.4.1",
  600. "ext-curl": "*",
  601. "php-http/client-integration-tests": "^3.0",
  602. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  603. "psr/log": "^1.1 || ^2.0 || ^3.0"
  604. },
  605. "suggest": {
  606. "ext-curl": "Required for CURL handler support",
  607. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  608. "psr/log": "Required for using the Log middleware"
  609. },
  610. "type": "library",
  611. "extra": {
  612. "branch-alias": {
  613. "dev-master": "7.4-dev"
  614. }
  615. },
  616. "autoload": {
  617. "files": [
  618. "src/functions_include.php"
  619. ],
  620. "psr-4": {
  621. "GuzzleHttp\\": "src/"
  622. }
  623. },
  624. "notification-url": "https://packagist.org/downloads/",
  625. "license": [
  626. "MIT"
  627. ],
  628. "authors": [
  629. {
  630. "name": "Graham Campbell",
  631. "email": "hello@gjcampbell.co.uk",
  632. "homepage": "https://github.com/GrahamCampbell"
  633. },
  634. {
  635. "name": "Michael Dowling",
  636. "email": "mtdowling@gmail.com",
  637. "homepage": "https://github.com/mtdowling"
  638. },
  639. {
  640. "name": "Jeremy Lindblom",
  641. "email": "jeremeamia@gmail.com",
  642. "homepage": "https://github.com/jeremeamia"
  643. },
  644. {
  645. "name": "George Mponos",
  646. "email": "gmponos@gmail.com",
  647. "homepage": "https://github.com/gmponos"
  648. },
  649. {
  650. "name": "Tobias Nyholm",
  651. "email": "tobias.nyholm@gmail.com",
  652. "homepage": "https://github.com/Nyholm"
  653. },
  654. {
  655. "name": "Márk Sági-Kazár",
  656. "email": "mark.sagikazar@gmail.com",
  657. "homepage": "https://github.com/sagikazarmark"
  658. },
  659. {
  660. "name": "Tobias Schultze",
  661. "email": "webmaster@tubo-world.de",
  662. "homepage": "https://github.com/Tobion"
  663. }
  664. ],
  665. "description": "Guzzle is a PHP HTTP client library",
  666. "keywords": [
  667. "client",
  668. "curl",
  669. "framework",
  670. "http",
  671. "http client",
  672. "psr-18",
  673. "psr-7",
  674. "rest",
  675. "web service"
  676. ],
  677. "support": {
  678. "issues": "https://github.com/guzzle/guzzle/issues",
  679. "source": "https://github.com/guzzle/guzzle/tree/7.4.2"
  680. },
  681. "funding": [
  682. {
  683. "url": "https://github.com/GrahamCampbell",
  684. "type": "github"
  685. },
  686. {
  687. "url": "https://github.com/Nyholm",
  688. "type": "github"
  689. },
  690. {
  691. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  692. "type": "tidelift"
  693. }
  694. ],
  695. "time": "2022-03-20T14:16:28+00:00"
  696. },
  697. {
  698. "name": "guzzlehttp/promises",
  699. "version": "1.5.1",
  700. "source": {
  701. "type": "git",
  702. "url": "https://github.com/guzzle/promises.git",
  703. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  704. },
  705. "dist": {
  706. "type": "zip",
  707. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  708. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  709. "shasum": ""
  710. },
  711. "require": {
  712. "php": ">=5.5"
  713. },
  714. "require-dev": {
  715. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  716. },
  717. "type": "library",
  718. "extra": {
  719. "branch-alias": {
  720. "dev-master": "1.5-dev"
  721. }
  722. },
  723. "autoload": {
  724. "files": [
  725. "src/functions_include.php"
  726. ],
  727. "psr-4": {
  728. "GuzzleHttp\\Promise\\": "src/"
  729. }
  730. },
  731. "notification-url": "https://packagist.org/downloads/",
  732. "license": [
  733. "MIT"
  734. ],
  735. "authors": [
  736. {
  737. "name": "Graham Campbell",
  738. "email": "hello@gjcampbell.co.uk",
  739. "homepage": "https://github.com/GrahamCampbell"
  740. },
  741. {
  742. "name": "Michael Dowling",
  743. "email": "mtdowling@gmail.com",
  744. "homepage": "https://github.com/mtdowling"
  745. },
  746. {
  747. "name": "Tobias Nyholm",
  748. "email": "tobias.nyholm@gmail.com",
  749. "homepage": "https://github.com/Nyholm"
  750. },
  751. {
  752. "name": "Tobias Schultze",
  753. "email": "webmaster@tubo-world.de",
  754. "homepage": "https://github.com/Tobion"
  755. }
  756. ],
  757. "description": "Guzzle promises library",
  758. "keywords": [
  759. "promise"
  760. ],
  761. "support": {
  762. "issues": "https://github.com/guzzle/promises/issues",
  763. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  764. },
  765. "funding": [
  766. {
  767. "url": "https://github.com/GrahamCampbell",
  768. "type": "github"
  769. },
  770. {
  771. "url": "https://github.com/Nyholm",
  772. "type": "github"
  773. },
  774. {
  775. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  776. "type": "tidelift"
  777. }
  778. ],
  779. "time": "2021-10-22T20:56:57+00:00"
  780. },
  781. {
  782. "name": "guzzlehttp/psr7",
  783. "version": "2.2.1",
  784. "source": {
  785. "type": "git",
  786. "url": "https://github.com/guzzle/psr7.git",
  787. "reference": "c94a94f120803a18554c1805ef2e539f8285f9a2"
  788. },
  789. "dist": {
  790. "type": "zip",
  791. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c94a94f120803a18554c1805ef2e539f8285f9a2",
  792. "reference": "c94a94f120803a18554c1805ef2e539f8285f9a2",
  793. "shasum": ""
  794. },
  795. "require": {
  796. "php": "^7.2.5 || ^8.0",
  797. "psr/http-factory": "^1.0",
  798. "psr/http-message": "^1.0",
  799. "ralouphie/getallheaders": "^3.0"
  800. },
  801. "provide": {
  802. "psr/http-factory-implementation": "1.0",
  803. "psr/http-message-implementation": "1.0"
  804. },
  805. "require-dev": {
  806. "bamarni/composer-bin-plugin": "^1.4.1",
  807. "http-interop/http-factory-tests": "^0.9",
  808. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  809. },
  810. "suggest": {
  811. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  812. },
  813. "type": "library",
  814. "extra": {
  815. "branch-alias": {
  816. "dev-master": "2.2-dev"
  817. }
  818. },
  819. "autoload": {
  820. "psr-4": {
  821. "GuzzleHttp\\Psr7\\": "src/"
  822. }
  823. },
  824. "notification-url": "https://packagist.org/downloads/",
  825. "license": [
  826. "MIT"
  827. ],
  828. "authors": [
  829. {
  830. "name": "Graham Campbell",
  831. "email": "hello@gjcampbell.co.uk",
  832. "homepage": "https://github.com/GrahamCampbell"
  833. },
  834. {
  835. "name": "Michael Dowling",
  836. "email": "mtdowling@gmail.com",
  837. "homepage": "https://github.com/mtdowling"
  838. },
  839. {
  840. "name": "George Mponos",
  841. "email": "gmponos@gmail.com",
  842. "homepage": "https://github.com/gmponos"
  843. },
  844. {
  845. "name": "Tobias Nyholm",
  846. "email": "tobias.nyholm@gmail.com",
  847. "homepage": "https://github.com/Nyholm"
  848. },
  849. {
  850. "name": "Márk Sági-Kazár",
  851. "email": "mark.sagikazar@gmail.com",
  852. "homepage": "https://github.com/sagikazarmark"
  853. },
  854. {
  855. "name": "Tobias Schultze",
  856. "email": "webmaster@tubo-world.de",
  857. "homepage": "https://github.com/Tobion"
  858. },
  859. {
  860. "name": "Márk Sági-Kazár",
  861. "email": "mark.sagikazar@gmail.com",
  862. "homepage": "https://sagikazarmark.hu"
  863. }
  864. ],
  865. "description": "PSR-7 message implementation that also provides common utility methods",
  866. "keywords": [
  867. "http",
  868. "message",
  869. "psr-7",
  870. "request",
  871. "response",
  872. "stream",
  873. "uri",
  874. "url"
  875. ],
  876. "support": {
  877. "issues": "https://github.com/guzzle/psr7/issues",
  878. "source": "https://github.com/guzzle/psr7/tree/2.2.1"
  879. },
  880. "funding": [
  881. {
  882. "url": "https://github.com/GrahamCampbell",
  883. "type": "github"
  884. },
  885. {
  886. "url": "https://github.com/Nyholm",
  887. "type": "github"
  888. },
  889. {
  890. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  891. "type": "tidelift"
  892. }
  893. ],
  894. "time": "2022-03-20T21:55:58+00:00"
  895. },
  896. {
  897. "name": "laravel/framework",
  898. "version": "v9.8.1",
  899. "source": {
  900. "type": "git",
  901. "url": "https://github.com/laravel/framework.git",
  902. "reference": "9f468689964ac80b674a2fe71a56baa7e9e20493"
  903. },
  904. "dist": {
  905. "type": "zip",
  906. "url": "https://api.github.com/repos/laravel/framework/zipball/9f468689964ac80b674a2fe71a56baa7e9e20493",
  907. "reference": "9f468689964ac80b674a2fe71a56baa7e9e20493",
  908. "shasum": ""
  909. },
  910. "require": {
  911. "doctrine/inflector": "^2.0",
  912. "dragonmantank/cron-expression": "^3.1",
  913. "egulias/email-validator": "^3.1",
  914. "ext-mbstring": "*",
  915. "ext-openssl": "*",
  916. "fruitcake/php-cors": "^1.2",
  917. "laravel/serializable-closure": "^1.0",
  918. "league/commonmark": "^2.2",
  919. "league/flysystem": "^3.0",
  920. "monolog/monolog": "^2.0",
  921. "nesbot/carbon": "^2.53.1",
  922. "php": "^8.0.2",
  923. "psr/container": "^1.1.1|^2.0.1",
  924. "psr/log": "^1.0|^2.0|^3.0",
  925. "psr/simple-cache": "^1.0|^2.0|^3.0",
  926. "ramsey/uuid": "^4.2.2",
  927. "symfony/console": "^6.0",
  928. "symfony/error-handler": "^6.0",
  929. "symfony/finder": "^6.0",
  930. "symfony/http-foundation": "^6.0",
  931. "symfony/http-kernel": "^6.0",
  932. "symfony/mailer": "^6.0",
  933. "symfony/mime": "^6.0",
  934. "symfony/process": "^6.0",
  935. "symfony/routing": "^6.0",
  936. "symfony/var-dumper": "^6.0",
  937. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  938. "vlucas/phpdotenv": "^5.4.1",
  939. "voku/portable-ascii": "^2.0"
  940. },
  941. "conflict": {
  942. "tightenco/collect": "<5.5.33"
  943. },
  944. "provide": {
  945. "psr/container-implementation": "1.1|2.0",
  946. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  947. },
  948. "replace": {
  949. "illuminate/auth": "self.version",
  950. "illuminate/broadcasting": "self.version",
  951. "illuminate/bus": "self.version",
  952. "illuminate/cache": "self.version",
  953. "illuminate/collections": "self.version",
  954. "illuminate/conditionable": "self.version",
  955. "illuminate/config": "self.version",
  956. "illuminate/console": "self.version",
  957. "illuminate/container": "self.version",
  958. "illuminate/contracts": "self.version",
  959. "illuminate/cookie": "self.version",
  960. "illuminate/database": "self.version",
  961. "illuminate/encryption": "self.version",
  962. "illuminate/events": "self.version",
  963. "illuminate/filesystem": "self.version",
  964. "illuminate/hashing": "self.version",
  965. "illuminate/http": "self.version",
  966. "illuminate/log": "self.version",
  967. "illuminate/macroable": "self.version",
  968. "illuminate/mail": "self.version",
  969. "illuminate/notifications": "self.version",
  970. "illuminate/pagination": "self.version",
  971. "illuminate/pipeline": "self.version",
  972. "illuminate/queue": "self.version",
  973. "illuminate/redis": "self.version",
  974. "illuminate/routing": "self.version",
  975. "illuminate/session": "self.version",
  976. "illuminate/support": "self.version",
  977. "illuminate/testing": "self.version",
  978. "illuminate/translation": "self.version",
  979. "illuminate/validation": "self.version",
  980. "illuminate/view": "self.version"
  981. },
  982. "require-dev": {
  983. "aws/aws-sdk-php": "^3.198.1",
  984. "doctrine/dbal": "^2.13.3|^3.1.4",
  985. "fakerphp/faker": "^1.9.2",
  986. "guzzlehttp/guzzle": "^7.2",
  987. "league/flysystem-aws-s3-v3": "^3.0",
  988. "league/flysystem-ftp": "^3.0",
  989. "league/flysystem-sftp-v3": "^3.0",
  990. "mockery/mockery": "^1.4.4",
  991. "orchestra/testbench-core": "^7.1",
  992. "pda/pheanstalk": "^4.0",
  993. "phpstan/phpstan": "^1.4.7",
  994. "phpunit/phpunit": "^9.5.8",
  995. "predis/predis": "^1.1.9",
  996. "symfony/cache": "^6.0"
  997. },
  998. "suggest": {
  999. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1000. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.198.1).",
  1001. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1002. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1003. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1004. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1005. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1006. "ext-memcached": "Required to use the memcache cache driver.",
  1007. "ext-pcntl": "Required to use all features of the queue worker.",
  1008. "ext-posix": "Required to use all features of the queue worker.",
  1009. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1010. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1011. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1012. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.2).",
  1013. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1014. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  1015. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  1016. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  1017. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1018. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1019. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1020. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).",
  1021. "predis/predis": "Required to use the predis connector (^1.1.9).",
  1022. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1023. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  1024. "symfony/cache": "Required to PSR-6 cache bridge (^6.0).",
  1025. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).",
  1026. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
  1027. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
  1028. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
  1029. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  1030. },
  1031. "type": "library",
  1032. "extra": {
  1033. "branch-alias": {
  1034. "dev-master": "9.x-dev"
  1035. }
  1036. },
  1037. "autoload": {
  1038. "files": [
  1039. "src/Illuminate/Collections/helpers.php",
  1040. "src/Illuminate/Events/functions.php",
  1041. "src/Illuminate/Foundation/helpers.php",
  1042. "src/Illuminate/Support/helpers.php"
  1043. ],
  1044. "psr-4": {
  1045. "Illuminate\\": "src/Illuminate/",
  1046. "Illuminate\\Support\\": [
  1047. "src/Illuminate/Macroable/",
  1048. "src/Illuminate/Collections/",
  1049. "src/Illuminate/Conditionable/"
  1050. ]
  1051. }
  1052. },
  1053. "notification-url": "https://packagist.org/downloads/",
  1054. "license": [
  1055. "MIT"
  1056. ],
  1057. "authors": [
  1058. {
  1059. "name": "Taylor Otwell",
  1060. "email": "taylor@laravel.com"
  1061. }
  1062. ],
  1063. "description": "The Laravel Framework.",
  1064. "homepage": "https://laravel.com",
  1065. "keywords": [
  1066. "framework",
  1067. "laravel"
  1068. ],
  1069. "support": {
  1070. "issues": "https://github.com/laravel/framework/issues",
  1071. "source": "https://github.com/laravel/framework"
  1072. },
  1073. "time": "2022-04-12T15:43:03+00:00"
  1074. },
  1075. {
  1076. "name": "laravel/sanctum",
  1077. "version": "v2.15.1",
  1078. "source": {
  1079. "type": "git",
  1080. "url": "https://github.com/laravel/sanctum.git",
  1081. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473"
  1082. },
  1083. "dist": {
  1084. "type": "zip",
  1085. "url": "https://api.github.com/repos/laravel/sanctum/zipball/31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  1086. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  1087. "shasum": ""
  1088. },
  1089. "require": {
  1090. "ext-json": "*",
  1091. "illuminate/console": "^6.9|^7.0|^8.0|^9.0",
  1092. "illuminate/contracts": "^6.9|^7.0|^8.0|^9.0",
  1093. "illuminate/database": "^6.9|^7.0|^8.0|^9.0",
  1094. "illuminate/support": "^6.9|^7.0|^8.0|^9.0",
  1095. "php": "^7.2|^8.0"
  1096. },
  1097. "require-dev": {
  1098. "mockery/mockery": "^1.0",
  1099. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  1100. "phpunit/phpunit": "^8.0|^9.3"
  1101. },
  1102. "type": "library",
  1103. "extra": {
  1104. "branch-alias": {
  1105. "dev-master": "2.x-dev"
  1106. },
  1107. "laravel": {
  1108. "providers": [
  1109. "Laravel\\Sanctum\\SanctumServiceProvider"
  1110. ]
  1111. }
  1112. },
  1113. "autoload": {
  1114. "psr-4": {
  1115. "Laravel\\Sanctum\\": "src/"
  1116. }
  1117. },
  1118. "notification-url": "https://packagist.org/downloads/",
  1119. "license": [
  1120. "MIT"
  1121. ],
  1122. "authors": [
  1123. {
  1124. "name": "Taylor Otwell",
  1125. "email": "taylor@laravel.com"
  1126. }
  1127. ],
  1128. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  1129. "keywords": [
  1130. "auth",
  1131. "laravel",
  1132. "sanctum"
  1133. ],
  1134. "support": {
  1135. "issues": "https://github.com/laravel/sanctum/issues",
  1136. "source": "https://github.com/laravel/sanctum"
  1137. },
  1138. "time": "2022-04-08T13:39:49+00:00"
  1139. },
  1140. {
  1141. "name": "laravel/serializable-closure",
  1142. "version": "v1.1.1",
  1143. "source": {
  1144. "type": "git",
  1145. "url": "https://github.com/laravel/serializable-closure.git",
  1146. "reference": "9e4b005daa20b0c161f3845040046dc9ddc1d74e"
  1147. },
  1148. "dist": {
  1149. "type": "zip",
  1150. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/9e4b005daa20b0c161f3845040046dc9ddc1d74e",
  1151. "reference": "9e4b005daa20b0c161f3845040046dc9ddc1d74e",
  1152. "shasum": ""
  1153. },
  1154. "require": {
  1155. "php": "^7.3|^8.0"
  1156. },
  1157. "require-dev": {
  1158. "pestphp/pest": "^1.18",
  1159. "phpstan/phpstan": "^0.12.98",
  1160. "symfony/var-dumper": "^5.3"
  1161. },
  1162. "type": "library",
  1163. "extra": {
  1164. "branch-alias": {
  1165. "dev-master": "1.x-dev"
  1166. }
  1167. },
  1168. "autoload": {
  1169. "psr-4": {
  1170. "Laravel\\SerializableClosure\\": "src/"
  1171. }
  1172. },
  1173. "notification-url": "https://packagist.org/downloads/",
  1174. "license": [
  1175. "MIT"
  1176. ],
  1177. "authors": [
  1178. {
  1179. "name": "Taylor Otwell",
  1180. "email": "taylor@laravel.com"
  1181. },
  1182. {
  1183. "name": "Nuno Maduro",
  1184. "email": "nuno@laravel.com"
  1185. }
  1186. ],
  1187. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1188. "keywords": [
  1189. "closure",
  1190. "laravel",
  1191. "serializable"
  1192. ],
  1193. "support": {
  1194. "issues": "https://github.com/laravel/serializable-closure/issues",
  1195. "source": "https://github.com/laravel/serializable-closure"
  1196. },
  1197. "time": "2022-02-11T19:23:53+00:00"
  1198. },
  1199. {
  1200. "name": "laravel/tinker",
  1201. "version": "v2.7.2",
  1202. "source": {
  1203. "type": "git",
  1204. "url": "https://github.com/laravel/tinker.git",
  1205. "reference": "dff39b661e827dae6e092412f976658df82dbac5"
  1206. },
  1207. "dist": {
  1208. "type": "zip",
  1209. "url": "https://api.github.com/repos/laravel/tinker/zipball/dff39b661e827dae6e092412f976658df82dbac5",
  1210. "reference": "dff39b661e827dae6e092412f976658df82dbac5",
  1211. "shasum": ""
  1212. },
  1213. "require": {
  1214. "illuminate/console": "^6.0|^7.0|^8.0|^9.0",
  1215. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  1216. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  1217. "php": "^7.2.5|^8.0",
  1218. "psy/psysh": "^0.10.4|^0.11.1",
  1219. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  1220. },
  1221. "require-dev": {
  1222. "mockery/mockery": "~1.3.3|^1.4.2",
  1223. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1224. },
  1225. "suggest": {
  1226. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)."
  1227. },
  1228. "type": "library",
  1229. "extra": {
  1230. "branch-alias": {
  1231. "dev-master": "2.x-dev"
  1232. },
  1233. "laravel": {
  1234. "providers": [
  1235. "Laravel\\Tinker\\TinkerServiceProvider"
  1236. ]
  1237. }
  1238. },
  1239. "autoload": {
  1240. "psr-4": {
  1241. "Laravel\\Tinker\\": "src/"
  1242. }
  1243. },
  1244. "notification-url": "https://packagist.org/downloads/",
  1245. "license": [
  1246. "MIT"
  1247. ],
  1248. "authors": [
  1249. {
  1250. "name": "Taylor Otwell",
  1251. "email": "taylor@laravel.com"
  1252. }
  1253. ],
  1254. "description": "Powerful REPL for the Laravel framework.",
  1255. "keywords": [
  1256. "REPL",
  1257. "Tinker",
  1258. "laravel",
  1259. "psysh"
  1260. ],
  1261. "support": {
  1262. "issues": "https://github.com/laravel/tinker/issues",
  1263. "source": "https://github.com/laravel/tinker/tree/v2.7.2"
  1264. },
  1265. "time": "2022-03-23T12:38:24+00:00"
  1266. },
  1267. {
  1268. "name": "league/commonmark",
  1269. "version": "2.3.0",
  1270. "source": {
  1271. "type": "git",
  1272. "url": "https://github.com/thephpleague/commonmark.git",
  1273. "reference": "32a49eb2b38fe5e5c417ab748a45d0beaab97955"
  1274. },
  1275. "dist": {
  1276. "type": "zip",
  1277. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/32a49eb2b38fe5e5c417ab748a45d0beaab97955",
  1278. "reference": "32a49eb2b38fe5e5c417ab748a45d0beaab97955",
  1279. "shasum": ""
  1280. },
  1281. "require": {
  1282. "ext-mbstring": "*",
  1283. "league/config": "^1.1.1",
  1284. "php": "^7.4 || ^8.0",
  1285. "psr/event-dispatcher": "^1.0",
  1286. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1287. "symfony/polyfill-php80": "^1.16"
  1288. },
  1289. "require-dev": {
  1290. "cebe/markdown": "^1.0",
  1291. "commonmark/cmark": "0.30.0",
  1292. "commonmark/commonmark.js": "0.30.0",
  1293. "composer/package-versions-deprecated": "^1.8",
  1294. "embed/embed": "^4.4",
  1295. "erusev/parsedown": "^1.0",
  1296. "ext-json": "*",
  1297. "github/gfm": "0.29.0",
  1298. "michelf/php-markdown": "^1.4",
  1299. "nyholm/psr7": "^1.5",
  1300. "phpstan/phpstan": "^0.12.88 || ^1.0.0",
  1301. "phpunit/phpunit": "^9.5.5",
  1302. "scrutinizer/ocular": "^1.8.1",
  1303. "symfony/finder": "^5.3",
  1304. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1305. "unleashedtech/php-coding-standard": "^3.1",
  1306. "vimeo/psalm": "^4.7.3"
  1307. },
  1308. "suggest": {
  1309. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1310. },
  1311. "type": "library",
  1312. "extra": {
  1313. "branch-alias": {
  1314. "dev-main": "2.4-dev"
  1315. }
  1316. },
  1317. "autoload": {
  1318. "psr-4": {
  1319. "League\\CommonMark\\": "src"
  1320. }
  1321. },
  1322. "notification-url": "https://packagist.org/downloads/",
  1323. "license": [
  1324. "BSD-3-Clause"
  1325. ],
  1326. "authors": [
  1327. {
  1328. "name": "Colin O'Dell",
  1329. "email": "colinodell@gmail.com",
  1330. "homepage": "https://www.colinodell.com",
  1331. "role": "Lead Developer"
  1332. }
  1333. ],
  1334. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1335. "homepage": "https://commonmark.thephpleague.com",
  1336. "keywords": [
  1337. "commonmark",
  1338. "flavored",
  1339. "gfm",
  1340. "github",
  1341. "github-flavored",
  1342. "markdown",
  1343. "md",
  1344. "parser"
  1345. ],
  1346. "support": {
  1347. "docs": "https://commonmark.thephpleague.com/",
  1348. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1349. "issues": "https://github.com/thephpleague/commonmark/issues",
  1350. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1351. "source": "https://github.com/thephpleague/commonmark"
  1352. },
  1353. "funding": [
  1354. {
  1355. "url": "https://www.colinodell.com/sponsor",
  1356. "type": "custom"
  1357. },
  1358. {
  1359. "url": "https://www.paypal.me/colinpodell/10.00",
  1360. "type": "custom"
  1361. },
  1362. {
  1363. "url": "https://github.com/colinodell",
  1364. "type": "github"
  1365. },
  1366. {
  1367. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1368. "type": "tidelift"
  1369. }
  1370. ],
  1371. "time": "2022-04-07T22:37:05+00:00"
  1372. },
  1373. {
  1374. "name": "league/config",
  1375. "version": "v1.1.1",
  1376. "source": {
  1377. "type": "git",
  1378. "url": "https://github.com/thephpleague/config.git",
  1379. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e"
  1380. },
  1381. "dist": {
  1382. "type": "zip",
  1383. "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  1384. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  1385. "shasum": ""
  1386. },
  1387. "require": {
  1388. "dflydev/dot-access-data": "^3.0.1",
  1389. "nette/schema": "^1.2",
  1390. "php": "^7.4 || ^8.0"
  1391. },
  1392. "require-dev": {
  1393. "phpstan/phpstan": "^0.12.90",
  1394. "phpunit/phpunit": "^9.5.5",
  1395. "scrutinizer/ocular": "^1.8.1",
  1396. "unleashedtech/php-coding-standard": "^3.1",
  1397. "vimeo/psalm": "^4.7.3"
  1398. },
  1399. "type": "library",
  1400. "extra": {
  1401. "branch-alias": {
  1402. "dev-main": "1.2-dev"
  1403. }
  1404. },
  1405. "autoload": {
  1406. "psr-4": {
  1407. "League\\Config\\": "src"
  1408. }
  1409. },
  1410. "notification-url": "https://packagist.org/downloads/",
  1411. "license": [
  1412. "BSD-3-Clause"
  1413. ],
  1414. "authors": [
  1415. {
  1416. "name": "Colin O'Dell",
  1417. "email": "colinodell@gmail.com",
  1418. "homepage": "https://www.colinodell.com",
  1419. "role": "Lead Developer"
  1420. }
  1421. ],
  1422. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1423. "homepage": "https://config.thephpleague.com",
  1424. "keywords": [
  1425. "array",
  1426. "config",
  1427. "configuration",
  1428. "dot",
  1429. "dot-access",
  1430. "nested",
  1431. "schema"
  1432. ],
  1433. "support": {
  1434. "docs": "https://config.thephpleague.com/",
  1435. "issues": "https://github.com/thephpleague/config/issues",
  1436. "rss": "https://github.com/thephpleague/config/releases.atom",
  1437. "source": "https://github.com/thephpleague/config"
  1438. },
  1439. "funding": [
  1440. {
  1441. "url": "https://www.colinodell.com/sponsor",
  1442. "type": "custom"
  1443. },
  1444. {
  1445. "url": "https://www.paypal.me/colinpodell/10.00",
  1446. "type": "custom"
  1447. },
  1448. {
  1449. "url": "https://github.com/colinodell",
  1450. "type": "github"
  1451. }
  1452. ],
  1453. "time": "2021-08-14T12:15:32+00:00"
  1454. },
  1455. {
  1456. "name": "league/flysystem",
  1457. "version": "3.0.16",
  1458. "source": {
  1459. "type": "git",
  1460. "url": "https://github.com/thephpleague/flysystem.git",
  1461. "reference": "dea729954c596bdb6cdaecba6f73df9f3e2c4255"
  1462. },
  1463. "dist": {
  1464. "type": "zip",
  1465. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/dea729954c596bdb6cdaecba6f73df9f3e2c4255",
  1466. "reference": "dea729954c596bdb6cdaecba6f73df9f3e2c4255",
  1467. "shasum": ""
  1468. },
  1469. "require": {
  1470. "league/mime-type-detection": "^1.0.0",
  1471. "php": "^8.0.2"
  1472. },
  1473. "conflict": {
  1474. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  1475. "guzzlehttp/guzzle": "<7.0",
  1476. "guzzlehttp/ringphp": "<1.1.1",
  1477. "symfony/http-client": "<5.2"
  1478. },
  1479. "require-dev": {
  1480. "async-aws/s3": "^1.5",
  1481. "async-aws/simple-s3": "^1.0",
  1482. "aws/aws-sdk-php": "^3.198.1",
  1483. "composer/semver": "^3.0",
  1484. "ext-fileinfo": "*",
  1485. "ext-ftp": "*",
  1486. "ext-zip": "*",
  1487. "friendsofphp/php-cs-fixer": "^3.5",
  1488. "google/cloud-storage": "^1.23",
  1489. "microsoft/azure-storage-blob": "^1.1",
  1490. "phpseclib/phpseclib": "^2.0",
  1491. "phpstan/phpstan": "^0.12.26",
  1492. "phpunit/phpunit": "^9.5.11",
  1493. "sabre/dav": "^4.3.1"
  1494. },
  1495. "type": "library",
  1496. "autoload": {
  1497. "psr-4": {
  1498. "League\\Flysystem\\": "src"
  1499. }
  1500. },
  1501. "notification-url": "https://packagist.org/downloads/",
  1502. "license": [
  1503. "MIT"
  1504. ],
  1505. "authors": [
  1506. {
  1507. "name": "Frank de Jonge",
  1508. "email": "info@frankdejonge.nl"
  1509. }
  1510. ],
  1511. "description": "File storage abstraction for PHP",
  1512. "keywords": [
  1513. "WebDAV",
  1514. "aws",
  1515. "cloud",
  1516. "file",
  1517. "files",
  1518. "filesystem",
  1519. "filesystems",
  1520. "ftp",
  1521. "s3",
  1522. "sftp",
  1523. "storage"
  1524. ],
  1525. "support": {
  1526. "issues": "https://github.com/thephpleague/flysystem/issues",
  1527. "source": "https://github.com/thephpleague/flysystem/tree/3.0.16"
  1528. },
  1529. "funding": [
  1530. {
  1531. "url": "https://offset.earth/frankdejonge",
  1532. "type": "custom"
  1533. },
  1534. {
  1535. "url": "https://github.com/frankdejonge",
  1536. "type": "github"
  1537. },
  1538. {
  1539. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1540. "type": "tidelift"
  1541. }
  1542. ],
  1543. "time": "2022-04-11T13:32:22+00:00"
  1544. },
  1545. {
  1546. "name": "league/mime-type-detection",
  1547. "version": "1.10.0",
  1548. "source": {
  1549. "type": "git",
  1550. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1551. "reference": "3e4a35d756eedc67096f30240a68a3149120dae7"
  1552. },
  1553. "dist": {
  1554. "type": "zip",
  1555. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3e4a35d756eedc67096f30240a68a3149120dae7",
  1556. "reference": "3e4a35d756eedc67096f30240a68a3149120dae7",
  1557. "shasum": ""
  1558. },
  1559. "require": {
  1560. "ext-fileinfo": "*",
  1561. "php": "^7.2 || ^8.0"
  1562. },
  1563. "require-dev": {
  1564. "friendsofphp/php-cs-fixer": "^3.2",
  1565. "phpstan/phpstan": "^0.12.68",
  1566. "phpunit/phpunit": "^8.5.8 || ^9.3"
  1567. },
  1568. "type": "library",
  1569. "autoload": {
  1570. "psr-4": {
  1571. "League\\MimeTypeDetection\\": "src"
  1572. }
  1573. },
  1574. "notification-url": "https://packagist.org/downloads/",
  1575. "license": [
  1576. "MIT"
  1577. ],
  1578. "authors": [
  1579. {
  1580. "name": "Frank de Jonge",
  1581. "email": "info@frankdejonge.nl"
  1582. }
  1583. ],
  1584. "description": "Mime-type detection for Flysystem",
  1585. "support": {
  1586. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1587. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.10.0"
  1588. },
  1589. "funding": [
  1590. {
  1591. "url": "https://github.com/frankdejonge",
  1592. "type": "github"
  1593. },
  1594. {
  1595. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1596. "type": "tidelift"
  1597. }
  1598. ],
  1599. "time": "2022-04-11T12:49:04+00:00"
  1600. },
  1601. {
  1602. "name": "monolog/monolog",
  1603. "version": "2.5.0",
  1604. "source": {
  1605. "type": "git",
  1606. "url": "https://github.com/Seldaek/monolog.git",
  1607. "reference": "4192345e260f1d51b365536199744b987e160edc"
  1608. },
  1609. "dist": {
  1610. "type": "zip",
  1611. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4192345e260f1d51b365536199744b987e160edc",
  1612. "reference": "4192345e260f1d51b365536199744b987e160edc",
  1613. "shasum": ""
  1614. },
  1615. "require": {
  1616. "php": ">=7.2",
  1617. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1618. },
  1619. "provide": {
  1620. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1621. },
  1622. "require-dev": {
  1623. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1624. "doctrine/couchdb": "~1.0@dev",
  1625. "elasticsearch/elasticsearch": "^7",
  1626. "graylog2/gelf-php": "^1.4.2",
  1627. "mongodb/mongodb": "^1.8",
  1628. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1629. "php-console/php-console": "^3.1.3",
  1630. "phpspec/prophecy": "^1.6.1",
  1631. "phpstan/phpstan": "^0.12.91",
  1632. "phpunit/phpunit": "^8.5",
  1633. "predis/predis": "^1.1",
  1634. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1635. "ruflin/elastica": ">=0.90@dev",
  1636. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1637. },
  1638. "suggest": {
  1639. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1640. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1641. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1642. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1643. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1644. "ext-mbstring": "Allow to work properly with unicode symbols",
  1645. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1646. "ext-openssl": "Required to send log messages using SSL",
  1647. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1648. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1649. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1650. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1651. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1652. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1653. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1654. },
  1655. "type": "library",
  1656. "extra": {
  1657. "branch-alias": {
  1658. "dev-main": "2.x-dev"
  1659. }
  1660. },
  1661. "autoload": {
  1662. "psr-4": {
  1663. "Monolog\\": "src/Monolog"
  1664. }
  1665. },
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "authors": [
  1671. {
  1672. "name": "Jordi Boggiano",
  1673. "email": "j.boggiano@seld.be",
  1674. "homepage": "https://seld.be"
  1675. }
  1676. ],
  1677. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1678. "homepage": "https://github.com/Seldaek/monolog",
  1679. "keywords": [
  1680. "log",
  1681. "logging",
  1682. "psr-3"
  1683. ],
  1684. "support": {
  1685. "issues": "https://github.com/Seldaek/monolog/issues",
  1686. "source": "https://github.com/Seldaek/monolog/tree/2.5.0"
  1687. },
  1688. "funding": [
  1689. {
  1690. "url": "https://github.com/Seldaek",
  1691. "type": "github"
  1692. },
  1693. {
  1694. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1695. "type": "tidelift"
  1696. }
  1697. ],
  1698. "time": "2022-04-08T15:43:54+00:00"
  1699. },
  1700. {
  1701. "name": "nesbot/carbon",
  1702. "version": "2.57.0",
  1703. "source": {
  1704. "type": "git",
  1705. "url": "https://github.com/briannesbitt/Carbon.git",
  1706. "reference": "4a54375c21eea4811dbd1149fe6b246517554e78"
  1707. },
  1708. "dist": {
  1709. "type": "zip",
  1710. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4a54375c21eea4811dbd1149fe6b246517554e78",
  1711. "reference": "4a54375c21eea4811dbd1149fe6b246517554e78",
  1712. "shasum": ""
  1713. },
  1714. "require": {
  1715. "ext-json": "*",
  1716. "php": "^7.1.8 || ^8.0",
  1717. "symfony/polyfill-mbstring": "^1.0",
  1718. "symfony/polyfill-php80": "^1.16",
  1719. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1720. },
  1721. "require-dev": {
  1722. "doctrine/dbal": "^2.0 || ^3.0",
  1723. "doctrine/orm": "^2.7",
  1724. "friendsofphp/php-cs-fixer": "^3.0",
  1725. "kylekatarnls/multi-tester": "^2.0",
  1726. "phpmd/phpmd": "^2.9",
  1727. "phpstan/extension-installer": "^1.0",
  1728. "phpstan/phpstan": "^0.12.54 || ^1.0",
  1729. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  1730. "squizlabs/php_codesniffer": "^3.4"
  1731. },
  1732. "bin": [
  1733. "bin/carbon"
  1734. ],
  1735. "type": "library",
  1736. "extra": {
  1737. "branch-alias": {
  1738. "dev-3.x": "3.x-dev",
  1739. "dev-master": "2.x-dev"
  1740. },
  1741. "laravel": {
  1742. "providers": [
  1743. "Carbon\\Laravel\\ServiceProvider"
  1744. ]
  1745. },
  1746. "phpstan": {
  1747. "includes": [
  1748. "extension.neon"
  1749. ]
  1750. }
  1751. },
  1752. "autoload": {
  1753. "psr-4": {
  1754. "Carbon\\": "src/Carbon/"
  1755. }
  1756. },
  1757. "notification-url": "https://packagist.org/downloads/",
  1758. "license": [
  1759. "MIT"
  1760. ],
  1761. "authors": [
  1762. {
  1763. "name": "Brian Nesbitt",
  1764. "email": "brian@nesbot.com",
  1765. "homepage": "https://markido.com"
  1766. },
  1767. {
  1768. "name": "kylekatarnls",
  1769. "homepage": "https://github.com/kylekatarnls"
  1770. }
  1771. ],
  1772. "description": "An API extension for DateTime that supports 281 different languages.",
  1773. "homepage": "https://carbon.nesbot.com",
  1774. "keywords": [
  1775. "date",
  1776. "datetime",
  1777. "time"
  1778. ],
  1779. "support": {
  1780. "docs": "https://carbon.nesbot.com/docs",
  1781. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1782. "source": "https://github.com/briannesbitt/Carbon"
  1783. },
  1784. "funding": [
  1785. {
  1786. "url": "https://opencollective.com/Carbon",
  1787. "type": "open_collective"
  1788. },
  1789. {
  1790. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1791. "type": "tidelift"
  1792. }
  1793. ],
  1794. "time": "2022-02-13T18:13:33+00:00"
  1795. },
  1796. {
  1797. "name": "nette/schema",
  1798. "version": "v1.2.2",
  1799. "source": {
  1800. "type": "git",
  1801. "url": "https://github.com/nette/schema.git",
  1802. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df"
  1803. },
  1804. "dist": {
  1805. "type": "zip",
  1806. "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df",
  1807. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df",
  1808. "shasum": ""
  1809. },
  1810. "require": {
  1811. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  1812. "php": ">=7.1 <8.2"
  1813. },
  1814. "require-dev": {
  1815. "nette/tester": "^2.3 || ^2.4",
  1816. "phpstan/phpstan-nette": "^0.12",
  1817. "tracy/tracy": "^2.7"
  1818. },
  1819. "type": "library",
  1820. "extra": {
  1821. "branch-alias": {
  1822. "dev-master": "1.2-dev"
  1823. }
  1824. },
  1825. "autoload": {
  1826. "classmap": [
  1827. "src/"
  1828. ]
  1829. },
  1830. "notification-url": "https://packagist.org/downloads/",
  1831. "license": [
  1832. "BSD-3-Clause",
  1833. "GPL-2.0-only",
  1834. "GPL-3.0-only"
  1835. ],
  1836. "authors": [
  1837. {
  1838. "name": "David Grudl",
  1839. "homepage": "https://davidgrudl.com"
  1840. },
  1841. {
  1842. "name": "Nette Community",
  1843. "homepage": "https://nette.org/contributors"
  1844. }
  1845. ],
  1846. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  1847. "homepage": "https://nette.org",
  1848. "keywords": [
  1849. "config",
  1850. "nette"
  1851. ],
  1852. "support": {
  1853. "issues": "https://github.com/nette/schema/issues",
  1854. "source": "https://github.com/nette/schema/tree/v1.2.2"
  1855. },
  1856. "time": "2021-10-15T11:40:02+00:00"
  1857. },
  1858. {
  1859. "name": "nette/utils",
  1860. "version": "v3.2.7",
  1861. "source": {
  1862. "type": "git",
  1863. "url": "https://github.com/nette/utils.git",
  1864. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99"
  1865. },
  1866. "dist": {
  1867. "type": "zip",
  1868. "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99",
  1869. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99",
  1870. "shasum": ""
  1871. },
  1872. "require": {
  1873. "php": ">=7.2 <8.2"
  1874. },
  1875. "conflict": {
  1876. "nette/di": "<3.0.6"
  1877. },
  1878. "require-dev": {
  1879. "nette/tester": "~2.0",
  1880. "phpstan/phpstan": "^1.0",
  1881. "tracy/tracy": "^2.3"
  1882. },
  1883. "suggest": {
  1884. "ext-gd": "to use Image",
  1885. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  1886. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  1887. "ext-json": "to use Nette\\Utils\\Json",
  1888. "ext-mbstring": "to use Strings::lower() etc...",
  1889. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  1890. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  1891. },
  1892. "type": "library",
  1893. "extra": {
  1894. "branch-alias": {
  1895. "dev-master": "3.2-dev"
  1896. }
  1897. },
  1898. "autoload": {
  1899. "classmap": [
  1900. "src/"
  1901. ]
  1902. },
  1903. "notification-url": "https://packagist.org/downloads/",
  1904. "license": [
  1905. "BSD-3-Clause",
  1906. "GPL-2.0-only",
  1907. "GPL-3.0-only"
  1908. ],
  1909. "authors": [
  1910. {
  1911. "name": "David Grudl",
  1912. "homepage": "https://davidgrudl.com"
  1913. },
  1914. {
  1915. "name": "Nette Community",
  1916. "homepage": "https://nette.org/contributors"
  1917. }
  1918. ],
  1919. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  1920. "homepage": "https://nette.org",
  1921. "keywords": [
  1922. "array",
  1923. "core",
  1924. "datetime",
  1925. "images",
  1926. "json",
  1927. "nette",
  1928. "paginator",
  1929. "password",
  1930. "slugify",
  1931. "string",
  1932. "unicode",
  1933. "utf-8",
  1934. "utility",
  1935. "validation"
  1936. ],
  1937. "support": {
  1938. "issues": "https://github.com/nette/utils/issues",
  1939. "source": "https://github.com/nette/utils/tree/v3.2.7"
  1940. },
  1941. "time": "2022-01-24T11:29:14+00:00"
  1942. },
  1943. {
  1944. "name": "nikic/php-parser",
  1945. "version": "v4.13.2",
  1946. "source": {
  1947. "type": "git",
  1948. "url": "https://github.com/nikic/PHP-Parser.git",
  1949. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  1950. },
  1951. "dist": {
  1952. "type": "zip",
  1953. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  1954. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  1955. "shasum": ""
  1956. },
  1957. "require": {
  1958. "ext-tokenizer": "*",
  1959. "php": ">=7.0"
  1960. },
  1961. "require-dev": {
  1962. "ircmaxell/php-yacc": "^0.0.7",
  1963. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1964. },
  1965. "bin": [
  1966. "bin/php-parse"
  1967. ],
  1968. "type": "library",
  1969. "extra": {
  1970. "branch-alias": {
  1971. "dev-master": "4.9-dev"
  1972. }
  1973. },
  1974. "autoload": {
  1975. "psr-4": {
  1976. "PhpParser\\": "lib/PhpParser"
  1977. }
  1978. },
  1979. "notification-url": "https://packagist.org/downloads/",
  1980. "license": [
  1981. "BSD-3-Clause"
  1982. ],
  1983. "authors": [
  1984. {
  1985. "name": "Nikita Popov"
  1986. }
  1987. ],
  1988. "description": "A PHP parser written in PHP",
  1989. "keywords": [
  1990. "parser",
  1991. "php"
  1992. ],
  1993. "support": {
  1994. "issues": "https://github.com/nikic/PHP-Parser/issues",
  1995. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  1996. },
  1997. "time": "2021-11-30T19:35:32+00:00"
  1998. },
  1999. {
  2000. "name": "phpoption/phpoption",
  2001. "version": "1.8.1",
  2002. "source": {
  2003. "type": "git",
  2004. "url": "https://github.com/schmittjoh/php-option.git",
  2005. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  2006. },
  2007. "dist": {
  2008. "type": "zip",
  2009. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  2010. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  2011. "shasum": ""
  2012. },
  2013. "require": {
  2014. "php": "^7.0 || ^8.0"
  2015. },
  2016. "require-dev": {
  2017. "bamarni/composer-bin-plugin": "^1.4.1",
  2018. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  2019. },
  2020. "type": "library",
  2021. "extra": {
  2022. "branch-alias": {
  2023. "dev-master": "1.8-dev"
  2024. }
  2025. },
  2026. "autoload": {
  2027. "psr-4": {
  2028. "PhpOption\\": "src/PhpOption/"
  2029. }
  2030. },
  2031. "notification-url": "https://packagist.org/downloads/",
  2032. "license": [
  2033. "Apache-2.0"
  2034. ],
  2035. "authors": [
  2036. {
  2037. "name": "Johannes M. Schmitt",
  2038. "email": "schmittjoh@gmail.com",
  2039. "homepage": "https://github.com/schmittjoh"
  2040. },
  2041. {
  2042. "name": "Graham Campbell",
  2043. "email": "hello@gjcampbell.co.uk",
  2044. "homepage": "https://github.com/GrahamCampbell"
  2045. }
  2046. ],
  2047. "description": "Option Type for PHP",
  2048. "keywords": [
  2049. "language",
  2050. "option",
  2051. "php",
  2052. "type"
  2053. ],
  2054. "support": {
  2055. "issues": "https://github.com/schmittjoh/php-option/issues",
  2056. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  2057. },
  2058. "funding": [
  2059. {
  2060. "url": "https://github.com/GrahamCampbell",
  2061. "type": "github"
  2062. },
  2063. {
  2064. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2065. "type": "tidelift"
  2066. }
  2067. ],
  2068. "time": "2021-12-04T23:24:31+00:00"
  2069. },
  2070. {
  2071. "name": "psr/container",
  2072. "version": "2.0.2",
  2073. "source": {
  2074. "type": "git",
  2075. "url": "https://github.com/php-fig/container.git",
  2076. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2077. },
  2078. "dist": {
  2079. "type": "zip",
  2080. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2081. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2082. "shasum": ""
  2083. },
  2084. "require": {
  2085. "php": ">=7.4.0"
  2086. },
  2087. "type": "library",
  2088. "extra": {
  2089. "branch-alias": {
  2090. "dev-master": "2.0.x-dev"
  2091. }
  2092. },
  2093. "autoload": {
  2094. "psr-4": {
  2095. "Psr\\Container\\": "src/"
  2096. }
  2097. },
  2098. "notification-url": "https://packagist.org/downloads/",
  2099. "license": [
  2100. "MIT"
  2101. ],
  2102. "authors": [
  2103. {
  2104. "name": "PHP-FIG",
  2105. "homepage": "https://www.php-fig.org/"
  2106. }
  2107. ],
  2108. "description": "Common Container Interface (PHP FIG PSR-11)",
  2109. "homepage": "https://github.com/php-fig/container",
  2110. "keywords": [
  2111. "PSR-11",
  2112. "container",
  2113. "container-interface",
  2114. "container-interop",
  2115. "psr"
  2116. ],
  2117. "support": {
  2118. "issues": "https://github.com/php-fig/container/issues",
  2119. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2120. },
  2121. "time": "2021-11-05T16:47:00+00:00"
  2122. },
  2123. {
  2124. "name": "psr/event-dispatcher",
  2125. "version": "1.0.0",
  2126. "source": {
  2127. "type": "git",
  2128. "url": "https://github.com/php-fig/event-dispatcher.git",
  2129. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2130. },
  2131. "dist": {
  2132. "type": "zip",
  2133. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2134. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2135. "shasum": ""
  2136. },
  2137. "require": {
  2138. "php": ">=7.2.0"
  2139. },
  2140. "type": "library",
  2141. "extra": {
  2142. "branch-alias": {
  2143. "dev-master": "1.0.x-dev"
  2144. }
  2145. },
  2146. "autoload": {
  2147. "psr-4": {
  2148. "Psr\\EventDispatcher\\": "src/"
  2149. }
  2150. },
  2151. "notification-url": "https://packagist.org/downloads/",
  2152. "license": [
  2153. "MIT"
  2154. ],
  2155. "authors": [
  2156. {
  2157. "name": "PHP-FIG",
  2158. "homepage": "http://www.php-fig.org/"
  2159. }
  2160. ],
  2161. "description": "Standard interfaces for event handling.",
  2162. "keywords": [
  2163. "events",
  2164. "psr",
  2165. "psr-14"
  2166. ],
  2167. "support": {
  2168. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2169. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2170. },
  2171. "time": "2019-01-08T18:20:26+00:00"
  2172. },
  2173. {
  2174. "name": "psr/http-client",
  2175. "version": "1.0.1",
  2176. "source": {
  2177. "type": "git",
  2178. "url": "https://github.com/php-fig/http-client.git",
  2179. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2180. },
  2181. "dist": {
  2182. "type": "zip",
  2183. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2184. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2185. "shasum": ""
  2186. },
  2187. "require": {
  2188. "php": "^7.0 || ^8.0",
  2189. "psr/http-message": "^1.0"
  2190. },
  2191. "type": "library",
  2192. "extra": {
  2193. "branch-alias": {
  2194. "dev-master": "1.0.x-dev"
  2195. }
  2196. },
  2197. "autoload": {
  2198. "psr-4": {
  2199. "Psr\\Http\\Client\\": "src/"
  2200. }
  2201. },
  2202. "notification-url": "https://packagist.org/downloads/",
  2203. "license": [
  2204. "MIT"
  2205. ],
  2206. "authors": [
  2207. {
  2208. "name": "PHP-FIG",
  2209. "homepage": "http://www.php-fig.org/"
  2210. }
  2211. ],
  2212. "description": "Common interface for HTTP clients",
  2213. "homepage": "https://github.com/php-fig/http-client",
  2214. "keywords": [
  2215. "http",
  2216. "http-client",
  2217. "psr",
  2218. "psr-18"
  2219. ],
  2220. "support": {
  2221. "source": "https://github.com/php-fig/http-client/tree/master"
  2222. },
  2223. "time": "2020-06-29T06:28:15+00:00"
  2224. },
  2225. {
  2226. "name": "psr/http-factory",
  2227. "version": "1.0.1",
  2228. "source": {
  2229. "type": "git",
  2230. "url": "https://github.com/php-fig/http-factory.git",
  2231. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2232. },
  2233. "dist": {
  2234. "type": "zip",
  2235. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2236. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2237. "shasum": ""
  2238. },
  2239. "require": {
  2240. "php": ">=7.0.0",
  2241. "psr/http-message": "^1.0"
  2242. },
  2243. "type": "library",
  2244. "extra": {
  2245. "branch-alias": {
  2246. "dev-master": "1.0.x-dev"
  2247. }
  2248. },
  2249. "autoload": {
  2250. "psr-4": {
  2251. "Psr\\Http\\Message\\": "src/"
  2252. }
  2253. },
  2254. "notification-url": "https://packagist.org/downloads/",
  2255. "license": [
  2256. "MIT"
  2257. ],
  2258. "authors": [
  2259. {
  2260. "name": "PHP-FIG",
  2261. "homepage": "http://www.php-fig.org/"
  2262. }
  2263. ],
  2264. "description": "Common interfaces for PSR-7 HTTP message factories",
  2265. "keywords": [
  2266. "factory",
  2267. "http",
  2268. "message",
  2269. "psr",
  2270. "psr-17",
  2271. "psr-7",
  2272. "request",
  2273. "response"
  2274. ],
  2275. "support": {
  2276. "source": "https://github.com/php-fig/http-factory/tree/master"
  2277. },
  2278. "time": "2019-04-30T12:38:16+00:00"
  2279. },
  2280. {
  2281. "name": "psr/http-message",
  2282. "version": "1.0.1",
  2283. "source": {
  2284. "type": "git",
  2285. "url": "https://github.com/php-fig/http-message.git",
  2286. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2287. },
  2288. "dist": {
  2289. "type": "zip",
  2290. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2291. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2292. "shasum": ""
  2293. },
  2294. "require": {
  2295. "php": ">=5.3.0"
  2296. },
  2297. "type": "library",
  2298. "extra": {
  2299. "branch-alias": {
  2300. "dev-master": "1.0.x-dev"
  2301. }
  2302. },
  2303. "autoload": {
  2304. "psr-4": {
  2305. "Psr\\Http\\Message\\": "src/"
  2306. }
  2307. },
  2308. "notification-url": "https://packagist.org/downloads/",
  2309. "license": [
  2310. "MIT"
  2311. ],
  2312. "authors": [
  2313. {
  2314. "name": "PHP-FIG",
  2315. "homepage": "http://www.php-fig.org/"
  2316. }
  2317. ],
  2318. "description": "Common interface for HTTP messages",
  2319. "homepage": "https://github.com/php-fig/http-message",
  2320. "keywords": [
  2321. "http",
  2322. "http-message",
  2323. "psr",
  2324. "psr-7",
  2325. "request",
  2326. "response"
  2327. ],
  2328. "support": {
  2329. "source": "https://github.com/php-fig/http-message/tree/master"
  2330. },
  2331. "time": "2016-08-06T14:39:51+00:00"
  2332. },
  2333. {
  2334. "name": "psr/log",
  2335. "version": "3.0.0",
  2336. "source": {
  2337. "type": "git",
  2338. "url": "https://github.com/php-fig/log.git",
  2339. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  2340. },
  2341. "dist": {
  2342. "type": "zip",
  2343. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2344. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2345. "shasum": ""
  2346. },
  2347. "require": {
  2348. "php": ">=8.0.0"
  2349. },
  2350. "type": "library",
  2351. "extra": {
  2352. "branch-alias": {
  2353. "dev-master": "3.x-dev"
  2354. }
  2355. },
  2356. "autoload": {
  2357. "psr-4": {
  2358. "Psr\\Log\\": "src"
  2359. }
  2360. },
  2361. "notification-url": "https://packagist.org/downloads/",
  2362. "license": [
  2363. "MIT"
  2364. ],
  2365. "authors": [
  2366. {
  2367. "name": "PHP-FIG",
  2368. "homepage": "https://www.php-fig.org/"
  2369. }
  2370. ],
  2371. "description": "Common interface for logging libraries",
  2372. "homepage": "https://github.com/php-fig/log",
  2373. "keywords": [
  2374. "log",
  2375. "psr",
  2376. "psr-3"
  2377. ],
  2378. "support": {
  2379. "source": "https://github.com/php-fig/log/tree/3.0.0"
  2380. },
  2381. "time": "2021-07-14T16:46:02+00:00"
  2382. },
  2383. {
  2384. "name": "psr/simple-cache",
  2385. "version": "3.0.0",
  2386. "source": {
  2387. "type": "git",
  2388. "url": "https://github.com/php-fig/simple-cache.git",
  2389. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  2390. },
  2391. "dist": {
  2392. "type": "zip",
  2393. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  2394. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  2395. "shasum": ""
  2396. },
  2397. "require": {
  2398. "php": ">=8.0.0"
  2399. },
  2400. "type": "library",
  2401. "extra": {
  2402. "branch-alias": {
  2403. "dev-master": "3.0.x-dev"
  2404. }
  2405. },
  2406. "autoload": {
  2407. "psr-4": {
  2408. "Psr\\SimpleCache\\": "src/"
  2409. }
  2410. },
  2411. "notification-url": "https://packagist.org/downloads/",
  2412. "license": [
  2413. "MIT"
  2414. ],
  2415. "authors": [
  2416. {
  2417. "name": "PHP-FIG",
  2418. "homepage": "https://www.php-fig.org/"
  2419. }
  2420. ],
  2421. "description": "Common interfaces for simple caching",
  2422. "keywords": [
  2423. "cache",
  2424. "caching",
  2425. "psr",
  2426. "psr-16",
  2427. "simple-cache"
  2428. ],
  2429. "support": {
  2430. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  2431. },
  2432. "time": "2021-10-29T13:26:27+00:00"
  2433. },
  2434. {
  2435. "name": "psy/psysh",
  2436. "version": "v0.11.2",
  2437. "source": {
  2438. "type": "git",
  2439. "url": "https://github.com/bobthecow/psysh.git",
  2440. "reference": "7f7da640d68b9c9fec819caae7c744a213df6514"
  2441. },
  2442. "dist": {
  2443. "type": "zip",
  2444. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7f7da640d68b9c9fec819caae7c744a213df6514",
  2445. "reference": "7f7da640d68b9c9fec819caae7c744a213df6514",
  2446. "shasum": ""
  2447. },
  2448. "require": {
  2449. "ext-json": "*",
  2450. "ext-tokenizer": "*",
  2451. "nikic/php-parser": "^4.0 || ^3.1",
  2452. "php": "^8.0 || ^7.0.8",
  2453. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  2454. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  2455. },
  2456. "conflict": {
  2457. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  2458. },
  2459. "require-dev": {
  2460. "bamarni/composer-bin-plugin": "^1.2",
  2461. "hoa/console": "3.17.05.02"
  2462. },
  2463. "suggest": {
  2464. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2465. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2466. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2467. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2468. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2469. },
  2470. "bin": [
  2471. "bin/psysh"
  2472. ],
  2473. "type": "library",
  2474. "extra": {
  2475. "branch-alias": {
  2476. "dev-main": "0.11.x-dev"
  2477. }
  2478. },
  2479. "autoload": {
  2480. "files": [
  2481. "src/functions.php"
  2482. ],
  2483. "psr-4": {
  2484. "Psy\\": "src/"
  2485. }
  2486. },
  2487. "notification-url": "https://packagist.org/downloads/",
  2488. "license": [
  2489. "MIT"
  2490. ],
  2491. "authors": [
  2492. {
  2493. "name": "Justin Hileman",
  2494. "email": "justin@justinhileman.info",
  2495. "homepage": "http://justinhileman.com"
  2496. }
  2497. ],
  2498. "description": "An interactive shell for modern PHP.",
  2499. "homepage": "http://psysh.org",
  2500. "keywords": [
  2501. "REPL",
  2502. "console",
  2503. "interactive",
  2504. "shell"
  2505. ],
  2506. "support": {
  2507. "issues": "https://github.com/bobthecow/psysh/issues",
  2508. "source": "https://github.com/bobthecow/psysh/tree/v0.11.2"
  2509. },
  2510. "time": "2022-02-28T15:28:54+00:00"
  2511. },
  2512. {
  2513. "name": "ralouphie/getallheaders",
  2514. "version": "3.0.3",
  2515. "source": {
  2516. "type": "git",
  2517. "url": "https://github.com/ralouphie/getallheaders.git",
  2518. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2519. },
  2520. "dist": {
  2521. "type": "zip",
  2522. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2523. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2524. "shasum": ""
  2525. },
  2526. "require": {
  2527. "php": ">=5.6"
  2528. },
  2529. "require-dev": {
  2530. "php-coveralls/php-coveralls": "^2.1",
  2531. "phpunit/phpunit": "^5 || ^6.5"
  2532. },
  2533. "type": "library",
  2534. "autoload": {
  2535. "files": [
  2536. "src/getallheaders.php"
  2537. ]
  2538. },
  2539. "notification-url": "https://packagist.org/downloads/",
  2540. "license": [
  2541. "MIT"
  2542. ],
  2543. "authors": [
  2544. {
  2545. "name": "Ralph Khattar",
  2546. "email": "ralph.khattar@gmail.com"
  2547. }
  2548. ],
  2549. "description": "A polyfill for getallheaders.",
  2550. "support": {
  2551. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2552. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2553. },
  2554. "time": "2019-03-08T08:55:37+00:00"
  2555. },
  2556. {
  2557. "name": "ramsey/collection",
  2558. "version": "1.2.2",
  2559. "source": {
  2560. "type": "git",
  2561. "url": "https://github.com/ramsey/collection.git",
  2562. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  2563. },
  2564. "dist": {
  2565. "type": "zip",
  2566. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  2567. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  2568. "shasum": ""
  2569. },
  2570. "require": {
  2571. "php": "^7.3 || ^8",
  2572. "symfony/polyfill-php81": "^1.23"
  2573. },
  2574. "require-dev": {
  2575. "captainhook/captainhook": "^5.3",
  2576. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2577. "ergebnis/composer-normalize": "^2.6",
  2578. "fakerphp/faker": "^1.5",
  2579. "hamcrest/hamcrest-php": "^2",
  2580. "jangregor/phpstan-prophecy": "^0.8",
  2581. "mockery/mockery": "^1.3",
  2582. "phpspec/prophecy-phpunit": "^2.0",
  2583. "phpstan/extension-installer": "^1",
  2584. "phpstan/phpstan": "^0.12.32",
  2585. "phpstan/phpstan-mockery": "^0.12.5",
  2586. "phpstan/phpstan-phpunit": "^0.12.11",
  2587. "phpunit/phpunit": "^8.5 || ^9",
  2588. "psy/psysh": "^0.10.4",
  2589. "slevomat/coding-standard": "^6.3",
  2590. "squizlabs/php_codesniffer": "^3.5",
  2591. "vimeo/psalm": "^4.4"
  2592. },
  2593. "type": "library",
  2594. "autoload": {
  2595. "psr-4": {
  2596. "Ramsey\\Collection\\": "src/"
  2597. }
  2598. },
  2599. "notification-url": "https://packagist.org/downloads/",
  2600. "license": [
  2601. "MIT"
  2602. ],
  2603. "authors": [
  2604. {
  2605. "name": "Ben Ramsey",
  2606. "email": "ben@benramsey.com",
  2607. "homepage": "https://benramsey.com"
  2608. }
  2609. ],
  2610. "description": "A PHP library for representing and manipulating collections.",
  2611. "keywords": [
  2612. "array",
  2613. "collection",
  2614. "hash",
  2615. "map",
  2616. "queue",
  2617. "set"
  2618. ],
  2619. "support": {
  2620. "issues": "https://github.com/ramsey/collection/issues",
  2621. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  2622. },
  2623. "funding": [
  2624. {
  2625. "url": "https://github.com/ramsey",
  2626. "type": "github"
  2627. },
  2628. {
  2629. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  2630. "type": "tidelift"
  2631. }
  2632. ],
  2633. "time": "2021-10-10T03:01:02+00:00"
  2634. },
  2635. {
  2636. "name": "ramsey/uuid",
  2637. "version": "4.3.1",
  2638. "source": {
  2639. "type": "git",
  2640. "url": "https://github.com/ramsey/uuid.git",
  2641. "reference": "8505afd4fea63b81a85d3b7b53ac3cb8dc347c28"
  2642. },
  2643. "dist": {
  2644. "type": "zip",
  2645. "url": "https://api.github.com/repos/ramsey/uuid/zipball/8505afd4fea63b81a85d3b7b53ac3cb8dc347c28",
  2646. "reference": "8505afd4fea63b81a85d3b7b53ac3cb8dc347c28",
  2647. "shasum": ""
  2648. },
  2649. "require": {
  2650. "brick/math": "^0.8 || ^0.9",
  2651. "ext-ctype": "*",
  2652. "ext-json": "*",
  2653. "php": "^8.0",
  2654. "ramsey/collection": "^1.0"
  2655. },
  2656. "replace": {
  2657. "rhumsaa/uuid": "self.version"
  2658. },
  2659. "require-dev": {
  2660. "captainhook/captainhook": "^5.10",
  2661. "captainhook/plugin-composer": "^5.3",
  2662. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2663. "doctrine/annotations": "^1.8",
  2664. "ergebnis/composer-normalize": "^2.15",
  2665. "mockery/mockery": "^1.3",
  2666. "moontoast/math": "^1.1",
  2667. "paragonie/random-lib": "^2",
  2668. "php-mock/php-mock": "^2.2",
  2669. "php-mock/php-mock-mockery": "^1.3",
  2670. "php-parallel-lint/php-parallel-lint": "^1.1",
  2671. "phpbench/phpbench": "^1.0",
  2672. "phpstan/extension-installer": "^1.0",
  2673. "phpstan/phpstan": "^0.12",
  2674. "phpstan/phpstan-mockery": "^0.12",
  2675. "phpstan/phpstan-phpunit": "^0.12",
  2676. "phpunit/phpunit": "^8.5 || ^9",
  2677. "slevomat/coding-standard": "^7.0",
  2678. "squizlabs/php_codesniffer": "^3.5",
  2679. "vimeo/psalm": "^4.9"
  2680. },
  2681. "suggest": {
  2682. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2683. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  2684. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2685. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2686. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2687. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2688. },
  2689. "type": "library",
  2690. "extra": {
  2691. "captainhook": {
  2692. "force-install": true
  2693. }
  2694. },
  2695. "autoload": {
  2696. "files": [
  2697. "src/functions.php"
  2698. ],
  2699. "psr-4": {
  2700. "Ramsey\\Uuid\\": "src/"
  2701. }
  2702. },
  2703. "notification-url": "https://packagist.org/downloads/",
  2704. "license": [
  2705. "MIT"
  2706. ],
  2707. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2708. "keywords": [
  2709. "guid",
  2710. "identifier",
  2711. "uuid"
  2712. ],
  2713. "support": {
  2714. "issues": "https://github.com/ramsey/uuid/issues",
  2715. "source": "https://github.com/ramsey/uuid/tree/4.3.1"
  2716. },
  2717. "funding": [
  2718. {
  2719. "url": "https://github.com/ramsey",
  2720. "type": "github"
  2721. },
  2722. {
  2723. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  2724. "type": "tidelift"
  2725. }
  2726. ],
  2727. "time": "2022-03-27T21:42:02+00:00"
  2728. },
  2729. {
  2730. "name": "symfony/console",
  2731. "version": "v6.0.7",
  2732. "source": {
  2733. "type": "git",
  2734. "url": "https://github.com/symfony/console.git",
  2735. "reference": "70dcf7b2ca2ea08ad6ebcc475f104a024fb5632e"
  2736. },
  2737. "dist": {
  2738. "type": "zip",
  2739. "url": "https://api.github.com/repos/symfony/console/zipball/70dcf7b2ca2ea08ad6ebcc475f104a024fb5632e",
  2740. "reference": "70dcf7b2ca2ea08ad6ebcc475f104a024fb5632e",
  2741. "shasum": ""
  2742. },
  2743. "require": {
  2744. "php": ">=8.0.2",
  2745. "symfony/polyfill-mbstring": "~1.0",
  2746. "symfony/service-contracts": "^1.1|^2|^3",
  2747. "symfony/string": "^5.4|^6.0"
  2748. },
  2749. "conflict": {
  2750. "symfony/dependency-injection": "<5.4",
  2751. "symfony/dotenv": "<5.4",
  2752. "symfony/event-dispatcher": "<5.4",
  2753. "symfony/lock": "<5.4",
  2754. "symfony/process": "<5.4"
  2755. },
  2756. "provide": {
  2757. "psr/log-implementation": "1.0|2.0|3.0"
  2758. },
  2759. "require-dev": {
  2760. "psr/log": "^1|^2|^3",
  2761. "symfony/config": "^5.4|^6.0",
  2762. "symfony/dependency-injection": "^5.4|^6.0",
  2763. "symfony/event-dispatcher": "^5.4|^6.0",
  2764. "symfony/lock": "^5.4|^6.0",
  2765. "symfony/process": "^5.4|^6.0",
  2766. "symfony/var-dumper": "^5.4|^6.0"
  2767. },
  2768. "suggest": {
  2769. "psr/log": "For using the console logger",
  2770. "symfony/event-dispatcher": "",
  2771. "symfony/lock": "",
  2772. "symfony/process": ""
  2773. },
  2774. "type": "library",
  2775. "autoload": {
  2776. "psr-4": {
  2777. "Symfony\\Component\\Console\\": ""
  2778. },
  2779. "exclude-from-classmap": [
  2780. "/Tests/"
  2781. ]
  2782. },
  2783. "notification-url": "https://packagist.org/downloads/",
  2784. "license": [
  2785. "MIT"
  2786. ],
  2787. "authors": [
  2788. {
  2789. "name": "Fabien Potencier",
  2790. "email": "fabien@symfony.com"
  2791. },
  2792. {
  2793. "name": "Symfony Community",
  2794. "homepage": "https://symfony.com/contributors"
  2795. }
  2796. ],
  2797. "description": "Eases the creation of beautiful and testable command line interfaces",
  2798. "homepage": "https://symfony.com",
  2799. "keywords": [
  2800. "cli",
  2801. "command line",
  2802. "console",
  2803. "terminal"
  2804. ],
  2805. "support": {
  2806. "source": "https://github.com/symfony/console/tree/v6.0.7"
  2807. },
  2808. "funding": [
  2809. {
  2810. "url": "https://symfony.com/sponsor",
  2811. "type": "custom"
  2812. },
  2813. {
  2814. "url": "https://github.com/fabpot",
  2815. "type": "github"
  2816. },
  2817. {
  2818. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2819. "type": "tidelift"
  2820. }
  2821. ],
  2822. "time": "2022-03-31T17:18:25+00:00"
  2823. },
  2824. {
  2825. "name": "symfony/css-selector",
  2826. "version": "v6.0.3",
  2827. "source": {
  2828. "type": "git",
  2829. "url": "https://github.com/symfony/css-selector.git",
  2830. "reference": "1955d595c12c111629cc814d3f2a2ff13580508a"
  2831. },
  2832. "dist": {
  2833. "type": "zip",
  2834. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1955d595c12c111629cc814d3f2a2ff13580508a",
  2835. "reference": "1955d595c12c111629cc814d3f2a2ff13580508a",
  2836. "shasum": ""
  2837. },
  2838. "require": {
  2839. "php": ">=8.0.2"
  2840. },
  2841. "type": "library",
  2842. "autoload": {
  2843. "psr-4": {
  2844. "Symfony\\Component\\CssSelector\\": ""
  2845. },
  2846. "exclude-from-classmap": [
  2847. "/Tests/"
  2848. ]
  2849. },
  2850. "notification-url": "https://packagist.org/downloads/",
  2851. "license": [
  2852. "MIT"
  2853. ],
  2854. "authors": [
  2855. {
  2856. "name": "Fabien Potencier",
  2857. "email": "fabien@symfony.com"
  2858. },
  2859. {
  2860. "name": "Jean-François Simon",
  2861. "email": "jeanfrancois.simon@sensiolabs.com"
  2862. },
  2863. {
  2864. "name": "Symfony Community",
  2865. "homepage": "https://symfony.com/contributors"
  2866. }
  2867. ],
  2868. "description": "Converts CSS selectors to XPath expressions",
  2869. "homepage": "https://symfony.com",
  2870. "support": {
  2871. "source": "https://github.com/symfony/css-selector/tree/v6.0.3"
  2872. },
  2873. "funding": [
  2874. {
  2875. "url": "https://symfony.com/sponsor",
  2876. "type": "custom"
  2877. },
  2878. {
  2879. "url": "https://github.com/fabpot",
  2880. "type": "github"
  2881. },
  2882. {
  2883. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2884. "type": "tidelift"
  2885. }
  2886. ],
  2887. "time": "2022-01-02T09:55:41+00:00"
  2888. },
  2889. {
  2890. "name": "symfony/deprecation-contracts",
  2891. "version": "v3.0.1",
  2892. "source": {
  2893. "type": "git",
  2894. "url": "https://github.com/symfony/deprecation-contracts.git",
  2895. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  2896. },
  2897. "dist": {
  2898. "type": "zip",
  2899. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  2900. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  2901. "shasum": ""
  2902. },
  2903. "require": {
  2904. "php": ">=8.0.2"
  2905. },
  2906. "type": "library",
  2907. "extra": {
  2908. "branch-alias": {
  2909. "dev-main": "3.0-dev"
  2910. },
  2911. "thanks": {
  2912. "name": "symfony/contracts",
  2913. "url": "https://github.com/symfony/contracts"
  2914. }
  2915. },
  2916. "autoload": {
  2917. "files": [
  2918. "function.php"
  2919. ]
  2920. },
  2921. "notification-url": "https://packagist.org/downloads/",
  2922. "license": [
  2923. "MIT"
  2924. ],
  2925. "authors": [
  2926. {
  2927. "name": "Nicolas Grekas",
  2928. "email": "p@tchwork.com"
  2929. },
  2930. {
  2931. "name": "Symfony Community",
  2932. "homepage": "https://symfony.com/contributors"
  2933. }
  2934. ],
  2935. "description": "A generic function and convention to trigger deprecation notices",
  2936. "homepage": "https://symfony.com",
  2937. "support": {
  2938. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.1"
  2939. },
  2940. "funding": [
  2941. {
  2942. "url": "https://symfony.com/sponsor",
  2943. "type": "custom"
  2944. },
  2945. {
  2946. "url": "https://github.com/fabpot",
  2947. "type": "github"
  2948. },
  2949. {
  2950. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2951. "type": "tidelift"
  2952. }
  2953. ],
  2954. "time": "2022-01-02T09:55:41+00:00"
  2955. },
  2956. {
  2957. "name": "symfony/error-handler",
  2958. "version": "v6.0.7",
  2959. "source": {
  2960. "type": "git",
  2961. "url": "https://github.com/symfony/error-handler.git",
  2962. "reference": "e600c54e5b30555eecea3ffe4314e58f832e78ee"
  2963. },
  2964. "dist": {
  2965. "type": "zip",
  2966. "url": "https://api.github.com/repos/symfony/error-handler/zipball/e600c54e5b30555eecea3ffe4314e58f832e78ee",
  2967. "reference": "e600c54e5b30555eecea3ffe4314e58f832e78ee",
  2968. "shasum": ""
  2969. },
  2970. "require": {
  2971. "php": ">=8.0.2",
  2972. "psr/log": "^1|^2|^3",
  2973. "symfony/var-dumper": "^5.4|^6.0"
  2974. },
  2975. "require-dev": {
  2976. "symfony/deprecation-contracts": "^2.1|^3",
  2977. "symfony/http-kernel": "^5.4|^6.0",
  2978. "symfony/serializer": "^5.4|^6.0"
  2979. },
  2980. "bin": [
  2981. "Resources/bin/patch-type-declarations"
  2982. ],
  2983. "type": "library",
  2984. "autoload": {
  2985. "psr-4": {
  2986. "Symfony\\Component\\ErrorHandler\\": ""
  2987. },
  2988. "exclude-from-classmap": [
  2989. "/Tests/"
  2990. ]
  2991. },
  2992. "notification-url": "https://packagist.org/downloads/",
  2993. "license": [
  2994. "MIT"
  2995. ],
  2996. "authors": [
  2997. {
  2998. "name": "Fabien Potencier",
  2999. "email": "fabien@symfony.com"
  3000. },
  3001. {
  3002. "name": "Symfony Community",
  3003. "homepage": "https://symfony.com/contributors"
  3004. }
  3005. ],
  3006. "description": "Provides tools to manage errors and ease debugging PHP code",
  3007. "homepage": "https://symfony.com",
  3008. "support": {
  3009. "source": "https://github.com/symfony/error-handler/tree/v6.0.7"
  3010. },
  3011. "funding": [
  3012. {
  3013. "url": "https://symfony.com/sponsor",
  3014. "type": "custom"
  3015. },
  3016. {
  3017. "url": "https://github.com/fabpot",
  3018. "type": "github"
  3019. },
  3020. {
  3021. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3022. "type": "tidelift"
  3023. }
  3024. ],
  3025. "time": "2022-03-18T16:21:55+00:00"
  3026. },
  3027. {
  3028. "name": "symfony/event-dispatcher",
  3029. "version": "v6.0.3",
  3030. "source": {
  3031. "type": "git",
  3032. "url": "https://github.com/symfony/event-dispatcher.git",
  3033. "reference": "6472ea2dd415e925b90ca82be64b8bc6157f3934"
  3034. },
  3035. "dist": {
  3036. "type": "zip",
  3037. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6472ea2dd415e925b90ca82be64b8bc6157f3934",
  3038. "reference": "6472ea2dd415e925b90ca82be64b8bc6157f3934",
  3039. "shasum": ""
  3040. },
  3041. "require": {
  3042. "php": ">=8.0.2",
  3043. "symfony/event-dispatcher-contracts": "^2|^3"
  3044. },
  3045. "conflict": {
  3046. "symfony/dependency-injection": "<5.4"
  3047. },
  3048. "provide": {
  3049. "psr/event-dispatcher-implementation": "1.0",
  3050. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3051. },
  3052. "require-dev": {
  3053. "psr/log": "^1|^2|^3",
  3054. "symfony/config": "^5.4|^6.0",
  3055. "symfony/dependency-injection": "^5.4|^6.0",
  3056. "symfony/error-handler": "^5.4|^6.0",
  3057. "symfony/expression-language": "^5.4|^6.0",
  3058. "symfony/http-foundation": "^5.4|^6.0",
  3059. "symfony/service-contracts": "^1.1|^2|^3",
  3060. "symfony/stopwatch": "^5.4|^6.0"
  3061. },
  3062. "suggest": {
  3063. "symfony/dependency-injection": "",
  3064. "symfony/http-kernel": ""
  3065. },
  3066. "type": "library",
  3067. "autoload": {
  3068. "psr-4": {
  3069. "Symfony\\Component\\EventDispatcher\\": ""
  3070. },
  3071. "exclude-from-classmap": [
  3072. "/Tests/"
  3073. ]
  3074. },
  3075. "notification-url": "https://packagist.org/downloads/",
  3076. "license": [
  3077. "MIT"
  3078. ],
  3079. "authors": [
  3080. {
  3081. "name": "Fabien Potencier",
  3082. "email": "fabien@symfony.com"
  3083. },
  3084. {
  3085. "name": "Symfony Community",
  3086. "homepage": "https://symfony.com/contributors"
  3087. }
  3088. ],
  3089. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3090. "homepage": "https://symfony.com",
  3091. "support": {
  3092. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.3"
  3093. },
  3094. "funding": [
  3095. {
  3096. "url": "https://symfony.com/sponsor",
  3097. "type": "custom"
  3098. },
  3099. {
  3100. "url": "https://github.com/fabpot",
  3101. "type": "github"
  3102. },
  3103. {
  3104. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3105. "type": "tidelift"
  3106. }
  3107. ],
  3108. "time": "2022-01-02T09:55:41+00:00"
  3109. },
  3110. {
  3111. "name": "symfony/event-dispatcher-contracts",
  3112. "version": "v3.0.1",
  3113. "source": {
  3114. "type": "git",
  3115. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3116. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  3117. },
  3118. "dist": {
  3119. "type": "zip",
  3120. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  3121. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  3122. "shasum": ""
  3123. },
  3124. "require": {
  3125. "php": ">=8.0.2",
  3126. "psr/event-dispatcher": "^1"
  3127. },
  3128. "suggest": {
  3129. "symfony/event-dispatcher-implementation": ""
  3130. },
  3131. "type": "library",
  3132. "extra": {
  3133. "branch-alias": {
  3134. "dev-main": "3.0-dev"
  3135. },
  3136. "thanks": {
  3137. "name": "symfony/contracts",
  3138. "url": "https://github.com/symfony/contracts"
  3139. }
  3140. },
  3141. "autoload": {
  3142. "psr-4": {
  3143. "Symfony\\Contracts\\EventDispatcher\\": ""
  3144. }
  3145. },
  3146. "notification-url": "https://packagist.org/downloads/",
  3147. "license": [
  3148. "MIT"
  3149. ],
  3150. "authors": [
  3151. {
  3152. "name": "Nicolas Grekas",
  3153. "email": "p@tchwork.com"
  3154. },
  3155. {
  3156. "name": "Symfony Community",
  3157. "homepage": "https://symfony.com/contributors"
  3158. }
  3159. ],
  3160. "description": "Generic abstractions related to dispatching event",
  3161. "homepage": "https://symfony.com",
  3162. "keywords": [
  3163. "abstractions",
  3164. "contracts",
  3165. "decoupling",
  3166. "interfaces",
  3167. "interoperability",
  3168. "standards"
  3169. ],
  3170. "support": {
  3171. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.1"
  3172. },
  3173. "funding": [
  3174. {
  3175. "url": "https://symfony.com/sponsor",
  3176. "type": "custom"
  3177. },
  3178. {
  3179. "url": "https://github.com/fabpot",
  3180. "type": "github"
  3181. },
  3182. {
  3183. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3184. "type": "tidelift"
  3185. }
  3186. ],
  3187. "time": "2022-01-02T09:55:41+00:00"
  3188. },
  3189. {
  3190. "name": "symfony/finder",
  3191. "version": "v6.0.3",
  3192. "source": {
  3193. "type": "git",
  3194. "url": "https://github.com/symfony/finder.git",
  3195. "reference": "8661b74dbabc23223f38c9b99d3f8ade71170430"
  3196. },
  3197. "dist": {
  3198. "type": "zip",
  3199. "url": "https://api.github.com/repos/symfony/finder/zipball/8661b74dbabc23223f38c9b99d3f8ade71170430",
  3200. "reference": "8661b74dbabc23223f38c9b99d3f8ade71170430",
  3201. "shasum": ""
  3202. },
  3203. "require": {
  3204. "php": ">=8.0.2"
  3205. },
  3206. "type": "library",
  3207. "autoload": {
  3208. "psr-4": {
  3209. "Symfony\\Component\\Finder\\": ""
  3210. },
  3211. "exclude-from-classmap": [
  3212. "/Tests/"
  3213. ]
  3214. },
  3215. "notification-url": "https://packagist.org/downloads/",
  3216. "license": [
  3217. "MIT"
  3218. ],
  3219. "authors": [
  3220. {
  3221. "name": "Fabien Potencier",
  3222. "email": "fabien@symfony.com"
  3223. },
  3224. {
  3225. "name": "Symfony Community",
  3226. "homepage": "https://symfony.com/contributors"
  3227. }
  3228. ],
  3229. "description": "Finds files and directories via an intuitive fluent interface",
  3230. "homepage": "https://symfony.com",
  3231. "support": {
  3232. "source": "https://github.com/symfony/finder/tree/v6.0.3"
  3233. },
  3234. "funding": [
  3235. {
  3236. "url": "https://symfony.com/sponsor",
  3237. "type": "custom"
  3238. },
  3239. {
  3240. "url": "https://github.com/fabpot",
  3241. "type": "github"
  3242. },
  3243. {
  3244. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3245. "type": "tidelift"
  3246. }
  3247. ],
  3248. "time": "2022-01-26T17:23:29+00:00"
  3249. },
  3250. {
  3251. "name": "symfony/http-foundation",
  3252. "version": "v6.0.7",
  3253. "source": {
  3254. "type": "git",
  3255. "url": "https://github.com/symfony/http-foundation.git",
  3256. "reference": "c816b26f03b6902dba79b352c84a17f53d815f0d"
  3257. },
  3258. "dist": {
  3259. "type": "zip",
  3260. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/c816b26f03b6902dba79b352c84a17f53d815f0d",
  3261. "reference": "c816b26f03b6902dba79b352c84a17f53d815f0d",
  3262. "shasum": ""
  3263. },
  3264. "require": {
  3265. "php": ">=8.0.2",
  3266. "symfony/deprecation-contracts": "^2.1|^3",
  3267. "symfony/polyfill-mbstring": "~1.1"
  3268. },
  3269. "require-dev": {
  3270. "predis/predis": "~1.0",
  3271. "symfony/cache": "^5.4|^6.0",
  3272. "symfony/expression-language": "^5.4|^6.0",
  3273. "symfony/mime": "^5.4|^6.0"
  3274. },
  3275. "suggest": {
  3276. "symfony/mime": "To use the file extension guesser"
  3277. },
  3278. "type": "library",
  3279. "autoload": {
  3280. "psr-4": {
  3281. "Symfony\\Component\\HttpFoundation\\": ""
  3282. },
  3283. "exclude-from-classmap": [
  3284. "/Tests/"
  3285. ]
  3286. },
  3287. "notification-url": "https://packagist.org/downloads/",
  3288. "license": [
  3289. "MIT"
  3290. ],
  3291. "authors": [
  3292. {
  3293. "name": "Fabien Potencier",
  3294. "email": "fabien@symfony.com"
  3295. },
  3296. {
  3297. "name": "Symfony Community",
  3298. "homepage": "https://symfony.com/contributors"
  3299. }
  3300. ],
  3301. "description": "Defines an object-oriented layer for the HTTP specification",
  3302. "homepage": "https://symfony.com",
  3303. "support": {
  3304. "source": "https://github.com/symfony/http-foundation/tree/v6.0.7"
  3305. },
  3306. "funding": [
  3307. {
  3308. "url": "https://symfony.com/sponsor",
  3309. "type": "custom"
  3310. },
  3311. {
  3312. "url": "https://github.com/fabpot",
  3313. "type": "github"
  3314. },
  3315. {
  3316. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3317. "type": "tidelift"
  3318. }
  3319. ],
  3320. "time": "2022-03-24T14:13:59+00:00"
  3321. },
  3322. {
  3323. "name": "symfony/http-kernel",
  3324. "version": "v6.0.7",
  3325. "source": {
  3326. "type": "git",
  3327. "url": "https://github.com/symfony/http-kernel.git",
  3328. "reference": "9c03dab07a6aa336ffaadc15352b1d14f4ce01f5"
  3329. },
  3330. "dist": {
  3331. "type": "zip",
  3332. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9c03dab07a6aa336ffaadc15352b1d14f4ce01f5",
  3333. "reference": "9c03dab07a6aa336ffaadc15352b1d14f4ce01f5",
  3334. "shasum": ""
  3335. },
  3336. "require": {
  3337. "php": ">=8.0.2",
  3338. "psr/log": "^1|^2|^3",
  3339. "symfony/error-handler": "^5.4|^6.0",
  3340. "symfony/event-dispatcher": "^5.4|^6.0",
  3341. "symfony/http-foundation": "^5.4|^6.0",
  3342. "symfony/polyfill-ctype": "^1.8"
  3343. },
  3344. "conflict": {
  3345. "symfony/browser-kit": "<5.4",
  3346. "symfony/cache": "<5.4",
  3347. "symfony/config": "<5.4",
  3348. "symfony/console": "<5.4",
  3349. "symfony/dependency-injection": "<5.4",
  3350. "symfony/doctrine-bridge": "<5.4",
  3351. "symfony/form": "<5.4",
  3352. "symfony/http-client": "<5.4",
  3353. "symfony/mailer": "<5.4",
  3354. "symfony/messenger": "<5.4",
  3355. "symfony/translation": "<5.4",
  3356. "symfony/twig-bridge": "<5.4",
  3357. "symfony/validator": "<5.4",
  3358. "twig/twig": "<2.13"
  3359. },
  3360. "provide": {
  3361. "psr/log-implementation": "1.0|2.0|3.0"
  3362. },
  3363. "require-dev": {
  3364. "psr/cache": "^1.0|^2.0|^3.0",
  3365. "symfony/browser-kit": "^5.4|^6.0",
  3366. "symfony/config": "^5.4|^6.0",
  3367. "symfony/console": "^5.4|^6.0",
  3368. "symfony/css-selector": "^5.4|^6.0",
  3369. "symfony/dependency-injection": "^5.4|^6.0",
  3370. "symfony/dom-crawler": "^5.4|^6.0",
  3371. "symfony/expression-language": "^5.4|^6.0",
  3372. "symfony/finder": "^5.4|^6.0",
  3373. "symfony/http-client-contracts": "^1.1|^2|^3",
  3374. "symfony/process": "^5.4|^6.0",
  3375. "symfony/routing": "^5.4|^6.0",
  3376. "symfony/stopwatch": "^5.4|^6.0",
  3377. "symfony/translation": "^5.4|^6.0",
  3378. "symfony/translation-contracts": "^1.1|^2|^3",
  3379. "twig/twig": "^2.13|^3.0.4"
  3380. },
  3381. "suggest": {
  3382. "symfony/browser-kit": "",
  3383. "symfony/config": "",
  3384. "symfony/console": "",
  3385. "symfony/dependency-injection": ""
  3386. },
  3387. "type": "library",
  3388. "autoload": {
  3389. "psr-4": {
  3390. "Symfony\\Component\\HttpKernel\\": ""
  3391. },
  3392. "exclude-from-classmap": [
  3393. "/Tests/"
  3394. ]
  3395. },
  3396. "notification-url": "https://packagist.org/downloads/",
  3397. "license": [
  3398. "MIT"
  3399. ],
  3400. "authors": [
  3401. {
  3402. "name": "Fabien Potencier",
  3403. "email": "fabien@symfony.com"
  3404. },
  3405. {
  3406. "name": "Symfony Community",
  3407. "homepage": "https://symfony.com/contributors"
  3408. }
  3409. ],
  3410. "description": "Provides a structured process for converting a Request into a Response",
  3411. "homepage": "https://symfony.com",
  3412. "support": {
  3413. "source": "https://github.com/symfony/http-kernel/tree/v6.0.7"
  3414. },
  3415. "funding": [
  3416. {
  3417. "url": "https://symfony.com/sponsor",
  3418. "type": "custom"
  3419. },
  3420. {
  3421. "url": "https://github.com/fabpot",
  3422. "type": "github"
  3423. },
  3424. {
  3425. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3426. "type": "tidelift"
  3427. }
  3428. ],
  3429. "time": "2022-04-02T06:35:11+00:00"
  3430. },
  3431. {
  3432. "name": "symfony/mailer",
  3433. "version": "v6.0.7",
  3434. "source": {
  3435. "type": "git",
  3436. "url": "https://github.com/symfony/mailer.git",
  3437. "reference": "f7343f94e7afecca2ad840b078f9d80200e1bd27"
  3438. },
  3439. "dist": {
  3440. "type": "zip",
  3441. "url": "https://api.github.com/repos/symfony/mailer/zipball/f7343f94e7afecca2ad840b078f9d80200e1bd27",
  3442. "reference": "f7343f94e7afecca2ad840b078f9d80200e1bd27",
  3443. "shasum": ""
  3444. },
  3445. "require": {
  3446. "egulias/email-validator": "^2.1.10|^3",
  3447. "php": ">=8.0.2",
  3448. "psr/event-dispatcher": "^1",
  3449. "psr/log": "^1|^2|^3",
  3450. "symfony/event-dispatcher": "^5.4|^6.0",
  3451. "symfony/mime": "^5.4|^6.0",
  3452. "symfony/service-contracts": "^1.1|^2|^3"
  3453. },
  3454. "conflict": {
  3455. "symfony/http-kernel": "<5.4"
  3456. },
  3457. "require-dev": {
  3458. "symfony/http-client-contracts": "^1.1|^2|^3",
  3459. "symfony/messenger": "^5.4|^6.0"
  3460. },
  3461. "type": "library",
  3462. "autoload": {
  3463. "psr-4": {
  3464. "Symfony\\Component\\Mailer\\": ""
  3465. },
  3466. "exclude-from-classmap": [
  3467. "/Tests/"
  3468. ]
  3469. },
  3470. "notification-url": "https://packagist.org/downloads/",
  3471. "license": [
  3472. "MIT"
  3473. ],
  3474. "authors": [
  3475. {
  3476. "name": "Fabien Potencier",
  3477. "email": "fabien@symfony.com"
  3478. },
  3479. {
  3480. "name": "Symfony Community",
  3481. "homepage": "https://symfony.com/contributors"
  3482. }
  3483. ],
  3484. "description": "Helps sending emails",
  3485. "homepage": "https://symfony.com",
  3486. "support": {
  3487. "source": "https://github.com/symfony/mailer/tree/v6.0.7"
  3488. },
  3489. "funding": [
  3490. {
  3491. "url": "https://symfony.com/sponsor",
  3492. "type": "custom"
  3493. },
  3494. {
  3495. "url": "https://github.com/fabpot",
  3496. "type": "github"
  3497. },
  3498. {
  3499. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3500. "type": "tidelift"
  3501. }
  3502. ],
  3503. "time": "2022-03-18T16:06:28+00:00"
  3504. },
  3505. {
  3506. "name": "symfony/mime",
  3507. "version": "v6.0.7",
  3508. "source": {
  3509. "type": "git",
  3510. "url": "https://github.com/symfony/mime.git",
  3511. "reference": "74266e396f812a2301536397a6360b6e6913c0d8"
  3512. },
  3513. "dist": {
  3514. "type": "zip",
  3515. "url": "https://api.github.com/repos/symfony/mime/zipball/74266e396f812a2301536397a6360b6e6913c0d8",
  3516. "reference": "74266e396f812a2301536397a6360b6e6913c0d8",
  3517. "shasum": ""
  3518. },
  3519. "require": {
  3520. "php": ">=8.0.2",
  3521. "symfony/polyfill-intl-idn": "^1.10",
  3522. "symfony/polyfill-mbstring": "^1.0"
  3523. },
  3524. "conflict": {
  3525. "egulias/email-validator": "~3.0.0",
  3526. "phpdocumentor/reflection-docblock": "<3.2.2",
  3527. "phpdocumentor/type-resolver": "<1.4.0",
  3528. "symfony/mailer": "<5.4"
  3529. },
  3530. "require-dev": {
  3531. "egulias/email-validator": "^2.1.10|^3.1",
  3532. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3533. "symfony/dependency-injection": "^5.4|^6.0",
  3534. "symfony/property-access": "^5.4|^6.0",
  3535. "symfony/property-info": "^5.4|^6.0",
  3536. "symfony/serializer": "^5.4|^6.0"
  3537. },
  3538. "type": "library",
  3539. "autoload": {
  3540. "psr-4": {
  3541. "Symfony\\Component\\Mime\\": ""
  3542. },
  3543. "exclude-from-classmap": [
  3544. "/Tests/"
  3545. ]
  3546. },
  3547. "notification-url": "https://packagist.org/downloads/",
  3548. "license": [
  3549. "MIT"
  3550. ],
  3551. "authors": [
  3552. {
  3553. "name": "Fabien Potencier",
  3554. "email": "fabien@symfony.com"
  3555. },
  3556. {
  3557. "name": "Symfony Community",
  3558. "homepage": "https://symfony.com/contributors"
  3559. }
  3560. ],
  3561. "description": "Allows manipulating MIME messages",
  3562. "homepage": "https://symfony.com",
  3563. "keywords": [
  3564. "mime",
  3565. "mime-type"
  3566. ],
  3567. "support": {
  3568. "source": "https://github.com/symfony/mime/tree/v6.0.7"
  3569. },
  3570. "funding": [
  3571. {
  3572. "url": "https://symfony.com/sponsor",
  3573. "type": "custom"
  3574. },
  3575. {
  3576. "url": "https://github.com/fabpot",
  3577. "type": "github"
  3578. },
  3579. {
  3580. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3581. "type": "tidelift"
  3582. }
  3583. ],
  3584. "time": "2022-03-13T20:10:05+00:00"
  3585. },
  3586. {
  3587. "name": "symfony/polyfill-ctype",
  3588. "version": "v1.25.0",
  3589. "source": {
  3590. "type": "git",
  3591. "url": "https://github.com/symfony/polyfill-ctype.git",
  3592. "reference": "30885182c981ab175d4d034db0f6f469898070ab"
  3593. },
  3594. "dist": {
  3595. "type": "zip",
  3596. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
  3597. "reference": "30885182c981ab175d4d034db0f6f469898070ab",
  3598. "shasum": ""
  3599. },
  3600. "require": {
  3601. "php": ">=7.1"
  3602. },
  3603. "provide": {
  3604. "ext-ctype": "*"
  3605. },
  3606. "suggest": {
  3607. "ext-ctype": "For best performance"
  3608. },
  3609. "type": "library",
  3610. "extra": {
  3611. "branch-alias": {
  3612. "dev-main": "1.23-dev"
  3613. },
  3614. "thanks": {
  3615. "name": "symfony/polyfill",
  3616. "url": "https://github.com/symfony/polyfill"
  3617. }
  3618. },
  3619. "autoload": {
  3620. "files": [
  3621. "bootstrap.php"
  3622. ],
  3623. "psr-4": {
  3624. "Symfony\\Polyfill\\Ctype\\": ""
  3625. }
  3626. },
  3627. "notification-url": "https://packagist.org/downloads/",
  3628. "license": [
  3629. "MIT"
  3630. ],
  3631. "authors": [
  3632. {
  3633. "name": "Gert de Pagter",
  3634. "email": "BackEndTea@gmail.com"
  3635. },
  3636. {
  3637. "name": "Symfony Community",
  3638. "homepage": "https://symfony.com/contributors"
  3639. }
  3640. ],
  3641. "description": "Symfony polyfill for ctype functions",
  3642. "homepage": "https://symfony.com",
  3643. "keywords": [
  3644. "compatibility",
  3645. "ctype",
  3646. "polyfill",
  3647. "portable"
  3648. ],
  3649. "support": {
  3650. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.25.0"
  3651. },
  3652. "funding": [
  3653. {
  3654. "url": "https://symfony.com/sponsor",
  3655. "type": "custom"
  3656. },
  3657. {
  3658. "url": "https://github.com/fabpot",
  3659. "type": "github"
  3660. },
  3661. {
  3662. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3663. "type": "tidelift"
  3664. }
  3665. ],
  3666. "time": "2021-10-20T20:35:02+00:00"
  3667. },
  3668. {
  3669. "name": "symfony/polyfill-intl-grapheme",
  3670. "version": "v1.25.0",
  3671. "source": {
  3672. "type": "git",
  3673. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3674. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783"
  3675. },
  3676. "dist": {
  3677. "type": "zip",
  3678. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/81b86b50cf841a64252b439e738e97f4a34e2783",
  3679. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783",
  3680. "shasum": ""
  3681. },
  3682. "require": {
  3683. "php": ">=7.1"
  3684. },
  3685. "suggest": {
  3686. "ext-intl": "For best performance"
  3687. },
  3688. "type": "library",
  3689. "extra": {
  3690. "branch-alias": {
  3691. "dev-main": "1.23-dev"
  3692. },
  3693. "thanks": {
  3694. "name": "symfony/polyfill",
  3695. "url": "https://github.com/symfony/polyfill"
  3696. }
  3697. },
  3698. "autoload": {
  3699. "files": [
  3700. "bootstrap.php"
  3701. ],
  3702. "psr-4": {
  3703. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3704. }
  3705. },
  3706. "notification-url": "https://packagist.org/downloads/",
  3707. "license": [
  3708. "MIT"
  3709. ],
  3710. "authors": [
  3711. {
  3712. "name": "Nicolas Grekas",
  3713. "email": "p@tchwork.com"
  3714. },
  3715. {
  3716. "name": "Symfony Community",
  3717. "homepage": "https://symfony.com/contributors"
  3718. }
  3719. ],
  3720. "description": "Symfony polyfill for intl's grapheme_* functions",
  3721. "homepage": "https://symfony.com",
  3722. "keywords": [
  3723. "compatibility",
  3724. "grapheme",
  3725. "intl",
  3726. "polyfill",
  3727. "portable",
  3728. "shim"
  3729. ],
  3730. "support": {
  3731. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.25.0"
  3732. },
  3733. "funding": [
  3734. {
  3735. "url": "https://symfony.com/sponsor",
  3736. "type": "custom"
  3737. },
  3738. {
  3739. "url": "https://github.com/fabpot",
  3740. "type": "github"
  3741. },
  3742. {
  3743. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3744. "type": "tidelift"
  3745. }
  3746. ],
  3747. "time": "2021-11-23T21:10:46+00:00"
  3748. },
  3749. {
  3750. "name": "symfony/polyfill-intl-idn",
  3751. "version": "v1.25.0",
  3752. "source": {
  3753. "type": "git",
  3754. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3755. "reference": "749045c69efb97c70d25d7463abba812e91f3a44"
  3756. },
  3757. "dist": {
  3758. "type": "zip",
  3759. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/749045c69efb97c70d25d7463abba812e91f3a44",
  3760. "reference": "749045c69efb97c70d25d7463abba812e91f3a44",
  3761. "shasum": ""
  3762. },
  3763. "require": {
  3764. "php": ">=7.1",
  3765. "symfony/polyfill-intl-normalizer": "^1.10",
  3766. "symfony/polyfill-php72": "^1.10"
  3767. },
  3768. "suggest": {
  3769. "ext-intl": "For best performance"
  3770. },
  3771. "type": "library",
  3772. "extra": {
  3773. "branch-alias": {
  3774. "dev-main": "1.23-dev"
  3775. },
  3776. "thanks": {
  3777. "name": "symfony/polyfill",
  3778. "url": "https://github.com/symfony/polyfill"
  3779. }
  3780. },
  3781. "autoload": {
  3782. "files": [
  3783. "bootstrap.php"
  3784. ],
  3785. "psr-4": {
  3786. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3787. }
  3788. },
  3789. "notification-url": "https://packagist.org/downloads/",
  3790. "license": [
  3791. "MIT"
  3792. ],
  3793. "authors": [
  3794. {
  3795. "name": "Laurent Bassin",
  3796. "email": "laurent@bassin.info"
  3797. },
  3798. {
  3799. "name": "Trevor Rowbotham",
  3800. "email": "trevor.rowbotham@pm.me"
  3801. },
  3802. {
  3803. "name": "Symfony Community",
  3804. "homepage": "https://symfony.com/contributors"
  3805. }
  3806. ],
  3807. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3808. "homepage": "https://symfony.com",
  3809. "keywords": [
  3810. "compatibility",
  3811. "idn",
  3812. "intl",
  3813. "polyfill",
  3814. "portable",
  3815. "shim"
  3816. ],
  3817. "support": {
  3818. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.25.0"
  3819. },
  3820. "funding": [
  3821. {
  3822. "url": "https://symfony.com/sponsor",
  3823. "type": "custom"
  3824. },
  3825. {
  3826. "url": "https://github.com/fabpot",
  3827. "type": "github"
  3828. },
  3829. {
  3830. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3831. "type": "tidelift"
  3832. }
  3833. ],
  3834. "time": "2021-09-14T14:02:44+00:00"
  3835. },
  3836. {
  3837. "name": "symfony/polyfill-intl-normalizer",
  3838. "version": "v1.25.0",
  3839. "source": {
  3840. "type": "git",
  3841. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3842. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  3843. },
  3844. "dist": {
  3845. "type": "zip",
  3846. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  3847. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  3848. "shasum": ""
  3849. },
  3850. "require": {
  3851. "php": ">=7.1"
  3852. },
  3853. "suggest": {
  3854. "ext-intl": "For best performance"
  3855. },
  3856. "type": "library",
  3857. "extra": {
  3858. "branch-alias": {
  3859. "dev-main": "1.23-dev"
  3860. },
  3861. "thanks": {
  3862. "name": "symfony/polyfill",
  3863. "url": "https://github.com/symfony/polyfill"
  3864. }
  3865. },
  3866. "autoload": {
  3867. "files": [
  3868. "bootstrap.php"
  3869. ],
  3870. "psr-4": {
  3871. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3872. },
  3873. "classmap": [
  3874. "Resources/stubs"
  3875. ]
  3876. },
  3877. "notification-url": "https://packagist.org/downloads/",
  3878. "license": [
  3879. "MIT"
  3880. ],
  3881. "authors": [
  3882. {
  3883. "name": "Nicolas Grekas",
  3884. "email": "p@tchwork.com"
  3885. },
  3886. {
  3887. "name": "Symfony Community",
  3888. "homepage": "https://symfony.com/contributors"
  3889. }
  3890. ],
  3891. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3892. "homepage": "https://symfony.com",
  3893. "keywords": [
  3894. "compatibility",
  3895. "intl",
  3896. "normalizer",
  3897. "polyfill",
  3898. "portable",
  3899. "shim"
  3900. ],
  3901. "support": {
  3902. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.25.0"
  3903. },
  3904. "funding": [
  3905. {
  3906. "url": "https://symfony.com/sponsor",
  3907. "type": "custom"
  3908. },
  3909. {
  3910. "url": "https://github.com/fabpot",
  3911. "type": "github"
  3912. },
  3913. {
  3914. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3915. "type": "tidelift"
  3916. }
  3917. ],
  3918. "time": "2021-02-19T12:13:01+00:00"
  3919. },
  3920. {
  3921. "name": "symfony/polyfill-mbstring",
  3922. "version": "v1.25.0",
  3923. "source": {
  3924. "type": "git",
  3925. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3926. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
  3927. },
  3928. "dist": {
  3929. "type": "zip",
  3930. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
  3931. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
  3932. "shasum": ""
  3933. },
  3934. "require": {
  3935. "php": ">=7.1"
  3936. },
  3937. "provide": {
  3938. "ext-mbstring": "*"
  3939. },
  3940. "suggest": {
  3941. "ext-mbstring": "For best performance"
  3942. },
  3943. "type": "library",
  3944. "extra": {
  3945. "branch-alias": {
  3946. "dev-main": "1.23-dev"
  3947. },
  3948. "thanks": {
  3949. "name": "symfony/polyfill",
  3950. "url": "https://github.com/symfony/polyfill"
  3951. }
  3952. },
  3953. "autoload": {
  3954. "files": [
  3955. "bootstrap.php"
  3956. ],
  3957. "psr-4": {
  3958. "Symfony\\Polyfill\\Mbstring\\": ""
  3959. }
  3960. },
  3961. "notification-url": "https://packagist.org/downloads/",
  3962. "license": [
  3963. "MIT"
  3964. ],
  3965. "authors": [
  3966. {
  3967. "name": "Nicolas Grekas",
  3968. "email": "p@tchwork.com"
  3969. },
  3970. {
  3971. "name": "Symfony Community",
  3972. "homepage": "https://symfony.com/contributors"
  3973. }
  3974. ],
  3975. "description": "Symfony polyfill for the Mbstring extension",
  3976. "homepage": "https://symfony.com",
  3977. "keywords": [
  3978. "compatibility",
  3979. "mbstring",
  3980. "polyfill",
  3981. "portable",
  3982. "shim"
  3983. ],
  3984. "support": {
  3985. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0"
  3986. },
  3987. "funding": [
  3988. {
  3989. "url": "https://symfony.com/sponsor",
  3990. "type": "custom"
  3991. },
  3992. {
  3993. "url": "https://github.com/fabpot",
  3994. "type": "github"
  3995. },
  3996. {
  3997. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3998. "type": "tidelift"
  3999. }
  4000. ],
  4001. "time": "2021-11-30T18:21:41+00:00"
  4002. },
  4003. {
  4004. "name": "symfony/polyfill-php72",
  4005. "version": "v1.25.0",
  4006. "source": {
  4007. "type": "git",
  4008. "url": "https://github.com/symfony/polyfill-php72.git",
  4009. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  4010. },
  4011. "dist": {
  4012. "type": "zip",
  4013. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  4014. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  4015. "shasum": ""
  4016. },
  4017. "require": {
  4018. "php": ">=7.1"
  4019. },
  4020. "type": "library",
  4021. "extra": {
  4022. "branch-alias": {
  4023. "dev-main": "1.23-dev"
  4024. },
  4025. "thanks": {
  4026. "name": "symfony/polyfill",
  4027. "url": "https://github.com/symfony/polyfill"
  4028. }
  4029. },
  4030. "autoload": {
  4031. "files": [
  4032. "bootstrap.php"
  4033. ],
  4034. "psr-4": {
  4035. "Symfony\\Polyfill\\Php72\\": ""
  4036. }
  4037. },
  4038. "notification-url": "https://packagist.org/downloads/",
  4039. "license": [
  4040. "MIT"
  4041. ],
  4042. "authors": [
  4043. {
  4044. "name": "Nicolas Grekas",
  4045. "email": "p@tchwork.com"
  4046. },
  4047. {
  4048. "name": "Symfony Community",
  4049. "homepage": "https://symfony.com/contributors"
  4050. }
  4051. ],
  4052. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4053. "homepage": "https://symfony.com",
  4054. "keywords": [
  4055. "compatibility",
  4056. "polyfill",
  4057. "portable",
  4058. "shim"
  4059. ],
  4060. "support": {
  4061. "source": "https://github.com/symfony/polyfill-php72/tree/v1.25.0"
  4062. },
  4063. "funding": [
  4064. {
  4065. "url": "https://symfony.com/sponsor",
  4066. "type": "custom"
  4067. },
  4068. {
  4069. "url": "https://github.com/fabpot",
  4070. "type": "github"
  4071. },
  4072. {
  4073. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4074. "type": "tidelift"
  4075. }
  4076. ],
  4077. "time": "2021-05-27T09:17:38+00:00"
  4078. },
  4079. {
  4080. "name": "symfony/polyfill-php80",
  4081. "version": "v1.25.0",
  4082. "source": {
  4083. "type": "git",
  4084. "url": "https://github.com/symfony/polyfill-php80.git",
  4085. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c"
  4086. },
  4087. "dist": {
  4088. "type": "zip",
  4089. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  4090. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  4091. "shasum": ""
  4092. },
  4093. "require": {
  4094. "php": ">=7.1"
  4095. },
  4096. "type": "library",
  4097. "extra": {
  4098. "branch-alias": {
  4099. "dev-main": "1.23-dev"
  4100. },
  4101. "thanks": {
  4102. "name": "symfony/polyfill",
  4103. "url": "https://github.com/symfony/polyfill"
  4104. }
  4105. },
  4106. "autoload": {
  4107. "files": [
  4108. "bootstrap.php"
  4109. ],
  4110. "psr-4": {
  4111. "Symfony\\Polyfill\\Php80\\": ""
  4112. },
  4113. "classmap": [
  4114. "Resources/stubs"
  4115. ]
  4116. },
  4117. "notification-url": "https://packagist.org/downloads/",
  4118. "license": [
  4119. "MIT"
  4120. ],
  4121. "authors": [
  4122. {
  4123. "name": "Ion Bazan",
  4124. "email": "ion.bazan@gmail.com"
  4125. },
  4126. {
  4127. "name": "Nicolas Grekas",
  4128. "email": "p@tchwork.com"
  4129. },
  4130. {
  4131. "name": "Symfony Community",
  4132. "homepage": "https://symfony.com/contributors"
  4133. }
  4134. ],
  4135. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4136. "homepage": "https://symfony.com",
  4137. "keywords": [
  4138. "compatibility",
  4139. "polyfill",
  4140. "portable",
  4141. "shim"
  4142. ],
  4143. "support": {
  4144. "source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0"
  4145. },
  4146. "funding": [
  4147. {
  4148. "url": "https://symfony.com/sponsor",
  4149. "type": "custom"
  4150. },
  4151. {
  4152. "url": "https://github.com/fabpot",
  4153. "type": "github"
  4154. },
  4155. {
  4156. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4157. "type": "tidelift"
  4158. }
  4159. ],
  4160. "time": "2022-03-04T08:16:47+00:00"
  4161. },
  4162. {
  4163. "name": "symfony/polyfill-php81",
  4164. "version": "v1.25.0",
  4165. "source": {
  4166. "type": "git",
  4167. "url": "https://github.com/symfony/polyfill-php81.git",
  4168. "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f"
  4169. },
  4170. "dist": {
  4171. "type": "zip",
  4172. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
  4173. "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
  4174. "shasum": ""
  4175. },
  4176. "require": {
  4177. "php": ">=7.1"
  4178. },
  4179. "type": "library",
  4180. "extra": {
  4181. "branch-alias": {
  4182. "dev-main": "1.23-dev"
  4183. },
  4184. "thanks": {
  4185. "name": "symfony/polyfill",
  4186. "url": "https://github.com/symfony/polyfill"
  4187. }
  4188. },
  4189. "autoload": {
  4190. "files": [
  4191. "bootstrap.php"
  4192. ],
  4193. "psr-4": {
  4194. "Symfony\\Polyfill\\Php81\\": ""
  4195. },
  4196. "classmap": [
  4197. "Resources/stubs"
  4198. ]
  4199. },
  4200. "notification-url": "https://packagist.org/downloads/",
  4201. "license": [
  4202. "MIT"
  4203. ],
  4204. "authors": [
  4205. {
  4206. "name": "Nicolas Grekas",
  4207. "email": "p@tchwork.com"
  4208. },
  4209. {
  4210. "name": "Symfony Community",
  4211. "homepage": "https://symfony.com/contributors"
  4212. }
  4213. ],
  4214. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  4215. "homepage": "https://symfony.com",
  4216. "keywords": [
  4217. "compatibility",
  4218. "polyfill",
  4219. "portable",
  4220. "shim"
  4221. ],
  4222. "support": {
  4223. "source": "https://github.com/symfony/polyfill-php81/tree/v1.25.0"
  4224. },
  4225. "funding": [
  4226. {
  4227. "url": "https://symfony.com/sponsor",
  4228. "type": "custom"
  4229. },
  4230. {
  4231. "url": "https://github.com/fabpot",
  4232. "type": "github"
  4233. },
  4234. {
  4235. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4236. "type": "tidelift"
  4237. }
  4238. ],
  4239. "time": "2021-09-13T13:58:11+00:00"
  4240. },
  4241. {
  4242. "name": "symfony/process",
  4243. "version": "v6.0.7",
  4244. "source": {
  4245. "type": "git",
  4246. "url": "https://github.com/symfony/process.git",
  4247. "reference": "e13f6757e267d687e20ec5b26ccfcbbe511cd8f4"
  4248. },
  4249. "dist": {
  4250. "type": "zip",
  4251. "url": "https://api.github.com/repos/symfony/process/zipball/e13f6757e267d687e20ec5b26ccfcbbe511cd8f4",
  4252. "reference": "e13f6757e267d687e20ec5b26ccfcbbe511cd8f4",
  4253. "shasum": ""
  4254. },
  4255. "require": {
  4256. "php": ">=8.0.2"
  4257. },
  4258. "type": "library",
  4259. "autoload": {
  4260. "psr-4": {
  4261. "Symfony\\Component\\Process\\": ""
  4262. },
  4263. "exclude-from-classmap": [
  4264. "/Tests/"
  4265. ]
  4266. },
  4267. "notification-url": "https://packagist.org/downloads/",
  4268. "license": [
  4269. "MIT"
  4270. ],
  4271. "authors": [
  4272. {
  4273. "name": "Fabien Potencier",
  4274. "email": "fabien@symfony.com"
  4275. },
  4276. {
  4277. "name": "Symfony Community",
  4278. "homepage": "https://symfony.com/contributors"
  4279. }
  4280. ],
  4281. "description": "Executes commands in sub-processes",
  4282. "homepage": "https://symfony.com",
  4283. "support": {
  4284. "source": "https://github.com/symfony/process/tree/v6.0.7"
  4285. },
  4286. "funding": [
  4287. {
  4288. "url": "https://symfony.com/sponsor",
  4289. "type": "custom"
  4290. },
  4291. {
  4292. "url": "https://github.com/fabpot",
  4293. "type": "github"
  4294. },
  4295. {
  4296. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4297. "type": "tidelift"
  4298. }
  4299. ],
  4300. "time": "2022-03-18T16:21:55+00:00"
  4301. },
  4302. {
  4303. "name": "symfony/routing",
  4304. "version": "v6.0.5",
  4305. "source": {
  4306. "type": "git",
  4307. "url": "https://github.com/symfony/routing.git",
  4308. "reference": "a738b152426ac7fcb94bdab8188264652238bef1"
  4309. },
  4310. "dist": {
  4311. "type": "zip",
  4312. "url": "https://api.github.com/repos/symfony/routing/zipball/a738b152426ac7fcb94bdab8188264652238bef1",
  4313. "reference": "a738b152426ac7fcb94bdab8188264652238bef1",
  4314. "shasum": ""
  4315. },
  4316. "require": {
  4317. "php": ">=8.0.2"
  4318. },
  4319. "conflict": {
  4320. "doctrine/annotations": "<1.12",
  4321. "symfony/config": "<5.4",
  4322. "symfony/dependency-injection": "<5.4",
  4323. "symfony/yaml": "<5.4"
  4324. },
  4325. "require-dev": {
  4326. "doctrine/annotations": "^1.12",
  4327. "psr/log": "^1|^2|^3",
  4328. "symfony/config": "^5.4|^6.0",
  4329. "symfony/dependency-injection": "^5.4|^6.0",
  4330. "symfony/expression-language": "^5.4|^6.0",
  4331. "symfony/http-foundation": "^5.4|^6.0",
  4332. "symfony/yaml": "^5.4|^6.0"
  4333. },
  4334. "suggest": {
  4335. "symfony/config": "For using the all-in-one router or any loader",
  4336. "symfony/expression-language": "For using expression matching",
  4337. "symfony/http-foundation": "For using a Symfony Request object",
  4338. "symfony/yaml": "For using the YAML loader"
  4339. },
  4340. "type": "library",
  4341. "autoload": {
  4342. "psr-4": {
  4343. "Symfony\\Component\\Routing\\": ""
  4344. },
  4345. "exclude-from-classmap": [
  4346. "/Tests/"
  4347. ]
  4348. },
  4349. "notification-url": "https://packagist.org/downloads/",
  4350. "license": [
  4351. "MIT"
  4352. ],
  4353. "authors": [
  4354. {
  4355. "name": "Fabien Potencier",
  4356. "email": "fabien@symfony.com"
  4357. },
  4358. {
  4359. "name": "Symfony Community",
  4360. "homepage": "https://symfony.com/contributors"
  4361. }
  4362. ],
  4363. "description": "Maps an HTTP request to a set of configuration variables",
  4364. "homepage": "https://symfony.com",
  4365. "keywords": [
  4366. "router",
  4367. "routing",
  4368. "uri",
  4369. "url"
  4370. ],
  4371. "support": {
  4372. "source": "https://github.com/symfony/routing/tree/v6.0.5"
  4373. },
  4374. "funding": [
  4375. {
  4376. "url": "https://symfony.com/sponsor",
  4377. "type": "custom"
  4378. },
  4379. {
  4380. "url": "https://github.com/fabpot",
  4381. "type": "github"
  4382. },
  4383. {
  4384. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4385. "type": "tidelift"
  4386. }
  4387. ],
  4388. "time": "2022-01-31T19:46:53+00:00"
  4389. },
  4390. {
  4391. "name": "symfony/service-contracts",
  4392. "version": "v3.0.1",
  4393. "source": {
  4394. "type": "git",
  4395. "url": "https://github.com/symfony/service-contracts.git",
  4396. "reference": "e517458f278c2131ca9f262f8fbaf01410f2c65c"
  4397. },
  4398. "dist": {
  4399. "type": "zip",
  4400. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e517458f278c2131ca9f262f8fbaf01410f2c65c",
  4401. "reference": "e517458f278c2131ca9f262f8fbaf01410f2c65c",
  4402. "shasum": ""
  4403. },
  4404. "require": {
  4405. "php": ">=8.0.2",
  4406. "psr/container": "^2.0"
  4407. },
  4408. "conflict": {
  4409. "ext-psr": "<1.1|>=2"
  4410. },
  4411. "suggest": {
  4412. "symfony/service-implementation": ""
  4413. },
  4414. "type": "library",
  4415. "extra": {
  4416. "branch-alias": {
  4417. "dev-main": "3.0-dev"
  4418. },
  4419. "thanks": {
  4420. "name": "symfony/contracts",
  4421. "url": "https://github.com/symfony/contracts"
  4422. }
  4423. },
  4424. "autoload": {
  4425. "psr-4": {
  4426. "Symfony\\Contracts\\Service\\": ""
  4427. }
  4428. },
  4429. "notification-url": "https://packagist.org/downloads/",
  4430. "license": [
  4431. "MIT"
  4432. ],
  4433. "authors": [
  4434. {
  4435. "name": "Nicolas Grekas",
  4436. "email": "p@tchwork.com"
  4437. },
  4438. {
  4439. "name": "Symfony Community",
  4440. "homepage": "https://symfony.com/contributors"
  4441. }
  4442. ],
  4443. "description": "Generic abstractions related to writing services",
  4444. "homepage": "https://symfony.com",
  4445. "keywords": [
  4446. "abstractions",
  4447. "contracts",
  4448. "decoupling",
  4449. "interfaces",
  4450. "interoperability",
  4451. "standards"
  4452. ],
  4453. "support": {
  4454. "source": "https://github.com/symfony/service-contracts/tree/v3.0.1"
  4455. },
  4456. "funding": [
  4457. {
  4458. "url": "https://symfony.com/sponsor",
  4459. "type": "custom"
  4460. },
  4461. {
  4462. "url": "https://github.com/fabpot",
  4463. "type": "github"
  4464. },
  4465. {
  4466. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4467. "type": "tidelift"
  4468. }
  4469. ],
  4470. "time": "2022-03-13T20:10:05+00:00"
  4471. },
  4472. {
  4473. "name": "symfony/string",
  4474. "version": "v6.0.3",
  4475. "source": {
  4476. "type": "git",
  4477. "url": "https://github.com/symfony/string.git",
  4478. "reference": "522144f0c4c004c80d56fa47e40e17028e2eefc2"
  4479. },
  4480. "dist": {
  4481. "type": "zip",
  4482. "url": "https://api.github.com/repos/symfony/string/zipball/522144f0c4c004c80d56fa47e40e17028e2eefc2",
  4483. "reference": "522144f0c4c004c80d56fa47e40e17028e2eefc2",
  4484. "shasum": ""
  4485. },
  4486. "require": {
  4487. "php": ">=8.0.2",
  4488. "symfony/polyfill-ctype": "~1.8",
  4489. "symfony/polyfill-intl-grapheme": "~1.0",
  4490. "symfony/polyfill-intl-normalizer": "~1.0",
  4491. "symfony/polyfill-mbstring": "~1.0"
  4492. },
  4493. "conflict": {
  4494. "symfony/translation-contracts": "<2.0"
  4495. },
  4496. "require-dev": {
  4497. "symfony/error-handler": "^5.4|^6.0",
  4498. "symfony/http-client": "^5.4|^6.0",
  4499. "symfony/translation-contracts": "^2.0|^3.0",
  4500. "symfony/var-exporter": "^5.4|^6.0"
  4501. },
  4502. "type": "library",
  4503. "autoload": {
  4504. "files": [
  4505. "Resources/functions.php"
  4506. ],
  4507. "psr-4": {
  4508. "Symfony\\Component\\String\\": ""
  4509. },
  4510. "exclude-from-classmap": [
  4511. "/Tests/"
  4512. ]
  4513. },
  4514. "notification-url": "https://packagist.org/downloads/",
  4515. "license": [
  4516. "MIT"
  4517. ],
  4518. "authors": [
  4519. {
  4520. "name": "Nicolas Grekas",
  4521. "email": "p@tchwork.com"
  4522. },
  4523. {
  4524. "name": "Symfony Community",
  4525. "homepage": "https://symfony.com/contributors"
  4526. }
  4527. ],
  4528. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4529. "homepage": "https://symfony.com",
  4530. "keywords": [
  4531. "grapheme",
  4532. "i18n",
  4533. "string",
  4534. "unicode",
  4535. "utf-8",
  4536. "utf8"
  4537. ],
  4538. "support": {
  4539. "source": "https://github.com/symfony/string/tree/v6.0.3"
  4540. },
  4541. "funding": [
  4542. {
  4543. "url": "https://symfony.com/sponsor",
  4544. "type": "custom"
  4545. },
  4546. {
  4547. "url": "https://github.com/fabpot",
  4548. "type": "github"
  4549. },
  4550. {
  4551. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4552. "type": "tidelift"
  4553. }
  4554. ],
  4555. "time": "2022-01-02T09:55:41+00:00"
  4556. },
  4557. {
  4558. "name": "symfony/translation",
  4559. "version": "v6.0.7",
  4560. "source": {
  4561. "type": "git",
  4562. "url": "https://github.com/symfony/translation.git",
  4563. "reference": "b2792b39d74cf41ea3065f27fd2ddf0b556ac7a1"
  4564. },
  4565. "dist": {
  4566. "type": "zip",
  4567. "url": "https://api.github.com/repos/symfony/translation/zipball/b2792b39d74cf41ea3065f27fd2ddf0b556ac7a1",
  4568. "reference": "b2792b39d74cf41ea3065f27fd2ddf0b556ac7a1",
  4569. "shasum": ""
  4570. },
  4571. "require": {
  4572. "php": ">=8.0.2",
  4573. "symfony/polyfill-mbstring": "~1.0",
  4574. "symfony/translation-contracts": "^2.3|^3.0"
  4575. },
  4576. "conflict": {
  4577. "symfony/config": "<5.4",
  4578. "symfony/console": "<5.4",
  4579. "symfony/dependency-injection": "<5.4",
  4580. "symfony/http-kernel": "<5.4",
  4581. "symfony/twig-bundle": "<5.4",
  4582. "symfony/yaml": "<5.4"
  4583. },
  4584. "provide": {
  4585. "symfony/translation-implementation": "2.3|3.0"
  4586. },
  4587. "require-dev": {
  4588. "psr/log": "^1|^2|^3",
  4589. "symfony/config": "^5.4|^6.0",
  4590. "symfony/console": "^5.4|^6.0",
  4591. "symfony/dependency-injection": "^5.4|^6.0",
  4592. "symfony/finder": "^5.4|^6.0",
  4593. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  4594. "symfony/http-kernel": "^5.4|^6.0",
  4595. "symfony/intl": "^5.4|^6.0",
  4596. "symfony/polyfill-intl-icu": "^1.21",
  4597. "symfony/service-contracts": "^1.1.2|^2|^3",
  4598. "symfony/yaml": "^5.4|^6.0"
  4599. },
  4600. "suggest": {
  4601. "psr/log-implementation": "To use logging capability in translator",
  4602. "symfony/config": "",
  4603. "symfony/yaml": ""
  4604. },
  4605. "type": "library",
  4606. "autoload": {
  4607. "files": [
  4608. "Resources/functions.php"
  4609. ],
  4610. "psr-4": {
  4611. "Symfony\\Component\\Translation\\": ""
  4612. },
  4613. "exclude-from-classmap": [
  4614. "/Tests/"
  4615. ]
  4616. },
  4617. "notification-url": "https://packagist.org/downloads/",
  4618. "license": [
  4619. "MIT"
  4620. ],
  4621. "authors": [
  4622. {
  4623. "name": "Fabien Potencier",
  4624. "email": "fabien@symfony.com"
  4625. },
  4626. {
  4627. "name": "Symfony Community",
  4628. "homepage": "https://symfony.com/contributors"
  4629. }
  4630. ],
  4631. "description": "Provides tools to internationalize your application",
  4632. "homepage": "https://symfony.com",
  4633. "support": {
  4634. "source": "https://github.com/symfony/translation/tree/v6.0.7"
  4635. },
  4636. "funding": [
  4637. {
  4638. "url": "https://symfony.com/sponsor",
  4639. "type": "custom"
  4640. },
  4641. {
  4642. "url": "https://github.com/fabpot",
  4643. "type": "github"
  4644. },
  4645. {
  4646. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4647. "type": "tidelift"
  4648. }
  4649. ],
  4650. "time": "2022-03-31T17:18:25+00:00"
  4651. },
  4652. {
  4653. "name": "symfony/translation-contracts",
  4654. "version": "v3.0.1",
  4655. "source": {
  4656. "type": "git",
  4657. "url": "https://github.com/symfony/translation-contracts.git",
  4658. "reference": "c4183fc3ef0f0510893cbeedc7718fb5cafc9ac9"
  4659. },
  4660. "dist": {
  4661. "type": "zip",
  4662. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/c4183fc3ef0f0510893cbeedc7718fb5cafc9ac9",
  4663. "reference": "c4183fc3ef0f0510893cbeedc7718fb5cafc9ac9",
  4664. "shasum": ""
  4665. },
  4666. "require": {
  4667. "php": ">=8.0.2"
  4668. },
  4669. "suggest": {
  4670. "symfony/translation-implementation": ""
  4671. },
  4672. "type": "library",
  4673. "extra": {
  4674. "branch-alias": {
  4675. "dev-main": "3.0-dev"
  4676. },
  4677. "thanks": {
  4678. "name": "symfony/contracts",
  4679. "url": "https://github.com/symfony/contracts"
  4680. }
  4681. },
  4682. "autoload": {
  4683. "psr-4": {
  4684. "Symfony\\Contracts\\Translation\\": ""
  4685. }
  4686. },
  4687. "notification-url": "https://packagist.org/downloads/",
  4688. "license": [
  4689. "MIT"
  4690. ],
  4691. "authors": [
  4692. {
  4693. "name": "Nicolas Grekas",
  4694. "email": "p@tchwork.com"
  4695. },
  4696. {
  4697. "name": "Symfony Community",
  4698. "homepage": "https://symfony.com/contributors"
  4699. }
  4700. ],
  4701. "description": "Generic abstractions related to translation",
  4702. "homepage": "https://symfony.com",
  4703. "keywords": [
  4704. "abstractions",
  4705. "contracts",
  4706. "decoupling",
  4707. "interfaces",
  4708. "interoperability",
  4709. "standards"
  4710. ],
  4711. "support": {
  4712. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.1"
  4713. },
  4714. "funding": [
  4715. {
  4716. "url": "https://symfony.com/sponsor",
  4717. "type": "custom"
  4718. },
  4719. {
  4720. "url": "https://github.com/fabpot",
  4721. "type": "github"
  4722. },
  4723. {
  4724. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4725. "type": "tidelift"
  4726. }
  4727. ],
  4728. "time": "2022-01-02T09:55:41+00:00"
  4729. },
  4730. {
  4731. "name": "symfony/var-dumper",
  4732. "version": "v6.0.6",
  4733. "source": {
  4734. "type": "git",
  4735. "url": "https://github.com/symfony/var-dumper.git",
  4736. "reference": "38358405ae948963c50a3aae3dfea598223ba15e"
  4737. },
  4738. "dist": {
  4739. "type": "zip",
  4740. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/38358405ae948963c50a3aae3dfea598223ba15e",
  4741. "reference": "38358405ae948963c50a3aae3dfea598223ba15e",
  4742. "shasum": ""
  4743. },
  4744. "require": {
  4745. "php": ">=8.0.2",
  4746. "symfony/polyfill-mbstring": "~1.0"
  4747. },
  4748. "conflict": {
  4749. "phpunit/phpunit": "<5.4.3",
  4750. "symfony/console": "<5.4"
  4751. },
  4752. "require-dev": {
  4753. "ext-iconv": "*",
  4754. "symfony/console": "^5.4|^6.0",
  4755. "symfony/process": "^5.4|^6.0",
  4756. "symfony/uid": "^5.4|^6.0",
  4757. "twig/twig": "^2.13|^3.0.4"
  4758. },
  4759. "suggest": {
  4760. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4761. "ext-intl": "To show region name in time zone dump",
  4762. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4763. },
  4764. "bin": [
  4765. "Resources/bin/var-dump-server"
  4766. ],
  4767. "type": "library",
  4768. "autoload": {
  4769. "files": [
  4770. "Resources/functions/dump.php"
  4771. ],
  4772. "psr-4": {
  4773. "Symfony\\Component\\VarDumper\\": ""
  4774. },
  4775. "exclude-from-classmap": [
  4776. "/Tests/"
  4777. ]
  4778. },
  4779. "notification-url": "https://packagist.org/downloads/",
  4780. "license": [
  4781. "MIT"
  4782. ],
  4783. "authors": [
  4784. {
  4785. "name": "Nicolas Grekas",
  4786. "email": "p@tchwork.com"
  4787. },
  4788. {
  4789. "name": "Symfony Community",
  4790. "homepage": "https://symfony.com/contributors"
  4791. }
  4792. ],
  4793. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4794. "homepage": "https://symfony.com",
  4795. "keywords": [
  4796. "debug",
  4797. "dump"
  4798. ],
  4799. "support": {
  4800. "source": "https://github.com/symfony/var-dumper/tree/v6.0.6"
  4801. },
  4802. "funding": [
  4803. {
  4804. "url": "https://symfony.com/sponsor",
  4805. "type": "custom"
  4806. },
  4807. {
  4808. "url": "https://github.com/fabpot",
  4809. "type": "github"
  4810. },
  4811. {
  4812. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4813. "type": "tidelift"
  4814. }
  4815. ],
  4816. "time": "2022-03-02T12:58:14+00:00"
  4817. },
  4818. {
  4819. "name": "tijsverkoyen/css-to-inline-styles",
  4820. "version": "2.2.4",
  4821. "source": {
  4822. "type": "git",
  4823. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  4824. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  4825. },
  4826. "dist": {
  4827. "type": "zip",
  4828. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  4829. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  4830. "shasum": ""
  4831. },
  4832. "require": {
  4833. "ext-dom": "*",
  4834. "ext-libxml": "*",
  4835. "php": "^5.5 || ^7.0 || ^8.0",
  4836. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  4837. },
  4838. "require-dev": {
  4839. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  4840. },
  4841. "type": "library",
  4842. "extra": {
  4843. "branch-alias": {
  4844. "dev-master": "2.2.x-dev"
  4845. }
  4846. },
  4847. "autoload": {
  4848. "psr-4": {
  4849. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  4850. }
  4851. },
  4852. "notification-url": "https://packagist.org/downloads/",
  4853. "license": [
  4854. "BSD-3-Clause"
  4855. ],
  4856. "authors": [
  4857. {
  4858. "name": "Tijs Verkoyen",
  4859. "email": "css_to_inline_styles@verkoyen.eu",
  4860. "role": "Developer"
  4861. }
  4862. ],
  4863. "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.",
  4864. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  4865. "support": {
  4866. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  4867. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  4868. },
  4869. "time": "2021-12-08T09:12:39+00:00"
  4870. },
  4871. {
  4872. "name": "vlucas/phpdotenv",
  4873. "version": "v5.4.1",
  4874. "source": {
  4875. "type": "git",
  4876. "url": "https://github.com/vlucas/phpdotenv.git",
  4877. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  4878. },
  4879. "dist": {
  4880. "type": "zip",
  4881. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  4882. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  4883. "shasum": ""
  4884. },
  4885. "require": {
  4886. "ext-pcre": "*",
  4887. "graham-campbell/result-type": "^1.0.2",
  4888. "php": "^7.1.3 || ^8.0",
  4889. "phpoption/phpoption": "^1.8",
  4890. "symfony/polyfill-ctype": "^1.23",
  4891. "symfony/polyfill-mbstring": "^1.23.1",
  4892. "symfony/polyfill-php80": "^1.23.1"
  4893. },
  4894. "require-dev": {
  4895. "bamarni/composer-bin-plugin": "^1.4.1",
  4896. "ext-filter": "*",
  4897. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  4898. },
  4899. "suggest": {
  4900. "ext-filter": "Required to use the boolean validator."
  4901. },
  4902. "type": "library",
  4903. "extra": {
  4904. "branch-alias": {
  4905. "dev-master": "5.4-dev"
  4906. }
  4907. },
  4908. "autoload": {
  4909. "psr-4": {
  4910. "Dotenv\\": "src/"
  4911. }
  4912. },
  4913. "notification-url": "https://packagist.org/downloads/",
  4914. "license": [
  4915. "BSD-3-Clause"
  4916. ],
  4917. "authors": [
  4918. {
  4919. "name": "Graham Campbell",
  4920. "email": "hello@gjcampbell.co.uk",
  4921. "homepage": "https://github.com/GrahamCampbell"
  4922. },
  4923. {
  4924. "name": "Vance Lucas",
  4925. "email": "vance@vancelucas.com",
  4926. "homepage": "https://github.com/vlucas"
  4927. }
  4928. ],
  4929. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4930. "keywords": [
  4931. "dotenv",
  4932. "env",
  4933. "environment"
  4934. ],
  4935. "support": {
  4936. "issues": "https://github.com/vlucas/phpdotenv/issues",
  4937. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  4938. },
  4939. "funding": [
  4940. {
  4941. "url": "https://github.com/GrahamCampbell",
  4942. "type": "github"
  4943. },
  4944. {
  4945. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  4946. "type": "tidelift"
  4947. }
  4948. ],
  4949. "time": "2021-12-12T23:22:04+00:00"
  4950. },
  4951. {
  4952. "name": "voku/portable-ascii",
  4953. "version": "2.0.1",
  4954. "source": {
  4955. "type": "git",
  4956. "url": "https://github.com/voku/portable-ascii.git",
  4957. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  4958. },
  4959. "dist": {
  4960. "type": "zip",
  4961. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  4962. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  4963. "shasum": ""
  4964. },
  4965. "require": {
  4966. "php": ">=7.0.0"
  4967. },
  4968. "require-dev": {
  4969. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  4970. },
  4971. "suggest": {
  4972. "ext-intl": "Use Intl for transliterator_transliterate() support"
  4973. },
  4974. "type": "library",
  4975. "autoload": {
  4976. "psr-4": {
  4977. "voku\\": "src/voku/"
  4978. }
  4979. },
  4980. "notification-url": "https://packagist.org/downloads/",
  4981. "license": [
  4982. "MIT"
  4983. ],
  4984. "authors": [
  4985. {
  4986. "name": "Lars Moelleken",
  4987. "homepage": "http://www.moelleken.org/"
  4988. }
  4989. ],
  4990. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  4991. "homepage": "https://github.com/voku/portable-ascii",
  4992. "keywords": [
  4993. "ascii",
  4994. "clean",
  4995. "php"
  4996. ],
  4997. "support": {
  4998. "issues": "https://github.com/voku/portable-ascii/issues",
  4999. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  5000. },
  5001. "funding": [
  5002. {
  5003. "url": "https://www.paypal.me/moelleken",
  5004. "type": "custom"
  5005. },
  5006. {
  5007. "url": "https://github.com/voku",
  5008. "type": "github"
  5009. },
  5010. {
  5011. "url": "https://opencollective.com/portable-ascii",
  5012. "type": "open_collective"
  5013. },
  5014. {
  5015. "url": "https://www.patreon.com/voku",
  5016. "type": "patreon"
  5017. },
  5018. {
  5019. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  5020. "type": "tidelift"
  5021. }
  5022. ],
  5023. "time": "2022-03-08T17:03:00+00:00"
  5024. },
  5025. {
  5026. "name": "webmozart/assert",
  5027. "version": "1.10.0",
  5028. "source": {
  5029. "type": "git",
  5030. "url": "https://github.com/webmozarts/assert.git",
  5031. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  5032. },
  5033. "dist": {
  5034. "type": "zip",
  5035. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  5036. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  5037. "shasum": ""
  5038. },
  5039. "require": {
  5040. "php": "^7.2 || ^8.0",
  5041. "symfony/polyfill-ctype": "^1.8"
  5042. },
  5043. "conflict": {
  5044. "phpstan/phpstan": "<0.12.20",
  5045. "vimeo/psalm": "<4.6.1 || 4.6.2"
  5046. },
  5047. "require-dev": {
  5048. "phpunit/phpunit": "^8.5.13"
  5049. },
  5050. "type": "library",
  5051. "extra": {
  5052. "branch-alias": {
  5053. "dev-master": "1.10-dev"
  5054. }
  5055. },
  5056. "autoload": {
  5057. "psr-4": {
  5058. "Webmozart\\Assert\\": "src/"
  5059. }
  5060. },
  5061. "notification-url": "https://packagist.org/downloads/",
  5062. "license": [
  5063. "MIT"
  5064. ],
  5065. "authors": [
  5066. {
  5067. "name": "Bernhard Schussek",
  5068. "email": "bschussek@gmail.com"
  5069. }
  5070. ],
  5071. "description": "Assertions to validate method input/output with nice error messages.",
  5072. "keywords": [
  5073. "assert",
  5074. "check",
  5075. "validate"
  5076. ],
  5077. "support": {
  5078. "issues": "https://github.com/webmozarts/assert/issues",
  5079. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  5080. },
  5081. "time": "2021-03-09T10:59:23+00:00"
  5082. }
  5083. ],
  5084. "packages-dev": [
  5085. {
  5086. "name": "doctrine/instantiator",
  5087. "version": "1.4.1",
  5088. "source": {
  5089. "type": "git",
  5090. "url": "https://github.com/doctrine/instantiator.git",
  5091. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  5092. },
  5093. "dist": {
  5094. "type": "zip",
  5095. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  5096. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  5097. "shasum": ""
  5098. },
  5099. "require": {
  5100. "php": "^7.1 || ^8.0"
  5101. },
  5102. "require-dev": {
  5103. "doctrine/coding-standard": "^9",
  5104. "ext-pdo": "*",
  5105. "ext-phar": "*",
  5106. "phpbench/phpbench": "^0.16 || ^1",
  5107. "phpstan/phpstan": "^1.4",
  5108. "phpstan/phpstan-phpunit": "^1",
  5109. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  5110. "vimeo/psalm": "^4.22"
  5111. },
  5112. "type": "library",
  5113. "autoload": {
  5114. "psr-4": {
  5115. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  5116. }
  5117. },
  5118. "notification-url": "https://packagist.org/downloads/",
  5119. "license": [
  5120. "MIT"
  5121. ],
  5122. "authors": [
  5123. {
  5124. "name": "Marco Pivetta",
  5125. "email": "ocramius@gmail.com",
  5126. "homepage": "https://ocramius.github.io/"
  5127. }
  5128. ],
  5129. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  5130. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  5131. "keywords": [
  5132. "constructor",
  5133. "instantiate"
  5134. ],
  5135. "support": {
  5136. "issues": "https://github.com/doctrine/instantiator/issues",
  5137. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  5138. },
  5139. "funding": [
  5140. {
  5141. "url": "https://www.doctrine-project.org/sponsorship.html",
  5142. "type": "custom"
  5143. },
  5144. {
  5145. "url": "https://www.patreon.com/phpdoctrine",
  5146. "type": "patreon"
  5147. },
  5148. {
  5149. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  5150. "type": "tidelift"
  5151. }
  5152. ],
  5153. "time": "2022-03-03T08:28:38+00:00"
  5154. },
  5155. {
  5156. "name": "facade/ignition-contracts",
  5157. "version": "1.0.2",
  5158. "source": {
  5159. "type": "git",
  5160. "url": "https://github.com/facade/ignition-contracts.git",
  5161. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  5162. },
  5163. "dist": {
  5164. "type": "zip",
  5165. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5166. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5167. "shasum": ""
  5168. },
  5169. "require": {
  5170. "php": "^7.3|^8.0"
  5171. },
  5172. "require-dev": {
  5173. "friendsofphp/php-cs-fixer": "^v2.15.8",
  5174. "phpunit/phpunit": "^9.3.11",
  5175. "vimeo/psalm": "^3.17.1"
  5176. },
  5177. "type": "library",
  5178. "autoload": {
  5179. "psr-4": {
  5180. "Facade\\IgnitionContracts\\": "src"
  5181. }
  5182. },
  5183. "notification-url": "https://packagist.org/downloads/",
  5184. "license": [
  5185. "MIT"
  5186. ],
  5187. "authors": [
  5188. {
  5189. "name": "Freek Van der Herten",
  5190. "email": "freek@spatie.be",
  5191. "homepage": "https://flareapp.io",
  5192. "role": "Developer"
  5193. }
  5194. ],
  5195. "description": "Solution contracts for Ignition",
  5196. "homepage": "https://github.com/facade/ignition-contracts",
  5197. "keywords": [
  5198. "contracts",
  5199. "flare",
  5200. "ignition"
  5201. ],
  5202. "support": {
  5203. "issues": "https://github.com/facade/ignition-contracts/issues",
  5204. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  5205. },
  5206. "time": "2020-10-16T08:27:54+00:00"
  5207. },
  5208. {
  5209. "name": "fakerphp/faker",
  5210. "version": "v1.19.0",
  5211. "source": {
  5212. "type": "git",
  5213. "url": "https://github.com/FakerPHP/Faker.git",
  5214. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75"
  5215. },
  5216. "dist": {
  5217. "type": "zip",
  5218. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/d7f08a622b3346766325488aa32ddc93ccdecc75",
  5219. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75",
  5220. "shasum": ""
  5221. },
  5222. "require": {
  5223. "php": "^7.1 || ^8.0",
  5224. "psr/container": "^1.0 || ^2.0",
  5225. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  5226. },
  5227. "conflict": {
  5228. "fzaninotto/faker": "*"
  5229. },
  5230. "require-dev": {
  5231. "bamarni/composer-bin-plugin": "^1.4.1",
  5232. "doctrine/persistence": "^1.3 || ^2.0",
  5233. "ext-intl": "*",
  5234. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  5235. },
  5236. "suggest": {
  5237. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  5238. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  5239. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  5240. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  5241. "ext-mbstring": "Required for multibyte Unicode string functionality."
  5242. },
  5243. "type": "library",
  5244. "extra": {
  5245. "branch-alias": {
  5246. "dev-main": "v1.19-dev"
  5247. }
  5248. },
  5249. "autoload": {
  5250. "psr-4": {
  5251. "Faker\\": "src/Faker/"
  5252. }
  5253. },
  5254. "notification-url": "https://packagist.org/downloads/",
  5255. "license": [
  5256. "MIT"
  5257. ],
  5258. "authors": [
  5259. {
  5260. "name": "François Zaninotto"
  5261. }
  5262. ],
  5263. "description": "Faker is a PHP library that generates fake data for you.",
  5264. "keywords": [
  5265. "data",
  5266. "faker",
  5267. "fixtures"
  5268. ],
  5269. "support": {
  5270. "issues": "https://github.com/FakerPHP/Faker/issues",
  5271. "source": "https://github.com/FakerPHP/Faker/tree/v1.19.0"
  5272. },
  5273. "time": "2022-02-02T17:38:57+00:00"
  5274. },
  5275. {
  5276. "name": "filp/whoops",
  5277. "version": "2.14.5",
  5278. "source": {
  5279. "type": "git",
  5280. "url": "https://github.com/filp/whoops.git",
  5281. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
  5282. },
  5283. "dist": {
  5284. "type": "zip",
  5285. "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  5286. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  5287. "shasum": ""
  5288. },
  5289. "require": {
  5290. "php": "^5.5.9 || ^7.0 || ^8.0",
  5291. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  5292. },
  5293. "require-dev": {
  5294. "mockery/mockery": "^0.9 || ^1.0",
  5295. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  5296. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  5297. },
  5298. "suggest": {
  5299. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  5300. "whoops/soap": "Formats errors as SOAP responses"
  5301. },
  5302. "type": "library",
  5303. "extra": {
  5304. "branch-alias": {
  5305. "dev-master": "2.7-dev"
  5306. }
  5307. },
  5308. "autoload": {
  5309. "psr-4": {
  5310. "Whoops\\": "src/Whoops/"
  5311. }
  5312. },
  5313. "notification-url": "https://packagist.org/downloads/",
  5314. "license": [
  5315. "MIT"
  5316. ],
  5317. "authors": [
  5318. {
  5319. "name": "Filipe Dobreira",
  5320. "homepage": "https://github.com/filp",
  5321. "role": "Developer"
  5322. }
  5323. ],
  5324. "description": "php error handling for cool kids",
  5325. "homepage": "https://filp.github.io/whoops/",
  5326. "keywords": [
  5327. "error",
  5328. "exception",
  5329. "handling",
  5330. "library",
  5331. "throwable",
  5332. "whoops"
  5333. ],
  5334. "support": {
  5335. "issues": "https://github.com/filp/whoops/issues",
  5336. "source": "https://github.com/filp/whoops/tree/2.14.5"
  5337. },
  5338. "funding": [
  5339. {
  5340. "url": "https://github.com/denis-sokolov",
  5341. "type": "github"
  5342. }
  5343. ],
  5344. "time": "2022-01-07T12:00:00+00:00"
  5345. },
  5346. {
  5347. "name": "hamcrest/hamcrest-php",
  5348. "version": "v2.0.1",
  5349. "source": {
  5350. "type": "git",
  5351. "url": "https://github.com/hamcrest/hamcrest-php.git",
  5352. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  5353. },
  5354. "dist": {
  5355. "type": "zip",
  5356. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5357. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5358. "shasum": ""
  5359. },
  5360. "require": {
  5361. "php": "^5.3|^7.0|^8.0"
  5362. },
  5363. "replace": {
  5364. "cordoval/hamcrest-php": "*",
  5365. "davedevelopment/hamcrest-php": "*",
  5366. "kodova/hamcrest-php": "*"
  5367. },
  5368. "require-dev": {
  5369. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  5370. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  5371. },
  5372. "type": "library",
  5373. "extra": {
  5374. "branch-alias": {
  5375. "dev-master": "2.1-dev"
  5376. }
  5377. },
  5378. "autoload": {
  5379. "classmap": [
  5380. "hamcrest"
  5381. ]
  5382. },
  5383. "notification-url": "https://packagist.org/downloads/",
  5384. "license": [
  5385. "BSD-3-Clause"
  5386. ],
  5387. "description": "This is the PHP port of Hamcrest Matchers",
  5388. "keywords": [
  5389. "test"
  5390. ],
  5391. "support": {
  5392. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  5393. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  5394. },
  5395. "time": "2020-07-09T08:09:16+00:00"
  5396. },
  5397. {
  5398. "name": "laravel/sail",
  5399. "version": "v1.13.9",
  5400. "source": {
  5401. "type": "git",
  5402. "url": "https://github.com/laravel/sail.git",
  5403. "reference": "7bb294fe99fc42c3b1bee83fb667cd7698b3c385"
  5404. },
  5405. "dist": {
  5406. "type": "zip",
  5407. "url": "https://api.github.com/repos/laravel/sail/zipball/7bb294fe99fc42c3b1bee83fb667cd7698b3c385",
  5408. "reference": "7bb294fe99fc42c3b1bee83fb667cd7698b3c385",
  5409. "shasum": ""
  5410. },
  5411. "require": {
  5412. "illuminate/console": "^8.0|^9.0",
  5413. "illuminate/contracts": "^8.0|^9.0",
  5414. "illuminate/support": "^8.0|^9.0",
  5415. "php": "^7.3|^8.0"
  5416. },
  5417. "bin": [
  5418. "bin/sail"
  5419. ],
  5420. "type": "library",
  5421. "extra": {
  5422. "branch-alias": {
  5423. "dev-master": "1.x-dev"
  5424. },
  5425. "laravel": {
  5426. "providers": [
  5427. "Laravel\\Sail\\SailServiceProvider"
  5428. ]
  5429. }
  5430. },
  5431. "autoload": {
  5432. "psr-4": {
  5433. "Laravel\\Sail\\": "src/"
  5434. }
  5435. },
  5436. "notification-url": "https://packagist.org/downloads/",
  5437. "license": [
  5438. "MIT"
  5439. ],
  5440. "authors": [
  5441. {
  5442. "name": "Taylor Otwell",
  5443. "email": "taylor@laravel.com"
  5444. }
  5445. ],
  5446. "description": "Docker files for running a basic Laravel application.",
  5447. "keywords": [
  5448. "docker",
  5449. "laravel"
  5450. ],
  5451. "support": {
  5452. "issues": "https://github.com/laravel/sail/issues",
  5453. "source": "https://github.com/laravel/sail"
  5454. },
  5455. "time": "2022-04-04T15:21:51+00:00"
  5456. },
  5457. {
  5458. "name": "mockery/mockery",
  5459. "version": "1.5.0",
  5460. "source": {
  5461. "type": "git",
  5462. "url": "https://github.com/mockery/mockery.git",
  5463. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac"
  5464. },
  5465. "dist": {
  5466. "type": "zip",
  5467. "url": "https://api.github.com/repos/mockery/mockery/zipball/c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  5468. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  5469. "shasum": ""
  5470. },
  5471. "require": {
  5472. "hamcrest/hamcrest-php": "^2.0.1",
  5473. "lib-pcre": ">=7.0",
  5474. "php": "^7.3 || ^8.0"
  5475. },
  5476. "conflict": {
  5477. "phpunit/phpunit": "<8.0"
  5478. },
  5479. "require-dev": {
  5480. "phpunit/phpunit": "^8.5 || ^9.3"
  5481. },
  5482. "type": "library",
  5483. "extra": {
  5484. "branch-alias": {
  5485. "dev-master": "1.4.x-dev"
  5486. }
  5487. },
  5488. "autoload": {
  5489. "psr-0": {
  5490. "Mockery": "library/"
  5491. }
  5492. },
  5493. "notification-url": "https://packagist.org/downloads/",
  5494. "license": [
  5495. "BSD-3-Clause"
  5496. ],
  5497. "authors": [
  5498. {
  5499. "name": "Pádraic Brady",
  5500. "email": "padraic.brady@gmail.com",
  5501. "homepage": "http://blog.astrumfutura.com"
  5502. },
  5503. {
  5504. "name": "Dave Marshall",
  5505. "email": "dave.marshall@atstsolutions.co.uk",
  5506. "homepage": "http://davedevelopment.co.uk"
  5507. }
  5508. ],
  5509. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5510. "homepage": "https://github.com/mockery/mockery",
  5511. "keywords": [
  5512. "BDD",
  5513. "TDD",
  5514. "library",
  5515. "mock",
  5516. "mock objects",
  5517. "mockery",
  5518. "stub",
  5519. "test",
  5520. "test double",
  5521. "testing"
  5522. ],
  5523. "support": {
  5524. "issues": "https://github.com/mockery/mockery/issues",
  5525. "source": "https://github.com/mockery/mockery/tree/1.5.0"
  5526. },
  5527. "time": "2022-01-20T13:18:17+00:00"
  5528. },
  5529. {
  5530. "name": "myclabs/deep-copy",
  5531. "version": "1.11.0",
  5532. "source": {
  5533. "type": "git",
  5534. "url": "https://github.com/myclabs/DeepCopy.git",
  5535. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  5536. },
  5537. "dist": {
  5538. "type": "zip",
  5539. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  5540. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  5541. "shasum": ""
  5542. },
  5543. "require": {
  5544. "php": "^7.1 || ^8.0"
  5545. },
  5546. "conflict": {
  5547. "doctrine/collections": "<1.6.8",
  5548. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  5549. },
  5550. "require-dev": {
  5551. "doctrine/collections": "^1.6.8",
  5552. "doctrine/common": "^2.13.3 || ^3.2.2",
  5553. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  5554. },
  5555. "type": "library",
  5556. "autoload": {
  5557. "files": [
  5558. "src/DeepCopy/deep_copy.php"
  5559. ],
  5560. "psr-4": {
  5561. "DeepCopy\\": "src/DeepCopy/"
  5562. }
  5563. },
  5564. "notification-url": "https://packagist.org/downloads/",
  5565. "license": [
  5566. "MIT"
  5567. ],
  5568. "description": "Create deep copies (clones) of your objects",
  5569. "keywords": [
  5570. "clone",
  5571. "copy",
  5572. "duplicate",
  5573. "object",
  5574. "object graph"
  5575. ],
  5576. "support": {
  5577. "issues": "https://github.com/myclabs/DeepCopy/issues",
  5578. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  5579. },
  5580. "funding": [
  5581. {
  5582. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  5583. "type": "tidelift"
  5584. }
  5585. ],
  5586. "time": "2022-03-03T13:19:32+00:00"
  5587. },
  5588. {
  5589. "name": "nunomaduro/collision",
  5590. "version": "v6.2.0",
  5591. "source": {
  5592. "type": "git",
  5593. "url": "https://github.com/nunomaduro/collision.git",
  5594. "reference": "c379636dc50e829edb3a8bcb944a01aa1aed8f25"
  5595. },
  5596. "dist": {
  5597. "type": "zip",
  5598. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/c379636dc50e829edb3a8bcb944a01aa1aed8f25",
  5599. "reference": "c379636dc50e829edb3a8bcb944a01aa1aed8f25",
  5600. "shasum": ""
  5601. },
  5602. "require": {
  5603. "facade/ignition-contracts": "^1.0.2",
  5604. "filp/whoops": "^2.14.5",
  5605. "php": "^8.0.0",
  5606. "symfony/console": "^6.0.2"
  5607. },
  5608. "require-dev": {
  5609. "brianium/paratest": "^6.4.1",
  5610. "laravel/framework": "^9.7",
  5611. "nunomaduro/larastan": "^1.0.2",
  5612. "nunomaduro/mock-final-classes": "^1.1.0",
  5613. "orchestra/testbench": "^7.3.0",
  5614. "phpunit/phpunit": "^9.5.11"
  5615. },
  5616. "type": "library",
  5617. "extra": {
  5618. "branch-alias": {
  5619. "dev-develop": "6.x-dev"
  5620. },
  5621. "laravel": {
  5622. "providers": [
  5623. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  5624. ]
  5625. }
  5626. },
  5627. "autoload": {
  5628. "psr-4": {
  5629. "NunoMaduro\\Collision\\": "src/"
  5630. }
  5631. },
  5632. "notification-url": "https://packagist.org/downloads/",
  5633. "license": [
  5634. "MIT"
  5635. ],
  5636. "authors": [
  5637. {
  5638. "name": "Nuno Maduro",
  5639. "email": "enunomaduro@gmail.com"
  5640. }
  5641. ],
  5642. "description": "Cli error handling for console/command-line PHP applications.",
  5643. "keywords": [
  5644. "artisan",
  5645. "cli",
  5646. "command-line",
  5647. "console",
  5648. "error",
  5649. "handling",
  5650. "laravel",
  5651. "laravel-zero",
  5652. "php",
  5653. "symfony"
  5654. ],
  5655. "support": {
  5656. "issues": "https://github.com/nunomaduro/collision/issues",
  5657. "source": "https://github.com/nunomaduro/collision"
  5658. },
  5659. "funding": [
  5660. {
  5661. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5662. "type": "custom"
  5663. },
  5664. {
  5665. "url": "https://github.com/nunomaduro",
  5666. "type": "github"
  5667. },
  5668. {
  5669. "url": "https://www.patreon.com/nunomaduro",
  5670. "type": "patreon"
  5671. }
  5672. ],
  5673. "time": "2022-04-05T15:31:38+00:00"
  5674. },
  5675. {
  5676. "name": "phar-io/manifest",
  5677. "version": "2.0.3",
  5678. "source": {
  5679. "type": "git",
  5680. "url": "https://github.com/phar-io/manifest.git",
  5681. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  5682. },
  5683. "dist": {
  5684. "type": "zip",
  5685. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  5686. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  5687. "shasum": ""
  5688. },
  5689. "require": {
  5690. "ext-dom": "*",
  5691. "ext-phar": "*",
  5692. "ext-xmlwriter": "*",
  5693. "phar-io/version": "^3.0.1",
  5694. "php": "^7.2 || ^8.0"
  5695. },
  5696. "type": "library",
  5697. "extra": {
  5698. "branch-alias": {
  5699. "dev-master": "2.0.x-dev"
  5700. }
  5701. },
  5702. "autoload": {
  5703. "classmap": [
  5704. "src/"
  5705. ]
  5706. },
  5707. "notification-url": "https://packagist.org/downloads/",
  5708. "license": [
  5709. "BSD-3-Clause"
  5710. ],
  5711. "authors": [
  5712. {
  5713. "name": "Arne Blankerts",
  5714. "email": "arne@blankerts.de",
  5715. "role": "Developer"
  5716. },
  5717. {
  5718. "name": "Sebastian Heuer",
  5719. "email": "sebastian@phpeople.de",
  5720. "role": "Developer"
  5721. },
  5722. {
  5723. "name": "Sebastian Bergmann",
  5724. "email": "sebastian@phpunit.de",
  5725. "role": "Developer"
  5726. }
  5727. ],
  5728. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5729. "support": {
  5730. "issues": "https://github.com/phar-io/manifest/issues",
  5731. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  5732. },
  5733. "time": "2021-07-20T11:28:43+00:00"
  5734. },
  5735. {
  5736. "name": "phar-io/version",
  5737. "version": "3.2.1",
  5738. "source": {
  5739. "type": "git",
  5740. "url": "https://github.com/phar-io/version.git",
  5741. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  5742. },
  5743. "dist": {
  5744. "type": "zip",
  5745. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  5746. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  5747. "shasum": ""
  5748. },
  5749. "require": {
  5750. "php": "^7.2 || ^8.0"
  5751. },
  5752. "type": "library",
  5753. "autoload": {
  5754. "classmap": [
  5755. "src/"
  5756. ]
  5757. },
  5758. "notification-url": "https://packagist.org/downloads/",
  5759. "license": [
  5760. "BSD-3-Clause"
  5761. ],
  5762. "authors": [
  5763. {
  5764. "name": "Arne Blankerts",
  5765. "email": "arne@blankerts.de",
  5766. "role": "Developer"
  5767. },
  5768. {
  5769. "name": "Sebastian Heuer",
  5770. "email": "sebastian@phpeople.de",
  5771. "role": "Developer"
  5772. },
  5773. {
  5774. "name": "Sebastian Bergmann",
  5775. "email": "sebastian@phpunit.de",
  5776. "role": "Developer"
  5777. }
  5778. ],
  5779. "description": "Library for handling version information and constraints",
  5780. "support": {
  5781. "issues": "https://github.com/phar-io/version/issues",
  5782. "source": "https://github.com/phar-io/version/tree/3.2.1"
  5783. },
  5784. "time": "2022-02-21T01:04:05+00:00"
  5785. },
  5786. {
  5787. "name": "phpdocumentor/reflection-common",
  5788. "version": "2.2.0",
  5789. "source": {
  5790. "type": "git",
  5791. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5792. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  5793. },
  5794. "dist": {
  5795. "type": "zip",
  5796. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5797. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5798. "shasum": ""
  5799. },
  5800. "require": {
  5801. "php": "^7.2 || ^8.0"
  5802. },
  5803. "type": "library",
  5804. "extra": {
  5805. "branch-alias": {
  5806. "dev-2.x": "2.x-dev"
  5807. }
  5808. },
  5809. "autoload": {
  5810. "psr-4": {
  5811. "phpDocumentor\\Reflection\\": "src/"
  5812. }
  5813. },
  5814. "notification-url": "https://packagist.org/downloads/",
  5815. "license": [
  5816. "MIT"
  5817. ],
  5818. "authors": [
  5819. {
  5820. "name": "Jaap van Otterdijk",
  5821. "email": "opensource@ijaap.nl"
  5822. }
  5823. ],
  5824. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5825. "homepage": "http://www.phpdoc.org",
  5826. "keywords": [
  5827. "FQSEN",
  5828. "phpDocumentor",
  5829. "phpdoc",
  5830. "reflection",
  5831. "static analysis"
  5832. ],
  5833. "support": {
  5834. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  5835. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  5836. },
  5837. "time": "2020-06-27T09:03:43+00:00"
  5838. },
  5839. {
  5840. "name": "phpdocumentor/reflection-docblock",
  5841. "version": "5.3.0",
  5842. "source": {
  5843. "type": "git",
  5844. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5845. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  5846. },
  5847. "dist": {
  5848. "type": "zip",
  5849. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  5850. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  5851. "shasum": ""
  5852. },
  5853. "require": {
  5854. "ext-filter": "*",
  5855. "php": "^7.2 || ^8.0",
  5856. "phpdocumentor/reflection-common": "^2.2",
  5857. "phpdocumentor/type-resolver": "^1.3",
  5858. "webmozart/assert": "^1.9.1"
  5859. },
  5860. "require-dev": {
  5861. "mockery/mockery": "~1.3.2",
  5862. "psalm/phar": "^4.8"
  5863. },
  5864. "type": "library",
  5865. "extra": {
  5866. "branch-alias": {
  5867. "dev-master": "5.x-dev"
  5868. }
  5869. },
  5870. "autoload": {
  5871. "psr-4": {
  5872. "phpDocumentor\\Reflection\\": "src"
  5873. }
  5874. },
  5875. "notification-url": "https://packagist.org/downloads/",
  5876. "license": [
  5877. "MIT"
  5878. ],
  5879. "authors": [
  5880. {
  5881. "name": "Mike van Riel",
  5882. "email": "me@mikevanriel.com"
  5883. },
  5884. {
  5885. "name": "Jaap van Otterdijk",
  5886. "email": "account@ijaap.nl"
  5887. }
  5888. ],
  5889. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5890. "support": {
  5891. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  5892. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  5893. },
  5894. "time": "2021-10-19T17:43:47+00:00"
  5895. },
  5896. {
  5897. "name": "phpdocumentor/type-resolver",
  5898. "version": "1.6.1",
  5899. "source": {
  5900. "type": "git",
  5901. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5902. "reference": "77a32518733312af16a44300404e945338981de3"
  5903. },
  5904. "dist": {
  5905. "type": "zip",
  5906. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  5907. "reference": "77a32518733312af16a44300404e945338981de3",
  5908. "shasum": ""
  5909. },
  5910. "require": {
  5911. "php": "^7.2 || ^8.0",
  5912. "phpdocumentor/reflection-common": "^2.0"
  5913. },
  5914. "require-dev": {
  5915. "ext-tokenizer": "*",
  5916. "psalm/phar": "^4.8"
  5917. },
  5918. "type": "library",
  5919. "extra": {
  5920. "branch-alias": {
  5921. "dev-1.x": "1.x-dev"
  5922. }
  5923. },
  5924. "autoload": {
  5925. "psr-4": {
  5926. "phpDocumentor\\Reflection\\": "src"
  5927. }
  5928. },
  5929. "notification-url": "https://packagist.org/downloads/",
  5930. "license": [
  5931. "MIT"
  5932. ],
  5933. "authors": [
  5934. {
  5935. "name": "Mike van Riel",
  5936. "email": "me@mikevanriel.com"
  5937. }
  5938. ],
  5939. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  5940. "support": {
  5941. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  5942. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  5943. },
  5944. "time": "2022-03-15T21:29:03+00:00"
  5945. },
  5946. {
  5947. "name": "phpspec/prophecy",
  5948. "version": "v1.15.0",
  5949. "source": {
  5950. "type": "git",
  5951. "url": "https://github.com/phpspec/prophecy.git",
  5952. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  5953. },
  5954. "dist": {
  5955. "type": "zip",
  5956. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  5957. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  5958. "shasum": ""
  5959. },
  5960. "require": {
  5961. "doctrine/instantiator": "^1.2",
  5962. "php": "^7.2 || ~8.0, <8.2",
  5963. "phpdocumentor/reflection-docblock": "^5.2",
  5964. "sebastian/comparator": "^3.0 || ^4.0",
  5965. "sebastian/recursion-context": "^3.0 || ^4.0"
  5966. },
  5967. "require-dev": {
  5968. "phpspec/phpspec": "^6.0 || ^7.0",
  5969. "phpunit/phpunit": "^8.0 || ^9.0"
  5970. },
  5971. "type": "library",
  5972. "extra": {
  5973. "branch-alias": {
  5974. "dev-master": "1.x-dev"
  5975. }
  5976. },
  5977. "autoload": {
  5978. "psr-4": {
  5979. "Prophecy\\": "src/Prophecy"
  5980. }
  5981. },
  5982. "notification-url": "https://packagist.org/downloads/",
  5983. "license": [
  5984. "MIT"
  5985. ],
  5986. "authors": [
  5987. {
  5988. "name": "Konstantin Kudryashov",
  5989. "email": "ever.zet@gmail.com",
  5990. "homepage": "http://everzet.com"
  5991. },
  5992. {
  5993. "name": "Marcello Duarte",
  5994. "email": "marcello.duarte@gmail.com"
  5995. }
  5996. ],
  5997. "description": "Highly opinionated mocking framework for PHP 5.3+",
  5998. "homepage": "https://github.com/phpspec/prophecy",
  5999. "keywords": [
  6000. "Double",
  6001. "Dummy",
  6002. "fake",
  6003. "mock",
  6004. "spy",
  6005. "stub"
  6006. ],
  6007. "support": {
  6008. "issues": "https://github.com/phpspec/prophecy/issues",
  6009. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  6010. },
  6011. "time": "2021-12-08T12:19:24+00:00"
  6012. },
  6013. {
  6014. "name": "phpunit/php-code-coverage",
  6015. "version": "9.2.15",
  6016. "source": {
  6017. "type": "git",
  6018. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6019. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f"
  6020. },
  6021. "dist": {
  6022. "type": "zip",
  6023. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  6024. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  6025. "shasum": ""
  6026. },
  6027. "require": {
  6028. "ext-dom": "*",
  6029. "ext-libxml": "*",
  6030. "ext-xmlwriter": "*",
  6031. "nikic/php-parser": "^4.13.0",
  6032. "php": ">=7.3",
  6033. "phpunit/php-file-iterator": "^3.0.3",
  6034. "phpunit/php-text-template": "^2.0.2",
  6035. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  6036. "sebastian/complexity": "^2.0",
  6037. "sebastian/environment": "^5.1.2",
  6038. "sebastian/lines-of-code": "^1.0.3",
  6039. "sebastian/version": "^3.0.1",
  6040. "theseer/tokenizer": "^1.2.0"
  6041. },
  6042. "require-dev": {
  6043. "phpunit/phpunit": "^9.3"
  6044. },
  6045. "suggest": {
  6046. "ext-pcov": "*",
  6047. "ext-xdebug": "*"
  6048. },
  6049. "type": "library",
  6050. "extra": {
  6051. "branch-alias": {
  6052. "dev-master": "9.2-dev"
  6053. }
  6054. },
  6055. "autoload": {
  6056. "classmap": [
  6057. "src/"
  6058. ]
  6059. },
  6060. "notification-url": "https://packagist.org/downloads/",
  6061. "license": [
  6062. "BSD-3-Clause"
  6063. ],
  6064. "authors": [
  6065. {
  6066. "name": "Sebastian Bergmann",
  6067. "email": "sebastian@phpunit.de",
  6068. "role": "lead"
  6069. }
  6070. ],
  6071. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6072. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6073. "keywords": [
  6074. "coverage",
  6075. "testing",
  6076. "xunit"
  6077. ],
  6078. "support": {
  6079. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  6080. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15"
  6081. },
  6082. "funding": [
  6083. {
  6084. "url": "https://github.com/sebastianbergmann",
  6085. "type": "github"
  6086. }
  6087. ],
  6088. "time": "2022-03-07T09:28:20+00:00"
  6089. },
  6090. {
  6091. "name": "phpunit/php-file-iterator",
  6092. "version": "3.0.6",
  6093. "source": {
  6094. "type": "git",
  6095. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6096. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  6097. },
  6098. "dist": {
  6099. "type": "zip",
  6100. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  6101. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  6102. "shasum": ""
  6103. },
  6104. "require": {
  6105. "php": ">=7.3"
  6106. },
  6107. "require-dev": {
  6108. "phpunit/phpunit": "^9.3"
  6109. },
  6110. "type": "library",
  6111. "extra": {
  6112. "branch-alias": {
  6113. "dev-master": "3.0-dev"
  6114. }
  6115. },
  6116. "autoload": {
  6117. "classmap": [
  6118. "src/"
  6119. ]
  6120. },
  6121. "notification-url": "https://packagist.org/downloads/",
  6122. "license": [
  6123. "BSD-3-Clause"
  6124. ],
  6125. "authors": [
  6126. {
  6127. "name": "Sebastian Bergmann",
  6128. "email": "sebastian@phpunit.de",
  6129. "role": "lead"
  6130. }
  6131. ],
  6132. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6133. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6134. "keywords": [
  6135. "filesystem",
  6136. "iterator"
  6137. ],
  6138. "support": {
  6139. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  6140. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  6141. },
  6142. "funding": [
  6143. {
  6144. "url": "https://github.com/sebastianbergmann",
  6145. "type": "github"
  6146. }
  6147. ],
  6148. "time": "2021-12-02T12:48:52+00:00"
  6149. },
  6150. {
  6151. "name": "phpunit/php-invoker",
  6152. "version": "3.1.1",
  6153. "source": {
  6154. "type": "git",
  6155. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  6156. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  6157. },
  6158. "dist": {
  6159. "type": "zip",
  6160. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6161. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6162. "shasum": ""
  6163. },
  6164. "require": {
  6165. "php": ">=7.3"
  6166. },
  6167. "require-dev": {
  6168. "ext-pcntl": "*",
  6169. "phpunit/phpunit": "^9.3"
  6170. },
  6171. "suggest": {
  6172. "ext-pcntl": "*"
  6173. },
  6174. "type": "library",
  6175. "extra": {
  6176. "branch-alias": {
  6177. "dev-master": "3.1-dev"
  6178. }
  6179. },
  6180. "autoload": {
  6181. "classmap": [
  6182. "src/"
  6183. ]
  6184. },
  6185. "notification-url": "https://packagist.org/downloads/",
  6186. "license": [
  6187. "BSD-3-Clause"
  6188. ],
  6189. "authors": [
  6190. {
  6191. "name": "Sebastian Bergmann",
  6192. "email": "sebastian@phpunit.de",
  6193. "role": "lead"
  6194. }
  6195. ],
  6196. "description": "Invoke callables with a timeout",
  6197. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  6198. "keywords": [
  6199. "process"
  6200. ],
  6201. "support": {
  6202. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  6203. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  6204. },
  6205. "funding": [
  6206. {
  6207. "url": "https://github.com/sebastianbergmann",
  6208. "type": "github"
  6209. }
  6210. ],
  6211. "time": "2020-09-28T05:58:55+00:00"
  6212. },
  6213. {
  6214. "name": "phpunit/php-text-template",
  6215. "version": "2.0.4",
  6216. "source": {
  6217. "type": "git",
  6218. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6219. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  6220. },
  6221. "dist": {
  6222. "type": "zip",
  6223. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6224. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6225. "shasum": ""
  6226. },
  6227. "require": {
  6228. "php": ">=7.3"
  6229. },
  6230. "require-dev": {
  6231. "phpunit/phpunit": "^9.3"
  6232. },
  6233. "type": "library",
  6234. "extra": {
  6235. "branch-alias": {
  6236. "dev-master": "2.0-dev"
  6237. }
  6238. },
  6239. "autoload": {
  6240. "classmap": [
  6241. "src/"
  6242. ]
  6243. },
  6244. "notification-url": "https://packagist.org/downloads/",
  6245. "license": [
  6246. "BSD-3-Clause"
  6247. ],
  6248. "authors": [
  6249. {
  6250. "name": "Sebastian Bergmann",
  6251. "email": "sebastian@phpunit.de",
  6252. "role": "lead"
  6253. }
  6254. ],
  6255. "description": "Simple template engine.",
  6256. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6257. "keywords": [
  6258. "template"
  6259. ],
  6260. "support": {
  6261. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  6262. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  6263. },
  6264. "funding": [
  6265. {
  6266. "url": "https://github.com/sebastianbergmann",
  6267. "type": "github"
  6268. }
  6269. ],
  6270. "time": "2020-10-26T05:33:50+00:00"
  6271. },
  6272. {
  6273. "name": "phpunit/php-timer",
  6274. "version": "5.0.3",
  6275. "source": {
  6276. "type": "git",
  6277. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6278. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  6279. },
  6280. "dist": {
  6281. "type": "zip",
  6282. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6283. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6284. "shasum": ""
  6285. },
  6286. "require": {
  6287. "php": ">=7.3"
  6288. },
  6289. "require-dev": {
  6290. "phpunit/phpunit": "^9.3"
  6291. },
  6292. "type": "library",
  6293. "extra": {
  6294. "branch-alias": {
  6295. "dev-master": "5.0-dev"
  6296. }
  6297. },
  6298. "autoload": {
  6299. "classmap": [
  6300. "src/"
  6301. ]
  6302. },
  6303. "notification-url": "https://packagist.org/downloads/",
  6304. "license": [
  6305. "BSD-3-Clause"
  6306. ],
  6307. "authors": [
  6308. {
  6309. "name": "Sebastian Bergmann",
  6310. "email": "sebastian@phpunit.de",
  6311. "role": "lead"
  6312. }
  6313. ],
  6314. "description": "Utility class for timing",
  6315. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6316. "keywords": [
  6317. "timer"
  6318. ],
  6319. "support": {
  6320. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  6321. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  6322. },
  6323. "funding": [
  6324. {
  6325. "url": "https://github.com/sebastianbergmann",
  6326. "type": "github"
  6327. }
  6328. ],
  6329. "time": "2020-10-26T13:16:10+00:00"
  6330. },
  6331. {
  6332. "name": "phpunit/phpunit",
  6333. "version": "9.5.20",
  6334. "source": {
  6335. "type": "git",
  6336. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6337. "reference": "12bc8879fb65aef2138b26fc633cb1e3620cffba"
  6338. },
  6339. "dist": {
  6340. "type": "zip",
  6341. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/12bc8879fb65aef2138b26fc633cb1e3620cffba",
  6342. "reference": "12bc8879fb65aef2138b26fc633cb1e3620cffba",
  6343. "shasum": ""
  6344. },
  6345. "require": {
  6346. "doctrine/instantiator": "^1.3.1",
  6347. "ext-dom": "*",
  6348. "ext-json": "*",
  6349. "ext-libxml": "*",
  6350. "ext-mbstring": "*",
  6351. "ext-xml": "*",
  6352. "ext-xmlwriter": "*",
  6353. "myclabs/deep-copy": "^1.10.1",
  6354. "phar-io/manifest": "^2.0.3",
  6355. "phar-io/version": "^3.0.2",
  6356. "php": ">=7.3",
  6357. "phpspec/prophecy": "^1.12.1",
  6358. "phpunit/php-code-coverage": "^9.2.13",
  6359. "phpunit/php-file-iterator": "^3.0.5",
  6360. "phpunit/php-invoker": "^3.1.1",
  6361. "phpunit/php-text-template": "^2.0.3",
  6362. "phpunit/php-timer": "^5.0.2",
  6363. "sebastian/cli-parser": "^1.0.1",
  6364. "sebastian/code-unit": "^1.0.6",
  6365. "sebastian/comparator": "^4.0.5",
  6366. "sebastian/diff": "^4.0.3",
  6367. "sebastian/environment": "^5.1.3",
  6368. "sebastian/exporter": "^4.0.3",
  6369. "sebastian/global-state": "^5.0.1",
  6370. "sebastian/object-enumerator": "^4.0.3",
  6371. "sebastian/resource-operations": "^3.0.3",
  6372. "sebastian/type": "^3.0",
  6373. "sebastian/version": "^3.0.2"
  6374. },
  6375. "require-dev": {
  6376. "ext-pdo": "*",
  6377. "phpspec/prophecy-phpunit": "^2.0.1"
  6378. },
  6379. "suggest": {
  6380. "ext-soap": "*",
  6381. "ext-xdebug": "*"
  6382. },
  6383. "bin": [
  6384. "phpunit"
  6385. ],
  6386. "type": "library",
  6387. "extra": {
  6388. "branch-alias": {
  6389. "dev-master": "9.5-dev"
  6390. }
  6391. },
  6392. "autoload": {
  6393. "files": [
  6394. "src/Framework/Assert/Functions.php"
  6395. ],
  6396. "classmap": [
  6397. "src/"
  6398. ]
  6399. },
  6400. "notification-url": "https://packagist.org/downloads/",
  6401. "license": [
  6402. "BSD-3-Clause"
  6403. ],
  6404. "authors": [
  6405. {
  6406. "name": "Sebastian Bergmann",
  6407. "email": "sebastian@phpunit.de",
  6408. "role": "lead"
  6409. }
  6410. ],
  6411. "description": "The PHP Unit Testing framework.",
  6412. "homepage": "https://phpunit.de/",
  6413. "keywords": [
  6414. "phpunit",
  6415. "testing",
  6416. "xunit"
  6417. ],
  6418. "support": {
  6419. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  6420. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.20"
  6421. },
  6422. "funding": [
  6423. {
  6424. "url": "https://phpunit.de/sponsors.html",
  6425. "type": "custom"
  6426. },
  6427. {
  6428. "url": "https://github.com/sebastianbergmann",
  6429. "type": "github"
  6430. }
  6431. ],
  6432. "time": "2022-04-01T12:37:26+00:00"
  6433. },
  6434. {
  6435. "name": "sebastian/cli-parser",
  6436. "version": "1.0.1",
  6437. "source": {
  6438. "type": "git",
  6439. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  6440. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  6441. },
  6442. "dist": {
  6443. "type": "zip",
  6444. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6445. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6446. "shasum": ""
  6447. },
  6448. "require": {
  6449. "php": ">=7.3"
  6450. },
  6451. "require-dev": {
  6452. "phpunit/phpunit": "^9.3"
  6453. },
  6454. "type": "library",
  6455. "extra": {
  6456. "branch-alias": {
  6457. "dev-master": "1.0-dev"
  6458. }
  6459. },
  6460. "autoload": {
  6461. "classmap": [
  6462. "src/"
  6463. ]
  6464. },
  6465. "notification-url": "https://packagist.org/downloads/",
  6466. "license": [
  6467. "BSD-3-Clause"
  6468. ],
  6469. "authors": [
  6470. {
  6471. "name": "Sebastian Bergmann",
  6472. "email": "sebastian@phpunit.de",
  6473. "role": "lead"
  6474. }
  6475. ],
  6476. "description": "Library for parsing CLI options",
  6477. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  6478. "support": {
  6479. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  6480. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  6481. },
  6482. "funding": [
  6483. {
  6484. "url": "https://github.com/sebastianbergmann",
  6485. "type": "github"
  6486. }
  6487. ],
  6488. "time": "2020-09-28T06:08:49+00:00"
  6489. },
  6490. {
  6491. "name": "sebastian/code-unit",
  6492. "version": "1.0.8",
  6493. "source": {
  6494. "type": "git",
  6495. "url": "https://github.com/sebastianbergmann/code-unit.git",
  6496. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  6497. },
  6498. "dist": {
  6499. "type": "zip",
  6500. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6501. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6502. "shasum": ""
  6503. },
  6504. "require": {
  6505. "php": ">=7.3"
  6506. },
  6507. "require-dev": {
  6508. "phpunit/phpunit": "^9.3"
  6509. },
  6510. "type": "library",
  6511. "extra": {
  6512. "branch-alias": {
  6513. "dev-master": "1.0-dev"
  6514. }
  6515. },
  6516. "autoload": {
  6517. "classmap": [
  6518. "src/"
  6519. ]
  6520. },
  6521. "notification-url": "https://packagist.org/downloads/",
  6522. "license": [
  6523. "BSD-3-Clause"
  6524. ],
  6525. "authors": [
  6526. {
  6527. "name": "Sebastian Bergmann",
  6528. "email": "sebastian@phpunit.de",
  6529. "role": "lead"
  6530. }
  6531. ],
  6532. "description": "Collection of value objects that represent the PHP code units",
  6533. "homepage": "https://github.com/sebastianbergmann/code-unit",
  6534. "support": {
  6535. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  6536. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  6537. },
  6538. "funding": [
  6539. {
  6540. "url": "https://github.com/sebastianbergmann",
  6541. "type": "github"
  6542. }
  6543. ],
  6544. "time": "2020-10-26T13:08:54+00:00"
  6545. },
  6546. {
  6547. "name": "sebastian/code-unit-reverse-lookup",
  6548. "version": "2.0.3",
  6549. "source": {
  6550. "type": "git",
  6551. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  6552. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  6553. },
  6554. "dist": {
  6555. "type": "zip",
  6556. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  6557. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  6558. "shasum": ""
  6559. },
  6560. "require": {
  6561. "php": ">=7.3"
  6562. },
  6563. "require-dev": {
  6564. "phpunit/phpunit": "^9.3"
  6565. },
  6566. "type": "library",
  6567. "extra": {
  6568. "branch-alias": {
  6569. "dev-master": "2.0-dev"
  6570. }
  6571. },
  6572. "autoload": {
  6573. "classmap": [
  6574. "src/"
  6575. ]
  6576. },
  6577. "notification-url": "https://packagist.org/downloads/",
  6578. "license": [
  6579. "BSD-3-Clause"
  6580. ],
  6581. "authors": [
  6582. {
  6583. "name": "Sebastian Bergmann",
  6584. "email": "sebastian@phpunit.de"
  6585. }
  6586. ],
  6587. "description": "Looks up which function or method a line of code belongs to",
  6588. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6589. "support": {
  6590. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  6591. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  6592. },
  6593. "funding": [
  6594. {
  6595. "url": "https://github.com/sebastianbergmann",
  6596. "type": "github"
  6597. }
  6598. ],
  6599. "time": "2020-09-28T05:30:19+00:00"
  6600. },
  6601. {
  6602. "name": "sebastian/comparator",
  6603. "version": "4.0.6",
  6604. "source": {
  6605. "type": "git",
  6606. "url": "https://github.com/sebastianbergmann/comparator.git",
  6607. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  6608. },
  6609. "dist": {
  6610. "type": "zip",
  6611. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  6612. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  6613. "shasum": ""
  6614. },
  6615. "require": {
  6616. "php": ">=7.3",
  6617. "sebastian/diff": "^4.0",
  6618. "sebastian/exporter": "^4.0"
  6619. },
  6620. "require-dev": {
  6621. "phpunit/phpunit": "^9.3"
  6622. },
  6623. "type": "library",
  6624. "extra": {
  6625. "branch-alias": {
  6626. "dev-master": "4.0-dev"
  6627. }
  6628. },
  6629. "autoload": {
  6630. "classmap": [
  6631. "src/"
  6632. ]
  6633. },
  6634. "notification-url": "https://packagist.org/downloads/",
  6635. "license": [
  6636. "BSD-3-Clause"
  6637. ],
  6638. "authors": [
  6639. {
  6640. "name": "Sebastian Bergmann",
  6641. "email": "sebastian@phpunit.de"
  6642. },
  6643. {
  6644. "name": "Jeff Welch",
  6645. "email": "whatthejeff@gmail.com"
  6646. },
  6647. {
  6648. "name": "Volker Dusch",
  6649. "email": "github@wallbash.com"
  6650. },
  6651. {
  6652. "name": "Bernhard Schussek",
  6653. "email": "bschussek@2bepublished.at"
  6654. }
  6655. ],
  6656. "description": "Provides the functionality to compare PHP values for equality",
  6657. "homepage": "https://github.com/sebastianbergmann/comparator",
  6658. "keywords": [
  6659. "comparator",
  6660. "compare",
  6661. "equality"
  6662. ],
  6663. "support": {
  6664. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  6665. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  6666. },
  6667. "funding": [
  6668. {
  6669. "url": "https://github.com/sebastianbergmann",
  6670. "type": "github"
  6671. }
  6672. ],
  6673. "time": "2020-10-26T15:49:45+00:00"
  6674. },
  6675. {
  6676. "name": "sebastian/complexity",
  6677. "version": "2.0.2",
  6678. "source": {
  6679. "type": "git",
  6680. "url": "https://github.com/sebastianbergmann/complexity.git",
  6681. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  6682. },
  6683. "dist": {
  6684. "type": "zip",
  6685. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  6686. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  6687. "shasum": ""
  6688. },
  6689. "require": {
  6690. "nikic/php-parser": "^4.7",
  6691. "php": ">=7.3"
  6692. },
  6693. "require-dev": {
  6694. "phpunit/phpunit": "^9.3"
  6695. },
  6696. "type": "library",
  6697. "extra": {
  6698. "branch-alias": {
  6699. "dev-master": "2.0-dev"
  6700. }
  6701. },
  6702. "autoload": {
  6703. "classmap": [
  6704. "src/"
  6705. ]
  6706. },
  6707. "notification-url": "https://packagist.org/downloads/",
  6708. "license": [
  6709. "BSD-3-Clause"
  6710. ],
  6711. "authors": [
  6712. {
  6713. "name": "Sebastian Bergmann",
  6714. "email": "sebastian@phpunit.de",
  6715. "role": "lead"
  6716. }
  6717. ],
  6718. "description": "Library for calculating the complexity of PHP code units",
  6719. "homepage": "https://github.com/sebastianbergmann/complexity",
  6720. "support": {
  6721. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  6722. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  6723. },
  6724. "funding": [
  6725. {
  6726. "url": "https://github.com/sebastianbergmann",
  6727. "type": "github"
  6728. }
  6729. ],
  6730. "time": "2020-10-26T15:52:27+00:00"
  6731. },
  6732. {
  6733. "name": "sebastian/diff",
  6734. "version": "4.0.4",
  6735. "source": {
  6736. "type": "git",
  6737. "url": "https://github.com/sebastianbergmann/diff.git",
  6738. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  6739. },
  6740. "dist": {
  6741. "type": "zip",
  6742. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  6743. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  6744. "shasum": ""
  6745. },
  6746. "require": {
  6747. "php": ">=7.3"
  6748. },
  6749. "require-dev": {
  6750. "phpunit/phpunit": "^9.3",
  6751. "symfony/process": "^4.2 || ^5"
  6752. },
  6753. "type": "library",
  6754. "extra": {
  6755. "branch-alias": {
  6756. "dev-master": "4.0-dev"
  6757. }
  6758. },
  6759. "autoload": {
  6760. "classmap": [
  6761. "src/"
  6762. ]
  6763. },
  6764. "notification-url": "https://packagist.org/downloads/",
  6765. "license": [
  6766. "BSD-3-Clause"
  6767. ],
  6768. "authors": [
  6769. {
  6770. "name": "Sebastian Bergmann",
  6771. "email": "sebastian@phpunit.de"
  6772. },
  6773. {
  6774. "name": "Kore Nordmann",
  6775. "email": "mail@kore-nordmann.de"
  6776. }
  6777. ],
  6778. "description": "Diff implementation",
  6779. "homepage": "https://github.com/sebastianbergmann/diff",
  6780. "keywords": [
  6781. "diff",
  6782. "udiff",
  6783. "unidiff",
  6784. "unified diff"
  6785. ],
  6786. "support": {
  6787. "issues": "https://github.com/sebastianbergmann/diff/issues",
  6788. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  6789. },
  6790. "funding": [
  6791. {
  6792. "url": "https://github.com/sebastianbergmann",
  6793. "type": "github"
  6794. }
  6795. ],
  6796. "time": "2020-10-26T13:10:38+00:00"
  6797. },
  6798. {
  6799. "name": "sebastian/environment",
  6800. "version": "5.1.4",
  6801. "source": {
  6802. "type": "git",
  6803. "url": "https://github.com/sebastianbergmann/environment.git",
  6804. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  6805. },
  6806. "dist": {
  6807. "type": "zip",
  6808. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  6809. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  6810. "shasum": ""
  6811. },
  6812. "require": {
  6813. "php": ">=7.3"
  6814. },
  6815. "require-dev": {
  6816. "phpunit/phpunit": "^9.3"
  6817. },
  6818. "suggest": {
  6819. "ext-posix": "*"
  6820. },
  6821. "type": "library",
  6822. "extra": {
  6823. "branch-alias": {
  6824. "dev-master": "5.1-dev"
  6825. }
  6826. },
  6827. "autoload": {
  6828. "classmap": [
  6829. "src/"
  6830. ]
  6831. },
  6832. "notification-url": "https://packagist.org/downloads/",
  6833. "license": [
  6834. "BSD-3-Clause"
  6835. ],
  6836. "authors": [
  6837. {
  6838. "name": "Sebastian Bergmann",
  6839. "email": "sebastian@phpunit.de"
  6840. }
  6841. ],
  6842. "description": "Provides functionality to handle HHVM/PHP environments",
  6843. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6844. "keywords": [
  6845. "Xdebug",
  6846. "environment",
  6847. "hhvm"
  6848. ],
  6849. "support": {
  6850. "issues": "https://github.com/sebastianbergmann/environment/issues",
  6851. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  6852. },
  6853. "funding": [
  6854. {
  6855. "url": "https://github.com/sebastianbergmann",
  6856. "type": "github"
  6857. }
  6858. ],
  6859. "time": "2022-04-03T09:37:03+00:00"
  6860. },
  6861. {
  6862. "name": "sebastian/exporter",
  6863. "version": "4.0.4",
  6864. "source": {
  6865. "type": "git",
  6866. "url": "https://github.com/sebastianbergmann/exporter.git",
  6867. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  6868. },
  6869. "dist": {
  6870. "type": "zip",
  6871. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  6872. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  6873. "shasum": ""
  6874. },
  6875. "require": {
  6876. "php": ">=7.3",
  6877. "sebastian/recursion-context": "^4.0"
  6878. },
  6879. "require-dev": {
  6880. "ext-mbstring": "*",
  6881. "phpunit/phpunit": "^9.3"
  6882. },
  6883. "type": "library",
  6884. "extra": {
  6885. "branch-alias": {
  6886. "dev-master": "4.0-dev"
  6887. }
  6888. },
  6889. "autoload": {
  6890. "classmap": [
  6891. "src/"
  6892. ]
  6893. },
  6894. "notification-url": "https://packagist.org/downloads/",
  6895. "license": [
  6896. "BSD-3-Clause"
  6897. ],
  6898. "authors": [
  6899. {
  6900. "name": "Sebastian Bergmann",
  6901. "email": "sebastian@phpunit.de"
  6902. },
  6903. {
  6904. "name": "Jeff Welch",
  6905. "email": "whatthejeff@gmail.com"
  6906. },
  6907. {
  6908. "name": "Volker Dusch",
  6909. "email": "github@wallbash.com"
  6910. },
  6911. {
  6912. "name": "Adam Harvey",
  6913. "email": "aharvey@php.net"
  6914. },
  6915. {
  6916. "name": "Bernhard Schussek",
  6917. "email": "bschussek@gmail.com"
  6918. }
  6919. ],
  6920. "description": "Provides the functionality to export PHP variables for visualization",
  6921. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  6922. "keywords": [
  6923. "export",
  6924. "exporter"
  6925. ],
  6926. "support": {
  6927. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  6928. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  6929. },
  6930. "funding": [
  6931. {
  6932. "url": "https://github.com/sebastianbergmann",
  6933. "type": "github"
  6934. }
  6935. ],
  6936. "time": "2021-11-11T14:18:36+00:00"
  6937. },
  6938. {
  6939. "name": "sebastian/global-state",
  6940. "version": "5.0.5",
  6941. "source": {
  6942. "type": "git",
  6943. "url": "https://github.com/sebastianbergmann/global-state.git",
  6944. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  6945. },
  6946. "dist": {
  6947. "type": "zip",
  6948. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  6949. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  6950. "shasum": ""
  6951. },
  6952. "require": {
  6953. "php": ">=7.3",
  6954. "sebastian/object-reflector": "^2.0",
  6955. "sebastian/recursion-context": "^4.0"
  6956. },
  6957. "require-dev": {
  6958. "ext-dom": "*",
  6959. "phpunit/phpunit": "^9.3"
  6960. },
  6961. "suggest": {
  6962. "ext-uopz": "*"
  6963. },
  6964. "type": "library",
  6965. "extra": {
  6966. "branch-alias": {
  6967. "dev-master": "5.0-dev"
  6968. }
  6969. },
  6970. "autoload": {
  6971. "classmap": [
  6972. "src/"
  6973. ]
  6974. },
  6975. "notification-url": "https://packagist.org/downloads/",
  6976. "license": [
  6977. "BSD-3-Clause"
  6978. ],
  6979. "authors": [
  6980. {
  6981. "name": "Sebastian Bergmann",
  6982. "email": "sebastian@phpunit.de"
  6983. }
  6984. ],
  6985. "description": "Snapshotting of global state",
  6986. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6987. "keywords": [
  6988. "global state"
  6989. ],
  6990. "support": {
  6991. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  6992. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  6993. },
  6994. "funding": [
  6995. {
  6996. "url": "https://github.com/sebastianbergmann",
  6997. "type": "github"
  6998. }
  6999. ],
  7000. "time": "2022-02-14T08:28:10+00:00"
  7001. },
  7002. {
  7003. "name": "sebastian/lines-of-code",
  7004. "version": "1.0.3",
  7005. "source": {
  7006. "type": "git",
  7007. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  7008. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  7009. },
  7010. "dist": {
  7011. "type": "zip",
  7012. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  7013. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  7014. "shasum": ""
  7015. },
  7016. "require": {
  7017. "nikic/php-parser": "^4.6",
  7018. "php": ">=7.3"
  7019. },
  7020. "require-dev": {
  7021. "phpunit/phpunit": "^9.3"
  7022. },
  7023. "type": "library",
  7024. "extra": {
  7025. "branch-alias": {
  7026. "dev-master": "1.0-dev"
  7027. }
  7028. },
  7029. "autoload": {
  7030. "classmap": [
  7031. "src/"
  7032. ]
  7033. },
  7034. "notification-url": "https://packagist.org/downloads/",
  7035. "license": [
  7036. "BSD-3-Clause"
  7037. ],
  7038. "authors": [
  7039. {
  7040. "name": "Sebastian Bergmann",
  7041. "email": "sebastian@phpunit.de",
  7042. "role": "lead"
  7043. }
  7044. ],
  7045. "description": "Library for counting the lines of code in PHP source code",
  7046. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  7047. "support": {
  7048. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  7049. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  7050. },
  7051. "funding": [
  7052. {
  7053. "url": "https://github.com/sebastianbergmann",
  7054. "type": "github"
  7055. }
  7056. ],
  7057. "time": "2020-11-28T06:42:11+00:00"
  7058. },
  7059. {
  7060. "name": "sebastian/object-enumerator",
  7061. "version": "4.0.4",
  7062. "source": {
  7063. "type": "git",
  7064. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7065. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  7066. },
  7067. "dist": {
  7068. "type": "zip",
  7069. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  7070. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  7071. "shasum": ""
  7072. },
  7073. "require": {
  7074. "php": ">=7.3",
  7075. "sebastian/object-reflector": "^2.0",
  7076. "sebastian/recursion-context": "^4.0"
  7077. },
  7078. "require-dev": {
  7079. "phpunit/phpunit": "^9.3"
  7080. },
  7081. "type": "library",
  7082. "extra": {
  7083. "branch-alias": {
  7084. "dev-master": "4.0-dev"
  7085. }
  7086. },
  7087. "autoload": {
  7088. "classmap": [
  7089. "src/"
  7090. ]
  7091. },
  7092. "notification-url": "https://packagist.org/downloads/",
  7093. "license": [
  7094. "BSD-3-Clause"
  7095. ],
  7096. "authors": [
  7097. {
  7098. "name": "Sebastian Bergmann",
  7099. "email": "sebastian@phpunit.de"
  7100. }
  7101. ],
  7102. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7103. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7104. "support": {
  7105. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  7106. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  7107. },
  7108. "funding": [
  7109. {
  7110. "url": "https://github.com/sebastianbergmann",
  7111. "type": "github"
  7112. }
  7113. ],
  7114. "time": "2020-10-26T13:12:34+00:00"
  7115. },
  7116. {
  7117. "name": "sebastian/object-reflector",
  7118. "version": "2.0.4",
  7119. "source": {
  7120. "type": "git",
  7121. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7122. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  7123. },
  7124. "dist": {
  7125. "type": "zip",
  7126. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7127. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7128. "shasum": ""
  7129. },
  7130. "require": {
  7131. "php": ">=7.3"
  7132. },
  7133. "require-dev": {
  7134. "phpunit/phpunit": "^9.3"
  7135. },
  7136. "type": "library",
  7137. "extra": {
  7138. "branch-alias": {
  7139. "dev-master": "2.0-dev"
  7140. }
  7141. },
  7142. "autoload": {
  7143. "classmap": [
  7144. "src/"
  7145. ]
  7146. },
  7147. "notification-url": "https://packagist.org/downloads/",
  7148. "license": [
  7149. "BSD-3-Clause"
  7150. ],
  7151. "authors": [
  7152. {
  7153. "name": "Sebastian Bergmann",
  7154. "email": "sebastian@phpunit.de"
  7155. }
  7156. ],
  7157. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7158. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7159. "support": {
  7160. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  7161. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  7162. },
  7163. "funding": [
  7164. {
  7165. "url": "https://github.com/sebastianbergmann",
  7166. "type": "github"
  7167. }
  7168. ],
  7169. "time": "2020-10-26T13:14:26+00:00"
  7170. },
  7171. {
  7172. "name": "sebastian/recursion-context",
  7173. "version": "4.0.4",
  7174. "source": {
  7175. "type": "git",
  7176. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7177. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  7178. },
  7179. "dist": {
  7180. "type": "zip",
  7181. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  7182. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  7183. "shasum": ""
  7184. },
  7185. "require": {
  7186. "php": ">=7.3"
  7187. },
  7188. "require-dev": {
  7189. "phpunit/phpunit": "^9.3"
  7190. },
  7191. "type": "library",
  7192. "extra": {
  7193. "branch-alias": {
  7194. "dev-master": "4.0-dev"
  7195. }
  7196. },
  7197. "autoload": {
  7198. "classmap": [
  7199. "src/"
  7200. ]
  7201. },
  7202. "notification-url": "https://packagist.org/downloads/",
  7203. "license": [
  7204. "BSD-3-Clause"
  7205. ],
  7206. "authors": [
  7207. {
  7208. "name": "Sebastian Bergmann",
  7209. "email": "sebastian@phpunit.de"
  7210. },
  7211. {
  7212. "name": "Jeff Welch",
  7213. "email": "whatthejeff@gmail.com"
  7214. },
  7215. {
  7216. "name": "Adam Harvey",
  7217. "email": "aharvey@php.net"
  7218. }
  7219. ],
  7220. "description": "Provides functionality to recursively process PHP variables",
  7221. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  7222. "support": {
  7223. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  7224. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  7225. },
  7226. "funding": [
  7227. {
  7228. "url": "https://github.com/sebastianbergmann",
  7229. "type": "github"
  7230. }
  7231. ],
  7232. "time": "2020-10-26T13:17:30+00:00"
  7233. },
  7234. {
  7235. "name": "sebastian/resource-operations",
  7236. "version": "3.0.3",
  7237. "source": {
  7238. "type": "git",
  7239. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7240. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  7241. },
  7242. "dist": {
  7243. "type": "zip",
  7244. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7245. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7246. "shasum": ""
  7247. },
  7248. "require": {
  7249. "php": ">=7.3"
  7250. },
  7251. "require-dev": {
  7252. "phpunit/phpunit": "^9.0"
  7253. },
  7254. "type": "library",
  7255. "extra": {
  7256. "branch-alias": {
  7257. "dev-master": "3.0-dev"
  7258. }
  7259. },
  7260. "autoload": {
  7261. "classmap": [
  7262. "src/"
  7263. ]
  7264. },
  7265. "notification-url": "https://packagist.org/downloads/",
  7266. "license": [
  7267. "BSD-3-Clause"
  7268. ],
  7269. "authors": [
  7270. {
  7271. "name": "Sebastian Bergmann",
  7272. "email": "sebastian@phpunit.de"
  7273. }
  7274. ],
  7275. "description": "Provides a list of PHP built-in functions that operate on resources",
  7276. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7277. "support": {
  7278. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  7279. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  7280. },
  7281. "funding": [
  7282. {
  7283. "url": "https://github.com/sebastianbergmann",
  7284. "type": "github"
  7285. }
  7286. ],
  7287. "time": "2020-09-28T06:45:17+00:00"
  7288. },
  7289. {
  7290. "name": "sebastian/type",
  7291. "version": "3.0.0",
  7292. "source": {
  7293. "type": "git",
  7294. "url": "https://github.com/sebastianbergmann/type.git",
  7295. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad"
  7296. },
  7297. "dist": {
  7298. "type": "zip",
  7299. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  7300. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  7301. "shasum": ""
  7302. },
  7303. "require": {
  7304. "php": ">=7.3"
  7305. },
  7306. "require-dev": {
  7307. "phpunit/phpunit": "^9.5"
  7308. },
  7309. "type": "library",
  7310. "extra": {
  7311. "branch-alias": {
  7312. "dev-master": "3.0-dev"
  7313. }
  7314. },
  7315. "autoload": {
  7316. "classmap": [
  7317. "src/"
  7318. ]
  7319. },
  7320. "notification-url": "https://packagist.org/downloads/",
  7321. "license": [
  7322. "BSD-3-Clause"
  7323. ],
  7324. "authors": [
  7325. {
  7326. "name": "Sebastian Bergmann",
  7327. "email": "sebastian@phpunit.de",
  7328. "role": "lead"
  7329. }
  7330. ],
  7331. "description": "Collection of value objects that represent the types of the PHP type system",
  7332. "homepage": "https://github.com/sebastianbergmann/type",
  7333. "support": {
  7334. "issues": "https://github.com/sebastianbergmann/type/issues",
  7335. "source": "https://github.com/sebastianbergmann/type/tree/3.0.0"
  7336. },
  7337. "funding": [
  7338. {
  7339. "url": "https://github.com/sebastianbergmann",
  7340. "type": "github"
  7341. }
  7342. ],
  7343. "time": "2022-03-15T09:54:48+00:00"
  7344. },
  7345. {
  7346. "name": "sebastian/version",
  7347. "version": "3.0.2",
  7348. "source": {
  7349. "type": "git",
  7350. "url": "https://github.com/sebastianbergmann/version.git",
  7351. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  7352. },
  7353. "dist": {
  7354. "type": "zip",
  7355. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  7356. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  7357. "shasum": ""
  7358. },
  7359. "require": {
  7360. "php": ">=7.3"
  7361. },
  7362. "type": "library",
  7363. "extra": {
  7364. "branch-alias": {
  7365. "dev-master": "3.0-dev"
  7366. }
  7367. },
  7368. "autoload": {
  7369. "classmap": [
  7370. "src/"
  7371. ]
  7372. },
  7373. "notification-url": "https://packagist.org/downloads/",
  7374. "license": [
  7375. "BSD-3-Clause"
  7376. ],
  7377. "authors": [
  7378. {
  7379. "name": "Sebastian Bergmann",
  7380. "email": "sebastian@phpunit.de",
  7381. "role": "lead"
  7382. }
  7383. ],
  7384. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7385. "homepage": "https://github.com/sebastianbergmann/version",
  7386. "support": {
  7387. "issues": "https://github.com/sebastianbergmann/version/issues",
  7388. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  7389. },
  7390. "funding": [
  7391. {
  7392. "url": "https://github.com/sebastianbergmann",
  7393. "type": "github"
  7394. }
  7395. ],
  7396. "time": "2020-09-28T06:39:44+00:00"
  7397. },
  7398. {
  7399. "name": "spatie/backtrace",
  7400. "version": "1.2.1",
  7401. "source": {
  7402. "type": "git",
  7403. "url": "https://github.com/spatie/backtrace.git",
  7404. "reference": "4ee7d41aa5268107906ea8a4d9ceccde136dbd5b"
  7405. },
  7406. "dist": {
  7407. "type": "zip",
  7408. "url": "https://api.github.com/repos/spatie/backtrace/zipball/4ee7d41aa5268107906ea8a4d9ceccde136dbd5b",
  7409. "reference": "4ee7d41aa5268107906ea8a4d9ceccde136dbd5b",
  7410. "shasum": ""
  7411. },
  7412. "require": {
  7413. "php": "^7.3|^8.0"
  7414. },
  7415. "require-dev": {
  7416. "ext-json": "*",
  7417. "phpunit/phpunit": "^9.3",
  7418. "symfony/var-dumper": "^5.1"
  7419. },
  7420. "type": "library",
  7421. "autoload": {
  7422. "psr-4": {
  7423. "Spatie\\Backtrace\\": "src"
  7424. }
  7425. },
  7426. "notification-url": "https://packagist.org/downloads/",
  7427. "license": [
  7428. "MIT"
  7429. ],
  7430. "authors": [
  7431. {
  7432. "name": "Freek Van de Herten",
  7433. "email": "freek@spatie.be",
  7434. "homepage": "https://spatie.be",
  7435. "role": "Developer"
  7436. }
  7437. ],
  7438. "description": "A better backtrace",
  7439. "homepage": "https://github.com/spatie/backtrace",
  7440. "keywords": [
  7441. "Backtrace",
  7442. "spatie"
  7443. ],
  7444. "support": {
  7445. "issues": "https://github.com/spatie/backtrace/issues",
  7446. "source": "https://github.com/spatie/backtrace/tree/1.2.1"
  7447. },
  7448. "funding": [
  7449. {
  7450. "url": "https://github.com/sponsors/spatie",
  7451. "type": "github"
  7452. },
  7453. {
  7454. "url": "https://spatie.be/open-source/support-us",
  7455. "type": "other"
  7456. }
  7457. ],
  7458. "time": "2021-11-09T10:57:15+00:00"
  7459. },
  7460. {
  7461. "name": "spatie/flare-client-php",
  7462. "version": "1.1.0",
  7463. "source": {
  7464. "type": "git",
  7465. "url": "https://github.com/spatie/flare-client-php.git",
  7466. "reference": "ceab058852a1278d9f57a7b95f1c348e4956d866"
  7467. },
  7468. "dist": {
  7469. "type": "zip",
  7470. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/ceab058852a1278d9f57a7b95f1c348e4956d866",
  7471. "reference": "ceab058852a1278d9f57a7b95f1c348e4956d866",
  7472. "shasum": ""
  7473. },
  7474. "require": {
  7475. "illuminate/pipeline": "^8.0|^9.0",
  7476. "php": "^8.0",
  7477. "spatie/backtrace": "^1.2",
  7478. "symfony/http-foundation": "^5.0|^6.0",
  7479. "symfony/mime": "^5.2|^6.0",
  7480. "symfony/process": "^5.2|^6.0",
  7481. "symfony/var-dumper": "^5.2|^6.0"
  7482. },
  7483. "require-dev": {
  7484. "dms/phpunit-arraysubset-asserts": "^0.3.0",
  7485. "pestphp/pest": "^1.20",
  7486. "phpstan/extension-installer": "^1.1",
  7487. "phpstan/phpstan-deprecation-rules": "^1.0",
  7488. "phpstan/phpstan-phpunit": "^1.0",
  7489. "spatie/phpunit-snapshot-assertions": "^4.0"
  7490. },
  7491. "type": "library",
  7492. "autoload": {
  7493. "files": [
  7494. "src/helpers.php"
  7495. ],
  7496. "psr-4": {
  7497. "Spatie\\FlareClient\\": "src"
  7498. }
  7499. },
  7500. "notification-url": "https://packagist.org/downloads/",
  7501. "license": [
  7502. "MIT"
  7503. ],
  7504. "description": "Send PHP errors to Flare",
  7505. "homepage": "https://github.com/spatie/flare-client-php",
  7506. "keywords": [
  7507. "exception",
  7508. "flare",
  7509. "reporting",
  7510. "spatie"
  7511. ],
  7512. "support": {
  7513. "issues": "https://github.com/spatie/flare-client-php/issues",
  7514. "source": "https://github.com/spatie/flare-client-php/tree/1.1.0"
  7515. },
  7516. "funding": [
  7517. {
  7518. "url": "https://github.com/spatie",
  7519. "type": "github"
  7520. }
  7521. ],
  7522. "time": "2022-03-11T13:21:28+00:00"
  7523. },
  7524. {
  7525. "name": "spatie/ignition",
  7526. "version": "1.2.7",
  7527. "source": {
  7528. "type": "git",
  7529. "url": "https://github.com/spatie/ignition.git",
  7530. "reference": "2f059cf42b48f7c522efbba1c05ad59fc2c1a3f2"
  7531. },
  7532. "dist": {
  7533. "type": "zip",
  7534. "url": "https://api.github.com/repos/spatie/ignition/zipball/2f059cf42b48f7c522efbba1c05ad59fc2c1a3f2",
  7535. "reference": "2f059cf42b48f7c522efbba1c05ad59fc2c1a3f2",
  7536. "shasum": ""
  7537. },
  7538. "require": {
  7539. "ext-json": "*",
  7540. "ext-mbstring": "*",
  7541. "monolog/monolog": "^2.0",
  7542. "php": "^8.0",
  7543. "spatie/flare-client-php": "^1.1",
  7544. "symfony/console": "^5.4|^6.0",
  7545. "symfony/var-dumper": "^5.4|^6.0"
  7546. },
  7547. "require-dev": {
  7548. "mockery/mockery": "^1.4",
  7549. "pestphp/pest": "^1.20",
  7550. "phpstan/extension-installer": "^1.1",
  7551. "phpstan/phpstan-deprecation-rules": "^1.0",
  7552. "phpstan/phpstan-phpunit": "^1.0",
  7553. "symfony/process": "^5.4|^6.0"
  7554. },
  7555. "type": "library",
  7556. "autoload": {
  7557. "psr-4": {
  7558. "Spatie\\Ignition\\": "src"
  7559. }
  7560. },
  7561. "notification-url": "https://packagist.org/downloads/",
  7562. "license": [
  7563. "MIT"
  7564. ],
  7565. "authors": [
  7566. {
  7567. "name": "Spatie",
  7568. "email": "info@spatie.be",
  7569. "role": "Developer"
  7570. }
  7571. ],
  7572. "description": "A beautiful error page for PHP applications.",
  7573. "homepage": "https://flareapp.io/ignition",
  7574. "keywords": [
  7575. "error",
  7576. "flare",
  7577. "laravel",
  7578. "page"
  7579. ],
  7580. "support": {
  7581. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  7582. "forum": "https://twitter.com/flareappio",
  7583. "issues": "https://github.com/spatie/ignition/issues",
  7584. "source": "https://github.com/spatie/ignition"
  7585. },
  7586. "funding": [
  7587. {
  7588. "url": "https://github.com/spatie",
  7589. "type": "github"
  7590. }
  7591. ],
  7592. "time": "2022-03-29T08:48:34+00:00"
  7593. },
  7594. {
  7595. "name": "spatie/laravel-ignition",
  7596. "version": "1.2.1",
  7597. "source": {
  7598. "type": "git",
  7599. "url": "https://github.com/spatie/laravel-ignition.git",
  7600. "reference": "9ad1d32acf8c855d711964bc19092b0bc9792273"
  7601. },
  7602. "dist": {
  7603. "type": "zip",
  7604. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/9ad1d32acf8c855d711964bc19092b0bc9792273",
  7605. "reference": "9ad1d32acf8c855d711964bc19092b0bc9792273",
  7606. "shasum": ""
  7607. },
  7608. "require": {
  7609. "ext-curl": "*",
  7610. "ext-json": "*",
  7611. "ext-mbstring": "*",
  7612. "illuminate/support": "^8.77|^9.0",
  7613. "monolog/monolog": "^2.3",
  7614. "php": "^8.0",
  7615. "spatie/flare-client-php": "^1.0.1",
  7616. "spatie/ignition": "^1.2.4",
  7617. "symfony/console": "^5.0|^6.0",
  7618. "symfony/var-dumper": "^5.0|^6.0"
  7619. },
  7620. "require-dev": {
  7621. "filp/whoops": "^2.14",
  7622. "livewire/livewire": "^2.8|dev-develop",
  7623. "mockery/mockery": "^1.4",
  7624. "nunomaduro/larastan": "^1.0",
  7625. "orchestra/testbench": "^6.23|^7.0",
  7626. "pestphp/pest": "^1.20",
  7627. "phpstan/extension-installer": "^1.1",
  7628. "phpstan/phpstan-deprecation-rules": "^1.0",
  7629. "phpstan/phpstan-phpunit": "^1.0",
  7630. "spatie/laravel-ray": "^1.27"
  7631. },
  7632. "type": "library",
  7633. "extra": {
  7634. "laravel": {
  7635. "providers": [
  7636. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  7637. ],
  7638. "aliases": {
  7639. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  7640. }
  7641. }
  7642. },
  7643. "autoload": {
  7644. "files": [
  7645. "src/helpers.php"
  7646. ],
  7647. "psr-4": {
  7648. "Spatie\\LaravelIgnition\\": "src"
  7649. }
  7650. },
  7651. "notification-url": "https://packagist.org/downloads/",
  7652. "license": [
  7653. "MIT"
  7654. ],
  7655. "authors": [
  7656. {
  7657. "name": "Spatie",
  7658. "email": "info@spatie.be",
  7659. "role": "Developer"
  7660. }
  7661. ],
  7662. "description": "A beautiful error page for Laravel applications.",
  7663. "homepage": "https://flareapp.io/ignition",
  7664. "keywords": [
  7665. "error",
  7666. "flare",
  7667. "laravel",
  7668. "page"
  7669. ],
  7670. "support": {
  7671. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  7672. "forum": "https://twitter.com/flareappio",
  7673. "issues": "https://github.com/spatie/laravel-ignition/issues",
  7674. "source": "https://github.com/spatie/laravel-ignition"
  7675. },
  7676. "funding": [
  7677. {
  7678. "url": "https://github.com/spatie",
  7679. "type": "github"
  7680. }
  7681. ],
  7682. "time": "2022-04-13T08:06:05+00:00"
  7683. },
  7684. {
  7685. "name": "theseer/tokenizer",
  7686. "version": "1.2.1",
  7687. "source": {
  7688. "type": "git",
  7689. "url": "https://github.com/theseer/tokenizer.git",
  7690. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  7691. },
  7692. "dist": {
  7693. "type": "zip",
  7694. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  7695. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  7696. "shasum": ""
  7697. },
  7698. "require": {
  7699. "ext-dom": "*",
  7700. "ext-tokenizer": "*",
  7701. "ext-xmlwriter": "*",
  7702. "php": "^7.2 || ^8.0"
  7703. },
  7704. "type": "library",
  7705. "autoload": {
  7706. "classmap": [
  7707. "src/"
  7708. ]
  7709. },
  7710. "notification-url": "https://packagist.org/downloads/",
  7711. "license": [
  7712. "BSD-3-Clause"
  7713. ],
  7714. "authors": [
  7715. {
  7716. "name": "Arne Blankerts",
  7717. "email": "arne@blankerts.de",
  7718. "role": "Developer"
  7719. }
  7720. ],
  7721. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7722. "support": {
  7723. "issues": "https://github.com/theseer/tokenizer/issues",
  7724. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  7725. },
  7726. "funding": [
  7727. {
  7728. "url": "https://github.com/theseer",
  7729. "type": "github"
  7730. }
  7731. ],
  7732. "time": "2021-07-28T10:34:58+00:00"
  7733. }
  7734. ],
  7735. "aliases": [],
  7736. "minimum-stability": "dev",
  7737. "stability-flags": [],
  7738. "prefer-stable": true,
  7739. "prefer-lowest": false,
  7740. "platform": {
  7741. "php": "^8.0.2"
  7742. },
  7743. "platform-dev": [],
  7744. "plugin-api-version": "2.1.0"
  7745. }