composer.lock 279 KB

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