composer.lock 279 KB

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