composer.lock 245 KB

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