composer.lock 302 KB

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