composer.lock 243 KB

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