composer.lock 385 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813
  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": "eab416feda81875b20d5df2399f9ed86",
  8. "packages": [
  9. {
  10. "name": "alchemy/binary-driver",
  11. "version": "v5.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/BinaryDriver.git",
  15. "reference": "e0615cdff315e6b4b05ada67906df6262a020d22"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/BinaryDriver/zipball/e0615cdff315e6b4b05ada67906df6262a020d22",
  20. "reference": "e0615cdff315e6b4b05ada67906df6262a020d22",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "evenement/evenement": "^3.0|^2.0|^1.0",
  25. "php": ">=5.5",
  26. "psr/log": "^1.0",
  27. "symfony/process": "^2.3|^3.0|^4.0|^5.0"
  28. },
  29. "require-dev": {
  30. "phpunit/phpunit": "^4.0|^5.0"
  31. },
  32. "type": "library",
  33. "autoload": {
  34. "psr-0": {
  35. "Alchemy": "src"
  36. }
  37. },
  38. "notification-url": "https://packagist.org/downloads/",
  39. "license": [
  40. "MIT"
  41. ],
  42. "authors": [
  43. {
  44. "name": "Nicolas Le Goff",
  45. "email": "legoff.n@gmail.com"
  46. },
  47. {
  48. "name": "Romain Neutron",
  49. "email": "imprec@gmail.com",
  50. "homepage": "http://www.lickmychip.com/"
  51. },
  52. {
  53. "name": "Phraseanet Team",
  54. "email": "info@alchemy.fr",
  55. "homepage": "http://www.phraseanet.com/"
  56. },
  57. {
  58. "name": "Jens Hausdorf",
  59. "email": "mail@jens-hausdorf.de",
  60. "homepage": "https://jens-hausdorf.de",
  61. "role": "Maintainer"
  62. }
  63. ],
  64. "description": "A set of tools to build binary drivers",
  65. "keywords": [
  66. "binary",
  67. "driver"
  68. ],
  69. "support": {
  70. "issues": "https://github.com/alchemy-fr/BinaryDriver/issues",
  71. "source": "https://github.com/alchemy-fr/BinaryDriver/tree/master"
  72. },
  73. "time": "2020-02-12T19:35:11+00:00"
  74. },
  75. {
  76. "name": "asm89/stack-cors",
  77. "version": "v2.0.2",
  78. "source": {
  79. "type": "git",
  80. "url": "https://github.com/asm89/stack-cors.git",
  81. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa"
  82. },
  83. "dist": {
  84. "type": "zip",
  85. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/8d8f88b3b3830916be94292c1fbce84433efb1aa",
  86. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa",
  87. "shasum": ""
  88. },
  89. "require": {
  90. "php": "^7.0|^8.0",
  91. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  92. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  93. },
  94. "require-dev": {
  95. "phpunit/phpunit": "^6|^7|^8|^9",
  96. "squizlabs/php_codesniffer": "^3.5"
  97. },
  98. "type": "library",
  99. "extra": {
  100. "branch-alias": {
  101. "dev-master": "2.0-dev"
  102. }
  103. },
  104. "autoload": {
  105. "psr-4": {
  106. "Asm89\\Stack\\": "src/"
  107. }
  108. },
  109. "notification-url": "https://packagist.org/downloads/",
  110. "license": [
  111. "MIT"
  112. ],
  113. "authors": [
  114. {
  115. "name": "Alexander",
  116. "email": "iam.asm89@gmail.com"
  117. }
  118. ],
  119. "description": "Cross-origin resource sharing library and stack middleware",
  120. "homepage": "https://github.com/asm89/stack-cors",
  121. "keywords": [
  122. "cors",
  123. "stack"
  124. ],
  125. "support": {
  126. "issues": "https://github.com/asm89/stack-cors/issues",
  127. "source": "https://github.com/asm89/stack-cors/tree/v2.0.2"
  128. },
  129. "time": "2020-10-29T16:03:21+00:00"
  130. },
  131. {
  132. "name": "aws/aws-sdk-php",
  133. "version": "3.172.0",
  134. "source": {
  135. "type": "git",
  136. "url": "https://github.com/aws/aws-sdk-php.git",
  137. "reference": "5a5e66c4d54c392042820703eeb8a6bd3d222924"
  138. },
  139. "dist": {
  140. "type": "zip",
  141. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/5a5e66c4d54c392042820703eeb8a6bd3d222924",
  142. "reference": "5a5e66c4d54c392042820703eeb8a6bd3d222924",
  143. "shasum": ""
  144. },
  145. "require": {
  146. "ext-json": "*",
  147. "ext-pcre": "*",
  148. "ext-simplexml": "*",
  149. "guzzlehttp/guzzle": "^5.3.3|^6.2.1|^7.0",
  150. "guzzlehttp/promises": "^1.0",
  151. "guzzlehttp/psr7": "^1.4.1",
  152. "mtdowling/jmespath.php": "^2.5",
  153. "php": ">=5.5"
  154. },
  155. "require-dev": {
  156. "andrewsville/php-token-reflection": "^1.4",
  157. "aws/aws-php-sns-message-validator": "~1.0",
  158. "behat/behat": "~3.0",
  159. "doctrine/cache": "~1.4",
  160. "ext-dom": "*",
  161. "ext-openssl": "*",
  162. "ext-pcntl": "*",
  163. "ext-sockets": "*",
  164. "nette/neon": "^2.3",
  165. "paragonie/random_compat": ">= 2",
  166. "phpunit/phpunit": "^4.8.35|^5.4.3",
  167. "psr/cache": "^1.0",
  168. "psr/simple-cache": "^1.0",
  169. "sebastian/comparator": "^1.2.3"
  170. },
  171. "suggest": {
  172. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  173. "doctrine/cache": "To use the DoctrineCacheAdapter",
  174. "ext-curl": "To send requests using cURL",
  175. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  176. "ext-sockets": "To use client-side monitoring"
  177. },
  178. "type": "library",
  179. "extra": {
  180. "branch-alias": {
  181. "dev-master": "3.0-dev"
  182. }
  183. },
  184. "autoload": {
  185. "psr-4": {
  186. "Aws\\": "src/"
  187. },
  188. "files": [
  189. "src/functions.php"
  190. ]
  191. },
  192. "notification-url": "https://packagist.org/downloads/",
  193. "license": [
  194. "Apache-2.0"
  195. ],
  196. "authors": [
  197. {
  198. "name": "Amazon Web Services",
  199. "homepage": "http://aws.amazon.com"
  200. }
  201. ],
  202. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  203. "homepage": "http://aws.amazon.com/sdkforphp",
  204. "keywords": [
  205. "amazon",
  206. "aws",
  207. "cloud",
  208. "dynamodb",
  209. "ec2",
  210. "glacier",
  211. "s3",
  212. "sdk"
  213. ],
  214. "support": {
  215. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  216. "issues": "https://github.com/aws/aws-sdk-php/issues",
  217. "source": "https://github.com/aws/aws-sdk-php/tree/3.172.0"
  218. },
  219. "time": "2021-01-22T19:21:38+00:00"
  220. },
  221. {
  222. "name": "bacon/bacon-qr-code",
  223. "version": "2.0.3",
  224. "source": {
  225. "type": "git",
  226. "url": "https://github.com/Bacon/BaconQrCode.git",
  227. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4"
  228. },
  229. "dist": {
  230. "type": "zip",
  231. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  232. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  233. "shasum": ""
  234. },
  235. "require": {
  236. "dasprid/enum": "^1.0.3",
  237. "ext-iconv": "*",
  238. "php": "^7.1 || ^8.0"
  239. },
  240. "require-dev": {
  241. "phly/keep-a-changelog": "^1.4",
  242. "phpunit/phpunit": "^7 | ^8 | ^9",
  243. "squizlabs/php_codesniffer": "^3.4"
  244. },
  245. "suggest": {
  246. "ext-imagick": "to generate QR code images"
  247. },
  248. "type": "library",
  249. "autoload": {
  250. "psr-4": {
  251. "BaconQrCode\\": "src/"
  252. }
  253. },
  254. "notification-url": "https://packagist.org/downloads/",
  255. "license": [
  256. "BSD-2-Clause"
  257. ],
  258. "authors": [
  259. {
  260. "name": "Ben Scholzen 'DASPRiD'",
  261. "email": "mail@dasprids.de",
  262. "homepage": "https://dasprids.de/",
  263. "role": "Developer"
  264. }
  265. ],
  266. "description": "BaconQrCode is a QR code generator for PHP.",
  267. "homepage": "https://github.com/Bacon/BaconQrCode",
  268. "support": {
  269. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  270. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.3"
  271. },
  272. "time": "2020-10-30T02:02:47+00:00"
  273. },
  274. {
  275. "name": "beyondcode/laravel-self-diagnosis",
  276. "version": "1.5.0",
  277. "source": {
  278. "type": "git",
  279. "url": "https://github.com/beyondcode/laravel-self-diagnosis.git",
  280. "reference": "b9f235747a3b06cee3cffe152deabc37dc93cca4"
  281. },
  282. "dist": {
  283. "type": "zip",
  284. "url": "https://api.github.com/repos/beyondcode/laravel-self-diagnosis/zipball/b9f235747a3b06cee3cffe152deabc37dc93cca4",
  285. "reference": "b9f235747a3b06cee3cffe152deabc37dc93cca4",
  286. "shasum": ""
  287. },
  288. "require": {
  289. "composer/semver": "^1.4",
  290. "geerlingguy/ping": "^1.1",
  291. "illuminate/support": "5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  292. "php": "^7.1",
  293. "vlucas/phpdotenv": "~2.5|~3.3|^4.0|^5.0"
  294. },
  295. "require-dev": {
  296. "larapack/dd": "^1.0",
  297. "mockery/mockery": "^1.0",
  298. "orchestra/testbench": "~3.5|~3.8",
  299. "phpunit/phpunit": "^7.0",
  300. "predis/predis": "^1.1",
  301. "scrutinizer/ocular": "^1.5"
  302. },
  303. "type": "library",
  304. "extra": {
  305. "laravel": {
  306. "providers": [
  307. "BeyondCode\\SelfDiagnosis\\SelfDiagnosisServiceProvider"
  308. ]
  309. }
  310. },
  311. "autoload": {
  312. "psr-4": {
  313. "BeyondCode\\SelfDiagnosis\\": "src"
  314. }
  315. },
  316. "notification-url": "https://packagist.org/downloads/",
  317. "license": [
  318. "MIT"
  319. ],
  320. "authors": [
  321. {
  322. "name": "Marcel Pociot",
  323. "email": "marcel@beyondco.de",
  324. "homepage": "https://beyondcode.de",
  325. "role": "Developer"
  326. }
  327. ],
  328. "description": "Perform various self diagnosis tests on your Laravel application.",
  329. "homepage": "https://github.com/beyondcode/laravel-self-diagnosis",
  330. "keywords": [
  331. "beyondcode",
  332. "laravel-self-diagnosis"
  333. ],
  334. "support": {
  335. "issues": "https://github.com/beyondcode/laravel-self-diagnosis/issues",
  336. "source": "https://github.com/beyondcode/laravel-self-diagnosis/tree/1.5.0"
  337. },
  338. "time": "2020-10-22T07:36:20+00:00"
  339. },
  340. {
  341. "name": "brick/math",
  342. "version": "0.8.17",
  343. "source": {
  344. "type": "git",
  345. "url": "https://github.com/brick/math.git",
  346. "reference": "e6f8e7d04346a95be89580f8c2c22d6c3fa65556"
  347. },
  348. "dist": {
  349. "type": "zip",
  350. "url": "https://api.github.com/repos/brick/math/zipball/e6f8e7d04346a95be89580f8c2c22d6c3fa65556",
  351. "reference": "e6f8e7d04346a95be89580f8c2c22d6c3fa65556",
  352. "shasum": ""
  353. },
  354. "require": {
  355. "ext-json": "*",
  356. "php": "^7.1|^8.0"
  357. },
  358. "require-dev": {
  359. "php-coveralls/php-coveralls": "^2.2",
  360. "phpunit/phpunit": "^7.5.15|^8.5",
  361. "vimeo/psalm": "^3.5"
  362. },
  363. "type": "library",
  364. "autoload": {
  365. "psr-4": {
  366. "Brick\\Math\\": "src/"
  367. }
  368. },
  369. "notification-url": "https://packagist.org/downloads/",
  370. "license": [
  371. "MIT"
  372. ],
  373. "description": "Arbitrary-precision arithmetic library",
  374. "keywords": [
  375. "Arbitrary-precision",
  376. "BigInteger",
  377. "BigRational",
  378. "arithmetic",
  379. "bigdecimal",
  380. "bignum",
  381. "brick",
  382. "math"
  383. ],
  384. "support": {
  385. "issues": "https://github.com/brick/math/issues",
  386. "source": "https://github.com/brick/math/tree/v0.8"
  387. },
  388. "funding": [
  389. {
  390. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  391. "type": "tidelift"
  392. }
  393. ],
  394. "time": "2020-08-18T23:41:20+00:00"
  395. },
  396. {
  397. "name": "buzz/laravel-h-captcha",
  398. "version": "v1.0.2",
  399. "source": {
  400. "type": "git",
  401. "url": "https://github.com/thinhbuzz/laravel-h-captcha.git",
  402. "reference": "41a063bea0e204ae5b8afbafce981d4675dd8af7"
  403. },
  404. "dist": {
  405. "type": "zip",
  406. "url": "https://api.github.com/repos/thinhbuzz/laravel-h-captcha/zipball/41a063bea0e204ae5b8afbafce981d4675dd8af7",
  407. "reference": "41a063bea0e204ae5b8afbafce981d4675dd8af7",
  408. "shasum": ""
  409. },
  410. "require": {
  411. "guzzlehttp/guzzle": "6.*|7.*",
  412. "illuminate/support": "5.*|6.*|7.*|8.*",
  413. "php": ">=5.4.0"
  414. },
  415. "type": "library",
  416. "extra": {
  417. "laravel": {
  418. "providers": [
  419. "Buzz\\LaravelHCaptcha\\CaptchaServiceProvider"
  420. ],
  421. "aliases": {
  422. "Captcha": "Buzz\\LaravelHCaptcha\\CaptchaFacade"
  423. }
  424. }
  425. },
  426. "autoload": {
  427. "psr-4": {
  428. "Buzz\\LaravelHCaptcha\\": "src"
  429. }
  430. },
  431. "notification-url": "https://packagist.org/downloads/",
  432. "license": [
  433. "MIT"
  434. ],
  435. "authors": [
  436. {
  437. "name": "ThinhBuzz",
  438. "email": "mr.thinhbuzz@gmail.com",
  439. "homepage": "https://www.facebook.com/thinh.buzz"
  440. }
  441. ],
  442. "description": "hCaptcha for Laravel 5, Laravel 6, Laravel 7 and Laravel 8",
  443. "homepage": "https://github.com/thinhbuzz/laravel-h-captcha",
  444. "keywords": [
  445. "captcha",
  446. "h captcha",
  447. "h-captcha",
  448. "hcaptcha",
  449. "laravel",
  450. "laravel 5",
  451. "laravel 6",
  452. "laravel 7",
  453. "laravel 8",
  454. "laravel5",
  455. "laravel6",
  456. "laravel7"
  457. ],
  458. "support": {
  459. "issues": "https://github.com/thinhbuzz/laravel-h-captcha/issues",
  460. "source": "https://github.com/thinhbuzz/laravel-h-captcha/tree/v1.0.2"
  461. },
  462. "time": "2020-09-14T15:04:45+00:00"
  463. },
  464. {
  465. "name": "composer/semver",
  466. "version": "1.7.2",
  467. "source": {
  468. "type": "git",
  469. "url": "https://github.com/composer/semver.git",
  470. "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a"
  471. },
  472. "dist": {
  473. "type": "zip",
  474. "url": "https://api.github.com/repos/composer/semver/zipball/647490bbcaf7fc4891c58f47b825eb99d19c377a",
  475. "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a",
  476. "shasum": ""
  477. },
  478. "require": {
  479. "php": "^5.3.2 || ^7.0 || ^8.0"
  480. },
  481. "require-dev": {
  482. "phpunit/phpunit": "^4.5 || ^5.0.5"
  483. },
  484. "type": "library",
  485. "extra": {
  486. "branch-alias": {
  487. "dev-master": "1.x-dev"
  488. }
  489. },
  490. "autoload": {
  491. "psr-4": {
  492. "Composer\\Semver\\": "src"
  493. }
  494. },
  495. "notification-url": "https://packagist.org/downloads/",
  496. "license": [
  497. "MIT"
  498. ],
  499. "authors": [
  500. {
  501. "name": "Nils Adermann",
  502. "email": "naderman@naderman.de",
  503. "homepage": "http://www.naderman.de"
  504. },
  505. {
  506. "name": "Jordi Boggiano",
  507. "email": "j.boggiano@seld.be",
  508. "homepage": "http://seld.be"
  509. },
  510. {
  511. "name": "Rob Bast",
  512. "email": "rob.bast@gmail.com",
  513. "homepage": "http://robbast.nl"
  514. }
  515. ],
  516. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  517. "keywords": [
  518. "semantic",
  519. "semver",
  520. "validation",
  521. "versioning"
  522. ],
  523. "support": {
  524. "irc": "irc://irc.freenode.org/composer",
  525. "issues": "https://github.com/composer/semver/issues",
  526. "source": "https://github.com/composer/semver/tree/1.7.2"
  527. },
  528. "funding": [
  529. {
  530. "url": "https://packagist.com",
  531. "type": "custom"
  532. },
  533. {
  534. "url": "https://github.com/composer",
  535. "type": "github"
  536. },
  537. {
  538. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  539. "type": "tidelift"
  540. }
  541. ],
  542. "time": "2020-12-03T15:47:16+00:00"
  543. },
  544. {
  545. "name": "dasprid/enum",
  546. "version": "1.0.3",
  547. "source": {
  548. "type": "git",
  549. "url": "https://github.com/DASPRiD/Enum.git",
  550. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  551. },
  552. "dist": {
  553. "type": "zip",
  554. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  555. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  556. "shasum": ""
  557. },
  558. "require-dev": {
  559. "phpunit/phpunit": "^7 | ^8 | ^9",
  560. "squizlabs/php_codesniffer": "^3.4"
  561. },
  562. "type": "library",
  563. "autoload": {
  564. "psr-4": {
  565. "DASPRiD\\Enum\\": "src/"
  566. }
  567. },
  568. "notification-url": "https://packagist.org/downloads/",
  569. "license": [
  570. "BSD-2-Clause"
  571. ],
  572. "authors": [
  573. {
  574. "name": "Ben Scholzen 'DASPRiD'",
  575. "email": "mail@dasprids.de",
  576. "homepage": "https://dasprids.de/",
  577. "role": "Developer"
  578. }
  579. ],
  580. "description": "PHP 7.1 enum implementation",
  581. "keywords": [
  582. "enum",
  583. "map"
  584. ],
  585. "support": {
  586. "issues": "https://github.com/DASPRiD/Enum/issues",
  587. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  588. },
  589. "time": "2020-10-02T16:03:48+00:00"
  590. },
  591. {
  592. "name": "defuse/php-encryption",
  593. "version": "v2.2.1",
  594. "source": {
  595. "type": "git",
  596. "url": "https://github.com/defuse/php-encryption.git",
  597. "reference": "0f407c43b953d571421e0020ba92082ed5fb7620"
  598. },
  599. "dist": {
  600. "type": "zip",
  601. "url": "https://api.github.com/repos/defuse/php-encryption/zipball/0f407c43b953d571421e0020ba92082ed5fb7620",
  602. "reference": "0f407c43b953d571421e0020ba92082ed5fb7620",
  603. "shasum": ""
  604. },
  605. "require": {
  606. "ext-openssl": "*",
  607. "paragonie/random_compat": ">= 2",
  608. "php": ">=5.4.0"
  609. },
  610. "require-dev": {
  611. "nikic/php-parser": "^2.0|^3.0|^4.0",
  612. "phpunit/phpunit": "^4|^5"
  613. },
  614. "bin": [
  615. "bin/generate-defuse-key"
  616. ],
  617. "type": "library",
  618. "autoload": {
  619. "psr-4": {
  620. "Defuse\\Crypto\\": "src"
  621. }
  622. },
  623. "notification-url": "https://packagist.org/downloads/",
  624. "license": [
  625. "MIT"
  626. ],
  627. "authors": [
  628. {
  629. "name": "Taylor Hornby",
  630. "email": "taylor@defuse.ca",
  631. "homepage": "https://defuse.ca/"
  632. },
  633. {
  634. "name": "Scott Arciszewski",
  635. "email": "info@paragonie.com",
  636. "homepage": "https://paragonie.com"
  637. }
  638. ],
  639. "description": "Secure PHP Encryption Library",
  640. "keywords": [
  641. "aes",
  642. "authenticated encryption",
  643. "cipher",
  644. "crypto",
  645. "cryptography",
  646. "encrypt",
  647. "encryption",
  648. "openssl",
  649. "security",
  650. "symmetric key cryptography"
  651. ],
  652. "support": {
  653. "issues": "https://github.com/defuse/php-encryption/issues",
  654. "source": "https://github.com/defuse/php-encryption/tree/master"
  655. },
  656. "time": "2018-07-24T23:27:56+00:00"
  657. },
  658. {
  659. "name": "dnoegel/php-xdg-base-dir",
  660. "version": "v0.1.1",
  661. "source": {
  662. "type": "git",
  663. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  664. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  665. },
  666. "dist": {
  667. "type": "zip",
  668. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  669. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  670. "shasum": ""
  671. },
  672. "require": {
  673. "php": ">=5.3.2"
  674. },
  675. "require-dev": {
  676. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  677. },
  678. "type": "library",
  679. "autoload": {
  680. "psr-4": {
  681. "XdgBaseDir\\": "src/"
  682. }
  683. },
  684. "notification-url": "https://packagist.org/downloads/",
  685. "license": [
  686. "MIT"
  687. ],
  688. "description": "implementation of xdg base directory specification for php",
  689. "support": {
  690. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  691. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  692. },
  693. "time": "2019-12-04T15:06:13+00:00"
  694. },
  695. {
  696. "name": "doctrine/cache",
  697. "version": "1.10.2",
  698. "source": {
  699. "type": "git",
  700. "url": "https://github.com/doctrine/cache.git",
  701. "reference": "13e3381b25847283a91948d04640543941309727"
  702. },
  703. "dist": {
  704. "type": "zip",
  705. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  706. "reference": "13e3381b25847283a91948d04640543941309727",
  707. "shasum": ""
  708. },
  709. "require": {
  710. "php": "~7.1 || ^8.0"
  711. },
  712. "conflict": {
  713. "doctrine/common": ">2.2,<2.4"
  714. },
  715. "require-dev": {
  716. "alcaeus/mongo-php-adapter": "^1.1",
  717. "doctrine/coding-standard": "^6.0",
  718. "mongodb/mongodb": "^1.1",
  719. "phpunit/phpunit": "^7.0",
  720. "predis/predis": "~1.0"
  721. },
  722. "suggest": {
  723. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  724. },
  725. "type": "library",
  726. "extra": {
  727. "branch-alias": {
  728. "dev-master": "1.9.x-dev"
  729. }
  730. },
  731. "autoload": {
  732. "psr-4": {
  733. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  734. }
  735. },
  736. "notification-url": "https://packagist.org/downloads/",
  737. "license": [
  738. "MIT"
  739. ],
  740. "authors": [
  741. {
  742. "name": "Guilherme Blanco",
  743. "email": "guilhermeblanco@gmail.com"
  744. },
  745. {
  746. "name": "Roman Borschel",
  747. "email": "roman@code-factory.org"
  748. },
  749. {
  750. "name": "Benjamin Eberlei",
  751. "email": "kontakt@beberlei.de"
  752. },
  753. {
  754. "name": "Jonathan Wage",
  755. "email": "jonwage@gmail.com"
  756. },
  757. {
  758. "name": "Johannes Schmitt",
  759. "email": "schmittjoh@gmail.com"
  760. }
  761. ],
  762. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  763. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  764. "keywords": [
  765. "abstraction",
  766. "apcu",
  767. "cache",
  768. "caching",
  769. "couchdb",
  770. "memcached",
  771. "php",
  772. "redis",
  773. "xcache"
  774. ],
  775. "support": {
  776. "issues": "https://github.com/doctrine/cache/issues",
  777. "source": "https://github.com/doctrine/cache/tree/1.10.x"
  778. },
  779. "funding": [
  780. {
  781. "url": "https://www.doctrine-project.org/sponsorship.html",
  782. "type": "custom"
  783. },
  784. {
  785. "url": "https://www.patreon.com/phpdoctrine",
  786. "type": "patreon"
  787. },
  788. {
  789. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  790. "type": "tidelift"
  791. }
  792. ],
  793. "time": "2020-07-07T18:54:01+00:00"
  794. },
  795. {
  796. "name": "doctrine/dbal",
  797. "version": "2.12.1",
  798. "source": {
  799. "type": "git",
  800. "url": "https://github.com/doctrine/dbal.git",
  801. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086"
  802. },
  803. "dist": {
  804. "type": "zip",
  805. "url": "https://api.github.com/repos/doctrine/dbal/zipball/adce7a954a1c2f14f85e94aed90c8489af204086",
  806. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086",
  807. "shasum": ""
  808. },
  809. "require": {
  810. "doctrine/cache": "^1.0",
  811. "doctrine/event-manager": "^1.0",
  812. "ext-pdo": "*",
  813. "php": "^7.3 || ^8"
  814. },
  815. "require-dev": {
  816. "doctrine/coding-standard": "^8.1",
  817. "jetbrains/phpstorm-stubs": "^2019.1",
  818. "phpstan/phpstan": "^0.12.40",
  819. "phpunit/phpunit": "^9.4",
  820. "psalm/plugin-phpunit": "^0.10.0",
  821. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  822. "vimeo/psalm": "^3.17.2"
  823. },
  824. "suggest": {
  825. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  826. },
  827. "bin": [
  828. "bin/doctrine-dbal"
  829. ],
  830. "type": "library",
  831. "extra": {
  832. "branch-alias": {
  833. "dev-master": "4.0.x-dev"
  834. }
  835. },
  836. "autoload": {
  837. "psr-4": {
  838. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  839. }
  840. },
  841. "notification-url": "https://packagist.org/downloads/",
  842. "license": [
  843. "MIT"
  844. ],
  845. "authors": [
  846. {
  847. "name": "Guilherme Blanco",
  848. "email": "guilhermeblanco@gmail.com"
  849. },
  850. {
  851. "name": "Roman Borschel",
  852. "email": "roman@code-factory.org"
  853. },
  854. {
  855. "name": "Benjamin Eberlei",
  856. "email": "kontakt@beberlei.de"
  857. },
  858. {
  859. "name": "Jonathan Wage",
  860. "email": "jonwage@gmail.com"
  861. }
  862. ],
  863. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  864. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  865. "keywords": [
  866. "abstraction",
  867. "database",
  868. "db2",
  869. "dbal",
  870. "mariadb",
  871. "mssql",
  872. "mysql",
  873. "oci8",
  874. "oracle",
  875. "pdo",
  876. "pgsql",
  877. "postgresql",
  878. "queryobject",
  879. "sasql",
  880. "sql",
  881. "sqlanywhere",
  882. "sqlite",
  883. "sqlserver",
  884. "sqlsrv"
  885. ],
  886. "support": {
  887. "issues": "https://github.com/doctrine/dbal/issues",
  888. "source": "https://github.com/doctrine/dbal/tree/2.12.1"
  889. },
  890. "funding": [
  891. {
  892. "url": "https://www.doctrine-project.org/sponsorship.html",
  893. "type": "custom"
  894. },
  895. {
  896. "url": "https://www.patreon.com/phpdoctrine",
  897. "type": "patreon"
  898. },
  899. {
  900. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  901. "type": "tidelift"
  902. }
  903. ],
  904. "time": "2020-11-14T20:26:58+00:00"
  905. },
  906. {
  907. "name": "doctrine/event-manager",
  908. "version": "1.1.1",
  909. "source": {
  910. "type": "git",
  911. "url": "https://github.com/doctrine/event-manager.git",
  912. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  913. },
  914. "dist": {
  915. "type": "zip",
  916. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  917. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  918. "shasum": ""
  919. },
  920. "require": {
  921. "php": "^7.1 || ^8.0"
  922. },
  923. "conflict": {
  924. "doctrine/common": "<2.9@dev"
  925. },
  926. "require-dev": {
  927. "doctrine/coding-standard": "^6.0",
  928. "phpunit/phpunit": "^7.0"
  929. },
  930. "type": "library",
  931. "extra": {
  932. "branch-alias": {
  933. "dev-master": "1.0.x-dev"
  934. }
  935. },
  936. "autoload": {
  937. "psr-4": {
  938. "Doctrine\\Common\\": "lib/Doctrine/Common"
  939. }
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "authors": [
  946. {
  947. "name": "Guilherme Blanco",
  948. "email": "guilhermeblanco@gmail.com"
  949. },
  950. {
  951. "name": "Roman Borschel",
  952. "email": "roman@code-factory.org"
  953. },
  954. {
  955. "name": "Benjamin Eberlei",
  956. "email": "kontakt@beberlei.de"
  957. },
  958. {
  959. "name": "Jonathan Wage",
  960. "email": "jonwage@gmail.com"
  961. },
  962. {
  963. "name": "Johannes Schmitt",
  964. "email": "schmittjoh@gmail.com"
  965. },
  966. {
  967. "name": "Marco Pivetta",
  968. "email": "ocramius@gmail.com"
  969. }
  970. ],
  971. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  972. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  973. "keywords": [
  974. "event",
  975. "event dispatcher",
  976. "event manager",
  977. "event system",
  978. "events"
  979. ],
  980. "support": {
  981. "issues": "https://github.com/doctrine/event-manager/issues",
  982. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  983. },
  984. "funding": [
  985. {
  986. "url": "https://www.doctrine-project.org/sponsorship.html",
  987. "type": "custom"
  988. },
  989. {
  990. "url": "https://www.patreon.com/phpdoctrine",
  991. "type": "patreon"
  992. },
  993. {
  994. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  995. "type": "tidelift"
  996. }
  997. ],
  998. "time": "2020-05-29T18:28:51+00:00"
  999. },
  1000. {
  1001. "name": "doctrine/inflector",
  1002. "version": "2.0.3",
  1003. "source": {
  1004. "type": "git",
  1005. "url": "https://github.com/doctrine/inflector.git",
  1006. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  1007. },
  1008. "dist": {
  1009. "type": "zip",
  1010. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  1011. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  1012. "shasum": ""
  1013. },
  1014. "require": {
  1015. "php": "^7.2 || ^8.0"
  1016. },
  1017. "require-dev": {
  1018. "doctrine/coding-standard": "^7.0",
  1019. "phpstan/phpstan": "^0.11",
  1020. "phpstan/phpstan-phpunit": "^0.11",
  1021. "phpstan/phpstan-strict-rules": "^0.11",
  1022. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1023. },
  1024. "type": "library",
  1025. "extra": {
  1026. "branch-alias": {
  1027. "dev-master": "2.0.x-dev"
  1028. }
  1029. },
  1030. "autoload": {
  1031. "psr-4": {
  1032. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1033. }
  1034. },
  1035. "notification-url": "https://packagist.org/downloads/",
  1036. "license": [
  1037. "MIT"
  1038. ],
  1039. "authors": [
  1040. {
  1041. "name": "Guilherme Blanco",
  1042. "email": "guilhermeblanco@gmail.com"
  1043. },
  1044. {
  1045. "name": "Roman Borschel",
  1046. "email": "roman@code-factory.org"
  1047. },
  1048. {
  1049. "name": "Benjamin Eberlei",
  1050. "email": "kontakt@beberlei.de"
  1051. },
  1052. {
  1053. "name": "Jonathan Wage",
  1054. "email": "jonwage@gmail.com"
  1055. },
  1056. {
  1057. "name": "Johannes Schmitt",
  1058. "email": "schmittjoh@gmail.com"
  1059. }
  1060. ],
  1061. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1062. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1063. "keywords": [
  1064. "inflection",
  1065. "inflector",
  1066. "lowercase",
  1067. "manipulation",
  1068. "php",
  1069. "plural",
  1070. "singular",
  1071. "strings",
  1072. "uppercase",
  1073. "words"
  1074. ],
  1075. "support": {
  1076. "issues": "https://github.com/doctrine/inflector/issues",
  1077. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  1078. },
  1079. "funding": [
  1080. {
  1081. "url": "https://www.doctrine-project.org/sponsorship.html",
  1082. "type": "custom"
  1083. },
  1084. {
  1085. "url": "https://www.patreon.com/phpdoctrine",
  1086. "type": "patreon"
  1087. },
  1088. {
  1089. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1090. "type": "tidelift"
  1091. }
  1092. ],
  1093. "time": "2020-05-29T15:13:26+00:00"
  1094. },
  1095. {
  1096. "name": "doctrine/lexer",
  1097. "version": "1.2.1",
  1098. "source": {
  1099. "type": "git",
  1100. "url": "https://github.com/doctrine/lexer.git",
  1101. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1102. },
  1103. "dist": {
  1104. "type": "zip",
  1105. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1106. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1107. "shasum": ""
  1108. },
  1109. "require": {
  1110. "php": "^7.2 || ^8.0"
  1111. },
  1112. "require-dev": {
  1113. "doctrine/coding-standard": "^6.0",
  1114. "phpstan/phpstan": "^0.11.8",
  1115. "phpunit/phpunit": "^8.2"
  1116. },
  1117. "type": "library",
  1118. "extra": {
  1119. "branch-alias": {
  1120. "dev-master": "1.2.x-dev"
  1121. }
  1122. },
  1123. "autoload": {
  1124. "psr-4": {
  1125. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1126. }
  1127. },
  1128. "notification-url": "https://packagist.org/downloads/",
  1129. "license": [
  1130. "MIT"
  1131. ],
  1132. "authors": [
  1133. {
  1134. "name": "Guilherme Blanco",
  1135. "email": "guilhermeblanco@gmail.com"
  1136. },
  1137. {
  1138. "name": "Roman Borschel",
  1139. "email": "roman@code-factory.org"
  1140. },
  1141. {
  1142. "name": "Johannes Schmitt",
  1143. "email": "schmittjoh@gmail.com"
  1144. }
  1145. ],
  1146. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1147. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1148. "keywords": [
  1149. "annotations",
  1150. "docblock",
  1151. "lexer",
  1152. "parser",
  1153. "php"
  1154. ],
  1155. "support": {
  1156. "issues": "https://github.com/doctrine/lexer/issues",
  1157. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  1158. },
  1159. "funding": [
  1160. {
  1161. "url": "https://www.doctrine-project.org/sponsorship.html",
  1162. "type": "custom"
  1163. },
  1164. {
  1165. "url": "https://www.patreon.com/phpdoctrine",
  1166. "type": "patreon"
  1167. },
  1168. {
  1169. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1170. "type": "tidelift"
  1171. }
  1172. ],
  1173. "time": "2020-05-25T17:44:05+00:00"
  1174. },
  1175. {
  1176. "name": "dragonmantank/cron-expression",
  1177. "version": "v3.1.0",
  1178. "source": {
  1179. "type": "git",
  1180. "url": "https://github.com/dragonmantank/cron-expression.git",
  1181. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c"
  1182. },
  1183. "dist": {
  1184. "type": "zip",
  1185. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  1186. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  1187. "shasum": ""
  1188. },
  1189. "require": {
  1190. "php": "^7.2|^8.0",
  1191. "webmozart/assert": "^1.7.0"
  1192. },
  1193. "replace": {
  1194. "mtdowling/cron-expression": "^1.0"
  1195. },
  1196. "require-dev": {
  1197. "phpstan/extension-installer": "^1.0",
  1198. "phpstan/phpstan": "^0.12",
  1199. "phpstan/phpstan-webmozart-assert": "^0.12.7",
  1200. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1201. },
  1202. "type": "library",
  1203. "autoload": {
  1204. "psr-4": {
  1205. "Cron\\": "src/Cron/"
  1206. }
  1207. },
  1208. "notification-url": "https://packagist.org/downloads/",
  1209. "license": [
  1210. "MIT"
  1211. ],
  1212. "authors": [
  1213. {
  1214. "name": "Chris Tankersley",
  1215. "email": "chris@ctankersley.com",
  1216. "homepage": "https://github.com/dragonmantank"
  1217. }
  1218. ],
  1219. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1220. "keywords": [
  1221. "cron",
  1222. "schedule"
  1223. ],
  1224. "support": {
  1225. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1226. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0"
  1227. },
  1228. "funding": [
  1229. {
  1230. "url": "https://github.com/dragonmantank",
  1231. "type": "github"
  1232. }
  1233. ],
  1234. "time": "2020-11-24T19:55:57+00:00"
  1235. },
  1236. {
  1237. "name": "egulias/email-validator",
  1238. "version": "2.1.25",
  1239. "source": {
  1240. "type": "git",
  1241. "url": "https://github.com/egulias/EmailValidator.git",
  1242. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1243. },
  1244. "dist": {
  1245. "type": "zip",
  1246. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1247. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1248. "shasum": ""
  1249. },
  1250. "require": {
  1251. "doctrine/lexer": "^1.0.1",
  1252. "php": ">=5.5",
  1253. "symfony/polyfill-intl-idn": "^1.10"
  1254. },
  1255. "require-dev": {
  1256. "dominicsayers/isemail": "^3.0.7",
  1257. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1258. "satooshi/php-coveralls": "^1.0.1"
  1259. },
  1260. "suggest": {
  1261. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1262. },
  1263. "type": "library",
  1264. "extra": {
  1265. "branch-alias": {
  1266. "dev-master": "2.1.x-dev"
  1267. }
  1268. },
  1269. "autoload": {
  1270. "psr-4": {
  1271. "Egulias\\EmailValidator\\": "src"
  1272. }
  1273. },
  1274. "notification-url": "https://packagist.org/downloads/",
  1275. "license": [
  1276. "MIT"
  1277. ],
  1278. "authors": [
  1279. {
  1280. "name": "Eduardo Gulias Davis"
  1281. }
  1282. ],
  1283. "description": "A library for validating emails against several RFCs",
  1284. "homepage": "https://github.com/egulias/EmailValidator",
  1285. "keywords": [
  1286. "email",
  1287. "emailvalidation",
  1288. "emailvalidator",
  1289. "validation",
  1290. "validator"
  1291. ],
  1292. "support": {
  1293. "issues": "https://github.com/egulias/EmailValidator/issues",
  1294. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1295. },
  1296. "funding": [
  1297. {
  1298. "url": "https://github.com/egulias",
  1299. "type": "github"
  1300. }
  1301. ],
  1302. "time": "2020-12-29T14:50:06+00:00"
  1303. },
  1304. {
  1305. "name": "evenement/evenement",
  1306. "version": "v3.0.1",
  1307. "source": {
  1308. "type": "git",
  1309. "url": "https://github.com/igorw/evenement.git",
  1310. "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7"
  1311. },
  1312. "dist": {
  1313. "type": "zip",
  1314. "url": "https://api.github.com/repos/igorw/evenement/zipball/531bfb9d15f8aa57454f5f0285b18bec903b8fb7",
  1315. "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7",
  1316. "shasum": ""
  1317. },
  1318. "require": {
  1319. "php": ">=7.0"
  1320. },
  1321. "require-dev": {
  1322. "phpunit/phpunit": "^6.0"
  1323. },
  1324. "type": "library",
  1325. "autoload": {
  1326. "psr-0": {
  1327. "Evenement": "src"
  1328. }
  1329. },
  1330. "notification-url": "https://packagist.org/downloads/",
  1331. "license": [
  1332. "MIT"
  1333. ],
  1334. "authors": [
  1335. {
  1336. "name": "Igor Wiedler",
  1337. "email": "igor@wiedler.ch"
  1338. }
  1339. ],
  1340. "description": "Événement is a very simple event dispatching library for PHP",
  1341. "keywords": [
  1342. "event-dispatcher",
  1343. "event-emitter"
  1344. ],
  1345. "support": {
  1346. "issues": "https://github.com/igorw/evenement/issues",
  1347. "source": "https://github.com/igorw/evenement/tree/master"
  1348. },
  1349. "time": "2017-07-23T21:35:13+00:00"
  1350. },
  1351. {
  1352. "name": "ezyang/htmlpurifier",
  1353. "version": "v4.13.0",
  1354. "source": {
  1355. "type": "git",
  1356. "url": "https://github.com/ezyang/htmlpurifier.git",
  1357. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  1358. },
  1359. "dist": {
  1360. "type": "zip",
  1361. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1362. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1363. "shasum": ""
  1364. },
  1365. "require": {
  1366. "php": ">=5.2"
  1367. },
  1368. "require-dev": {
  1369. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  1370. },
  1371. "type": "library",
  1372. "autoload": {
  1373. "psr-0": {
  1374. "HTMLPurifier": "library/"
  1375. },
  1376. "files": [
  1377. "library/HTMLPurifier.composer.php"
  1378. ],
  1379. "exclude-from-classmap": [
  1380. "/library/HTMLPurifier/Language/"
  1381. ]
  1382. },
  1383. "notification-url": "https://packagist.org/downloads/",
  1384. "license": [
  1385. "LGPL-2.1-or-later"
  1386. ],
  1387. "authors": [
  1388. {
  1389. "name": "Edward Z. Yang",
  1390. "email": "admin@htmlpurifier.org",
  1391. "homepage": "http://ezyang.com"
  1392. }
  1393. ],
  1394. "description": "Standards compliant HTML filter written in PHP",
  1395. "homepage": "http://htmlpurifier.org/",
  1396. "keywords": [
  1397. "html"
  1398. ],
  1399. "support": {
  1400. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1401. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1402. },
  1403. "time": "2020-06-29T00:56:53+00:00"
  1404. },
  1405. {
  1406. "name": "fideloper/proxy",
  1407. "version": "4.4.1",
  1408. "source": {
  1409. "type": "git",
  1410. "url": "https://github.com/fideloper/TrustedProxy.git",
  1411. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1412. },
  1413. "dist": {
  1414. "type": "zip",
  1415. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1416. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1417. "shasum": ""
  1418. },
  1419. "require": {
  1420. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1421. "php": ">=5.4.0"
  1422. },
  1423. "require-dev": {
  1424. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1425. "mockery/mockery": "^1.0",
  1426. "phpunit/phpunit": "^6.0"
  1427. },
  1428. "type": "library",
  1429. "extra": {
  1430. "laravel": {
  1431. "providers": [
  1432. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1433. ]
  1434. }
  1435. },
  1436. "autoload": {
  1437. "psr-4": {
  1438. "Fideloper\\Proxy\\": "src/"
  1439. }
  1440. },
  1441. "notification-url": "https://packagist.org/downloads/",
  1442. "license": [
  1443. "MIT"
  1444. ],
  1445. "authors": [
  1446. {
  1447. "name": "Chris Fidao",
  1448. "email": "fideloper@gmail.com"
  1449. }
  1450. ],
  1451. "description": "Set trusted proxies for Laravel",
  1452. "keywords": [
  1453. "load balancing",
  1454. "proxy",
  1455. "trusted proxy"
  1456. ],
  1457. "support": {
  1458. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1459. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1460. },
  1461. "time": "2020-10-22T13:48:01+00:00"
  1462. },
  1463. {
  1464. "name": "firebase/php-jwt",
  1465. "version": "v5.2.0",
  1466. "source": {
  1467. "type": "git",
  1468. "url": "https://github.com/firebase/php-jwt.git",
  1469. "reference": "feb0e820b8436873675fd3aca04f3728eb2185cb"
  1470. },
  1471. "dist": {
  1472. "type": "zip",
  1473. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/feb0e820b8436873675fd3aca04f3728eb2185cb",
  1474. "reference": "feb0e820b8436873675fd3aca04f3728eb2185cb",
  1475. "shasum": ""
  1476. },
  1477. "require": {
  1478. "php": ">=5.3.0"
  1479. },
  1480. "require-dev": {
  1481. "phpunit/phpunit": ">=4.8 <=9"
  1482. },
  1483. "type": "library",
  1484. "autoload": {
  1485. "psr-4": {
  1486. "Firebase\\JWT\\": "src"
  1487. }
  1488. },
  1489. "notification-url": "https://packagist.org/downloads/",
  1490. "license": [
  1491. "BSD-3-Clause"
  1492. ],
  1493. "authors": [
  1494. {
  1495. "name": "Neuman Vong",
  1496. "email": "neuman+pear@twilio.com",
  1497. "role": "Developer"
  1498. },
  1499. {
  1500. "name": "Anant Narayanan",
  1501. "email": "anant@php.net",
  1502. "role": "Developer"
  1503. }
  1504. ],
  1505. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1506. "homepage": "https://github.com/firebase/php-jwt",
  1507. "keywords": [
  1508. "jwt",
  1509. "php"
  1510. ],
  1511. "support": {
  1512. "issues": "https://github.com/firebase/php-jwt/issues",
  1513. "source": "https://github.com/firebase/php-jwt/tree/master"
  1514. },
  1515. "time": "2020-03-25T18:49:23+00:00"
  1516. },
  1517. {
  1518. "name": "fruitcake/laravel-cors",
  1519. "version": "v2.0.3",
  1520. "source": {
  1521. "type": "git",
  1522. "url": "https://github.com/fruitcake/laravel-cors.git",
  1523. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a"
  1524. },
  1525. "dist": {
  1526. "type": "zip",
  1527. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  1528. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  1529. "shasum": ""
  1530. },
  1531. "require": {
  1532. "asm89/stack-cors": "^2.0.1",
  1533. "illuminate/contracts": "^6|^7|^8|^9",
  1534. "illuminate/support": "^6|^7|^8|^9",
  1535. "php": ">=7.2",
  1536. "symfony/http-foundation": "^4|^5",
  1537. "symfony/http-kernel": "^4.3.4|^5"
  1538. },
  1539. "require-dev": {
  1540. "laravel/framework": "^6|^7|^8",
  1541. "orchestra/testbench-dusk": "^4|^5|^6",
  1542. "phpunit/phpunit": "^6|^7|^8",
  1543. "squizlabs/php_codesniffer": "^3.5"
  1544. },
  1545. "type": "library",
  1546. "extra": {
  1547. "branch-alias": {
  1548. "dev-master": "2.0-dev"
  1549. },
  1550. "laravel": {
  1551. "providers": [
  1552. "Fruitcake\\Cors\\CorsServiceProvider"
  1553. ]
  1554. }
  1555. },
  1556. "autoload": {
  1557. "psr-4": {
  1558. "Fruitcake\\Cors\\": "src/"
  1559. }
  1560. },
  1561. "notification-url": "https://packagist.org/downloads/",
  1562. "license": [
  1563. "MIT"
  1564. ],
  1565. "authors": [
  1566. {
  1567. "name": "Fruitcake",
  1568. "homepage": "https://fruitcake.nl"
  1569. },
  1570. {
  1571. "name": "Barry vd. Heuvel",
  1572. "email": "barryvdh@gmail.com"
  1573. }
  1574. ],
  1575. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1576. "keywords": [
  1577. "api",
  1578. "cors",
  1579. "crossdomain",
  1580. "laravel"
  1581. ],
  1582. "support": {
  1583. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1584. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.3"
  1585. },
  1586. "funding": [
  1587. {
  1588. "url": "https://github.com/barryvdh",
  1589. "type": "github"
  1590. }
  1591. ],
  1592. "time": "2020-10-22T13:57:20+00:00"
  1593. },
  1594. {
  1595. "name": "geerlingguy/ping",
  1596. "version": "1.2.1",
  1597. "source": {
  1598. "type": "git",
  1599. "url": "https://github.com/geerlingguy/Ping.git",
  1600. "reference": "e0206326e23c99e3e8820e24705f8ca517adff93"
  1601. },
  1602. "dist": {
  1603. "type": "zip",
  1604. "url": "https://api.github.com/repos/geerlingguy/Ping/zipball/e0206326e23c99e3e8820e24705f8ca517adff93",
  1605. "reference": "e0206326e23c99e3e8820e24705f8ca517adff93",
  1606. "shasum": ""
  1607. },
  1608. "type": "library",
  1609. "autoload": {
  1610. "classmap": [
  1611. "JJG/Ping.php"
  1612. ]
  1613. },
  1614. "notification-url": "https://packagist.org/downloads/",
  1615. "license": [
  1616. "MIT"
  1617. ],
  1618. "authors": [
  1619. {
  1620. "name": "Jeff Geerling",
  1621. "email": "jeff@jeffgeerling.com"
  1622. }
  1623. ],
  1624. "description": "A PHP class to ping hosts.",
  1625. "support": {
  1626. "issues": "https://github.com/geerlingguy/Ping/issues",
  1627. "source": "https://github.com/geerlingguy/Ping/tree/1.2.1"
  1628. },
  1629. "time": "2019-07-29T21:54:12+00:00"
  1630. },
  1631. {
  1632. "name": "graham-campbell/result-type",
  1633. "version": "v1.0.1",
  1634. "source": {
  1635. "type": "git",
  1636. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1637. "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb"
  1638. },
  1639. "dist": {
  1640. "type": "zip",
  1641. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/7e279d2cd5d7fbb156ce46daada972355cea27bb",
  1642. "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb",
  1643. "shasum": ""
  1644. },
  1645. "require": {
  1646. "php": "^7.0|^8.0",
  1647. "phpoption/phpoption": "^1.7.3"
  1648. },
  1649. "require-dev": {
  1650. "phpunit/phpunit": "^6.5|^7.5|^8.5|^9.0"
  1651. },
  1652. "type": "library",
  1653. "extra": {
  1654. "branch-alias": {
  1655. "dev-master": "1.0-dev"
  1656. }
  1657. },
  1658. "autoload": {
  1659. "psr-4": {
  1660. "GrahamCampbell\\ResultType\\": "src/"
  1661. }
  1662. },
  1663. "notification-url": "https://packagist.org/downloads/",
  1664. "license": [
  1665. "MIT"
  1666. ],
  1667. "authors": [
  1668. {
  1669. "name": "Graham Campbell",
  1670. "email": "graham@alt-three.com"
  1671. }
  1672. ],
  1673. "description": "An Implementation Of The Result Type",
  1674. "keywords": [
  1675. "Graham Campbell",
  1676. "GrahamCampbell",
  1677. "Result Type",
  1678. "Result-Type",
  1679. "result"
  1680. ],
  1681. "support": {
  1682. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1683. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.1"
  1684. },
  1685. "funding": [
  1686. {
  1687. "url": "https://github.com/GrahamCampbell",
  1688. "type": "github"
  1689. },
  1690. {
  1691. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1692. "type": "tidelift"
  1693. }
  1694. ],
  1695. "time": "2020-04-13T13:17:36+00:00"
  1696. },
  1697. {
  1698. "name": "guzzlehttp/guzzle",
  1699. "version": "6.5.5",
  1700. "source": {
  1701. "type": "git",
  1702. "url": "https://github.com/guzzle/guzzle.git",
  1703. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1704. },
  1705. "dist": {
  1706. "type": "zip",
  1707. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1708. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1709. "shasum": ""
  1710. },
  1711. "require": {
  1712. "ext-json": "*",
  1713. "guzzlehttp/promises": "^1.0",
  1714. "guzzlehttp/psr7": "^1.6.1",
  1715. "php": ">=5.5",
  1716. "symfony/polyfill-intl-idn": "^1.17.0"
  1717. },
  1718. "require-dev": {
  1719. "ext-curl": "*",
  1720. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1721. "psr/log": "^1.1"
  1722. },
  1723. "suggest": {
  1724. "psr/log": "Required for using the Log middleware"
  1725. },
  1726. "type": "library",
  1727. "extra": {
  1728. "branch-alias": {
  1729. "dev-master": "6.5-dev"
  1730. }
  1731. },
  1732. "autoload": {
  1733. "psr-4": {
  1734. "GuzzleHttp\\": "src/"
  1735. },
  1736. "files": [
  1737. "src/functions_include.php"
  1738. ]
  1739. },
  1740. "notification-url": "https://packagist.org/downloads/",
  1741. "license": [
  1742. "MIT"
  1743. ],
  1744. "authors": [
  1745. {
  1746. "name": "Michael Dowling",
  1747. "email": "mtdowling@gmail.com",
  1748. "homepage": "https://github.com/mtdowling"
  1749. }
  1750. ],
  1751. "description": "Guzzle is a PHP HTTP client library",
  1752. "homepage": "http://guzzlephp.org/",
  1753. "keywords": [
  1754. "client",
  1755. "curl",
  1756. "framework",
  1757. "http",
  1758. "http client",
  1759. "rest",
  1760. "web service"
  1761. ],
  1762. "support": {
  1763. "issues": "https://github.com/guzzle/guzzle/issues",
  1764. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1765. },
  1766. "time": "2020-06-16T21:01:06+00:00"
  1767. },
  1768. {
  1769. "name": "guzzlehttp/promises",
  1770. "version": "1.4.0",
  1771. "source": {
  1772. "type": "git",
  1773. "url": "https://github.com/guzzle/promises.git",
  1774. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  1775. },
  1776. "dist": {
  1777. "type": "zip",
  1778. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  1779. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  1780. "shasum": ""
  1781. },
  1782. "require": {
  1783. "php": ">=5.5"
  1784. },
  1785. "require-dev": {
  1786. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1787. },
  1788. "type": "library",
  1789. "extra": {
  1790. "branch-alias": {
  1791. "dev-master": "1.4-dev"
  1792. }
  1793. },
  1794. "autoload": {
  1795. "psr-4": {
  1796. "GuzzleHttp\\Promise\\": "src/"
  1797. },
  1798. "files": [
  1799. "src/functions_include.php"
  1800. ]
  1801. },
  1802. "notification-url": "https://packagist.org/downloads/",
  1803. "license": [
  1804. "MIT"
  1805. ],
  1806. "authors": [
  1807. {
  1808. "name": "Michael Dowling",
  1809. "email": "mtdowling@gmail.com",
  1810. "homepage": "https://github.com/mtdowling"
  1811. }
  1812. ],
  1813. "description": "Guzzle promises library",
  1814. "keywords": [
  1815. "promise"
  1816. ],
  1817. "support": {
  1818. "issues": "https://github.com/guzzle/promises/issues",
  1819. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  1820. },
  1821. "time": "2020-09-30T07:37:28+00:00"
  1822. },
  1823. {
  1824. "name": "guzzlehttp/psr7",
  1825. "version": "1.7.0",
  1826. "source": {
  1827. "type": "git",
  1828. "url": "https://github.com/guzzle/psr7.git",
  1829. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  1830. },
  1831. "dist": {
  1832. "type": "zip",
  1833. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1834. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1835. "shasum": ""
  1836. },
  1837. "require": {
  1838. "php": ">=5.4.0",
  1839. "psr/http-message": "~1.0",
  1840. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1841. },
  1842. "provide": {
  1843. "psr/http-message-implementation": "1.0"
  1844. },
  1845. "require-dev": {
  1846. "ext-zlib": "*",
  1847. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1848. },
  1849. "suggest": {
  1850. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1851. },
  1852. "type": "library",
  1853. "extra": {
  1854. "branch-alias": {
  1855. "dev-master": "1.7-dev"
  1856. }
  1857. },
  1858. "autoload": {
  1859. "psr-4": {
  1860. "GuzzleHttp\\Psr7\\": "src/"
  1861. },
  1862. "files": [
  1863. "src/functions_include.php"
  1864. ]
  1865. },
  1866. "notification-url": "https://packagist.org/downloads/",
  1867. "license": [
  1868. "MIT"
  1869. ],
  1870. "authors": [
  1871. {
  1872. "name": "Michael Dowling",
  1873. "email": "mtdowling@gmail.com",
  1874. "homepage": "https://github.com/mtdowling"
  1875. },
  1876. {
  1877. "name": "Tobias Schultze",
  1878. "homepage": "https://github.com/Tobion"
  1879. }
  1880. ],
  1881. "description": "PSR-7 message implementation that also provides common utility methods",
  1882. "keywords": [
  1883. "http",
  1884. "message",
  1885. "psr-7",
  1886. "request",
  1887. "response",
  1888. "stream",
  1889. "uri",
  1890. "url"
  1891. ],
  1892. "support": {
  1893. "issues": "https://github.com/guzzle/psr7/issues",
  1894. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  1895. },
  1896. "time": "2020-09-30T07:37:11+00:00"
  1897. },
  1898. {
  1899. "name": "intervention/image",
  1900. "version": "2.5.1",
  1901. "source": {
  1902. "type": "git",
  1903. "url": "https://github.com/Intervention/image.git",
  1904. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1905. },
  1906. "dist": {
  1907. "type": "zip",
  1908. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1909. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1910. "shasum": ""
  1911. },
  1912. "require": {
  1913. "ext-fileinfo": "*",
  1914. "guzzlehttp/psr7": "~1.1",
  1915. "php": ">=5.4.0"
  1916. },
  1917. "require-dev": {
  1918. "mockery/mockery": "~0.9.2",
  1919. "phpunit/phpunit": "^4.8 || ^5.7"
  1920. },
  1921. "suggest": {
  1922. "ext-gd": "to use GD library based image processing.",
  1923. "ext-imagick": "to use Imagick based image processing.",
  1924. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1925. },
  1926. "type": "library",
  1927. "extra": {
  1928. "branch-alias": {
  1929. "dev-master": "2.4-dev"
  1930. },
  1931. "laravel": {
  1932. "providers": [
  1933. "Intervention\\Image\\ImageServiceProvider"
  1934. ],
  1935. "aliases": {
  1936. "Image": "Intervention\\Image\\Facades\\Image"
  1937. }
  1938. }
  1939. },
  1940. "autoload": {
  1941. "psr-4": {
  1942. "Intervention\\Image\\": "src/Intervention/Image"
  1943. }
  1944. },
  1945. "notification-url": "https://packagist.org/downloads/",
  1946. "license": [
  1947. "MIT"
  1948. ],
  1949. "authors": [
  1950. {
  1951. "name": "Oliver Vogel",
  1952. "email": "oliver@olivervogel.com",
  1953. "homepage": "http://olivervogel.com/"
  1954. }
  1955. ],
  1956. "description": "Image handling and manipulation library with support for Laravel integration",
  1957. "homepage": "http://image.intervention.io/",
  1958. "keywords": [
  1959. "gd",
  1960. "image",
  1961. "imagick",
  1962. "laravel",
  1963. "thumbnail",
  1964. "watermark"
  1965. ],
  1966. "support": {
  1967. "issues": "https://github.com/Intervention/image/issues",
  1968. "source": "https://github.com/Intervention/image/tree/master"
  1969. },
  1970. "time": "2019-11-02T09:15:47+00:00"
  1971. },
  1972. {
  1973. "name": "jaybizzle/crawler-detect",
  1974. "version": "v1.2.104",
  1975. "source": {
  1976. "type": "git",
  1977. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1978. "reference": "a581e89a9212c4e9d18049666dc735718c29de9c"
  1979. },
  1980. "dist": {
  1981. "type": "zip",
  1982. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/a581e89a9212c4e9d18049666dc735718c29de9c",
  1983. "reference": "a581e89a9212c4e9d18049666dc735718c29de9c",
  1984. "shasum": ""
  1985. },
  1986. "require": {
  1987. "php": ">=5.3.0"
  1988. },
  1989. "require-dev": {
  1990. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  1991. },
  1992. "type": "library",
  1993. "autoload": {
  1994. "psr-4": {
  1995. "Jaybizzle\\CrawlerDetect\\": "src/"
  1996. }
  1997. },
  1998. "notification-url": "https://packagist.org/downloads/",
  1999. "license": [
  2000. "MIT"
  2001. ],
  2002. "authors": [
  2003. {
  2004. "name": "Mark Beech",
  2005. "email": "m@rkbee.ch",
  2006. "role": "Developer"
  2007. }
  2008. ],
  2009. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  2010. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  2011. "keywords": [
  2012. "crawler",
  2013. "crawler detect",
  2014. "crawler detector",
  2015. "crawlerdetect",
  2016. "php crawler detect"
  2017. ],
  2018. "support": {
  2019. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  2020. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.104"
  2021. },
  2022. "time": "2021-01-13T15:25:20+00:00"
  2023. },
  2024. {
  2025. "name": "jenssegers/agent",
  2026. "version": "v2.6.4",
  2027. "source": {
  2028. "type": "git",
  2029. "url": "https://github.com/jenssegers/agent.git",
  2030. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  2031. },
  2032. "dist": {
  2033. "type": "zip",
  2034. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  2035. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  2036. "shasum": ""
  2037. },
  2038. "require": {
  2039. "jaybizzle/crawler-detect": "^1.2",
  2040. "mobiledetect/mobiledetectlib": "^2.7.6",
  2041. "php": ">=5.6"
  2042. },
  2043. "require-dev": {
  2044. "php-coveralls/php-coveralls": "^2.1",
  2045. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  2046. },
  2047. "suggest": {
  2048. "illuminate/support": "Required for laravel service providers"
  2049. },
  2050. "type": "library",
  2051. "extra": {
  2052. "branch-alias": {
  2053. "dev-master": "3.0-dev"
  2054. },
  2055. "laravel": {
  2056. "providers": [
  2057. "Jenssegers\\Agent\\AgentServiceProvider"
  2058. ],
  2059. "aliases": {
  2060. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  2061. }
  2062. }
  2063. },
  2064. "autoload": {
  2065. "psr-4": {
  2066. "Jenssegers\\Agent\\": "src/"
  2067. }
  2068. },
  2069. "notification-url": "https://packagist.org/downloads/",
  2070. "license": [
  2071. "MIT"
  2072. ],
  2073. "authors": [
  2074. {
  2075. "name": "Jens Segers",
  2076. "homepage": "https://jenssegers.com"
  2077. }
  2078. ],
  2079. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  2080. "homepage": "https://github.com/jenssegers/agent",
  2081. "keywords": [
  2082. "Agent",
  2083. "browser",
  2084. "desktop",
  2085. "laravel",
  2086. "mobile",
  2087. "platform",
  2088. "user agent",
  2089. "useragent"
  2090. ],
  2091. "support": {
  2092. "issues": "https://github.com/jenssegers/agent/issues",
  2093. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  2094. },
  2095. "funding": [
  2096. {
  2097. "url": "https://github.com/jenssegers",
  2098. "type": "github"
  2099. },
  2100. {
  2101. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  2102. "type": "tidelift"
  2103. }
  2104. ],
  2105. "time": "2020-06-13T08:05:20+00:00"
  2106. },
  2107. {
  2108. "name": "laravel/framework",
  2109. "version": "v8.25.0",
  2110. "source": {
  2111. "type": "git",
  2112. "url": "https://github.com/laravel/framework.git",
  2113. "reference": "05da44d6823c2923597519ac10151f5827a24f80"
  2114. },
  2115. "dist": {
  2116. "type": "zip",
  2117. "url": "https://api.github.com/repos/laravel/framework/zipball/05da44d6823c2923597519ac10151f5827a24f80",
  2118. "reference": "05da44d6823c2923597519ac10151f5827a24f80",
  2119. "shasum": ""
  2120. },
  2121. "require": {
  2122. "doctrine/inflector": "^1.4|^2.0",
  2123. "dragonmantank/cron-expression": "^3.0.2",
  2124. "egulias/email-validator": "^2.1.10",
  2125. "ext-json": "*",
  2126. "ext-mbstring": "*",
  2127. "ext-openssl": "*",
  2128. "league/commonmark": "^1.3",
  2129. "league/flysystem": "^1.1",
  2130. "monolog/monolog": "^2.0",
  2131. "nesbot/carbon": "^2.31",
  2132. "opis/closure": "^3.6",
  2133. "php": "^7.3|^8.0",
  2134. "psr/container": "^1.0",
  2135. "psr/simple-cache": "^1.0",
  2136. "ramsey/uuid": "^4.0",
  2137. "swiftmailer/swiftmailer": "^6.0",
  2138. "symfony/console": "^5.1.4",
  2139. "symfony/error-handler": "^5.1.4",
  2140. "symfony/finder": "^5.1.4",
  2141. "symfony/http-foundation": "^5.1.4",
  2142. "symfony/http-kernel": "^5.1.4",
  2143. "symfony/mime": "^5.1.4",
  2144. "symfony/process": "^5.1.4",
  2145. "symfony/routing": "^5.1.4",
  2146. "symfony/var-dumper": "^5.1.4",
  2147. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2148. "vlucas/phpdotenv": "^5.2",
  2149. "voku/portable-ascii": "^1.4.8"
  2150. },
  2151. "conflict": {
  2152. "tightenco/collect": "<5.5.33"
  2153. },
  2154. "provide": {
  2155. "psr/container-implementation": "1.0"
  2156. },
  2157. "replace": {
  2158. "illuminate/auth": "self.version",
  2159. "illuminate/broadcasting": "self.version",
  2160. "illuminate/bus": "self.version",
  2161. "illuminate/cache": "self.version",
  2162. "illuminate/collections": "self.version",
  2163. "illuminate/config": "self.version",
  2164. "illuminate/console": "self.version",
  2165. "illuminate/container": "self.version",
  2166. "illuminate/contracts": "self.version",
  2167. "illuminate/cookie": "self.version",
  2168. "illuminate/database": "self.version",
  2169. "illuminate/encryption": "self.version",
  2170. "illuminate/events": "self.version",
  2171. "illuminate/filesystem": "self.version",
  2172. "illuminate/hashing": "self.version",
  2173. "illuminate/http": "self.version",
  2174. "illuminate/log": "self.version",
  2175. "illuminate/macroable": "self.version",
  2176. "illuminate/mail": "self.version",
  2177. "illuminate/notifications": "self.version",
  2178. "illuminate/pagination": "self.version",
  2179. "illuminate/pipeline": "self.version",
  2180. "illuminate/queue": "self.version",
  2181. "illuminate/redis": "self.version",
  2182. "illuminate/routing": "self.version",
  2183. "illuminate/session": "self.version",
  2184. "illuminate/support": "self.version",
  2185. "illuminate/testing": "self.version",
  2186. "illuminate/translation": "self.version",
  2187. "illuminate/validation": "self.version",
  2188. "illuminate/view": "self.version"
  2189. },
  2190. "require-dev": {
  2191. "aws/aws-sdk-php": "^3.155",
  2192. "doctrine/dbal": "^2.6|^3.0",
  2193. "filp/whoops": "^2.8",
  2194. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  2195. "league/flysystem-cached-adapter": "^1.0",
  2196. "mockery/mockery": "^1.4.2",
  2197. "orchestra/testbench-core": "^6.8",
  2198. "pda/pheanstalk": "^4.0",
  2199. "phpunit/phpunit": "^8.5.8|^9.3.3",
  2200. "predis/predis": "^1.1.1",
  2201. "symfony/cache": "^5.1.4"
  2202. },
  2203. "suggest": {
  2204. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2205. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2206. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6|^3.0).",
  2207. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2208. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2209. "ext-memcached": "Required to use the memcache cache driver.",
  2210. "ext-pcntl": "Required to use all features of the queue worker.",
  2211. "ext-posix": "Required to use all features of the queue worker.",
  2212. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2213. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2214. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2215. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  2216. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2217. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2218. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2219. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2220. "mockery/mockery": "Required to use mocking (^1.4.2).",
  2221. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2222. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2223. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.8|^9.3.3).",
  2224. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2225. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2226. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2227. "symfony/cache": "Required to PSR-6 cache bridge (^5.1.4).",
  2228. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.1.4).",
  2229. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2230. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2231. },
  2232. "type": "library",
  2233. "extra": {
  2234. "branch-alias": {
  2235. "dev-master": "8.x-dev"
  2236. }
  2237. },
  2238. "autoload": {
  2239. "files": [
  2240. "src/Illuminate/Collections/helpers.php",
  2241. "src/Illuminate/Events/functions.php",
  2242. "src/Illuminate/Foundation/helpers.php",
  2243. "src/Illuminate/Support/helpers.php"
  2244. ],
  2245. "psr-4": {
  2246. "Illuminate\\": "src/Illuminate/",
  2247. "Illuminate\\Support\\": [
  2248. "src/Illuminate/Macroable/",
  2249. "src/Illuminate/Collections/"
  2250. ]
  2251. }
  2252. },
  2253. "notification-url": "https://packagist.org/downloads/",
  2254. "license": [
  2255. "MIT"
  2256. ],
  2257. "authors": [
  2258. {
  2259. "name": "Taylor Otwell",
  2260. "email": "taylor@laravel.com"
  2261. }
  2262. ],
  2263. "description": "The Laravel Framework.",
  2264. "homepage": "https://laravel.com",
  2265. "keywords": [
  2266. "framework",
  2267. "laravel"
  2268. ],
  2269. "support": {
  2270. "issues": "https://github.com/laravel/framework/issues",
  2271. "source": "https://github.com/laravel/framework"
  2272. },
  2273. "time": "2021-01-26T14:40:21+00:00"
  2274. },
  2275. {
  2276. "name": "laravel/helpers",
  2277. "version": "v1.4.0",
  2278. "source": {
  2279. "type": "git",
  2280. "url": "https://github.com/laravel/helpers.git",
  2281. "reference": "cde8ea2427db4f37d67729846b70452499210a21"
  2282. },
  2283. "dist": {
  2284. "type": "zip",
  2285. "url": "https://api.github.com/repos/laravel/helpers/zipball/cde8ea2427db4f37d67729846b70452499210a21",
  2286. "reference": "cde8ea2427db4f37d67729846b70452499210a21",
  2287. "shasum": ""
  2288. },
  2289. "require": {
  2290. "illuminate/support": "~5.8.0|^6.0|^7.0|^8.0",
  2291. "php": "^7.1.3|^8.0"
  2292. },
  2293. "require-dev": {
  2294. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  2295. },
  2296. "type": "library",
  2297. "extra": {
  2298. "branch-alias": {
  2299. "dev-master": "1.x-dev"
  2300. }
  2301. },
  2302. "autoload": {
  2303. "files": [
  2304. "src/helpers.php"
  2305. ]
  2306. },
  2307. "notification-url": "https://packagist.org/downloads/",
  2308. "license": [
  2309. "MIT"
  2310. ],
  2311. "authors": [
  2312. {
  2313. "name": "Taylor Otwell",
  2314. "email": "taylor@laravel.com"
  2315. },
  2316. {
  2317. "name": "Dries Vints",
  2318. "email": "dries.vints@gmail.com"
  2319. }
  2320. ],
  2321. "description": "Provides backwards compatibility for helpers in the latest Laravel release.",
  2322. "keywords": [
  2323. "helpers",
  2324. "laravel"
  2325. ],
  2326. "support": {
  2327. "source": "https://github.com/laravel/helpers/tree/v1.4.0"
  2328. },
  2329. "time": "2020-11-03T16:38:41+00:00"
  2330. },
  2331. {
  2332. "name": "laravel/horizon",
  2333. "version": "v5.6.5",
  2334. "source": {
  2335. "type": "git",
  2336. "url": "https://github.com/laravel/horizon.git",
  2337. "reference": "9f0ed546f82e2290e6c8de6151d4da8d29f34a0f"
  2338. },
  2339. "dist": {
  2340. "type": "zip",
  2341. "url": "https://api.github.com/repos/laravel/horizon/zipball/9f0ed546f82e2290e6c8de6151d4da8d29f34a0f",
  2342. "reference": "9f0ed546f82e2290e6c8de6151d4da8d29f34a0f",
  2343. "shasum": ""
  2344. },
  2345. "require": {
  2346. "ext-json": "*",
  2347. "ext-pcntl": "*",
  2348. "ext-posix": "*",
  2349. "illuminate/contracts": "^8.17",
  2350. "illuminate/queue": "^8.17",
  2351. "illuminate/support": "^8.17",
  2352. "nesbot/carbon": "^2.17",
  2353. "php": "^7.3|^8.0",
  2354. "ramsey/uuid": "^4.0",
  2355. "symfony/error-handler": "^5.0",
  2356. "symfony/process": "^5.0"
  2357. },
  2358. "require-dev": {
  2359. "mockery/mockery": "^1.0",
  2360. "orchestra/testbench": "^6.0",
  2361. "phpunit/phpunit": "^9.0",
  2362. "predis/predis": "^1.1"
  2363. },
  2364. "suggest": {
  2365. "ext-redis": "Required to use the Redis PHP driver.",
  2366. "predis/predis": "Required when not using the Redis PHP driver (^1.1)."
  2367. },
  2368. "type": "library",
  2369. "extra": {
  2370. "branch-alias": {
  2371. "dev-master": "5.x-dev"
  2372. },
  2373. "laravel": {
  2374. "providers": [
  2375. "Laravel\\Horizon\\HorizonServiceProvider"
  2376. ],
  2377. "aliases": {
  2378. "Horizon": "Laravel\\Horizon\\Horizon"
  2379. }
  2380. }
  2381. },
  2382. "autoload": {
  2383. "psr-4": {
  2384. "Laravel\\Horizon\\": "src/"
  2385. }
  2386. },
  2387. "notification-url": "https://packagist.org/downloads/",
  2388. "license": [
  2389. "MIT"
  2390. ],
  2391. "authors": [
  2392. {
  2393. "name": "Taylor Otwell",
  2394. "email": "taylor@laravel.com"
  2395. }
  2396. ],
  2397. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2398. "keywords": [
  2399. "laravel",
  2400. "queue"
  2401. ],
  2402. "support": {
  2403. "issues": "https://github.com/laravel/horizon/issues",
  2404. "source": "https://github.com/laravel/horizon/tree/v5.6.5"
  2405. },
  2406. "time": "2021-01-12T16:51:53+00:00"
  2407. },
  2408. {
  2409. "name": "laravel/passport",
  2410. "version": "v10.1.0",
  2411. "source": {
  2412. "type": "git",
  2413. "url": "https://github.com/laravel/passport.git",
  2414. "reference": "c2b93a7d8d93cf303bb1eefbfa5610f084f9bdd4"
  2415. },
  2416. "dist": {
  2417. "type": "zip",
  2418. "url": "https://api.github.com/repos/laravel/passport/zipball/c2b93a7d8d93cf303bb1eefbfa5610f084f9bdd4",
  2419. "reference": "c2b93a7d8d93cf303bb1eefbfa5610f084f9bdd4",
  2420. "shasum": ""
  2421. },
  2422. "require": {
  2423. "ext-json": "*",
  2424. "firebase/php-jwt": "^5.0",
  2425. "illuminate/auth": "^8.2",
  2426. "illuminate/console": "^8.2",
  2427. "illuminate/container": "^8.2",
  2428. "illuminate/contracts": "^8.2",
  2429. "illuminate/cookie": "^8.2",
  2430. "illuminate/database": "^8.2",
  2431. "illuminate/encryption": "^8.2",
  2432. "illuminate/http": "^8.2",
  2433. "illuminate/support": "^8.2",
  2434. "lcobucci/jwt": "^3.4|^4.0",
  2435. "league/oauth2-server": "^8.2",
  2436. "nyholm/psr7": "^1.3",
  2437. "php": "^7.3|^8.0",
  2438. "phpseclib/phpseclib": "^2.0",
  2439. "symfony/psr-http-message-bridge": "^2.0"
  2440. },
  2441. "require-dev": {
  2442. "mockery/mockery": "^1.0",
  2443. "orchestra/testbench": "^6.0",
  2444. "phpunit/phpunit": "^9.3"
  2445. },
  2446. "type": "library",
  2447. "extra": {
  2448. "branch-alias": {
  2449. "dev-master": "10.x-dev"
  2450. },
  2451. "laravel": {
  2452. "providers": [
  2453. "Laravel\\Passport\\PassportServiceProvider"
  2454. ]
  2455. }
  2456. },
  2457. "autoload": {
  2458. "psr-4": {
  2459. "Laravel\\Passport\\": "src/",
  2460. "Laravel\\Passport\\Database\\Factories\\": "database/factories/"
  2461. }
  2462. },
  2463. "notification-url": "https://packagist.org/downloads/",
  2464. "license": [
  2465. "MIT"
  2466. ],
  2467. "authors": [
  2468. {
  2469. "name": "Taylor Otwell",
  2470. "email": "taylor@laravel.com"
  2471. }
  2472. ],
  2473. "description": "Laravel Passport provides OAuth2 server support to Laravel.",
  2474. "keywords": [
  2475. "laravel",
  2476. "oauth",
  2477. "passport"
  2478. ],
  2479. "support": {
  2480. "issues": "https://github.com/laravel/passport/issues",
  2481. "source": "https://github.com/laravel/passport"
  2482. },
  2483. "time": "2020-11-26T07:57:30+00:00"
  2484. },
  2485. {
  2486. "name": "laravel/tinker",
  2487. "version": "v2.5.0",
  2488. "source": {
  2489. "type": "git",
  2490. "url": "https://github.com/laravel/tinker.git",
  2491. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2"
  2492. },
  2493. "dist": {
  2494. "type": "zip",
  2495. "url": "https://api.github.com/repos/laravel/tinker/zipball/45884b526e10a88a1b179fa1a1a24d5468c668c2",
  2496. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2",
  2497. "shasum": ""
  2498. },
  2499. "require": {
  2500. "illuminate/console": "^6.0|^7.0|^8.0",
  2501. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2502. "illuminate/support": "^6.0|^7.0|^8.0",
  2503. "php": "^7.2.5|^8.0",
  2504. "psy/psysh": "^0.10.4",
  2505. "symfony/var-dumper": "^4.3.4|^5.0"
  2506. },
  2507. "require-dev": {
  2508. "mockery/mockery": "~1.3.3|^1.4.2",
  2509. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2510. },
  2511. "suggest": {
  2512. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2513. },
  2514. "type": "library",
  2515. "extra": {
  2516. "branch-alias": {
  2517. "dev-master": "2.x-dev"
  2518. },
  2519. "laravel": {
  2520. "providers": [
  2521. "Laravel\\Tinker\\TinkerServiceProvider"
  2522. ]
  2523. }
  2524. },
  2525. "autoload": {
  2526. "psr-4": {
  2527. "Laravel\\Tinker\\": "src/"
  2528. }
  2529. },
  2530. "notification-url": "https://packagist.org/downloads/",
  2531. "license": [
  2532. "MIT"
  2533. ],
  2534. "authors": [
  2535. {
  2536. "name": "Taylor Otwell",
  2537. "email": "taylor@laravel.com"
  2538. }
  2539. ],
  2540. "description": "Powerful REPL for the Laravel framework.",
  2541. "keywords": [
  2542. "REPL",
  2543. "Tinker",
  2544. "laravel",
  2545. "psysh"
  2546. ],
  2547. "support": {
  2548. "issues": "https://github.com/laravel/tinker/issues",
  2549. "source": "https://github.com/laravel/tinker/tree/v2.5.0"
  2550. },
  2551. "time": "2020-10-29T13:07:12+00:00"
  2552. },
  2553. {
  2554. "name": "laravel/ui",
  2555. "version": "v2.3.0",
  2556. "source": {
  2557. "type": "git",
  2558. "url": "https://github.com/laravel/ui.git",
  2559. "reference": "2ccaa3b821ea8ac7e05393b946d0578bdb46099b"
  2560. },
  2561. "dist": {
  2562. "type": "zip",
  2563. "url": "https://api.github.com/repos/laravel/ui/zipball/2ccaa3b821ea8ac7e05393b946d0578bdb46099b",
  2564. "reference": "2ccaa3b821ea8ac7e05393b946d0578bdb46099b",
  2565. "shasum": ""
  2566. },
  2567. "require": {
  2568. "illuminate/console": "^7.0|^8.0",
  2569. "illuminate/filesystem": "^7.0|^8.0",
  2570. "illuminate/support": "^7.0|^8.0",
  2571. "php": "^7.2.5"
  2572. },
  2573. "require-dev": {
  2574. "mockery/mockery": "^1.0",
  2575. "phpunit/phpunit": "^8.0|^9.0"
  2576. },
  2577. "type": "library",
  2578. "extra": {
  2579. "laravel": {
  2580. "providers": [
  2581. "Laravel\\Ui\\UiServiceProvider"
  2582. ]
  2583. }
  2584. },
  2585. "autoload": {
  2586. "psr-4": {
  2587. "Laravel\\Ui\\": "src/",
  2588. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2589. }
  2590. },
  2591. "notification-url": "https://packagist.org/downloads/",
  2592. "license": [
  2593. "MIT"
  2594. ],
  2595. "authors": [
  2596. {
  2597. "name": "Taylor Otwell",
  2598. "email": "taylor@laravel.com"
  2599. }
  2600. ],
  2601. "description": "Laravel UI utilities and presets.",
  2602. "keywords": [
  2603. "laravel",
  2604. "ui"
  2605. ],
  2606. "support": {
  2607. "issues": "https://github.com/laravel/ui/issues",
  2608. "source": "https://github.com/laravel/ui/tree/v2.3.0"
  2609. },
  2610. "time": "2020-09-09T12:07:59+00:00"
  2611. },
  2612. {
  2613. "name": "lcobucci/jwt",
  2614. "version": "3.4.2",
  2615. "source": {
  2616. "type": "git",
  2617. "url": "https://github.com/lcobucci/jwt.git",
  2618. "reference": "17cb82dd625ccb17c74bf8f38563d3b260306483"
  2619. },
  2620. "dist": {
  2621. "type": "zip",
  2622. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/17cb82dd625ccb17c74bf8f38563d3b260306483",
  2623. "reference": "17cb82dd625ccb17c74bf8f38563d3b260306483",
  2624. "shasum": ""
  2625. },
  2626. "require": {
  2627. "ext-mbstring": "*",
  2628. "ext-openssl": "*",
  2629. "php": "^5.6 || ^7.0"
  2630. },
  2631. "require-dev": {
  2632. "mikey179/vfsstream": "~1.5",
  2633. "phpmd/phpmd": "~2.2",
  2634. "phpunit/php-invoker": "~1.1",
  2635. "phpunit/phpunit": "^5.7 || ^7.3",
  2636. "squizlabs/php_codesniffer": "~2.3"
  2637. },
  2638. "suggest": {
  2639. "lcobucci/clock": "*"
  2640. },
  2641. "type": "library",
  2642. "extra": {
  2643. "branch-alias": {
  2644. "dev-master": "3.1-dev"
  2645. }
  2646. },
  2647. "autoload": {
  2648. "psr-4": {
  2649. "Lcobucci\\JWT\\": "src"
  2650. },
  2651. "files": [
  2652. "compat/class-aliases.php",
  2653. "compat/json-exception-polyfill.php",
  2654. "compat/lcobucci-clock-polyfill.php"
  2655. ]
  2656. },
  2657. "notification-url": "https://packagist.org/downloads/",
  2658. "license": [
  2659. "BSD-3-Clause"
  2660. ],
  2661. "authors": [
  2662. {
  2663. "name": "Luís Otávio Cobucci Oblonczyk",
  2664. "email": "lcobucci@gmail.com",
  2665. "role": "Developer"
  2666. }
  2667. ],
  2668. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2669. "keywords": [
  2670. "JWS",
  2671. "jwt"
  2672. ],
  2673. "support": {
  2674. "issues": "https://github.com/lcobucci/jwt/issues",
  2675. "source": "https://github.com/lcobucci/jwt/tree/3.4.2"
  2676. },
  2677. "funding": [
  2678. {
  2679. "url": "https://github.com/lcobucci",
  2680. "type": "github"
  2681. },
  2682. {
  2683. "url": "https://www.patreon.com/lcobucci",
  2684. "type": "patreon"
  2685. }
  2686. ],
  2687. "time": "2020-12-03T13:43:45+00:00"
  2688. },
  2689. {
  2690. "name": "league/commonmark",
  2691. "version": "1.5.7",
  2692. "source": {
  2693. "type": "git",
  2694. "url": "https://github.com/thephpleague/commonmark.git",
  2695. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
  2696. },
  2697. "dist": {
  2698. "type": "zip",
  2699. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  2700. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  2701. "shasum": ""
  2702. },
  2703. "require": {
  2704. "ext-mbstring": "*",
  2705. "php": "^7.1 || ^8.0"
  2706. },
  2707. "conflict": {
  2708. "scrutinizer/ocular": "1.7.*"
  2709. },
  2710. "require-dev": {
  2711. "cebe/markdown": "~1.0",
  2712. "commonmark/commonmark.js": "0.29.2",
  2713. "erusev/parsedown": "~1.0",
  2714. "ext-json": "*",
  2715. "github/gfm": "0.29.0",
  2716. "michelf/php-markdown": "~1.4",
  2717. "mikehaertl/php-shellcommand": "^1.4",
  2718. "phpstan/phpstan": "^0.12",
  2719. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2720. "scrutinizer/ocular": "^1.5",
  2721. "symfony/finder": "^4.2"
  2722. },
  2723. "bin": [
  2724. "bin/commonmark"
  2725. ],
  2726. "type": "library",
  2727. "autoload": {
  2728. "psr-4": {
  2729. "League\\CommonMark\\": "src"
  2730. }
  2731. },
  2732. "notification-url": "https://packagist.org/downloads/",
  2733. "license": [
  2734. "BSD-3-Clause"
  2735. ],
  2736. "authors": [
  2737. {
  2738. "name": "Colin O'Dell",
  2739. "email": "colinodell@gmail.com",
  2740. "homepage": "https://www.colinodell.com",
  2741. "role": "Lead Developer"
  2742. }
  2743. ],
  2744. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2745. "homepage": "https://commonmark.thephpleague.com",
  2746. "keywords": [
  2747. "commonmark",
  2748. "flavored",
  2749. "gfm",
  2750. "github",
  2751. "github-flavored",
  2752. "markdown",
  2753. "md",
  2754. "parser"
  2755. ],
  2756. "support": {
  2757. "docs": "https://commonmark.thephpleague.com/",
  2758. "issues": "https://github.com/thephpleague/commonmark/issues",
  2759. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2760. "source": "https://github.com/thephpleague/commonmark"
  2761. },
  2762. "funding": [
  2763. {
  2764. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2765. "type": "custom"
  2766. },
  2767. {
  2768. "url": "https://www.colinodell.com/sponsor",
  2769. "type": "custom"
  2770. },
  2771. {
  2772. "url": "https://www.paypal.me/colinpodell/10.00",
  2773. "type": "custom"
  2774. },
  2775. {
  2776. "url": "https://github.com/colinodell",
  2777. "type": "github"
  2778. },
  2779. {
  2780. "url": "https://www.patreon.com/colinodell",
  2781. "type": "patreon"
  2782. },
  2783. {
  2784. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2785. "type": "tidelift"
  2786. }
  2787. ],
  2788. "time": "2020-10-31T13:49:32+00:00"
  2789. },
  2790. {
  2791. "name": "league/event",
  2792. "version": "2.2.0",
  2793. "source": {
  2794. "type": "git",
  2795. "url": "https://github.com/thephpleague/event.git",
  2796. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119"
  2797. },
  2798. "dist": {
  2799. "type": "zip",
  2800. "url": "https://api.github.com/repos/thephpleague/event/zipball/d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  2801. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  2802. "shasum": ""
  2803. },
  2804. "require": {
  2805. "php": ">=5.4.0"
  2806. },
  2807. "require-dev": {
  2808. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  2809. "phpspec/phpspec": "^2.2"
  2810. },
  2811. "type": "library",
  2812. "extra": {
  2813. "branch-alias": {
  2814. "dev-master": "2.2-dev"
  2815. }
  2816. },
  2817. "autoload": {
  2818. "psr-4": {
  2819. "League\\Event\\": "src/"
  2820. }
  2821. },
  2822. "notification-url": "https://packagist.org/downloads/",
  2823. "license": [
  2824. "MIT"
  2825. ],
  2826. "authors": [
  2827. {
  2828. "name": "Frank de Jonge",
  2829. "email": "info@frenky.net"
  2830. }
  2831. ],
  2832. "description": "Event package",
  2833. "keywords": [
  2834. "emitter",
  2835. "event",
  2836. "listener"
  2837. ],
  2838. "support": {
  2839. "issues": "https://github.com/thephpleague/event/issues",
  2840. "source": "https://github.com/thephpleague/event/tree/master"
  2841. },
  2842. "time": "2018-11-26T11:52:41+00:00"
  2843. },
  2844. {
  2845. "name": "league/flysystem",
  2846. "version": "1.1.3",
  2847. "source": {
  2848. "type": "git",
  2849. "url": "https://github.com/thephpleague/flysystem.git",
  2850. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2851. },
  2852. "dist": {
  2853. "type": "zip",
  2854. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2855. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2856. "shasum": ""
  2857. },
  2858. "require": {
  2859. "ext-fileinfo": "*",
  2860. "league/mime-type-detection": "^1.3",
  2861. "php": "^7.2.5 || ^8.0"
  2862. },
  2863. "conflict": {
  2864. "league/flysystem-sftp": "<1.0.6"
  2865. },
  2866. "require-dev": {
  2867. "phpspec/prophecy": "^1.11.1",
  2868. "phpunit/phpunit": "^8.5.8"
  2869. },
  2870. "suggest": {
  2871. "ext-fileinfo": "Required for MimeType",
  2872. "ext-ftp": "Allows you to use FTP server storage",
  2873. "ext-openssl": "Allows you to use FTPS server storage",
  2874. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2875. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2876. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2877. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2878. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2879. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2880. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2881. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2882. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2883. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2884. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2885. },
  2886. "type": "library",
  2887. "extra": {
  2888. "branch-alias": {
  2889. "dev-master": "1.1-dev"
  2890. }
  2891. },
  2892. "autoload": {
  2893. "psr-4": {
  2894. "League\\Flysystem\\": "src/"
  2895. }
  2896. },
  2897. "notification-url": "https://packagist.org/downloads/",
  2898. "license": [
  2899. "MIT"
  2900. ],
  2901. "authors": [
  2902. {
  2903. "name": "Frank de Jonge",
  2904. "email": "info@frenky.net"
  2905. }
  2906. ],
  2907. "description": "Filesystem abstraction: Many filesystems, one API.",
  2908. "keywords": [
  2909. "Cloud Files",
  2910. "WebDAV",
  2911. "abstraction",
  2912. "aws",
  2913. "cloud",
  2914. "copy.com",
  2915. "dropbox",
  2916. "file systems",
  2917. "files",
  2918. "filesystem",
  2919. "filesystems",
  2920. "ftp",
  2921. "rackspace",
  2922. "remote",
  2923. "s3",
  2924. "sftp",
  2925. "storage"
  2926. ],
  2927. "support": {
  2928. "issues": "https://github.com/thephpleague/flysystem/issues",
  2929. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  2930. },
  2931. "funding": [
  2932. {
  2933. "url": "https://offset.earth/frankdejonge",
  2934. "type": "other"
  2935. }
  2936. ],
  2937. "time": "2020-08-23T07:39:11+00:00"
  2938. },
  2939. {
  2940. "name": "league/flysystem-aws-s3-v3",
  2941. "version": "1.0.29",
  2942. "source": {
  2943. "type": "git",
  2944. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  2945. "reference": "4e25cc0582a36a786c31115e419c6e40498f6972"
  2946. },
  2947. "dist": {
  2948. "type": "zip",
  2949. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/4e25cc0582a36a786c31115e419c6e40498f6972",
  2950. "reference": "4e25cc0582a36a786c31115e419c6e40498f6972",
  2951. "shasum": ""
  2952. },
  2953. "require": {
  2954. "aws/aws-sdk-php": "^3.20.0",
  2955. "league/flysystem": "^1.0.40",
  2956. "php": ">=5.5.0"
  2957. },
  2958. "require-dev": {
  2959. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  2960. "phpspec/phpspec": "^2.0.0"
  2961. },
  2962. "type": "library",
  2963. "extra": {
  2964. "branch-alias": {
  2965. "dev-master": "1.0-dev"
  2966. }
  2967. },
  2968. "autoload": {
  2969. "psr-4": {
  2970. "League\\Flysystem\\AwsS3v3\\": "src/"
  2971. }
  2972. },
  2973. "notification-url": "https://packagist.org/downloads/",
  2974. "license": [
  2975. "MIT"
  2976. ],
  2977. "authors": [
  2978. {
  2979. "name": "Frank de Jonge",
  2980. "email": "info@frenky.net"
  2981. }
  2982. ],
  2983. "description": "Flysystem adapter for the AWS S3 SDK v3.x",
  2984. "support": {
  2985. "issues": "https://github.com/thephpleague/flysystem-aws-s3-v3/issues",
  2986. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/1.0.29"
  2987. },
  2988. "time": "2020-10-08T18:58:37+00:00"
  2989. },
  2990. {
  2991. "name": "league/flysystem-cached-adapter",
  2992. "version": "1.1.0",
  2993. "source": {
  2994. "type": "git",
  2995. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  2996. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  2997. },
  2998. "dist": {
  2999. "type": "zip",
  3000. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  3001. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  3002. "shasum": ""
  3003. },
  3004. "require": {
  3005. "league/flysystem": "~1.0",
  3006. "psr/cache": "^1.0.0"
  3007. },
  3008. "require-dev": {
  3009. "mockery/mockery": "~0.9",
  3010. "phpspec/phpspec": "^3.4",
  3011. "phpunit/phpunit": "^5.7",
  3012. "predis/predis": "~1.0",
  3013. "tedivm/stash": "~0.12"
  3014. },
  3015. "suggest": {
  3016. "ext-phpredis": "Pure C implemented extension for PHP"
  3017. },
  3018. "type": "library",
  3019. "autoload": {
  3020. "psr-4": {
  3021. "League\\Flysystem\\Cached\\": "src/"
  3022. }
  3023. },
  3024. "notification-url": "https://packagist.org/downloads/",
  3025. "license": [
  3026. "MIT"
  3027. ],
  3028. "authors": [
  3029. {
  3030. "name": "frankdejonge",
  3031. "email": "info@frenky.net"
  3032. }
  3033. ],
  3034. "description": "An adapter decorator to enable meta-data caching.",
  3035. "support": {
  3036. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  3037. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  3038. },
  3039. "time": "2020-07-25T15:56:04+00:00"
  3040. },
  3041. {
  3042. "name": "league/iso3166",
  3043. "version": "2.1.5",
  3044. "source": {
  3045. "type": "git",
  3046. "url": "https://github.com/thephpleague/iso3166.git",
  3047. "reference": "aed3b32fc293afdf2c6c6a322c2408eb5d20804a"
  3048. },
  3049. "dist": {
  3050. "type": "zip",
  3051. "url": "https://api.github.com/repos/thephpleague/iso3166/zipball/aed3b32fc293afdf2c6c6a322c2408eb5d20804a",
  3052. "reference": "aed3b32fc293afdf2c6c6a322c2408eb5d20804a",
  3053. "shasum": ""
  3054. },
  3055. "require": {
  3056. "php": "^7.0"
  3057. },
  3058. "require-dev": {
  3059. "friendsofphp/php-cs-fixer": "^2.12",
  3060. "phpunit/phpunit": "^5.7.11 || ^6.0 || ^7.0"
  3061. },
  3062. "type": "library",
  3063. "extra": {
  3064. "branch-alias": {
  3065. "dev-master": "3.x-dev"
  3066. }
  3067. },
  3068. "autoload": {
  3069. "psr-4": {
  3070. "League\\ISO3166\\": "src"
  3071. }
  3072. },
  3073. "notification-url": "https://packagist.org/downloads/",
  3074. "license": [
  3075. "MIT"
  3076. ],
  3077. "authors": [
  3078. {
  3079. "name": "Rob Bast",
  3080. "email": "rob.bast@gmail.com"
  3081. }
  3082. ],
  3083. "description": "ISO 3166-1 PHP Library",
  3084. "homepage": "https://github.com/thephpleague/iso3166",
  3085. "keywords": [
  3086. "3166",
  3087. "3166-1",
  3088. "ISO 3166",
  3089. "countries",
  3090. "iso",
  3091. "library"
  3092. ],
  3093. "support": {
  3094. "issues": "https://github.com/thephpleague/iso3166/issues",
  3095. "source": "https://github.com/thephpleague/iso3166"
  3096. },
  3097. "time": "2020-01-29T07:08:12+00:00"
  3098. },
  3099. {
  3100. "name": "league/mime-type-detection",
  3101. "version": "1.7.0",
  3102. "source": {
  3103. "type": "git",
  3104. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3105. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  3106. },
  3107. "dist": {
  3108. "type": "zip",
  3109. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  3110. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  3111. "shasum": ""
  3112. },
  3113. "require": {
  3114. "ext-fileinfo": "*",
  3115. "php": "^7.2 || ^8.0"
  3116. },
  3117. "require-dev": {
  3118. "friendsofphp/php-cs-fixer": "^2.18",
  3119. "phpstan/phpstan": "^0.12.68",
  3120. "phpunit/phpunit": "^8.5.8 || ^9.3"
  3121. },
  3122. "type": "library",
  3123. "autoload": {
  3124. "psr-4": {
  3125. "League\\MimeTypeDetection\\": "src"
  3126. }
  3127. },
  3128. "notification-url": "https://packagist.org/downloads/",
  3129. "license": [
  3130. "MIT"
  3131. ],
  3132. "authors": [
  3133. {
  3134. "name": "Frank de Jonge",
  3135. "email": "info@frankdejonge.nl"
  3136. }
  3137. ],
  3138. "description": "Mime-type detection for Flysystem",
  3139. "support": {
  3140. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3141. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  3142. },
  3143. "funding": [
  3144. {
  3145. "url": "https://github.com/frankdejonge",
  3146. "type": "github"
  3147. },
  3148. {
  3149. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3150. "type": "tidelift"
  3151. }
  3152. ],
  3153. "time": "2021-01-18T20:58:21+00:00"
  3154. },
  3155. {
  3156. "name": "league/oauth2-server",
  3157. "version": "8.2.4",
  3158. "source": {
  3159. "type": "git",
  3160. "url": "https://github.com/thephpleague/oauth2-server.git",
  3161. "reference": "622eaa1f28eb4a2dea0cfc7e4f5280fac794e83c"
  3162. },
  3163. "dist": {
  3164. "type": "zip",
  3165. "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/622eaa1f28eb4a2dea0cfc7e4f5280fac794e83c",
  3166. "reference": "622eaa1f28eb4a2dea0cfc7e4f5280fac794e83c",
  3167. "shasum": ""
  3168. },
  3169. "require": {
  3170. "defuse/php-encryption": "^2.2.1",
  3171. "ext-json": "*",
  3172. "ext-openssl": "*",
  3173. "lcobucci/jwt": "^3.4 || ^4.0",
  3174. "league/event": "^2.2",
  3175. "php": "^7.2 || ^8.0",
  3176. "psr/http-message": "^1.0.1"
  3177. },
  3178. "replace": {
  3179. "league/oauth2server": "*",
  3180. "lncd/oauth2": "*"
  3181. },
  3182. "require-dev": {
  3183. "laminas/laminas-diactoros": "^2.4.1",
  3184. "phpstan/phpstan": "^0.12.57",
  3185. "phpstan/phpstan-phpunit": "^0.12.16",
  3186. "phpunit/phpunit": "^8.5.13",
  3187. "roave/security-advisories": "dev-master"
  3188. },
  3189. "type": "library",
  3190. "autoload": {
  3191. "psr-4": {
  3192. "League\\OAuth2\\Server\\": "src/"
  3193. }
  3194. },
  3195. "notification-url": "https://packagist.org/downloads/",
  3196. "license": [
  3197. "MIT"
  3198. ],
  3199. "authors": [
  3200. {
  3201. "name": "Alex Bilbie",
  3202. "email": "hello@alexbilbie.com",
  3203. "homepage": "http://www.alexbilbie.com",
  3204. "role": "Developer"
  3205. },
  3206. {
  3207. "name": "Andy Millington",
  3208. "email": "andrew@noexceptions.io",
  3209. "homepage": "https://www.noexceptions.io",
  3210. "role": "Developer"
  3211. }
  3212. ],
  3213. "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.",
  3214. "homepage": "https://oauth2.thephpleague.com/",
  3215. "keywords": [
  3216. "Authentication",
  3217. "api",
  3218. "auth",
  3219. "authorisation",
  3220. "authorization",
  3221. "oauth",
  3222. "oauth 2",
  3223. "oauth 2.0",
  3224. "oauth2",
  3225. "protect",
  3226. "resource",
  3227. "secure",
  3228. "server"
  3229. ],
  3230. "support": {
  3231. "issues": "https://github.com/thephpleague/oauth2-server/issues",
  3232. "source": "https://github.com/thephpleague/oauth2-server/tree/8.2.4"
  3233. },
  3234. "funding": [
  3235. {
  3236. "url": "https://github.com/sephster",
  3237. "type": "github"
  3238. }
  3239. ],
  3240. "time": "2020-12-10T11:35:44+00:00"
  3241. },
  3242. {
  3243. "name": "mobiledetect/mobiledetectlib",
  3244. "version": "2.8.35",
  3245. "source": {
  3246. "type": "git",
  3247. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  3248. "reference": "68a35170fdf36e7b35f9c125e5102338dbc3ff65"
  3249. },
  3250. "dist": {
  3251. "type": "zip",
  3252. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/68a35170fdf36e7b35f9c125e5102338dbc3ff65",
  3253. "reference": "68a35170fdf36e7b35f9c125e5102338dbc3ff65",
  3254. "shasum": ""
  3255. },
  3256. "require": {
  3257. "php": ">=5.0.0"
  3258. },
  3259. "require-dev": {
  3260. "phpunit/phpunit": "~4.8.35||~5.7"
  3261. },
  3262. "type": "library",
  3263. "autoload": {
  3264. "classmap": [
  3265. "Mobile_Detect.php"
  3266. ],
  3267. "psr-0": {
  3268. "Detection": "namespaced/"
  3269. }
  3270. },
  3271. "notification-url": "https://packagist.org/downloads/",
  3272. "license": [
  3273. "MIT"
  3274. ],
  3275. "authors": [
  3276. {
  3277. "name": "Serban Ghita",
  3278. "email": "serbanghita@gmail.com",
  3279. "homepage": "http://mobiledetect.net",
  3280. "role": "Developer"
  3281. }
  3282. ],
  3283. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  3284. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  3285. "keywords": [
  3286. "detect mobile devices",
  3287. "mobile",
  3288. "mobile detect",
  3289. "mobile detector",
  3290. "php mobile detect"
  3291. ],
  3292. "support": {
  3293. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  3294. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.35"
  3295. },
  3296. "time": "2021-01-25T19:09:34+00:00"
  3297. },
  3298. {
  3299. "name": "monolog/monolog",
  3300. "version": "2.2.0",
  3301. "source": {
  3302. "type": "git",
  3303. "url": "https://github.com/Seldaek/monolog.git",
  3304. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  3305. },
  3306. "dist": {
  3307. "type": "zip",
  3308. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  3309. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  3310. "shasum": ""
  3311. },
  3312. "require": {
  3313. "php": ">=7.2",
  3314. "psr/log": "^1.0.1"
  3315. },
  3316. "provide": {
  3317. "psr/log-implementation": "1.0.0"
  3318. },
  3319. "require-dev": {
  3320. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3321. "doctrine/couchdb": "~1.0@dev",
  3322. "elasticsearch/elasticsearch": "^7",
  3323. "graylog2/gelf-php": "^1.4.2",
  3324. "mongodb/mongodb": "^1.8",
  3325. "php-amqplib/php-amqplib": "~2.4",
  3326. "php-console/php-console": "^3.1.3",
  3327. "phpspec/prophecy": "^1.6.1",
  3328. "phpstan/phpstan": "^0.12.59",
  3329. "phpunit/phpunit": "^8.5",
  3330. "predis/predis": "^1.1",
  3331. "rollbar/rollbar": "^1.3",
  3332. "ruflin/elastica": ">=0.90 <7.0.1",
  3333. "swiftmailer/swiftmailer": "^5.3|^6.0"
  3334. },
  3335. "suggest": {
  3336. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3337. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3338. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3339. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3340. "ext-mbstring": "Allow to work properly with unicode symbols",
  3341. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3342. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3343. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3344. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3345. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3346. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3347. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3348. },
  3349. "type": "library",
  3350. "extra": {
  3351. "branch-alias": {
  3352. "dev-main": "2.x-dev"
  3353. }
  3354. },
  3355. "autoload": {
  3356. "psr-4": {
  3357. "Monolog\\": "src/Monolog"
  3358. }
  3359. },
  3360. "notification-url": "https://packagist.org/downloads/",
  3361. "license": [
  3362. "MIT"
  3363. ],
  3364. "authors": [
  3365. {
  3366. "name": "Jordi Boggiano",
  3367. "email": "j.boggiano@seld.be",
  3368. "homepage": "https://seld.be"
  3369. }
  3370. ],
  3371. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3372. "homepage": "https://github.com/Seldaek/monolog",
  3373. "keywords": [
  3374. "log",
  3375. "logging",
  3376. "psr-3"
  3377. ],
  3378. "support": {
  3379. "issues": "https://github.com/Seldaek/monolog/issues",
  3380. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  3381. },
  3382. "funding": [
  3383. {
  3384. "url": "https://github.com/Seldaek",
  3385. "type": "github"
  3386. },
  3387. {
  3388. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3389. "type": "tidelift"
  3390. }
  3391. ],
  3392. "time": "2020-12-14T13:15:25+00:00"
  3393. },
  3394. {
  3395. "name": "mtdowling/jmespath.php",
  3396. "version": "2.6.0",
  3397. "source": {
  3398. "type": "git",
  3399. "url": "https://github.com/jmespath/jmespath.php.git",
  3400. "reference": "42dae2cbd13154083ca6d70099692fef8ca84bfb"
  3401. },
  3402. "dist": {
  3403. "type": "zip",
  3404. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/42dae2cbd13154083ca6d70099692fef8ca84bfb",
  3405. "reference": "42dae2cbd13154083ca6d70099692fef8ca84bfb",
  3406. "shasum": ""
  3407. },
  3408. "require": {
  3409. "php": "^5.4 || ^7.0 || ^8.0",
  3410. "symfony/polyfill-mbstring": "^1.17"
  3411. },
  3412. "require-dev": {
  3413. "composer/xdebug-handler": "^1.4",
  3414. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  3415. },
  3416. "bin": [
  3417. "bin/jp.php"
  3418. ],
  3419. "type": "library",
  3420. "extra": {
  3421. "branch-alias": {
  3422. "dev-master": "2.6-dev"
  3423. }
  3424. },
  3425. "autoload": {
  3426. "psr-4": {
  3427. "JmesPath\\": "src/"
  3428. },
  3429. "files": [
  3430. "src/JmesPath.php"
  3431. ]
  3432. },
  3433. "notification-url": "https://packagist.org/downloads/",
  3434. "license": [
  3435. "MIT"
  3436. ],
  3437. "authors": [
  3438. {
  3439. "name": "Michael Dowling",
  3440. "email": "mtdowling@gmail.com",
  3441. "homepage": "https://github.com/mtdowling"
  3442. }
  3443. ],
  3444. "description": "Declaratively specify how to extract elements from a JSON document",
  3445. "keywords": [
  3446. "json",
  3447. "jsonpath"
  3448. ],
  3449. "support": {
  3450. "issues": "https://github.com/jmespath/jmespath.php/issues",
  3451. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.0"
  3452. },
  3453. "time": "2020-07-31T21:01:56+00:00"
  3454. },
  3455. {
  3456. "name": "nesbot/carbon",
  3457. "version": "2.43.0",
  3458. "source": {
  3459. "type": "git",
  3460. "url": "https://github.com/briannesbitt/Carbon.git",
  3461. "reference": "d32c57d8389113742f4a88725a170236470012e2"
  3462. },
  3463. "dist": {
  3464. "type": "zip",
  3465. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d32c57d8389113742f4a88725a170236470012e2",
  3466. "reference": "d32c57d8389113742f4a88725a170236470012e2",
  3467. "shasum": ""
  3468. },
  3469. "require": {
  3470. "ext-json": "*",
  3471. "php": "^7.1.8 || ^8.0",
  3472. "symfony/polyfill-mbstring": "^1.0",
  3473. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3474. },
  3475. "require-dev": {
  3476. "doctrine/orm": "^2.7",
  3477. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3478. "kylekatarnls/multi-tester": "^2.0",
  3479. "phpmd/phpmd": "^2.9",
  3480. "phpstan/extension-installer": "^1.0",
  3481. "phpstan/phpstan": "^0.12.54",
  3482. "phpunit/phpunit": "^7.5 || ^8.0",
  3483. "squizlabs/php_codesniffer": "^3.4"
  3484. },
  3485. "bin": [
  3486. "bin/carbon"
  3487. ],
  3488. "type": "library",
  3489. "extra": {
  3490. "branch-alias": {
  3491. "dev-master": "2.x-dev",
  3492. "dev-3.x": "3.x-dev"
  3493. },
  3494. "laravel": {
  3495. "providers": [
  3496. "Carbon\\Laravel\\ServiceProvider"
  3497. ]
  3498. },
  3499. "phpstan": {
  3500. "includes": [
  3501. "extension.neon"
  3502. ]
  3503. }
  3504. },
  3505. "autoload": {
  3506. "psr-4": {
  3507. "Carbon\\": "src/Carbon/"
  3508. }
  3509. },
  3510. "notification-url": "https://packagist.org/downloads/",
  3511. "license": [
  3512. "MIT"
  3513. ],
  3514. "authors": [
  3515. {
  3516. "name": "Brian Nesbitt",
  3517. "email": "brian@nesbot.com",
  3518. "homepage": "http://nesbot.com"
  3519. },
  3520. {
  3521. "name": "kylekatarnls",
  3522. "homepage": "http://github.com/kylekatarnls"
  3523. }
  3524. ],
  3525. "description": "An API extension for DateTime that supports 281 different languages.",
  3526. "homepage": "http://carbon.nesbot.com",
  3527. "keywords": [
  3528. "date",
  3529. "datetime",
  3530. "time"
  3531. ],
  3532. "support": {
  3533. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3534. "source": "https://github.com/briannesbitt/Carbon"
  3535. },
  3536. "funding": [
  3537. {
  3538. "url": "https://opencollective.com/Carbon",
  3539. "type": "open_collective"
  3540. },
  3541. {
  3542. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3543. "type": "tidelift"
  3544. }
  3545. ],
  3546. "time": "2020-12-17T20:55:32+00:00"
  3547. },
  3548. {
  3549. "name": "neutron/temporary-filesystem",
  3550. "version": "3.0",
  3551. "source": {
  3552. "type": "git",
  3553. "url": "https://github.com/romainneutron/Temporary-Filesystem.git",
  3554. "reference": "60e79adfd16f42f4b888e351ad49f9dcb959e3c2"
  3555. },
  3556. "dist": {
  3557. "type": "zip",
  3558. "url": "https://api.github.com/repos/romainneutron/Temporary-Filesystem/zipball/60e79adfd16f42f4b888e351ad49f9dcb959e3c2",
  3559. "reference": "60e79adfd16f42f4b888e351ad49f9dcb959e3c2",
  3560. "shasum": ""
  3561. },
  3562. "require": {
  3563. "php": ">=5.6",
  3564. "symfony/filesystem": "^2.3 || ^3.0 || ^4.0 || ^5.0"
  3565. },
  3566. "require-dev": {
  3567. "symfony/phpunit-bridge": "^5.0.4"
  3568. },
  3569. "type": "library",
  3570. "autoload": {
  3571. "psr-0": {
  3572. "Neutron": "src"
  3573. }
  3574. },
  3575. "notification-url": "https://packagist.org/downloads/",
  3576. "license": [
  3577. "MIT"
  3578. ],
  3579. "authors": [
  3580. {
  3581. "name": "Romain Neutron",
  3582. "email": "imprec@gmail.com"
  3583. }
  3584. ],
  3585. "description": "Symfony filesystem extension to handle temporary files",
  3586. "support": {
  3587. "issues": "https://github.com/romainneutron/Temporary-Filesystem/issues",
  3588. "source": "https://github.com/romainneutron/Temporary-Filesystem/tree/3.0"
  3589. },
  3590. "time": "2020-07-27T14:00:33+00:00"
  3591. },
  3592. {
  3593. "name": "nikic/php-parser",
  3594. "version": "v4.10.4",
  3595. "source": {
  3596. "type": "git",
  3597. "url": "https://github.com/nikic/PHP-Parser.git",
  3598. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  3599. },
  3600. "dist": {
  3601. "type": "zip",
  3602. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3603. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3604. "shasum": ""
  3605. },
  3606. "require": {
  3607. "ext-tokenizer": "*",
  3608. "php": ">=7.0"
  3609. },
  3610. "require-dev": {
  3611. "ircmaxell/php-yacc": "^0.0.7",
  3612. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3613. },
  3614. "bin": [
  3615. "bin/php-parse"
  3616. ],
  3617. "type": "library",
  3618. "extra": {
  3619. "branch-alias": {
  3620. "dev-master": "4.9-dev"
  3621. }
  3622. },
  3623. "autoload": {
  3624. "psr-4": {
  3625. "PhpParser\\": "lib/PhpParser"
  3626. }
  3627. },
  3628. "notification-url": "https://packagist.org/downloads/",
  3629. "license": [
  3630. "BSD-3-Clause"
  3631. ],
  3632. "authors": [
  3633. {
  3634. "name": "Nikita Popov"
  3635. }
  3636. ],
  3637. "description": "A PHP parser written in PHP",
  3638. "keywords": [
  3639. "parser",
  3640. "php"
  3641. ],
  3642. "support": {
  3643. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3644. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  3645. },
  3646. "time": "2020-12-20T10:01:03+00:00"
  3647. },
  3648. {
  3649. "name": "nyholm/psr7",
  3650. "version": "1.3.2",
  3651. "source": {
  3652. "type": "git",
  3653. "url": "https://github.com/Nyholm/psr7.git",
  3654. "reference": "a272953743c454ac4af9626634daaf5ab3ce1173"
  3655. },
  3656. "dist": {
  3657. "type": "zip",
  3658. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/a272953743c454ac4af9626634daaf5ab3ce1173",
  3659. "reference": "a272953743c454ac4af9626634daaf5ab3ce1173",
  3660. "shasum": ""
  3661. },
  3662. "require": {
  3663. "php": ">=7.1",
  3664. "php-http/message-factory": "^1.0",
  3665. "psr/http-factory": "^1.0",
  3666. "psr/http-message": "^1.0"
  3667. },
  3668. "provide": {
  3669. "psr/http-factory-implementation": "1.0",
  3670. "psr/http-message-implementation": "1.0"
  3671. },
  3672. "require-dev": {
  3673. "http-interop/http-factory-tests": "^0.8",
  3674. "php-http/psr7-integration-tests": "^1.0",
  3675. "phpunit/phpunit": "^7.5 || 8.5 || 9.4",
  3676. "symfony/error-handler": "^4.4"
  3677. },
  3678. "type": "library",
  3679. "extra": {
  3680. "branch-alias": {
  3681. "dev-master": "1.0-dev"
  3682. }
  3683. },
  3684. "autoload": {
  3685. "psr-4": {
  3686. "Nyholm\\Psr7\\": "src/"
  3687. }
  3688. },
  3689. "notification-url": "https://packagist.org/downloads/",
  3690. "license": [
  3691. "MIT"
  3692. ],
  3693. "authors": [
  3694. {
  3695. "name": "Tobias Nyholm",
  3696. "email": "tobias.nyholm@gmail.com"
  3697. },
  3698. {
  3699. "name": "Martijn van der Ven",
  3700. "email": "martijn@vanderven.se"
  3701. }
  3702. ],
  3703. "description": "A fast PHP7 implementation of PSR-7",
  3704. "homepage": "https://tnyholm.se",
  3705. "keywords": [
  3706. "psr-17",
  3707. "psr-7"
  3708. ],
  3709. "support": {
  3710. "issues": "https://github.com/Nyholm/psr7/issues",
  3711. "source": "https://github.com/Nyholm/psr7/tree/1.3.2"
  3712. },
  3713. "funding": [
  3714. {
  3715. "url": "https://github.com/Zegnat",
  3716. "type": "github"
  3717. },
  3718. {
  3719. "url": "https://github.com/nyholm",
  3720. "type": "github"
  3721. }
  3722. ],
  3723. "time": "2020-11-14T17:35:34+00:00"
  3724. },
  3725. {
  3726. "name": "opis/closure",
  3727. "version": "3.6.1",
  3728. "source": {
  3729. "type": "git",
  3730. "url": "https://github.com/opis/closure.git",
  3731. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  3732. },
  3733. "dist": {
  3734. "type": "zip",
  3735. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3736. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3737. "shasum": ""
  3738. },
  3739. "require": {
  3740. "php": "^5.4 || ^7.0 || ^8.0"
  3741. },
  3742. "require-dev": {
  3743. "jeremeamia/superclosure": "^2.0",
  3744. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3745. },
  3746. "type": "library",
  3747. "extra": {
  3748. "branch-alias": {
  3749. "dev-master": "3.6.x-dev"
  3750. }
  3751. },
  3752. "autoload": {
  3753. "psr-4": {
  3754. "Opis\\Closure\\": "src/"
  3755. },
  3756. "files": [
  3757. "functions.php"
  3758. ]
  3759. },
  3760. "notification-url": "https://packagist.org/downloads/",
  3761. "license": [
  3762. "MIT"
  3763. ],
  3764. "authors": [
  3765. {
  3766. "name": "Marius Sarca",
  3767. "email": "marius.sarca@gmail.com"
  3768. },
  3769. {
  3770. "name": "Sorin Sarca",
  3771. "email": "sarca_sorin@hotmail.com"
  3772. }
  3773. ],
  3774. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3775. "homepage": "https://opis.io/closure",
  3776. "keywords": [
  3777. "anonymous functions",
  3778. "closure",
  3779. "function",
  3780. "serializable",
  3781. "serialization",
  3782. "serialize"
  3783. ],
  3784. "support": {
  3785. "issues": "https://github.com/opis/closure/issues",
  3786. "source": "https://github.com/opis/closure/tree/3.6.1"
  3787. },
  3788. "time": "2020-11-07T02:01:34+00:00"
  3789. },
  3790. {
  3791. "name": "paragonie/constant_time_encoding",
  3792. "version": "v2.4.0",
  3793. "source": {
  3794. "type": "git",
  3795. "url": "https://github.com/paragonie/constant_time_encoding.git",
  3796. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c"
  3797. },
  3798. "dist": {
  3799. "type": "zip",
  3800. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  3801. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  3802. "shasum": ""
  3803. },
  3804. "require": {
  3805. "php": "^7|^8"
  3806. },
  3807. "require-dev": {
  3808. "phpunit/phpunit": "^6|^7|^8|^9",
  3809. "vimeo/psalm": "^1|^2|^3|^4"
  3810. },
  3811. "type": "library",
  3812. "autoload": {
  3813. "psr-4": {
  3814. "ParagonIE\\ConstantTime\\": "src/"
  3815. }
  3816. },
  3817. "notification-url": "https://packagist.org/downloads/",
  3818. "license": [
  3819. "MIT"
  3820. ],
  3821. "authors": [
  3822. {
  3823. "name": "Paragon Initiative Enterprises",
  3824. "email": "security@paragonie.com",
  3825. "homepage": "https://paragonie.com",
  3826. "role": "Maintainer"
  3827. },
  3828. {
  3829. "name": "Steve 'Sc00bz' Thomas",
  3830. "email": "steve@tobtu.com",
  3831. "homepage": "https://www.tobtu.com",
  3832. "role": "Original Developer"
  3833. }
  3834. ],
  3835. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3836. "keywords": [
  3837. "base16",
  3838. "base32",
  3839. "base32_decode",
  3840. "base32_encode",
  3841. "base64",
  3842. "base64_decode",
  3843. "base64_encode",
  3844. "bin2hex",
  3845. "encoding",
  3846. "hex",
  3847. "hex2bin",
  3848. "rfc4648"
  3849. ],
  3850. "support": {
  3851. "email": "info@paragonie.com",
  3852. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  3853. "source": "https://github.com/paragonie/constant_time_encoding"
  3854. },
  3855. "time": "2020-12-06T15:14:20+00:00"
  3856. },
  3857. {
  3858. "name": "paragonie/random_compat",
  3859. "version": "v9.99.100",
  3860. "source": {
  3861. "type": "git",
  3862. "url": "https://github.com/paragonie/random_compat.git",
  3863. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3864. },
  3865. "dist": {
  3866. "type": "zip",
  3867. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3868. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3869. "shasum": ""
  3870. },
  3871. "require": {
  3872. "php": ">= 7"
  3873. },
  3874. "require-dev": {
  3875. "phpunit/phpunit": "4.*|5.*",
  3876. "vimeo/psalm": "^1"
  3877. },
  3878. "suggest": {
  3879. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3880. },
  3881. "type": "library",
  3882. "notification-url": "https://packagist.org/downloads/",
  3883. "license": [
  3884. "MIT"
  3885. ],
  3886. "authors": [
  3887. {
  3888. "name": "Paragon Initiative Enterprises",
  3889. "email": "security@paragonie.com",
  3890. "homepage": "https://paragonie.com"
  3891. }
  3892. ],
  3893. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3894. "keywords": [
  3895. "csprng",
  3896. "polyfill",
  3897. "pseudorandom",
  3898. "random"
  3899. ],
  3900. "support": {
  3901. "email": "info@paragonie.com",
  3902. "issues": "https://github.com/paragonie/random_compat/issues",
  3903. "source": "https://github.com/paragonie/random_compat"
  3904. },
  3905. "time": "2020-10-15T08:29:30+00:00"
  3906. },
  3907. {
  3908. "name": "pbmedia/laravel-ffmpeg",
  3909. "version": "7.5.5",
  3910. "source": {
  3911. "type": "git",
  3912. "url": "https://github.com/protonemedia/laravel-ffmpeg.git",
  3913. "reference": "460b879f7b1b6333ee02fe1fa35d6ff5bc4c0ea0"
  3914. },
  3915. "dist": {
  3916. "type": "zip",
  3917. "url": "https://api.github.com/repos/protonemedia/laravel-ffmpeg/zipball/460b879f7b1b6333ee02fe1fa35d6ff5bc4c0ea0",
  3918. "reference": "460b879f7b1b6333ee02fe1fa35d6ff5bc4c0ea0",
  3919. "shasum": ""
  3920. },
  3921. "require": {
  3922. "evenement/evenement": "^3.0",
  3923. "illuminate/bus": "^6.0|^7.0|^8.0",
  3924. "illuminate/config": "^6.0|^7.0|^8.0",
  3925. "illuminate/filesystem": "^6.0|^7.0|^8.0",
  3926. "illuminate/log": "^6.0|^7.0|^8.0",
  3927. "illuminate/support": "^6.0|^7.0|^8.0",
  3928. "league/flysystem": "^1.0.34",
  3929. "php": "^7.3|^8.0",
  3930. "php-ffmpeg/php-ffmpeg": "^0.17.0"
  3931. },
  3932. "require-dev": {
  3933. "league/flysystem-memory": "^1.0",
  3934. "mockery/mockery": "^1.3.3",
  3935. "orchestra/testbench": "^4.0|^5.0|^6.0",
  3936. "phpunit/phpunit": "^8.0|9.4.*",
  3937. "spatie/image": "^1.7",
  3938. "twistor/flysystem-http": "^0.2.0"
  3939. },
  3940. "type": "library",
  3941. "extra": {
  3942. "laravel": {
  3943. "providers": [
  3944. "ProtoneMedia\\LaravelFFMpeg\\Support\\ServiceProvider"
  3945. ],
  3946. "aliases": {
  3947. "FFMpeg": "ProtoneMedia\\LaravelFFMpeg\\Support\\FFMpeg"
  3948. }
  3949. }
  3950. },
  3951. "autoload": {
  3952. "psr-4": {
  3953. "ProtoneMedia\\LaravelFFMpeg\\": "src"
  3954. }
  3955. },
  3956. "notification-url": "https://packagist.org/downloads/",
  3957. "license": [
  3958. "MIT"
  3959. ],
  3960. "authors": [
  3961. {
  3962. "name": "Pascal Baljet",
  3963. "email": "pascal@protone.media",
  3964. "homepage": "https://protone.media",
  3965. "role": "Developer"
  3966. }
  3967. ],
  3968. "description": "FFMpeg for Laravel",
  3969. "homepage": "https://github.com/pascalbaljetmedia/laravel-ffmpeg",
  3970. "keywords": [
  3971. "ffmpeg",
  3972. "laravel",
  3973. "laravel-ffmpeg",
  3974. "pascal baljet media",
  3975. "pascalbaljetmedia",
  3976. "pbmedia",
  3977. "protone media",
  3978. "protonemedia"
  3979. ],
  3980. "support": {
  3981. "issues": "https://github.com/protonemedia/laravel-ffmpeg/issues",
  3982. "source": "https://github.com/protonemedia/laravel-ffmpeg/tree/7.5.5"
  3983. },
  3984. "funding": [
  3985. {
  3986. "url": "https://github.com/pascalbaljet",
  3987. "type": "github"
  3988. }
  3989. ],
  3990. "time": "2021-01-18T14:48:50+00:00"
  3991. },
  3992. {
  3993. "name": "php-ffmpeg/php-ffmpeg",
  3994. "version": "v0.17.0",
  3995. "source": {
  3996. "type": "git",
  3997. "url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
  3998. "reference": "a5147d1ae041e78e7870bf2443d4e2dfa7635856"
  3999. },
  4000. "dist": {
  4001. "type": "zip",
  4002. "url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/a5147d1ae041e78e7870bf2443d4e2dfa7635856",
  4003. "reference": "a5147d1ae041e78e7870bf2443d4e2dfa7635856",
  4004. "shasum": ""
  4005. },
  4006. "require": {
  4007. "alchemy/binary-driver": "^1.5 || ~2.0.0 || ^5.0",
  4008. "doctrine/cache": "^1.0",
  4009. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  4010. "neutron/temporary-filesystem": "^2.1.1 || ^3.0",
  4011. "php": ">=5.3.9"
  4012. },
  4013. "require-dev": {
  4014. "silex/silex": "~1.0",
  4015. "symfony/phpunit-bridge": "^5.0.4",
  4016. "symfony/process": "2.8 || 3.3"
  4017. },
  4018. "suggest": {
  4019. "php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
  4020. },
  4021. "type": "library",
  4022. "extra": {
  4023. "branch-alias": {
  4024. "dev-master": "0.x-dev"
  4025. }
  4026. },
  4027. "autoload": {
  4028. "psr-0": {
  4029. "FFMpeg": "src"
  4030. }
  4031. },
  4032. "notification-url": "https://packagist.org/downloads/",
  4033. "license": [
  4034. "MIT"
  4035. ],
  4036. "authors": [
  4037. {
  4038. "name": "Romain Neutron",
  4039. "email": "imprec@gmail.com",
  4040. "homepage": "http://www.lickmychip.com/"
  4041. },
  4042. {
  4043. "name": "Phraseanet Team",
  4044. "email": "info@alchemy.fr",
  4045. "homepage": "http://www.phraseanet.com/"
  4046. },
  4047. {
  4048. "name": "Patrik Karisch",
  4049. "email": "patrik@karisch.guru",
  4050. "homepage": "http://www.karisch.guru"
  4051. },
  4052. {
  4053. "name": "Romain Biard",
  4054. "email": "romain.biard@gmail.com",
  4055. "homepage": "https://www.strime.io/"
  4056. },
  4057. {
  4058. "name": "Jens Hausdorf",
  4059. "email": "hello@jens-hausdorf.de",
  4060. "homepage": "https://jens-hausdorf.de"
  4061. }
  4062. ],
  4063. "description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
  4064. "keywords": [
  4065. "audio",
  4066. "audio processing",
  4067. "avconv",
  4068. "avprobe",
  4069. "ffmpeg",
  4070. "ffprobe",
  4071. "video",
  4072. "video processing"
  4073. ],
  4074. "support": {
  4075. "issues": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/issues",
  4076. "source": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/tree/v0.17.0"
  4077. },
  4078. "time": "2020-12-18T14:31:34+00:00"
  4079. },
  4080. {
  4081. "name": "php-http/message-factory",
  4082. "version": "v1.0.2",
  4083. "source": {
  4084. "type": "git",
  4085. "url": "https://github.com/php-http/message-factory.git",
  4086. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  4087. },
  4088. "dist": {
  4089. "type": "zip",
  4090. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  4091. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  4092. "shasum": ""
  4093. },
  4094. "require": {
  4095. "php": ">=5.4",
  4096. "psr/http-message": "^1.0"
  4097. },
  4098. "type": "library",
  4099. "extra": {
  4100. "branch-alias": {
  4101. "dev-master": "1.0-dev"
  4102. }
  4103. },
  4104. "autoload": {
  4105. "psr-4": {
  4106. "Http\\Message\\": "src/"
  4107. }
  4108. },
  4109. "notification-url": "https://packagist.org/downloads/",
  4110. "license": [
  4111. "MIT"
  4112. ],
  4113. "authors": [
  4114. {
  4115. "name": "Márk Sági-Kazár",
  4116. "email": "mark.sagikazar@gmail.com"
  4117. }
  4118. ],
  4119. "description": "Factory interfaces for PSR-7 HTTP Message",
  4120. "homepage": "http://php-http.org",
  4121. "keywords": [
  4122. "factory",
  4123. "http",
  4124. "message",
  4125. "stream",
  4126. "uri"
  4127. ],
  4128. "support": {
  4129. "issues": "https://github.com/php-http/message-factory/issues",
  4130. "source": "https://github.com/php-http/message-factory/tree/master"
  4131. },
  4132. "time": "2015-12-19T14:08:53+00:00"
  4133. },
  4134. {
  4135. "name": "phpoption/phpoption",
  4136. "version": "1.7.5",
  4137. "source": {
  4138. "type": "git",
  4139. "url": "https://github.com/schmittjoh/php-option.git",
  4140. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  4141. },
  4142. "dist": {
  4143. "type": "zip",
  4144. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  4145. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  4146. "shasum": ""
  4147. },
  4148. "require": {
  4149. "php": "^5.5.9 || ^7.0 || ^8.0"
  4150. },
  4151. "require-dev": {
  4152. "bamarni/composer-bin-plugin": "^1.4.1",
  4153. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  4154. },
  4155. "type": "library",
  4156. "extra": {
  4157. "branch-alias": {
  4158. "dev-master": "1.7-dev"
  4159. }
  4160. },
  4161. "autoload": {
  4162. "psr-4": {
  4163. "PhpOption\\": "src/PhpOption/"
  4164. }
  4165. },
  4166. "notification-url": "https://packagist.org/downloads/",
  4167. "license": [
  4168. "Apache-2.0"
  4169. ],
  4170. "authors": [
  4171. {
  4172. "name": "Johannes M. Schmitt",
  4173. "email": "schmittjoh@gmail.com"
  4174. },
  4175. {
  4176. "name": "Graham Campbell",
  4177. "email": "graham@alt-three.com"
  4178. }
  4179. ],
  4180. "description": "Option Type for PHP",
  4181. "keywords": [
  4182. "language",
  4183. "option",
  4184. "php",
  4185. "type"
  4186. ],
  4187. "support": {
  4188. "issues": "https://github.com/schmittjoh/php-option/issues",
  4189. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  4190. },
  4191. "funding": [
  4192. {
  4193. "url": "https://github.com/GrahamCampbell",
  4194. "type": "github"
  4195. },
  4196. {
  4197. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4198. "type": "tidelift"
  4199. }
  4200. ],
  4201. "time": "2020-07-20T17:29:33+00:00"
  4202. },
  4203. {
  4204. "name": "phpseclib/phpseclib",
  4205. "version": "2.0.30",
  4206. "source": {
  4207. "type": "git",
  4208. "url": "https://github.com/phpseclib/phpseclib.git",
  4209. "reference": "136b9ca7eebef78be14abf90d65c5e57b6bc5d36"
  4210. },
  4211. "dist": {
  4212. "type": "zip",
  4213. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/136b9ca7eebef78be14abf90d65c5e57b6bc5d36",
  4214. "reference": "136b9ca7eebef78be14abf90d65c5e57b6bc5d36",
  4215. "shasum": ""
  4216. },
  4217. "require": {
  4218. "php": ">=5.3.3"
  4219. },
  4220. "require-dev": {
  4221. "phing/phing": "~2.7",
  4222. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  4223. "squizlabs/php_codesniffer": "~2.0"
  4224. },
  4225. "suggest": {
  4226. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  4227. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  4228. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  4229. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  4230. },
  4231. "type": "library",
  4232. "autoload": {
  4233. "files": [
  4234. "phpseclib/bootstrap.php"
  4235. ],
  4236. "psr-4": {
  4237. "phpseclib\\": "phpseclib/"
  4238. }
  4239. },
  4240. "notification-url": "https://packagist.org/downloads/",
  4241. "license": [
  4242. "MIT"
  4243. ],
  4244. "authors": [
  4245. {
  4246. "name": "Jim Wigginton",
  4247. "email": "terrafrost@php.net",
  4248. "role": "Lead Developer"
  4249. },
  4250. {
  4251. "name": "Patrick Monnerat",
  4252. "email": "pm@datasphere.ch",
  4253. "role": "Developer"
  4254. },
  4255. {
  4256. "name": "Andreas Fischer",
  4257. "email": "bantu@phpbb.com",
  4258. "role": "Developer"
  4259. },
  4260. {
  4261. "name": "Hans-Jürgen Petrich",
  4262. "email": "petrich@tronic-media.com",
  4263. "role": "Developer"
  4264. },
  4265. {
  4266. "name": "Graham Campbell",
  4267. "email": "graham@alt-three.com",
  4268. "role": "Developer"
  4269. }
  4270. ],
  4271. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  4272. "homepage": "http://phpseclib.sourceforge.net",
  4273. "keywords": [
  4274. "BigInteger",
  4275. "aes",
  4276. "asn.1",
  4277. "asn1",
  4278. "blowfish",
  4279. "crypto",
  4280. "cryptography",
  4281. "encryption",
  4282. "rsa",
  4283. "security",
  4284. "sftp",
  4285. "signature",
  4286. "signing",
  4287. "ssh",
  4288. "twofish",
  4289. "x.509",
  4290. "x509"
  4291. ],
  4292. "support": {
  4293. "issues": "https://github.com/phpseclib/phpseclib/issues",
  4294. "source": "https://github.com/phpseclib/phpseclib/tree/2.0.30"
  4295. },
  4296. "funding": [
  4297. {
  4298. "url": "https://github.com/terrafrost",
  4299. "type": "github"
  4300. },
  4301. {
  4302. "url": "https://www.patreon.com/phpseclib",
  4303. "type": "patreon"
  4304. },
  4305. {
  4306. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  4307. "type": "tidelift"
  4308. }
  4309. ],
  4310. "time": "2020-12-17T05:42:04+00:00"
  4311. },
  4312. {
  4313. "name": "pixelfed/fractal",
  4314. "version": "0.18.0",
  4315. "source": {
  4316. "type": "git",
  4317. "url": "https://github.com/pixelfed/fractal.git",
  4318. "reference": "faff10c9f3e3300b1571ef41926f933a9cce4782"
  4319. },
  4320. "dist": {
  4321. "type": "zip",
  4322. "url": "https://api.github.com/repos/pixelfed/fractal/zipball/faff10c9f3e3300b1571ef41926f933a9cce4782",
  4323. "reference": "faff10c9f3e3300b1571ef41926f933a9cce4782",
  4324. "shasum": ""
  4325. },
  4326. "require": {
  4327. "php": ">=5.4"
  4328. },
  4329. "require-dev": {
  4330. "doctrine/orm": "^2.5",
  4331. "illuminate/contracts": "~5.0",
  4332. "mockery/mockery": "~0.9",
  4333. "pagerfanta/pagerfanta": "~1.0.0",
  4334. "phpunit/phpunit": "^4.8.35",
  4335. "squizlabs/php_codesniffer": "~1.5",
  4336. "zendframework/zend-paginator": "~2.3"
  4337. },
  4338. "suggest": {
  4339. "illuminate/pagination": "The Illuminate Pagination component.",
  4340. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  4341. "zendframework/zend-paginator": "Zend Framework Paginator"
  4342. },
  4343. "type": "library",
  4344. "extra": {
  4345. "branch-alias": {
  4346. "dev-master": "0.13-dev"
  4347. }
  4348. },
  4349. "autoload": {
  4350. "psr-4": {
  4351. "League\\Fractal\\": "src"
  4352. }
  4353. },
  4354. "notification-url": "https://packagist.org/downloads/",
  4355. "license": [
  4356. "MIT"
  4357. ],
  4358. "authors": [
  4359. {
  4360. "name": "Phil Sturgeon",
  4361. "email": "me@philsturgeon.uk",
  4362. "homepage": "http://philsturgeon.uk/",
  4363. "role": "Developer"
  4364. }
  4365. ],
  4366. "description": "Handle the output of complex data structures ready for API output.",
  4367. "homepage": "http://fractal.thephpleague.com/",
  4368. "keywords": [
  4369. "api",
  4370. "json",
  4371. "league",
  4372. "rest"
  4373. ],
  4374. "support": {
  4375. "source": "https://github.com/pixelfed/fractal/tree/0.18.0"
  4376. },
  4377. "time": "2018-07-01T02:30:24+00:00"
  4378. },
  4379. {
  4380. "name": "pixelfed/laravel-snowflake",
  4381. "version": "v2.0.0",
  4382. "source": {
  4383. "type": "git",
  4384. "url": "https://github.com/pixelfed/laravel-snowflake.git",
  4385. "reference": "69255870dcbf949feac889dfc09180a6fef77f6d"
  4386. },
  4387. "dist": {
  4388. "type": "zip",
  4389. "url": "https://api.github.com/repos/pixelfed/laravel-snowflake/zipball/69255870dcbf949feac889dfc09180a6fef77f6d",
  4390. "reference": "69255870dcbf949feac889dfc09180a6fef77f6d",
  4391. "shasum": ""
  4392. },
  4393. "require": {
  4394. "php": ">=7.0.0"
  4395. },
  4396. "require-dev": {
  4397. "orchestra/testbench": "~3.0",
  4398. "phpunit/phpunit": "~6.0"
  4399. },
  4400. "type": "library",
  4401. "extra": {
  4402. "laravel": {
  4403. "providers": [
  4404. "Pixelfed\\Snowflake\\SnowflakeServiceProvider"
  4405. ]
  4406. }
  4407. },
  4408. "autoload": {
  4409. "psr-4": {
  4410. "Pixelfed\\Snowflake\\": "src/"
  4411. }
  4412. },
  4413. "notification-url": "https://packagist.org/downloads/",
  4414. "license": [
  4415. "MIT"
  4416. ],
  4417. "authors": [
  4418. {
  4419. "name": "Koki Asai",
  4420. "email": "koki@asai.email"
  4421. },
  4422. {
  4423. "name": "Daniel Supernault",
  4424. "email": "hello@pixelfed.org"
  4425. }
  4426. ],
  4427. "description": "Snowflake for Laravel.",
  4428. "homepage": "https://github.com/pixelfed/laravel-snowflake",
  4429. "keywords": [
  4430. "laravel",
  4431. "snowflake"
  4432. ],
  4433. "support": {
  4434. "source": "https://github.com/pixelfed/laravel-snowflake/tree/v2.0.0"
  4435. },
  4436. "time": "2019-03-12T05:13:49+00:00"
  4437. },
  4438. {
  4439. "name": "pixelfed/zttp",
  4440. "version": "v0.4.1",
  4441. "source": {
  4442. "type": "git",
  4443. "url": "https://github.com/pixelfed/zttp.git",
  4444. "reference": "9a95a42716eb3e71a0a88411805737965bb77c05"
  4445. },
  4446. "dist": {
  4447. "type": "zip",
  4448. "url": "https://api.github.com/repos/pixelfed/zttp/zipball/9a95a42716eb3e71a0a88411805737965bb77c05",
  4449. "reference": "9a95a42716eb3e71a0a88411805737965bb77c05",
  4450. "shasum": ""
  4451. },
  4452. "require": {
  4453. "guzzlehttp/guzzle": "^6.0",
  4454. "php": ">=7.0",
  4455. "tightenco/collect": "^5.4"
  4456. },
  4457. "require-dev": {
  4458. "laravel/lumen-framework": "5.5.*",
  4459. "phpunit/phpunit": "^6.0"
  4460. },
  4461. "type": "library",
  4462. "autoload": {
  4463. "files": [
  4464. "src/Zttp.php"
  4465. ]
  4466. },
  4467. "notification-url": "https://packagist.org/downloads/",
  4468. "license": [
  4469. "MIT"
  4470. ],
  4471. "authors": [
  4472. {
  4473. "name": "Adam Wathan",
  4474. "email": "adam.wathan@gmail.com"
  4475. }
  4476. ],
  4477. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  4478. "keywords": [
  4479. "Guzzle",
  4480. "http"
  4481. ],
  4482. "support": {
  4483. "source": "https://github.com/pixelfed/zttp/tree/v0.4.1"
  4484. },
  4485. "time": "2018-07-30T05:04:42+00:00"
  4486. },
  4487. {
  4488. "name": "pragmarx/google2fa",
  4489. "version": "8.0.0",
  4490. "source": {
  4491. "type": "git",
  4492. "url": "https://github.com/antonioribeiro/google2fa.git",
  4493. "reference": "26c4c5cf30a2844ba121760fd7301f8ad240100b"
  4494. },
  4495. "dist": {
  4496. "type": "zip",
  4497. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/26c4c5cf30a2844ba121760fd7301f8ad240100b",
  4498. "reference": "26c4c5cf30a2844ba121760fd7301f8ad240100b",
  4499. "shasum": ""
  4500. },
  4501. "require": {
  4502. "paragonie/constant_time_encoding": "^1.0|^2.0",
  4503. "php": "^7.1|^8.0"
  4504. },
  4505. "require-dev": {
  4506. "phpstan/phpstan": "^0.12.18",
  4507. "phpunit/phpunit": "^7.5.15|^8.5|^9.0"
  4508. },
  4509. "type": "library",
  4510. "autoload": {
  4511. "psr-4": {
  4512. "PragmaRX\\Google2FA\\": "src/"
  4513. }
  4514. },
  4515. "notification-url": "https://packagist.org/downloads/",
  4516. "license": [
  4517. "MIT"
  4518. ],
  4519. "authors": [
  4520. {
  4521. "name": "Antonio Carlos Ribeiro",
  4522. "email": "acr@antoniocarlosribeiro.com",
  4523. "role": "Creator & Designer"
  4524. }
  4525. ],
  4526. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  4527. "keywords": [
  4528. "2fa",
  4529. "Authentication",
  4530. "Two Factor Authentication",
  4531. "google2fa"
  4532. ],
  4533. "support": {
  4534. "issues": "https://github.com/antonioribeiro/google2fa/issues",
  4535. "source": "https://github.com/antonioribeiro/google2fa/tree/8.0.0"
  4536. },
  4537. "time": "2020-04-05T10:47:18+00:00"
  4538. },
  4539. {
  4540. "name": "predis/predis",
  4541. "version": "v1.1.6",
  4542. "source": {
  4543. "type": "git",
  4544. "url": "https://github.com/predis/predis.git",
  4545. "reference": "9930e933c67446962997b05201c69c2319bf26de"
  4546. },
  4547. "dist": {
  4548. "type": "zip",
  4549. "url": "https://api.github.com/repos/predis/predis/zipball/9930e933c67446962997b05201c69c2319bf26de",
  4550. "reference": "9930e933c67446962997b05201c69c2319bf26de",
  4551. "shasum": ""
  4552. },
  4553. "require": {
  4554. "php": ">=5.3.9"
  4555. },
  4556. "require-dev": {
  4557. "cweagans/composer-patches": "^1.6",
  4558. "phpunit/phpunit": "~4.8"
  4559. },
  4560. "suggest": {
  4561. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  4562. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  4563. },
  4564. "type": "library",
  4565. "extra": {
  4566. "composer-exit-on-patch-failure": true,
  4567. "patches": {
  4568. "phpunit/phpunit-mock-objects": {
  4569. "Fix PHP 7 and 8 compatibility": "./tests/phpunit_mock_objects.patch"
  4570. },
  4571. "phpunit/phpunit": {
  4572. "Fix PHP 7 compatibility": "./tests/phpunit_php7.patch",
  4573. "Fix PHP 8 compatibility": "./tests/phpunit_php8.patch"
  4574. }
  4575. }
  4576. },
  4577. "autoload": {
  4578. "psr-4": {
  4579. "Predis\\": "src/"
  4580. }
  4581. },
  4582. "notification-url": "https://packagist.org/downloads/",
  4583. "license": [
  4584. "MIT"
  4585. ],
  4586. "authors": [
  4587. {
  4588. "name": "Daniele Alessandri",
  4589. "email": "suppakilla@gmail.com",
  4590. "homepage": "http://clorophilla.net",
  4591. "role": "Creator & Maintainer"
  4592. },
  4593. {
  4594. "name": "Till Krüss",
  4595. "homepage": "https://till.im",
  4596. "role": "Maintainer"
  4597. }
  4598. ],
  4599. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  4600. "homepage": "http://github.com/predis/predis",
  4601. "keywords": [
  4602. "nosql",
  4603. "predis",
  4604. "redis"
  4605. ],
  4606. "support": {
  4607. "issues": "https://github.com/predis/predis/issues",
  4608. "source": "https://github.com/predis/predis/tree/v1.1.6"
  4609. },
  4610. "funding": [
  4611. {
  4612. "url": "https://github.com/sponsors/tillkruss",
  4613. "type": "github"
  4614. }
  4615. ],
  4616. "time": "2020-09-11T19:18:05+00:00"
  4617. },
  4618. {
  4619. "name": "psr/cache",
  4620. "version": "1.0.1",
  4621. "source": {
  4622. "type": "git",
  4623. "url": "https://github.com/php-fig/cache.git",
  4624. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  4625. },
  4626. "dist": {
  4627. "type": "zip",
  4628. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  4629. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  4630. "shasum": ""
  4631. },
  4632. "require": {
  4633. "php": ">=5.3.0"
  4634. },
  4635. "type": "library",
  4636. "extra": {
  4637. "branch-alias": {
  4638. "dev-master": "1.0.x-dev"
  4639. }
  4640. },
  4641. "autoload": {
  4642. "psr-4": {
  4643. "Psr\\Cache\\": "src/"
  4644. }
  4645. },
  4646. "notification-url": "https://packagist.org/downloads/",
  4647. "license": [
  4648. "MIT"
  4649. ],
  4650. "authors": [
  4651. {
  4652. "name": "PHP-FIG",
  4653. "homepage": "http://www.php-fig.org/"
  4654. }
  4655. ],
  4656. "description": "Common interface for caching libraries",
  4657. "keywords": [
  4658. "cache",
  4659. "psr",
  4660. "psr-6"
  4661. ],
  4662. "support": {
  4663. "source": "https://github.com/php-fig/cache/tree/master"
  4664. },
  4665. "time": "2016-08-06T20:24:11+00:00"
  4666. },
  4667. {
  4668. "name": "psr/container",
  4669. "version": "1.0.0",
  4670. "source": {
  4671. "type": "git",
  4672. "url": "https://github.com/php-fig/container.git",
  4673. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  4674. },
  4675. "dist": {
  4676. "type": "zip",
  4677. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  4678. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  4679. "shasum": ""
  4680. },
  4681. "require": {
  4682. "php": ">=5.3.0"
  4683. },
  4684. "type": "library",
  4685. "extra": {
  4686. "branch-alias": {
  4687. "dev-master": "1.0.x-dev"
  4688. }
  4689. },
  4690. "autoload": {
  4691. "psr-4": {
  4692. "Psr\\Container\\": "src/"
  4693. }
  4694. },
  4695. "notification-url": "https://packagist.org/downloads/",
  4696. "license": [
  4697. "MIT"
  4698. ],
  4699. "authors": [
  4700. {
  4701. "name": "PHP-FIG",
  4702. "homepage": "http://www.php-fig.org/"
  4703. }
  4704. ],
  4705. "description": "Common Container Interface (PHP FIG PSR-11)",
  4706. "homepage": "https://github.com/php-fig/container",
  4707. "keywords": [
  4708. "PSR-11",
  4709. "container",
  4710. "container-interface",
  4711. "container-interop",
  4712. "psr"
  4713. ],
  4714. "support": {
  4715. "issues": "https://github.com/php-fig/container/issues",
  4716. "source": "https://github.com/php-fig/container/tree/master"
  4717. },
  4718. "time": "2017-02-14T16:28:37+00:00"
  4719. },
  4720. {
  4721. "name": "psr/event-dispatcher",
  4722. "version": "1.0.0",
  4723. "source": {
  4724. "type": "git",
  4725. "url": "https://github.com/php-fig/event-dispatcher.git",
  4726. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4727. },
  4728. "dist": {
  4729. "type": "zip",
  4730. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4731. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4732. "shasum": ""
  4733. },
  4734. "require": {
  4735. "php": ">=7.2.0"
  4736. },
  4737. "type": "library",
  4738. "extra": {
  4739. "branch-alias": {
  4740. "dev-master": "1.0.x-dev"
  4741. }
  4742. },
  4743. "autoload": {
  4744. "psr-4": {
  4745. "Psr\\EventDispatcher\\": "src/"
  4746. }
  4747. },
  4748. "notification-url": "https://packagist.org/downloads/",
  4749. "license": [
  4750. "MIT"
  4751. ],
  4752. "authors": [
  4753. {
  4754. "name": "PHP-FIG",
  4755. "homepage": "http://www.php-fig.org/"
  4756. }
  4757. ],
  4758. "description": "Standard interfaces for event handling.",
  4759. "keywords": [
  4760. "events",
  4761. "psr",
  4762. "psr-14"
  4763. ],
  4764. "support": {
  4765. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4766. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4767. },
  4768. "time": "2019-01-08T18:20:26+00:00"
  4769. },
  4770. {
  4771. "name": "psr/http-factory",
  4772. "version": "1.0.1",
  4773. "source": {
  4774. "type": "git",
  4775. "url": "https://github.com/php-fig/http-factory.git",
  4776. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4777. },
  4778. "dist": {
  4779. "type": "zip",
  4780. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4781. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4782. "shasum": ""
  4783. },
  4784. "require": {
  4785. "php": ">=7.0.0",
  4786. "psr/http-message": "^1.0"
  4787. },
  4788. "type": "library",
  4789. "extra": {
  4790. "branch-alias": {
  4791. "dev-master": "1.0.x-dev"
  4792. }
  4793. },
  4794. "autoload": {
  4795. "psr-4": {
  4796. "Psr\\Http\\Message\\": "src/"
  4797. }
  4798. },
  4799. "notification-url": "https://packagist.org/downloads/",
  4800. "license": [
  4801. "MIT"
  4802. ],
  4803. "authors": [
  4804. {
  4805. "name": "PHP-FIG",
  4806. "homepage": "http://www.php-fig.org/"
  4807. }
  4808. ],
  4809. "description": "Common interfaces for PSR-7 HTTP message factories",
  4810. "keywords": [
  4811. "factory",
  4812. "http",
  4813. "message",
  4814. "psr",
  4815. "psr-17",
  4816. "psr-7",
  4817. "request",
  4818. "response"
  4819. ],
  4820. "support": {
  4821. "source": "https://github.com/php-fig/http-factory/tree/master"
  4822. },
  4823. "time": "2019-04-30T12:38:16+00:00"
  4824. },
  4825. {
  4826. "name": "psr/http-message",
  4827. "version": "1.0.1",
  4828. "source": {
  4829. "type": "git",
  4830. "url": "https://github.com/php-fig/http-message.git",
  4831. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4832. },
  4833. "dist": {
  4834. "type": "zip",
  4835. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4836. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4837. "shasum": ""
  4838. },
  4839. "require": {
  4840. "php": ">=5.3.0"
  4841. },
  4842. "type": "library",
  4843. "extra": {
  4844. "branch-alias": {
  4845. "dev-master": "1.0.x-dev"
  4846. }
  4847. },
  4848. "autoload": {
  4849. "psr-4": {
  4850. "Psr\\Http\\Message\\": "src/"
  4851. }
  4852. },
  4853. "notification-url": "https://packagist.org/downloads/",
  4854. "license": [
  4855. "MIT"
  4856. ],
  4857. "authors": [
  4858. {
  4859. "name": "PHP-FIG",
  4860. "homepage": "http://www.php-fig.org/"
  4861. }
  4862. ],
  4863. "description": "Common interface for HTTP messages",
  4864. "homepage": "https://github.com/php-fig/http-message",
  4865. "keywords": [
  4866. "http",
  4867. "http-message",
  4868. "psr",
  4869. "psr-7",
  4870. "request",
  4871. "response"
  4872. ],
  4873. "support": {
  4874. "source": "https://github.com/php-fig/http-message/tree/master"
  4875. },
  4876. "time": "2016-08-06T14:39:51+00:00"
  4877. },
  4878. {
  4879. "name": "psr/log",
  4880. "version": "1.1.3",
  4881. "source": {
  4882. "type": "git",
  4883. "url": "https://github.com/php-fig/log.git",
  4884. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  4885. },
  4886. "dist": {
  4887. "type": "zip",
  4888. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  4889. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  4890. "shasum": ""
  4891. },
  4892. "require": {
  4893. "php": ">=5.3.0"
  4894. },
  4895. "type": "library",
  4896. "extra": {
  4897. "branch-alias": {
  4898. "dev-master": "1.1.x-dev"
  4899. }
  4900. },
  4901. "autoload": {
  4902. "psr-4": {
  4903. "Psr\\Log\\": "Psr/Log/"
  4904. }
  4905. },
  4906. "notification-url": "https://packagist.org/downloads/",
  4907. "license": [
  4908. "MIT"
  4909. ],
  4910. "authors": [
  4911. {
  4912. "name": "PHP-FIG",
  4913. "homepage": "http://www.php-fig.org/"
  4914. }
  4915. ],
  4916. "description": "Common interface for logging libraries",
  4917. "homepage": "https://github.com/php-fig/log",
  4918. "keywords": [
  4919. "log",
  4920. "psr",
  4921. "psr-3"
  4922. ],
  4923. "support": {
  4924. "source": "https://github.com/php-fig/log/tree/1.1.3"
  4925. },
  4926. "time": "2020-03-23T09:12:05+00:00"
  4927. },
  4928. {
  4929. "name": "psr/simple-cache",
  4930. "version": "1.0.1",
  4931. "source": {
  4932. "type": "git",
  4933. "url": "https://github.com/php-fig/simple-cache.git",
  4934. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4935. },
  4936. "dist": {
  4937. "type": "zip",
  4938. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4939. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4940. "shasum": ""
  4941. },
  4942. "require": {
  4943. "php": ">=5.3.0"
  4944. },
  4945. "type": "library",
  4946. "extra": {
  4947. "branch-alias": {
  4948. "dev-master": "1.0.x-dev"
  4949. }
  4950. },
  4951. "autoload": {
  4952. "psr-4": {
  4953. "Psr\\SimpleCache\\": "src/"
  4954. }
  4955. },
  4956. "notification-url": "https://packagist.org/downloads/",
  4957. "license": [
  4958. "MIT"
  4959. ],
  4960. "authors": [
  4961. {
  4962. "name": "PHP-FIG",
  4963. "homepage": "http://www.php-fig.org/"
  4964. }
  4965. ],
  4966. "description": "Common interfaces for simple caching",
  4967. "keywords": [
  4968. "cache",
  4969. "caching",
  4970. "psr",
  4971. "psr-16",
  4972. "simple-cache"
  4973. ],
  4974. "support": {
  4975. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4976. },
  4977. "time": "2017-10-23T01:57:42+00:00"
  4978. },
  4979. {
  4980. "name": "psy/psysh",
  4981. "version": "v0.10.6",
  4982. "source": {
  4983. "type": "git",
  4984. "url": "https://github.com/bobthecow/psysh.git",
  4985. "reference": "6f990c19f91729de8b31e639d6e204ea59f19cf3"
  4986. },
  4987. "dist": {
  4988. "type": "zip",
  4989. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/6f990c19f91729de8b31e639d6e204ea59f19cf3",
  4990. "reference": "6f990c19f91729de8b31e639d6e204ea59f19cf3",
  4991. "shasum": ""
  4992. },
  4993. "require": {
  4994. "dnoegel/php-xdg-base-dir": "0.1.*",
  4995. "ext-json": "*",
  4996. "ext-tokenizer": "*",
  4997. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4998. "php": "^8.0 || ^7.0 || ^5.5.9",
  4999. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  5000. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  5001. },
  5002. "require-dev": {
  5003. "bamarni/composer-bin-plugin": "^1.2",
  5004. "hoa/console": "3.17.*"
  5005. },
  5006. "suggest": {
  5007. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5008. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5009. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  5010. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  5011. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  5012. },
  5013. "bin": [
  5014. "bin/psysh"
  5015. ],
  5016. "type": "library",
  5017. "extra": {
  5018. "branch-alias": {
  5019. "dev-main": "0.10.x-dev"
  5020. }
  5021. },
  5022. "autoload": {
  5023. "files": [
  5024. "src/functions.php"
  5025. ],
  5026. "psr-4": {
  5027. "Psy\\": "src/"
  5028. }
  5029. },
  5030. "notification-url": "https://packagist.org/downloads/",
  5031. "license": [
  5032. "MIT"
  5033. ],
  5034. "authors": [
  5035. {
  5036. "name": "Justin Hileman",
  5037. "email": "justin@justinhileman.info",
  5038. "homepage": "http://justinhileman.com"
  5039. }
  5040. ],
  5041. "description": "An interactive shell for modern PHP.",
  5042. "homepage": "http://psysh.org",
  5043. "keywords": [
  5044. "REPL",
  5045. "console",
  5046. "interactive",
  5047. "shell"
  5048. ],
  5049. "support": {
  5050. "issues": "https://github.com/bobthecow/psysh/issues",
  5051. "source": "https://github.com/bobthecow/psysh/tree/v0.10.6"
  5052. },
  5053. "time": "2021-01-18T15:53:43+00:00"
  5054. },
  5055. {
  5056. "name": "ralouphie/getallheaders",
  5057. "version": "3.0.3",
  5058. "source": {
  5059. "type": "git",
  5060. "url": "https://github.com/ralouphie/getallheaders.git",
  5061. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5062. },
  5063. "dist": {
  5064. "type": "zip",
  5065. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5066. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5067. "shasum": ""
  5068. },
  5069. "require": {
  5070. "php": ">=5.6"
  5071. },
  5072. "require-dev": {
  5073. "php-coveralls/php-coveralls": "^2.1",
  5074. "phpunit/phpunit": "^5 || ^6.5"
  5075. },
  5076. "type": "library",
  5077. "autoload": {
  5078. "files": [
  5079. "src/getallheaders.php"
  5080. ]
  5081. },
  5082. "notification-url": "https://packagist.org/downloads/",
  5083. "license": [
  5084. "MIT"
  5085. ],
  5086. "authors": [
  5087. {
  5088. "name": "Ralph Khattar",
  5089. "email": "ralph.khattar@gmail.com"
  5090. }
  5091. ],
  5092. "description": "A polyfill for getallheaders.",
  5093. "support": {
  5094. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5095. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5096. },
  5097. "time": "2019-03-08T08:55:37+00:00"
  5098. },
  5099. {
  5100. "name": "ramsey/collection",
  5101. "version": "1.1.3",
  5102. "source": {
  5103. "type": "git",
  5104. "url": "https://github.com/ramsey/collection.git",
  5105. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1"
  5106. },
  5107. "dist": {
  5108. "type": "zip",
  5109. "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  5110. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  5111. "shasum": ""
  5112. },
  5113. "require": {
  5114. "php": "^7.2 || ^8"
  5115. },
  5116. "require-dev": {
  5117. "captainhook/captainhook": "^5.3",
  5118. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5119. "ergebnis/composer-normalize": "^2.6",
  5120. "fakerphp/faker": "^1.5",
  5121. "hamcrest/hamcrest-php": "^2",
  5122. "jangregor/phpstan-prophecy": "^0.8",
  5123. "mockery/mockery": "^1.3",
  5124. "phpstan/extension-installer": "^1",
  5125. "phpstan/phpstan": "^0.12.32",
  5126. "phpstan/phpstan-mockery": "^0.12.5",
  5127. "phpstan/phpstan-phpunit": "^0.12.11",
  5128. "phpunit/phpunit": "^8.5 || ^9",
  5129. "psy/psysh": "^0.10.4",
  5130. "slevomat/coding-standard": "^6.3",
  5131. "squizlabs/php_codesniffer": "^3.5",
  5132. "vimeo/psalm": "^4.4"
  5133. },
  5134. "type": "library",
  5135. "autoload": {
  5136. "psr-4": {
  5137. "Ramsey\\Collection\\": "src/"
  5138. }
  5139. },
  5140. "notification-url": "https://packagist.org/downloads/",
  5141. "license": [
  5142. "MIT"
  5143. ],
  5144. "authors": [
  5145. {
  5146. "name": "Ben Ramsey",
  5147. "email": "ben@benramsey.com",
  5148. "homepage": "https://benramsey.com"
  5149. }
  5150. ],
  5151. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  5152. "keywords": [
  5153. "array",
  5154. "collection",
  5155. "hash",
  5156. "map",
  5157. "queue",
  5158. "set"
  5159. ],
  5160. "support": {
  5161. "issues": "https://github.com/ramsey/collection/issues",
  5162. "source": "https://github.com/ramsey/collection/tree/1.1.3"
  5163. },
  5164. "funding": [
  5165. {
  5166. "url": "https://github.com/ramsey",
  5167. "type": "github"
  5168. },
  5169. {
  5170. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  5171. "type": "tidelift"
  5172. }
  5173. ],
  5174. "time": "2021-01-21T17:40:04+00:00"
  5175. },
  5176. {
  5177. "name": "ramsey/uuid",
  5178. "version": "4.1.1",
  5179. "source": {
  5180. "type": "git",
  5181. "url": "https://github.com/ramsey/uuid.git",
  5182. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  5183. },
  5184. "dist": {
  5185. "type": "zip",
  5186. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  5187. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  5188. "shasum": ""
  5189. },
  5190. "require": {
  5191. "brick/math": "^0.8 || ^0.9",
  5192. "ext-json": "*",
  5193. "php": "^7.2 || ^8",
  5194. "ramsey/collection": "^1.0",
  5195. "symfony/polyfill-ctype": "^1.8"
  5196. },
  5197. "replace": {
  5198. "rhumsaa/uuid": "self.version"
  5199. },
  5200. "require-dev": {
  5201. "codeception/aspect-mock": "^3",
  5202. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  5203. "doctrine/annotations": "^1.8",
  5204. "goaop/framework": "^2",
  5205. "mockery/mockery": "^1.3",
  5206. "moontoast/math": "^1.1",
  5207. "paragonie/random-lib": "^2",
  5208. "php-mock/php-mock-mockery": "^1.3",
  5209. "php-mock/php-mock-phpunit": "^2.5",
  5210. "php-parallel-lint/php-parallel-lint": "^1.1",
  5211. "phpbench/phpbench": "^0.17.1",
  5212. "phpstan/extension-installer": "^1.0",
  5213. "phpstan/phpstan": "^0.12",
  5214. "phpstan/phpstan-mockery": "^0.12",
  5215. "phpstan/phpstan-phpunit": "^0.12",
  5216. "phpunit/phpunit": "^8.5",
  5217. "psy/psysh": "^0.10.0",
  5218. "slevomat/coding-standard": "^6.0",
  5219. "squizlabs/php_codesniffer": "^3.5",
  5220. "vimeo/psalm": "3.9.4"
  5221. },
  5222. "suggest": {
  5223. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5224. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  5225. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5226. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5227. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5228. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5229. },
  5230. "type": "library",
  5231. "extra": {
  5232. "branch-alias": {
  5233. "dev-master": "4.x-dev"
  5234. }
  5235. },
  5236. "autoload": {
  5237. "psr-4": {
  5238. "Ramsey\\Uuid\\": "src/"
  5239. },
  5240. "files": [
  5241. "src/functions.php"
  5242. ]
  5243. },
  5244. "notification-url": "https://packagist.org/downloads/",
  5245. "license": [
  5246. "MIT"
  5247. ],
  5248. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5249. "homepage": "https://github.com/ramsey/uuid",
  5250. "keywords": [
  5251. "guid",
  5252. "identifier",
  5253. "uuid"
  5254. ],
  5255. "support": {
  5256. "issues": "https://github.com/ramsey/uuid/issues",
  5257. "rss": "https://github.com/ramsey/uuid/releases.atom",
  5258. "source": "https://github.com/ramsey/uuid"
  5259. },
  5260. "funding": [
  5261. {
  5262. "url": "https://github.com/ramsey",
  5263. "type": "github"
  5264. }
  5265. ],
  5266. "time": "2020-08-18T17:17:46+00:00"
  5267. },
  5268. {
  5269. "name": "spatie/db-dumper",
  5270. "version": "2.20.0",
  5271. "source": {
  5272. "type": "git",
  5273. "url": "https://github.com/spatie/db-dumper.git",
  5274. "reference": "6a9004885b6de8417c2a5e1aa9e3712b49c1c59d"
  5275. },
  5276. "dist": {
  5277. "type": "zip",
  5278. "url": "https://api.github.com/repos/spatie/db-dumper/zipball/6a9004885b6de8417c2a5e1aa9e3712b49c1c59d",
  5279. "reference": "6a9004885b6de8417c2a5e1aa9e3712b49c1c59d",
  5280. "shasum": ""
  5281. },
  5282. "require": {
  5283. "php": "^7.2|^8.0",
  5284. "symfony/process": "^4.2|^5.0"
  5285. },
  5286. "require-dev": {
  5287. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  5288. },
  5289. "type": "library",
  5290. "autoload": {
  5291. "psr-4": {
  5292. "Spatie\\DbDumper\\": "src"
  5293. }
  5294. },
  5295. "notification-url": "https://packagist.org/downloads/",
  5296. "license": [
  5297. "MIT"
  5298. ],
  5299. "authors": [
  5300. {
  5301. "name": "Freek Van der Herten",
  5302. "email": "freek@spatie.be",
  5303. "homepage": "https://spatie.be",
  5304. "role": "Developer"
  5305. }
  5306. ],
  5307. "description": "Dump databases",
  5308. "homepage": "https://github.com/spatie/db-dumper",
  5309. "keywords": [
  5310. "database",
  5311. "db-dumper",
  5312. "dump",
  5313. "mysqldump",
  5314. "spatie"
  5315. ],
  5316. "support": {
  5317. "issues": "https://github.com/spatie/db-dumper/issues",
  5318. "source": "https://github.com/spatie/db-dumper/tree/2.20.0"
  5319. },
  5320. "funding": [
  5321. {
  5322. "url": "https://github.com/spatie",
  5323. "type": "github"
  5324. }
  5325. ],
  5326. "time": "2021-01-26T07:44:13+00:00"
  5327. },
  5328. {
  5329. "name": "spatie/image-optimizer",
  5330. "version": "1.3.2",
  5331. "source": {
  5332. "type": "git",
  5333. "url": "https://github.com/spatie/image-optimizer.git",
  5334. "reference": "6aa170eb292758553d332efee5e0c3977341080c"
  5335. },
  5336. "dist": {
  5337. "type": "zip",
  5338. "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/6aa170eb292758553d332efee5e0c3977341080c",
  5339. "reference": "6aa170eb292758553d332efee5e0c3977341080c",
  5340. "shasum": ""
  5341. },
  5342. "require": {
  5343. "ext-fileinfo": "*",
  5344. "php": "^7.2|^8.0",
  5345. "psr/log": "^1.0",
  5346. "symfony/process": "^4.2|^5.0"
  5347. },
  5348. "require-dev": {
  5349. "phpunit/phpunit": "^8.0|^9.0",
  5350. "symfony/var-dumper": "^4.2|^5.0"
  5351. },
  5352. "type": "library",
  5353. "autoload": {
  5354. "psr-4": {
  5355. "Spatie\\ImageOptimizer\\": "src"
  5356. }
  5357. },
  5358. "notification-url": "https://packagist.org/downloads/",
  5359. "license": [
  5360. "MIT"
  5361. ],
  5362. "authors": [
  5363. {
  5364. "name": "Freek Van der Herten",
  5365. "email": "freek@spatie.be",
  5366. "homepage": "https://spatie.be",
  5367. "role": "Developer"
  5368. }
  5369. ],
  5370. "description": "Easily optimize images using PHP",
  5371. "homepage": "https://github.com/spatie/image-optimizer",
  5372. "keywords": [
  5373. "image-optimizer",
  5374. "spatie"
  5375. ],
  5376. "support": {
  5377. "issues": "https://github.com/spatie/image-optimizer/issues",
  5378. "source": "https://github.com/spatie/image-optimizer/tree/1.3.2"
  5379. },
  5380. "time": "2020-11-28T12:37:58+00:00"
  5381. },
  5382. {
  5383. "name": "spatie/laravel-backup",
  5384. "version": "6.14.3",
  5385. "source": {
  5386. "type": "git",
  5387. "url": "https://github.com/spatie/laravel-backup.git",
  5388. "reference": "8a4c95bffffde831edaca64bdef55aac213d0eef"
  5389. },
  5390. "dist": {
  5391. "type": "zip",
  5392. "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/8a4c95bffffde831edaca64bdef55aac213d0eef",
  5393. "reference": "8a4c95bffffde831edaca64bdef55aac213d0eef",
  5394. "shasum": ""
  5395. },
  5396. "require": {
  5397. "illuminate/console": "^6.0|^7.0|^8.0",
  5398. "illuminate/contracts": "^6.0|^7.0|^8.0",
  5399. "illuminate/events": "^6.0|^7.0|^8.0",
  5400. "illuminate/filesystem": "^6.0|^7.0|^8.0",
  5401. "illuminate/notifications": "^6.0|^7.0|^8.0",
  5402. "illuminate/support": "^6.0|^7.0|^8.0",
  5403. "league/flysystem": "^1.0.49",
  5404. "php": "^7.3|^8.0",
  5405. "spatie/db-dumper": "^2.12",
  5406. "spatie/temporary-directory": "^1.1",
  5407. "symfony/finder": "^4.2|^5.0"
  5408. },
  5409. "require-dev": {
  5410. "laravel/slack-notification-channel": "^2.3",
  5411. "league/flysystem-aws-s3-v3": "^1.0",
  5412. "mockery/mockery": "^1.4.2",
  5413. "orchestra/testbench": "4.*|5.*|6.*",
  5414. "phpunit/phpunit": "^8.4|^9.0"
  5415. },
  5416. "suggest": {
  5417. "laravel/slack-notification-channel": "Required for sending notifications via Slack"
  5418. },
  5419. "type": "library",
  5420. "extra": {
  5421. "laravel": {
  5422. "providers": [
  5423. "Spatie\\Backup\\BackupServiceProvider"
  5424. ]
  5425. }
  5426. },
  5427. "autoload": {
  5428. "psr-4": {
  5429. "Spatie\\Backup\\": "src"
  5430. },
  5431. "files": [
  5432. "src/Helpers/functions.php"
  5433. ]
  5434. },
  5435. "notification-url": "https://packagist.org/downloads/",
  5436. "license": [
  5437. "MIT"
  5438. ],
  5439. "authors": [
  5440. {
  5441. "name": "Freek Van der Herten",
  5442. "email": "freek@spatie.be",
  5443. "homepage": "https://spatie.be",
  5444. "role": "Developer"
  5445. }
  5446. ],
  5447. "description": "A Laravel package to backup your application",
  5448. "homepage": "https://github.com/spatie/laravel-backup",
  5449. "keywords": [
  5450. "backup",
  5451. "database",
  5452. "laravel-backup",
  5453. "spatie"
  5454. ],
  5455. "support": {
  5456. "issues": "https://github.com/spatie/laravel-backup/issues",
  5457. "source": "https://github.com/spatie/laravel-backup/tree/6.14.3"
  5458. },
  5459. "funding": [
  5460. {
  5461. "url": "https://github.com/sponsors/spatie",
  5462. "type": "github"
  5463. },
  5464. {
  5465. "url": "https://spatie.be/open-source/support-us",
  5466. "type": "other"
  5467. }
  5468. ],
  5469. "time": "2021-01-15T13:25:43+00:00"
  5470. },
  5471. {
  5472. "name": "spatie/laravel-image-optimizer",
  5473. "version": "1.6.4",
  5474. "source": {
  5475. "type": "git",
  5476. "url": "https://github.com/spatie/laravel-image-optimizer.git",
  5477. "reference": "c39e9ea77dee6b6eddfc26800adb1aa06a624294"
  5478. },
  5479. "dist": {
  5480. "type": "zip",
  5481. "url": "https://api.github.com/repos/spatie/laravel-image-optimizer/zipball/c39e9ea77dee6b6eddfc26800adb1aa06a624294",
  5482. "reference": "c39e9ea77dee6b6eddfc26800adb1aa06a624294",
  5483. "shasum": ""
  5484. },
  5485. "require": {
  5486. "laravel/framework": "^6.0|^7.0|^8.0",
  5487. "php": "^7.2|^8.0",
  5488. "spatie/image-optimizer": "^1.2.0"
  5489. },
  5490. "require-dev": {
  5491. "orchestra/testbench": "^4.0|^5.0|^6.0",
  5492. "phpunit/phpunit": "^9.0"
  5493. },
  5494. "type": "library",
  5495. "extra": {
  5496. "laravel": {
  5497. "providers": [
  5498. "Spatie\\LaravelImageOptimizer\\ImageOptimizerServiceProvider"
  5499. ],
  5500. "aliases": {
  5501. "ImageOptimizer": "Spatie\\LaravelImageOptimizer\\Facades\\ImageOptimizer"
  5502. }
  5503. }
  5504. },
  5505. "autoload": {
  5506. "psr-4": {
  5507. "Spatie\\LaravelImageOptimizer\\": "src"
  5508. }
  5509. },
  5510. "notification-url": "https://packagist.org/downloads/",
  5511. "license": [
  5512. "MIT"
  5513. ],
  5514. "authors": [
  5515. {
  5516. "name": "Freek Van der Herten",
  5517. "email": "freek@spatie.be",
  5518. "homepage": "https://spatie.be",
  5519. "role": "Developer"
  5520. }
  5521. ],
  5522. "description": "Optimize images in your Laravel app",
  5523. "homepage": "https://github.com/spatie/laravel-image-optimizer",
  5524. "keywords": [
  5525. "laravel-image-optimizer",
  5526. "spatie"
  5527. ],
  5528. "support": {
  5529. "issues": "https://github.com/spatie/laravel-image-optimizer/issues",
  5530. "source": "https://github.com/spatie/laravel-image-optimizer/tree/1.6.4"
  5531. },
  5532. "funding": [
  5533. {
  5534. "url": "https://spatie.be/open-source/support-us",
  5535. "type": "custom"
  5536. }
  5537. ],
  5538. "time": "2020-11-27T18:27:06+00:00"
  5539. },
  5540. {
  5541. "name": "spatie/temporary-directory",
  5542. "version": "1.3.0",
  5543. "source": {
  5544. "type": "git",
  5545. "url": "https://github.com/spatie/temporary-directory.git",
  5546. "reference": "f517729b3793bca58f847c5fd383ec16f03ffec6"
  5547. },
  5548. "dist": {
  5549. "type": "zip",
  5550. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/f517729b3793bca58f847c5fd383ec16f03ffec6",
  5551. "reference": "f517729b3793bca58f847c5fd383ec16f03ffec6",
  5552. "shasum": ""
  5553. },
  5554. "require": {
  5555. "php": "^7.2|^8.0"
  5556. },
  5557. "require-dev": {
  5558. "phpunit/phpunit": "^8.0|^9.0"
  5559. },
  5560. "type": "library",
  5561. "autoload": {
  5562. "psr-4": {
  5563. "Spatie\\TemporaryDirectory\\": "src"
  5564. }
  5565. },
  5566. "notification-url": "https://packagist.org/downloads/",
  5567. "license": [
  5568. "MIT"
  5569. ],
  5570. "authors": [
  5571. {
  5572. "name": "Alex Vanderbist",
  5573. "email": "alex@spatie.be",
  5574. "homepage": "https://spatie.be",
  5575. "role": "Developer"
  5576. }
  5577. ],
  5578. "description": "Easily create, use and destroy temporary directories",
  5579. "homepage": "https://github.com/spatie/temporary-directory",
  5580. "keywords": [
  5581. "php",
  5582. "spatie",
  5583. "temporary-directory"
  5584. ],
  5585. "support": {
  5586. "issues": "https://github.com/spatie/temporary-directory/issues",
  5587. "source": "https://github.com/spatie/temporary-directory/tree/1.3.0"
  5588. },
  5589. "time": "2020-11-09T15:54:21+00:00"
  5590. },
  5591. {
  5592. "name": "stevebauman/purify",
  5593. "version": "v3.0.3",
  5594. "source": {
  5595. "type": "git",
  5596. "url": "https://github.com/stevebauman/purify.git",
  5597. "reference": "08e8830f0ab9d302f8d76d4f5854910b24bacbb3"
  5598. },
  5599. "dist": {
  5600. "type": "zip",
  5601. "url": "https://api.github.com/repos/stevebauman/purify/zipball/08e8830f0ab9d302f8d76d4f5854910b24bacbb3",
  5602. "reference": "08e8830f0ab9d302f8d76d4f5854910b24bacbb3",
  5603. "shasum": ""
  5604. },
  5605. "require": {
  5606. "ezyang/htmlpurifier": "^4.9.0",
  5607. "illuminate/support": "~5.5|~6.0|~7.0|~8.0",
  5608. "php": ">=7.1"
  5609. },
  5610. "require-dev": {
  5611. "orchestra/testbench": "~3.7",
  5612. "phpunit/phpunit": "~7.0"
  5613. },
  5614. "type": "library",
  5615. "extra": {
  5616. "laravel": {
  5617. "providers": [
  5618. "Stevebauman\\Purify\\PurifyServiceProvider"
  5619. ],
  5620. "aliases": {
  5621. "Purify": "Stevebauman\\Purify\\Facades\\Purify"
  5622. }
  5623. }
  5624. },
  5625. "autoload": {
  5626. "psr-4": {
  5627. "Stevebauman\\Purify\\": "src/"
  5628. }
  5629. },
  5630. "notification-url": "https://packagist.org/downloads/",
  5631. "license": [
  5632. "MIT"
  5633. ],
  5634. "authors": [
  5635. {
  5636. "name": "Steve Bauman",
  5637. "email": "steven_bauman@outlook.com"
  5638. }
  5639. ],
  5640. "description": "An HTML Purifier / Sanitizer for Laravel",
  5641. "keywords": [
  5642. "Purifier",
  5643. "clean",
  5644. "cleaner",
  5645. "html",
  5646. "laravel",
  5647. "purification",
  5648. "purify"
  5649. ],
  5650. "support": {
  5651. "issues": "https://github.com/stevebauman/purify/issues",
  5652. "source": "https://github.com/stevebauman/purify/tree/v3.0.3"
  5653. },
  5654. "time": "2020-09-08T20:33:16+00:00"
  5655. },
  5656. {
  5657. "name": "swiftmailer/swiftmailer",
  5658. "version": "v6.2.5",
  5659. "source": {
  5660. "type": "git",
  5661. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5662. "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7"
  5663. },
  5664. "dist": {
  5665. "type": "zip",
  5666. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/698a6a9f54d7eb321274de3ad19863802c879fb7",
  5667. "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7",
  5668. "shasum": ""
  5669. },
  5670. "require": {
  5671. "egulias/email-validator": "^2.0",
  5672. "php": ">=7.0.0",
  5673. "symfony/polyfill-iconv": "^1.0",
  5674. "symfony/polyfill-intl-idn": "^1.10",
  5675. "symfony/polyfill-mbstring": "^1.0"
  5676. },
  5677. "require-dev": {
  5678. "mockery/mockery": "^1.0",
  5679. "symfony/phpunit-bridge": "^4.4|^5.0"
  5680. },
  5681. "suggest": {
  5682. "ext-intl": "Needed to support internationalized email addresses"
  5683. },
  5684. "type": "library",
  5685. "extra": {
  5686. "branch-alias": {
  5687. "dev-master": "6.2-dev"
  5688. }
  5689. },
  5690. "autoload": {
  5691. "files": [
  5692. "lib/swift_required.php"
  5693. ]
  5694. },
  5695. "notification-url": "https://packagist.org/downloads/",
  5696. "license": [
  5697. "MIT"
  5698. ],
  5699. "authors": [
  5700. {
  5701. "name": "Chris Corbyn"
  5702. },
  5703. {
  5704. "name": "Fabien Potencier",
  5705. "email": "fabien@symfony.com"
  5706. }
  5707. ],
  5708. "description": "Swiftmailer, free feature-rich PHP mailer",
  5709. "homepage": "https://swiftmailer.symfony.com",
  5710. "keywords": [
  5711. "email",
  5712. "mail",
  5713. "mailer"
  5714. ],
  5715. "support": {
  5716. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5717. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.5"
  5718. },
  5719. "funding": [
  5720. {
  5721. "url": "https://github.com/fabpot",
  5722. "type": "github"
  5723. },
  5724. {
  5725. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5726. "type": "tidelift"
  5727. }
  5728. ],
  5729. "time": "2021-01-12T09:35:59+00:00"
  5730. },
  5731. {
  5732. "name": "symfony/console",
  5733. "version": "v5.2.1",
  5734. "source": {
  5735. "type": "git",
  5736. "url": "https://github.com/symfony/console.git",
  5737. "reference": "47c02526c532fb381374dab26df05e7313978976"
  5738. },
  5739. "dist": {
  5740. "type": "zip",
  5741. "url": "https://api.github.com/repos/symfony/console/zipball/47c02526c532fb381374dab26df05e7313978976",
  5742. "reference": "47c02526c532fb381374dab26df05e7313978976",
  5743. "shasum": ""
  5744. },
  5745. "require": {
  5746. "php": ">=7.2.5",
  5747. "symfony/polyfill-mbstring": "~1.0",
  5748. "symfony/polyfill-php73": "^1.8",
  5749. "symfony/polyfill-php80": "^1.15",
  5750. "symfony/service-contracts": "^1.1|^2",
  5751. "symfony/string": "^5.1"
  5752. },
  5753. "conflict": {
  5754. "symfony/dependency-injection": "<4.4",
  5755. "symfony/dotenv": "<5.1",
  5756. "symfony/event-dispatcher": "<4.4",
  5757. "symfony/lock": "<4.4",
  5758. "symfony/process": "<4.4"
  5759. },
  5760. "provide": {
  5761. "psr/log-implementation": "1.0"
  5762. },
  5763. "require-dev": {
  5764. "psr/log": "~1.0",
  5765. "symfony/config": "^4.4|^5.0",
  5766. "symfony/dependency-injection": "^4.4|^5.0",
  5767. "symfony/event-dispatcher": "^4.4|^5.0",
  5768. "symfony/lock": "^4.4|^5.0",
  5769. "symfony/process": "^4.4|^5.0",
  5770. "symfony/var-dumper": "^4.4|^5.0"
  5771. },
  5772. "suggest": {
  5773. "psr/log": "For using the console logger",
  5774. "symfony/event-dispatcher": "",
  5775. "symfony/lock": "",
  5776. "symfony/process": ""
  5777. },
  5778. "type": "library",
  5779. "autoload": {
  5780. "psr-4": {
  5781. "Symfony\\Component\\Console\\": ""
  5782. },
  5783. "exclude-from-classmap": [
  5784. "/Tests/"
  5785. ]
  5786. },
  5787. "notification-url": "https://packagist.org/downloads/",
  5788. "license": [
  5789. "MIT"
  5790. ],
  5791. "authors": [
  5792. {
  5793. "name": "Fabien Potencier",
  5794. "email": "fabien@symfony.com"
  5795. },
  5796. {
  5797. "name": "Symfony Community",
  5798. "homepage": "https://symfony.com/contributors"
  5799. }
  5800. ],
  5801. "description": "Symfony Console Component",
  5802. "homepage": "https://symfony.com",
  5803. "keywords": [
  5804. "cli",
  5805. "command line",
  5806. "console",
  5807. "terminal"
  5808. ],
  5809. "support": {
  5810. "source": "https://github.com/symfony/console/tree/v5.2.1"
  5811. },
  5812. "funding": [
  5813. {
  5814. "url": "https://symfony.com/sponsor",
  5815. "type": "custom"
  5816. },
  5817. {
  5818. "url": "https://github.com/fabpot",
  5819. "type": "github"
  5820. },
  5821. {
  5822. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5823. "type": "tidelift"
  5824. }
  5825. ],
  5826. "time": "2020-12-18T08:03:05+00:00"
  5827. },
  5828. {
  5829. "name": "symfony/css-selector",
  5830. "version": "v5.2.1",
  5831. "source": {
  5832. "type": "git",
  5833. "url": "https://github.com/symfony/css-selector.git",
  5834. "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054"
  5835. },
  5836. "dist": {
  5837. "type": "zip",
  5838. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
  5839. "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
  5840. "shasum": ""
  5841. },
  5842. "require": {
  5843. "php": ">=7.2.5"
  5844. },
  5845. "type": "library",
  5846. "autoload": {
  5847. "psr-4": {
  5848. "Symfony\\Component\\CssSelector\\": ""
  5849. },
  5850. "exclude-from-classmap": [
  5851. "/Tests/"
  5852. ]
  5853. },
  5854. "notification-url": "https://packagist.org/downloads/",
  5855. "license": [
  5856. "MIT"
  5857. ],
  5858. "authors": [
  5859. {
  5860. "name": "Fabien Potencier",
  5861. "email": "fabien@symfony.com"
  5862. },
  5863. {
  5864. "name": "Jean-François Simon",
  5865. "email": "jeanfrancois.simon@sensiolabs.com"
  5866. },
  5867. {
  5868. "name": "Symfony Community",
  5869. "homepage": "https://symfony.com/contributors"
  5870. }
  5871. ],
  5872. "description": "Symfony CssSelector Component",
  5873. "homepage": "https://symfony.com",
  5874. "support": {
  5875. "source": "https://github.com/symfony/css-selector/tree/v5.2.1"
  5876. },
  5877. "funding": [
  5878. {
  5879. "url": "https://symfony.com/sponsor",
  5880. "type": "custom"
  5881. },
  5882. {
  5883. "url": "https://github.com/fabpot",
  5884. "type": "github"
  5885. },
  5886. {
  5887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5888. "type": "tidelift"
  5889. }
  5890. ],
  5891. "time": "2020-12-08T17:02:38+00:00"
  5892. },
  5893. {
  5894. "name": "symfony/deprecation-contracts",
  5895. "version": "v2.2.0",
  5896. "source": {
  5897. "type": "git",
  5898. "url": "https://github.com/symfony/deprecation-contracts.git",
  5899. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  5900. },
  5901. "dist": {
  5902. "type": "zip",
  5903. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  5904. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  5905. "shasum": ""
  5906. },
  5907. "require": {
  5908. "php": ">=7.1"
  5909. },
  5910. "type": "library",
  5911. "extra": {
  5912. "branch-alias": {
  5913. "dev-master": "2.2-dev"
  5914. },
  5915. "thanks": {
  5916. "name": "symfony/contracts",
  5917. "url": "https://github.com/symfony/contracts"
  5918. }
  5919. },
  5920. "autoload": {
  5921. "files": [
  5922. "function.php"
  5923. ]
  5924. },
  5925. "notification-url": "https://packagist.org/downloads/",
  5926. "license": [
  5927. "MIT"
  5928. ],
  5929. "authors": [
  5930. {
  5931. "name": "Nicolas Grekas",
  5932. "email": "p@tchwork.com"
  5933. },
  5934. {
  5935. "name": "Symfony Community",
  5936. "homepage": "https://symfony.com/contributors"
  5937. }
  5938. ],
  5939. "description": "A generic function and convention to trigger deprecation notices",
  5940. "homepage": "https://symfony.com",
  5941. "support": {
  5942. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  5943. },
  5944. "funding": [
  5945. {
  5946. "url": "https://symfony.com/sponsor",
  5947. "type": "custom"
  5948. },
  5949. {
  5950. "url": "https://github.com/fabpot",
  5951. "type": "github"
  5952. },
  5953. {
  5954. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5955. "type": "tidelift"
  5956. }
  5957. ],
  5958. "time": "2020-09-07T11:33:47+00:00"
  5959. },
  5960. {
  5961. "name": "symfony/error-handler",
  5962. "version": "v5.2.1",
  5963. "source": {
  5964. "type": "git",
  5965. "url": "https://github.com/symfony/error-handler.git",
  5966. "reference": "59b190ce16ddf32771a22087b60f6dafd3407147"
  5967. },
  5968. "dist": {
  5969. "type": "zip",
  5970. "url": "https://api.github.com/repos/symfony/error-handler/zipball/59b190ce16ddf32771a22087b60f6dafd3407147",
  5971. "reference": "59b190ce16ddf32771a22087b60f6dafd3407147",
  5972. "shasum": ""
  5973. },
  5974. "require": {
  5975. "php": ">=7.2.5",
  5976. "psr/log": "^1.0",
  5977. "symfony/polyfill-php80": "^1.15",
  5978. "symfony/var-dumper": "^4.4|^5.0"
  5979. },
  5980. "require-dev": {
  5981. "symfony/deprecation-contracts": "^2.1",
  5982. "symfony/http-kernel": "^4.4|^5.0",
  5983. "symfony/serializer": "^4.4|^5.0"
  5984. },
  5985. "type": "library",
  5986. "autoload": {
  5987. "psr-4": {
  5988. "Symfony\\Component\\ErrorHandler\\": ""
  5989. },
  5990. "exclude-from-classmap": [
  5991. "/Tests/"
  5992. ]
  5993. },
  5994. "notification-url": "https://packagist.org/downloads/",
  5995. "license": [
  5996. "MIT"
  5997. ],
  5998. "authors": [
  5999. {
  6000. "name": "Fabien Potencier",
  6001. "email": "fabien@symfony.com"
  6002. },
  6003. {
  6004. "name": "Symfony Community",
  6005. "homepage": "https://symfony.com/contributors"
  6006. }
  6007. ],
  6008. "description": "Symfony ErrorHandler Component",
  6009. "homepage": "https://symfony.com",
  6010. "support": {
  6011. "source": "https://github.com/symfony/error-handler/tree/v5.2.1"
  6012. },
  6013. "funding": [
  6014. {
  6015. "url": "https://symfony.com/sponsor",
  6016. "type": "custom"
  6017. },
  6018. {
  6019. "url": "https://github.com/fabpot",
  6020. "type": "github"
  6021. },
  6022. {
  6023. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6024. "type": "tidelift"
  6025. }
  6026. ],
  6027. "time": "2020-12-09T18:54:12+00:00"
  6028. },
  6029. {
  6030. "name": "symfony/event-dispatcher",
  6031. "version": "v5.2.1",
  6032. "source": {
  6033. "type": "git",
  6034. "url": "https://github.com/symfony/event-dispatcher.git",
  6035. "reference": "1c93f7a1dff592c252574c79a8635a8a80856042"
  6036. },
  6037. "dist": {
  6038. "type": "zip",
  6039. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1c93f7a1dff592c252574c79a8635a8a80856042",
  6040. "reference": "1c93f7a1dff592c252574c79a8635a8a80856042",
  6041. "shasum": ""
  6042. },
  6043. "require": {
  6044. "php": ">=7.2.5",
  6045. "symfony/deprecation-contracts": "^2.1",
  6046. "symfony/event-dispatcher-contracts": "^2",
  6047. "symfony/polyfill-php80": "^1.15"
  6048. },
  6049. "conflict": {
  6050. "symfony/dependency-injection": "<4.4"
  6051. },
  6052. "provide": {
  6053. "psr/event-dispatcher-implementation": "1.0",
  6054. "symfony/event-dispatcher-implementation": "2.0"
  6055. },
  6056. "require-dev": {
  6057. "psr/log": "~1.0",
  6058. "symfony/config": "^4.4|^5.0",
  6059. "symfony/dependency-injection": "^4.4|^5.0",
  6060. "symfony/error-handler": "^4.4|^5.0",
  6061. "symfony/expression-language": "^4.4|^5.0",
  6062. "symfony/http-foundation": "^4.4|^5.0",
  6063. "symfony/service-contracts": "^1.1|^2",
  6064. "symfony/stopwatch": "^4.4|^5.0"
  6065. },
  6066. "suggest": {
  6067. "symfony/dependency-injection": "",
  6068. "symfony/http-kernel": ""
  6069. },
  6070. "type": "library",
  6071. "autoload": {
  6072. "psr-4": {
  6073. "Symfony\\Component\\EventDispatcher\\": ""
  6074. },
  6075. "exclude-from-classmap": [
  6076. "/Tests/"
  6077. ]
  6078. },
  6079. "notification-url": "https://packagist.org/downloads/",
  6080. "license": [
  6081. "MIT"
  6082. ],
  6083. "authors": [
  6084. {
  6085. "name": "Fabien Potencier",
  6086. "email": "fabien@symfony.com"
  6087. },
  6088. {
  6089. "name": "Symfony Community",
  6090. "homepage": "https://symfony.com/contributors"
  6091. }
  6092. ],
  6093. "description": "Symfony EventDispatcher Component",
  6094. "homepage": "https://symfony.com",
  6095. "support": {
  6096. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.1"
  6097. },
  6098. "funding": [
  6099. {
  6100. "url": "https://symfony.com/sponsor",
  6101. "type": "custom"
  6102. },
  6103. {
  6104. "url": "https://github.com/fabpot",
  6105. "type": "github"
  6106. },
  6107. {
  6108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6109. "type": "tidelift"
  6110. }
  6111. ],
  6112. "time": "2020-12-18T08:03:05+00:00"
  6113. },
  6114. {
  6115. "name": "symfony/event-dispatcher-contracts",
  6116. "version": "v2.2.0",
  6117. "source": {
  6118. "type": "git",
  6119. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6120. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  6121. },
  6122. "dist": {
  6123. "type": "zip",
  6124. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  6125. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  6126. "shasum": ""
  6127. },
  6128. "require": {
  6129. "php": ">=7.2.5",
  6130. "psr/event-dispatcher": "^1"
  6131. },
  6132. "suggest": {
  6133. "symfony/event-dispatcher-implementation": ""
  6134. },
  6135. "type": "library",
  6136. "extra": {
  6137. "branch-alias": {
  6138. "dev-master": "2.2-dev"
  6139. },
  6140. "thanks": {
  6141. "name": "symfony/contracts",
  6142. "url": "https://github.com/symfony/contracts"
  6143. }
  6144. },
  6145. "autoload": {
  6146. "psr-4": {
  6147. "Symfony\\Contracts\\EventDispatcher\\": ""
  6148. }
  6149. },
  6150. "notification-url": "https://packagist.org/downloads/",
  6151. "license": [
  6152. "MIT"
  6153. ],
  6154. "authors": [
  6155. {
  6156. "name": "Nicolas Grekas",
  6157. "email": "p@tchwork.com"
  6158. },
  6159. {
  6160. "name": "Symfony Community",
  6161. "homepage": "https://symfony.com/contributors"
  6162. }
  6163. ],
  6164. "description": "Generic abstractions related to dispatching event",
  6165. "homepage": "https://symfony.com",
  6166. "keywords": [
  6167. "abstractions",
  6168. "contracts",
  6169. "decoupling",
  6170. "interfaces",
  6171. "interoperability",
  6172. "standards"
  6173. ],
  6174. "support": {
  6175. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  6176. },
  6177. "funding": [
  6178. {
  6179. "url": "https://symfony.com/sponsor",
  6180. "type": "custom"
  6181. },
  6182. {
  6183. "url": "https://github.com/fabpot",
  6184. "type": "github"
  6185. },
  6186. {
  6187. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6188. "type": "tidelift"
  6189. }
  6190. ],
  6191. "time": "2020-09-07T11:33:47+00:00"
  6192. },
  6193. {
  6194. "name": "symfony/filesystem",
  6195. "version": "v5.2.1",
  6196. "source": {
  6197. "type": "git",
  6198. "url": "https://github.com/symfony/filesystem.git",
  6199. "reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d"
  6200. },
  6201. "dist": {
  6202. "type": "zip",
  6203. "url": "https://api.github.com/repos/symfony/filesystem/zipball/fa8f8cab6b65e2d99a118e082935344c5ba8c60d",
  6204. "reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d",
  6205. "shasum": ""
  6206. },
  6207. "require": {
  6208. "php": ">=7.2.5",
  6209. "symfony/polyfill-ctype": "~1.8"
  6210. },
  6211. "type": "library",
  6212. "autoload": {
  6213. "psr-4": {
  6214. "Symfony\\Component\\Filesystem\\": ""
  6215. },
  6216. "exclude-from-classmap": [
  6217. "/Tests/"
  6218. ]
  6219. },
  6220. "notification-url": "https://packagist.org/downloads/",
  6221. "license": [
  6222. "MIT"
  6223. ],
  6224. "authors": [
  6225. {
  6226. "name": "Fabien Potencier",
  6227. "email": "fabien@symfony.com"
  6228. },
  6229. {
  6230. "name": "Symfony Community",
  6231. "homepage": "https://symfony.com/contributors"
  6232. }
  6233. ],
  6234. "description": "Symfony Filesystem Component",
  6235. "homepage": "https://symfony.com",
  6236. "support": {
  6237. "source": "https://github.com/symfony/filesystem/tree/v5.2.1"
  6238. },
  6239. "funding": [
  6240. {
  6241. "url": "https://symfony.com/sponsor",
  6242. "type": "custom"
  6243. },
  6244. {
  6245. "url": "https://github.com/fabpot",
  6246. "type": "github"
  6247. },
  6248. {
  6249. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6250. "type": "tidelift"
  6251. }
  6252. ],
  6253. "time": "2020-11-30T17:05:38+00:00"
  6254. },
  6255. {
  6256. "name": "symfony/finder",
  6257. "version": "v5.2.1",
  6258. "source": {
  6259. "type": "git",
  6260. "url": "https://github.com/symfony/finder.git",
  6261. "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba"
  6262. },
  6263. "dist": {
  6264. "type": "zip",
  6265. "url": "https://api.github.com/repos/symfony/finder/zipball/0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
  6266. "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
  6267. "shasum": ""
  6268. },
  6269. "require": {
  6270. "php": ">=7.2.5"
  6271. },
  6272. "type": "library",
  6273. "autoload": {
  6274. "psr-4": {
  6275. "Symfony\\Component\\Finder\\": ""
  6276. },
  6277. "exclude-from-classmap": [
  6278. "/Tests/"
  6279. ]
  6280. },
  6281. "notification-url": "https://packagist.org/downloads/",
  6282. "license": [
  6283. "MIT"
  6284. ],
  6285. "authors": [
  6286. {
  6287. "name": "Fabien Potencier",
  6288. "email": "fabien@symfony.com"
  6289. },
  6290. {
  6291. "name": "Symfony Community",
  6292. "homepage": "https://symfony.com/contributors"
  6293. }
  6294. ],
  6295. "description": "Symfony Finder Component",
  6296. "homepage": "https://symfony.com",
  6297. "support": {
  6298. "source": "https://github.com/symfony/finder/tree/v5.2.1"
  6299. },
  6300. "funding": [
  6301. {
  6302. "url": "https://symfony.com/sponsor",
  6303. "type": "custom"
  6304. },
  6305. {
  6306. "url": "https://github.com/fabpot",
  6307. "type": "github"
  6308. },
  6309. {
  6310. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6311. "type": "tidelift"
  6312. }
  6313. ],
  6314. "time": "2020-12-08T17:02:38+00:00"
  6315. },
  6316. {
  6317. "name": "symfony/http-foundation",
  6318. "version": "v5.2.1",
  6319. "source": {
  6320. "type": "git",
  6321. "url": "https://github.com/symfony/http-foundation.git",
  6322. "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d"
  6323. },
  6324. "dist": {
  6325. "type": "zip",
  6326. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a1f6218b29897ab52acba58cfa905b83625bef8d",
  6327. "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d",
  6328. "shasum": ""
  6329. },
  6330. "require": {
  6331. "php": ">=7.2.5",
  6332. "symfony/deprecation-contracts": "^2.1",
  6333. "symfony/polyfill-mbstring": "~1.1",
  6334. "symfony/polyfill-php80": "^1.15"
  6335. },
  6336. "require-dev": {
  6337. "predis/predis": "~1.0",
  6338. "symfony/cache": "^4.4|^5.0",
  6339. "symfony/expression-language": "^4.4|^5.0",
  6340. "symfony/mime": "^4.4|^5.0"
  6341. },
  6342. "suggest": {
  6343. "symfony/mime": "To use the file extension guesser"
  6344. },
  6345. "type": "library",
  6346. "autoload": {
  6347. "psr-4": {
  6348. "Symfony\\Component\\HttpFoundation\\": ""
  6349. },
  6350. "exclude-from-classmap": [
  6351. "/Tests/"
  6352. ]
  6353. },
  6354. "notification-url": "https://packagist.org/downloads/",
  6355. "license": [
  6356. "MIT"
  6357. ],
  6358. "authors": [
  6359. {
  6360. "name": "Fabien Potencier",
  6361. "email": "fabien@symfony.com"
  6362. },
  6363. {
  6364. "name": "Symfony Community",
  6365. "homepage": "https://symfony.com/contributors"
  6366. }
  6367. ],
  6368. "description": "Symfony HttpFoundation Component",
  6369. "homepage": "https://symfony.com",
  6370. "support": {
  6371. "source": "https://github.com/symfony/http-foundation/tree/v5.2.1"
  6372. },
  6373. "funding": [
  6374. {
  6375. "url": "https://symfony.com/sponsor",
  6376. "type": "custom"
  6377. },
  6378. {
  6379. "url": "https://github.com/fabpot",
  6380. "type": "github"
  6381. },
  6382. {
  6383. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6384. "type": "tidelift"
  6385. }
  6386. ],
  6387. "time": "2020-12-18T10:00:10+00:00"
  6388. },
  6389. {
  6390. "name": "symfony/http-kernel",
  6391. "version": "v5.1.5",
  6392. "source": {
  6393. "type": "git",
  6394. "url": "https://github.com/symfony/http-kernel.git",
  6395. "reference": "3e32676e6cb5d2081c91a56783471ff8a7f7110b"
  6396. },
  6397. "dist": {
  6398. "type": "zip",
  6399. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/3e32676e6cb5d2081c91a56783471ff8a7f7110b",
  6400. "reference": "3e32676e6cb5d2081c91a56783471ff8a7f7110b",
  6401. "shasum": ""
  6402. },
  6403. "require": {
  6404. "php": ">=7.2.5",
  6405. "psr/log": "~1.0",
  6406. "symfony/deprecation-contracts": "^2.1",
  6407. "symfony/error-handler": "^4.4|^5.0",
  6408. "symfony/event-dispatcher": "^5.0",
  6409. "symfony/http-foundation": "^4.4|^5.0",
  6410. "symfony/polyfill-ctype": "^1.8",
  6411. "symfony/polyfill-php73": "^1.9",
  6412. "symfony/polyfill-php80": "^1.15"
  6413. },
  6414. "conflict": {
  6415. "symfony/browser-kit": "<4.4",
  6416. "symfony/cache": "<5.0",
  6417. "symfony/config": "<5.0",
  6418. "symfony/console": "<4.4",
  6419. "symfony/dependency-injection": "<4.4",
  6420. "symfony/doctrine-bridge": "<5.0",
  6421. "symfony/form": "<5.0",
  6422. "symfony/http-client": "<5.0",
  6423. "symfony/mailer": "<5.0",
  6424. "symfony/messenger": "<5.0",
  6425. "symfony/translation": "<5.0",
  6426. "symfony/twig-bridge": "<5.0",
  6427. "symfony/validator": "<5.0",
  6428. "twig/twig": "<2.4"
  6429. },
  6430. "provide": {
  6431. "psr/log-implementation": "1.0"
  6432. },
  6433. "require-dev": {
  6434. "psr/cache": "~1.0",
  6435. "symfony/browser-kit": "^4.4|^5.0",
  6436. "symfony/config": "^5.0",
  6437. "symfony/console": "^4.4|^5.0",
  6438. "symfony/css-selector": "^4.4|^5.0",
  6439. "symfony/dependency-injection": "^4.4|^5.0",
  6440. "symfony/dom-crawler": "^4.4|^5.0",
  6441. "symfony/expression-language": "^4.4|^5.0",
  6442. "symfony/finder": "^4.4|^5.0",
  6443. "symfony/process": "^4.4|^5.0",
  6444. "symfony/routing": "^4.4|^5.0",
  6445. "symfony/stopwatch": "^4.4|^5.0",
  6446. "symfony/translation": "^4.4|^5.0",
  6447. "symfony/translation-contracts": "^1.1|^2",
  6448. "twig/twig": "^2.4|^3.0"
  6449. },
  6450. "suggest": {
  6451. "symfony/browser-kit": "",
  6452. "symfony/config": "",
  6453. "symfony/console": "",
  6454. "symfony/dependency-injection": ""
  6455. },
  6456. "type": "library",
  6457. "extra": {
  6458. "branch-alias": {
  6459. "dev-master": "5.1-dev"
  6460. }
  6461. },
  6462. "autoload": {
  6463. "psr-4": {
  6464. "Symfony\\Component\\HttpKernel\\": ""
  6465. },
  6466. "exclude-from-classmap": [
  6467. "/Tests/"
  6468. ]
  6469. },
  6470. "notification-url": "https://packagist.org/downloads/",
  6471. "license": [
  6472. "MIT"
  6473. ],
  6474. "authors": [
  6475. {
  6476. "name": "Fabien Potencier",
  6477. "email": "fabien@symfony.com"
  6478. },
  6479. {
  6480. "name": "Symfony Community",
  6481. "homepage": "https://symfony.com/contributors"
  6482. }
  6483. ],
  6484. "description": "Symfony HttpKernel Component",
  6485. "homepage": "https://symfony.com",
  6486. "support": {
  6487. "source": "https://github.com/symfony/http-kernel/tree/v5.1.5"
  6488. },
  6489. "funding": [
  6490. {
  6491. "url": "https://symfony.com/sponsor",
  6492. "type": "custom"
  6493. },
  6494. {
  6495. "url": "https://github.com/fabpot",
  6496. "type": "github"
  6497. },
  6498. {
  6499. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6500. "type": "tidelift"
  6501. }
  6502. ],
  6503. "time": "2020-09-02T08:15:18+00:00"
  6504. },
  6505. {
  6506. "name": "symfony/mime",
  6507. "version": "v5.2.1",
  6508. "source": {
  6509. "type": "git",
  6510. "url": "https://github.com/symfony/mime.git",
  6511. "reference": "de97005aef7426ba008c46ba840fc301df577ada"
  6512. },
  6513. "dist": {
  6514. "type": "zip",
  6515. "url": "https://api.github.com/repos/symfony/mime/zipball/de97005aef7426ba008c46ba840fc301df577ada",
  6516. "reference": "de97005aef7426ba008c46ba840fc301df577ada",
  6517. "shasum": ""
  6518. },
  6519. "require": {
  6520. "php": ">=7.2.5",
  6521. "symfony/deprecation-contracts": "^2.1",
  6522. "symfony/polyfill-intl-idn": "^1.10",
  6523. "symfony/polyfill-mbstring": "^1.0",
  6524. "symfony/polyfill-php80": "^1.15"
  6525. },
  6526. "conflict": {
  6527. "symfony/mailer": "<4.4"
  6528. },
  6529. "require-dev": {
  6530. "egulias/email-validator": "^2.1.10",
  6531. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6532. "symfony/dependency-injection": "^4.4|^5.0",
  6533. "symfony/property-access": "^4.4|^5.1",
  6534. "symfony/property-info": "^4.4|^5.1",
  6535. "symfony/serializer": "^5.2"
  6536. },
  6537. "type": "library",
  6538. "autoload": {
  6539. "psr-4": {
  6540. "Symfony\\Component\\Mime\\": ""
  6541. },
  6542. "exclude-from-classmap": [
  6543. "/Tests/"
  6544. ]
  6545. },
  6546. "notification-url": "https://packagist.org/downloads/",
  6547. "license": [
  6548. "MIT"
  6549. ],
  6550. "authors": [
  6551. {
  6552. "name": "Fabien Potencier",
  6553. "email": "fabien@symfony.com"
  6554. },
  6555. {
  6556. "name": "Symfony Community",
  6557. "homepage": "https://symfony.com/contributors"
  6558. }
  6559. ],
  6560. "description": "A library to manipulate MIME messages",
  6561. "homepage": "https://symfony.com",
  6562. "keywords": [
  6563. "mime",
  6564. "mime-type"
  6565. ],
  6566. "support": {
  6567. "source": "https://github.com/symfony/mime/tree/v5.2.1"
  6568. },
  6569. "funding": [
  6570. {
  6571. "url": "https://symfony.com/sponsor",
  6572. "type": "custom"
  6573. },
  6574. {
  6575. "url": "https://github.com/fabpot",
  6576. "type": "github"
  6577. },
  6578. {
  6579. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6580. "type": "tidelift"
  6581. }
  6582. ],
  6583. "time": "2020-12-09T18:54:12+00:00"
  6584. },
  6585. {
  6586. "name": "symfony/polyfill-ctype",
  6587. "version": "v1.22.0",
  6588. "source": {
  6589. "type": "git",
  6590. "url": "https://github.com/symfony/polyfill-ctype.git",
  6591. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  6592. },
  6593. "dist": {
  6594. "type": "zip",
  6595. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  6596. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  6597. "shasum": ""
  6598. },
  6599. "require": {
  6600. "php": ">=7.1"
  6601. },
  6602. "suggest": {
  6603. "ext-ctype": "For best performance"
  6604. },
  6605. "type": "library",
  6606. "extra": {
  6607. "branch-alias": {
  6608. "dev-main": "1.22-dev"
  6609. },
  6610. "thanks": {
  6611. "name": "symfony/polyfill",
  6612. "url": "https://github.com/symfony/polyfill"
  6613. }
  6614. },
  6615. "autoload": {
  6616. "psr-4": {
  6617. "Symfony\\Polyfill\\Ctype\\": ""
  6618. },
  6619. "files": [
  6620. "bootstrap.php"
  6621. ]
  6622. },
  6623. "notification-url": "https://packagist.org/downloads/",
  6624. "license": [
  6625. "MIT"
  6626. ],
  6627. "authors": [
  6628. {
  6629. "name": "Gert de Pagter",
  6630. "email": "BackEndTea@gmail.com"
  6631. },
  6632. {
  6633. "name": "Symfony Community",
  6634. "homepage": "https://symfony.com/contributors"
  6635. }
  6636. ],
  6637. "description": "Symfony polyfill for ctype functions",
  6638. "homepage": "https://symfony.com",
  6639. "keywords": [
  6640. "compatibility",
  6641. "ctype",
  6642. "polyfill",
  6643. "portable"
  6644. ],
  6645. "support": {
  6646. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.0"
  6647. },
  6648. "funding": [
  6649. {
  6650. "url": "https://symfony.com/sponsor",
  6651. "type": "custom"
  6652. },
  6653. {
  6654. "url": "https://github.com/fabpot",
  6655. "type": "github"
  6656. },
  6657. {
  6658. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6659. "type": "tidelift"
  6660. }
  6661. ],
  6662. "time": "2021-01-07T16:49:33+00:00"
  6663. },
  6664. {
  6665. "name": "symfony/polyfill-iconv",
  6666. "version": "v1.22.0",
  6667. "source": {
  6668. "type": "git",
  6669. "url": "https://github.com/symfony/polyfill-iconv.git",
  6670. "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6"
  6671. },
  6672. "dist": {
  6673. "type": "zip",
  6674. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6",
  6675. "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6",
  6676. "shasum": ""
  6677. },
  6678. "require": {
  6679. "php": ">=7.1"
  6680. },
  6681. "suggest": {
  6682. "ext-iconv": "For best performance"
  6683. },
  6684. "type": "library",
  6685. "extra": {
  6686. "branch-alias": {
  6687. "dev-main": "1.22-dev"
  6688. },
  6689. "thanks": {
  6690. "name": "symfony/polyfill",
  6691. "url": "https://github.com/symfony/polyfill"
  6692. }
  6693. },
  6694. "autoload": {
  6695. "psr-4": {
  6696. "Symfony\\Polyfill\\Iconv\\": ""
  6697. },
  6698. "files": [
  6699. "bootstrap.php"
  6700. ]
  6701. },
  6702. "notification-url": "https://packagist.org/downloads/",
  6703. "license": [
  6704. "MIT"
  6705. ],
  6706. "authors": [
  6707. {
  6708. "name": "Nicolas Grekas",
  6709. "email": "p@tchwork.com"
  6710. },
  6711. {
  6712. "name": "Symfony Community",
  6713. "homepage": "https://symfony.com/contributors"
  6714. }
  6715. ],
  6716. "description": "Symfony polyfill for the Iconv extension",
  6717. "homepage": "https://symfony.com",
  6718. "keywords": [
  6719. "compatibility",
  6720. "iconv",
  6721. "polyfill",
  6722. "portable",
  6723. "shim"
  6724. ],
  6725. "support": {
  6726. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.22.0"
  6727. },
  6728. "funding": [
  6729. {
  6730. "url": "https://symfony.com/sponsor",
  6731. "type": "custom"
  6732. },
  6733. {
  6734. "url": "https://github.com/fabpot",
  6735. "type": "github"
  6736. },
  6737. {
  6738. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6739. "type": "tidelift"
  6740. }
  6741. ],
  6742. "time": "2021-01-07T16:49:33+00:00"
  6743. },
  6744. {
  6745. "name": "symfony/polyfill-intl-grapheme",
  6746. "version": "v1.22.0",
  6747. "source": {
  6748. "type": "git",
  6749. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6750. "reference": "267a9adeb8ecb8071040a740930e077cdfb987af"
  6751. },
  6752. "dist": {
  6753. "type": "zip",
  6754. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/267a9adeb8ecb8071040a740930e077cdfb987af",
  6755. "reference": "267a9adeb8ecb8071040a740930e077cdfb987af",
  6756. "shasum": ""
  6757. },
  6758. "require": {
  6759. "php": ">=7.1"
  6760. },
  6761. "suggest": {
  6762. "ext-intl": "For best performance"
  6763. },
  6764. "type": "library",
  6765. "extra": {
  6766. "branch-alias": {
  6767. "dev-main": "1.22-dev"
  6768. },
  6769. "thanks": {
  6770. "name": "symfony/polyfill",
  6771. "url": "https://github.com/symfony/polyfill"
  6772. }
  6773. },
  6774. "autoload": {
  6775. "psr-4": {
  6776. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6777. },
  6778. "files": [
  6779. "bootstrap.php"
  6780. ]
  6781. },
  6782. "notification-url": "https://packagist.org/downloads/",
  6783. "license": [
  6784. "MIT"
  6785. ],
  6786. "authors": [
  6787. {
  6788. "name": "Nicolas Grekas",
  6789. "email": "p@tchwork.com"
  6790. },
  6791. {
  6792. "name": "Symfony Community",
  6793. "homepage": "https://symfony.com/contributors"
  6794. }
  6795. ],
  6796. "description": "Symfony polyfill for intl's grapheme_* functions",
  6797. "homepage": "https://symfony.com",
  6798. "keywords": [
  6799. "compatibility",
  6800. "grapheme",
  6801. "intl",
  6802. "polyfill",
  6803. "portable",
  6804. "shim"
  6805. ],
  6806. "support": {
  6807. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.0"
  6808. },
  6809. "funding": [
  6810. {
  6811. "url": "https://symfony.com/sponsor",
  6812. "type": "custom"
  6813. },
  6814. {
  6815. "url": "https://github.com/fabpot",
  6816. "type": "github"
  6817. },
  6818. {
  6819. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6820. "type": "tidelift"
  6821. }
  6822. ],
  6823. "time": "2021-01-07T16:49:33+00:00"
  6824. },
  6825. {
  6826. "name": "symfony/polyfill-intl-idn",
  6827. "version": "v1.22.0",
  6828. "source": {
  6829. "type": "git",
  6830. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6831. "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44"
  6832. },
  6833. "dist": {
  6834. "type": "zip",
  6835. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
  6836. "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
  6837. "shasum": ""
  6838. },
  6839. "require": {
  6840. "php": ">=7.1",
  6841. "symfony/polyfill-intl-normalizer": "^1.10",
  6842. "symfony/polyfill-php72": "^1.10"
  6843. },
  6844. "suggest": {
  6845. "ext-intl": "For best performance"
  6846. },
  6847. "type": "library",
  6848. "extra": {
  6849. "branch-alias": {
  6850. "dev-main": "1.22-dev"
  6851. },
  6852. "thanks": {
  6853. "name": "symfony/polyfill",
  6854. "url": "https://github.com/symfony/polyfill"
  6855. }
  6856. },
  6857. "autoload": {
  6858. "psr-4": {
  6859. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6860. },
  6861. "files": [
  6862. "bootstrap.php"
  6863. ]
  6864. },
  6865. "notification-url": "https://packagist.org/downloads/",
  6866. "license": [
  6867. "MIT"
  6868. ],
  6869. "authors": [
  6870. {
  6871. "name": "Laurent Bassin",
  6872. "email": "laurent@bassin.info"
  6873. },
  6874. {
  6875. "name": "Trevor Rowbotham",
  6876. "email": "trevor.rowbotham@pm.me"
  6877. },
  6878. {
  6879. "name": "Symfony Community",
  6880. "homepage": "https://symfony.com/contributors"
  6881. }
  6882. ],
  6883. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6884. "homepage": "https://symfony.com",
  6885. "keywords": [
  6886. "compatibility",
  6887. "idn",
  6888. "intl",
  6889. "polyfill",
  6890. "portable",
  6891. "shim"
  6892. ],
  6893. "support": {
  6894. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.0"
  6895. },
  6896. "funding": [
  6897. {
  6898. "url": "https://symfony.com/sponsor",
  6899. "type": "custom"
  6900. },
  6901. {
  6902. "url": "https://github.com/fabpot",
  6903. "type": "github"
  6904. },
  6905. {
  6906. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6907. "type": "tidelift"
  6908. }
  6909. ],
  6910. "time": "2021-01-07T16:49:33+00:00"
  6911. },
  6912. {
  6913. "name": "symfony/polyfill-intl-normalizer",
  6914. "version": "v1.22.0",
  6915. "source": {
  6916. "type": "git",
  6917. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6918. "reference": "6e971c891537eb617a00bb07a43d182a6915faba"
  6919. },
  6920. "dist": {
  6921. "type": "zip",
  6922. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/6e971c891537eb617a00bb07a43d182a6915faba",
  6923. "reference": "6e971c891537eb617a00bb07a43d182a6915faba",
  6924. "shasum": ""
  6925. },
  6926. "require": {
  6927. "php": ">=7.1"
  6928. },
  6929. "suggest": {
  6930. "ext-intl": "For best performance"
  6931. },
  6932. "type": "library",
  6933. "extra": {
  6934. "branch-alias": {
  6935. "dev-main": "1.22-dev"
  6936. },
  6937. "thanks": {
  6938. "name": "symfony/polyfill",
  6939. "url": "https://github.com/symfony/polyfill"
  6940. }
  6941. },
  6942. "autoload": {
  6943. "psr-4": {
  6944. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6945. },
  6946. "files": [
  6947. "bootstrap.php"
  6948. ],
  6949. "classmap": [
  6950. "Resources/stubs"
  6951. ]
  6952. },
  6953. "notification-url": "https://packagist.org/downloads/",
  6954. "license": [
  6955. "MIT"
  6956. ],
  6957. "authors": [
  6958. {
  6959. "name": "Nicolas Grekas",
  6960. "email": "p@tchwork.com"
  6961. },
  6962. {
  6963. "name": "Symfony Community",
  6964. "homepage": "https://symfony.com/contributors"
  6965. }
  6966. ],
  6967. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6968. "homepage": "https://symfony.com",
  6969. "keywords": [
  6970. "compatibility",
  6971. "intl",
  6972. "normalizer",
  6973. "polyfill",
  6974. "portable",
  6975. "shim"
  6976. ],
  6977. "support": {
  6978. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.0"
  6979. },
  6980. "funding": [
  6981. {
  6982. "url": "https://symfony.com/sponsor",
  6983. "type": "custom"
  6984. },
  6985. {
  6986. "url": "https://github.com/fabpot",
  6987. "type": "github"
  6988. },
  6989. {
  6990. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6991. "type": "tidelift"
  6992. }
  6993. ],
  6994. "time": "2021-01-07T17:09:11+00:00"
  6995. },
  6996. {
  6997. "name": "symfony/polyfill-mbstring",
  6998. "version": "v1.22.0",
  6999. "source": {
  7000. "type": "git",
  7001. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7002. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13"
  7003. },
  7004. "dist": {
  7005. "type": "zip",
  7006. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  7007. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  7008. "shasum": ""
  7009. },
  7010. "require": {
  7011. "php": ">=7.1"
  7012. },
  7013. "suggest": {
  7014. "ext-mbstring": "For best performance"
  7015. },
  7016. "type": "library",
  7017. "extra": {
  7018. "branch-alias": {
  7019. "dev-main": "1.22-dev"
  7020. },
  7021. "thanks": {
  7022. "name": "symfony/polyfill",
  7023. "url": "https://github.com/symfony/polyfill"
  7024. }
  7025. },
  7026. "autoload": {
  7027. "psr-4": {
  7028. "Symfony\\Polyfill\\Mbstring\\": ""
  7029. },
  7030. "files": [
  7031. "bootstrap.php"
  7032. ]
  7033. },
  7034. "notification-url": "https://packagist.org/downloads/",
  7035. "license": [
  7036. "MIT"
  7037. ],
  7038. "authors": [
  7039. {
  7040. "name": "Nicolas Grekas",
  7041. "email": "p@tchwork.com"
  7042. },
  7043. {
  7044. "name": "Symfony Community",
  7045. "homepage": "https://symfony.com/contributors"
  7046. }
  7047. ],
  7048. "description": "Symfony polyfill for the Mbstring extension",
  7049. "homepage": "https://symfony.com",
  7050. "keywords": [
  7051. "compatibility",
  7052. "mbstring",
  7053. "polyfill",
  7054. "portable",
  7055. "shim"
  7056. ],
  7057. "support": {
  7058. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.0"
  7059. },
  7060. "funding": [
  7061. {
  7062. "url": "https://symfony.com/sponsor",
  7063. "type": "custom"
  7064. },
  7065. {
  7066. "url": "https://github.com/fabpot",
  7067. "type": "github"
  7068. },
  7069. {
  7070. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7071. "type": "tidelift"
  7072. }
  7073. ],
  7074. "time": "2021-01-07T16:49:33+00:00"
  7075. },
  7076. {
  7077. "name": "symfony/polyfill-php72",
  7078. "version": "v1.22.0",
  7079. "source": {
  7080. "type": "git",
  7081. "url": "https://github.com/symfony/polyfill-php72.git",
  7082. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  7083. },
  7084. "dist": {
  7085. "type": "zip",
  7086. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  7087. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  7088. "shasum": ""
  7089. },
  7090. "require": {
  7091. "php": ">=7.1"
  7092. },
  7093. "type": "library",
  7094. "extra": {
  7095. "branch-alias": {
  7096. "dev-main": "1.22-dev"
  7097. },
  7098. "thanks": {
  7099. "name": "symfony/polyfill",
  7100. "url": "https://github.com/symfony/polyfill"
  7101. }
  7102. },
  7103. "autoload": {
  7104. "psr-4": {
  7105. "Symfony\\Polyfill\\Php72\\": ""
  7106. },
  7107. "files": [
  7108. "bootstrap.php"
  7109. ]
  7110. },
  7111. "notification-url": "https://packagist.org/downloads/",
  7112. "license": [
  7113. "MIT"
  7114. ],
  7115. "authors": [
  7116. {
  7117. "name": "Nicolas Grekas",
  7118. "email": "p@tchwork.com"
  7119. },
  7120. {
  7121. "name": "Symfony Community",
  7122. "homepage": "https://symfony.com/contributors"
  7123. }
  7124. ],
  7125. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7126. "homepage": "https://symfony.com",
  7127. "keywords": [
  7128. "compatibility",
  7129. "polyfill",
  7130. "portable",
  7131. "shim"
  7132. ],
  7133. "support": {
  7134. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.0"
  7135. },
  7136. "funding": [
  7137. {
  7138. "url": "https://symfony.com/sponsor",
  7139. "type": "custom"
  7140. },
  7141. {
  7142. "url": "https://github.com/fabpot",
  7143. "type": "github"
  7144. },
  7145. {
  7146. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7147. "type": "tidelift"
  7148. }
  7149. ],
  7150. "time": "2021-01-07T16:49:33+00:00"
  7151. },
  7152. {
  7153. "name": "symfony/polyfill-php73",
  7154. "version": "v1.22.0",
  7155. "source": {
  7156. "type": "git",
  7157. "url": "https://github.com/symfony/polyfill-php73.git",
  7158. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  7159. },
  7160. "dist": {
  7161. "type": "zip",
  7162. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  7163. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  7164. "shasum": ""
  7165. },
  7166. "require": {
  7167. "php": ">=7.1"
  7168. },
  7169. "type": "library",
  7170. "extra": {
  7171. "branch-alias": {
  7172. "dev-main": "1.22-dev"
  7173. },
  7174. "thanks": {
  7175. "name": "symfony/polyfill",
  7176. "url": "https://github.com/symfony/polyfill"
  7177. }
  7178. },
  7179. "autoload": {
  7180. "psr-4": {
  7181. "Symfony\\Polyfill\\Php73\\": ""
  7182. },
  7183. "files": [
  7184. "bootstrap.php"
  7185. ],
  7186. "classmap": [
  7187. "Resources/stubs"
  7188. ]
  7189. },
  7190. "notification-url": "https://packagist.org/downloads/",
  7191. "license": [
  7192. "MIT"
  7193. ],
  7194. "authors": [
  7195. {
  7196. "name": "Nicolas Grekas",
  7197. "email": "p@tchwork.com"
  7198. },
  7199. {
  7200. "name": "Symfony Community",
  7201. "homepage": "https://symfony.com/contributors"
  7202. }
  7203. ],
  7204. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  7205. "homepage": "https://symfony.com",
  7206. "keywords": [
  7207. "compatibility",
  7208. "polyfill",
  7209. "portable",
  7210. "shim"
  7211. ],
  7212. "support": {
  7213. "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.0"
  7214. },
  7215. "funding": [
  7216. {
  7217. "url": "https://symfony.com/sponsor",
  7218. "type": "custom"
  7219. },
  7220. {
  7221. "url": "https://github.com/fabpot",
  7222. "type": "github"
  7223. },
  7224. {
  7225. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7226. "type": "tidelift"
  7227. }
  7228. ],
  7229. "time": "2021-01-07T16:49:33+00:00"
  7230. },
  7231. {
  7232. "name": "symfony/polyfill-php80",
  7233. "version": "v1.22.0",
  7234. "source": {
  7235. "type": "git",
  7236. "url": "https://github.com/symfony/polyfill-php80.git",
  7237. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  7238. },
  7239. "dist": {
  7240. "type": "zip",
  7241. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  7242. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  7243. "shasum": ""
  7244. },
  7245. "require": {
  7246. "php": ">=7.1"
  7247. },
  7248. "type": "library",
  7249. "extra": {
  7250. "branch-alias": {
  7251. "dev-main": "1.22-dev"
  7252. },
  7253. "thanks": {
  7254. "name": "symfony/polyfill",
  7255. "url": "https://github.com/symfony/polyfill"
  7256. }
  7257. },
  7258. "autoload": {
  7259. "psr-4": {
  7260. "Symfony\\Polyfill\\Php80\\": ""
  7261. },
  7262. "files": [
  7263. "bootstrap.php"
  7264. ],
  7265. "classmap": [
  7266. "Resources/stubs"
  7267. ]
  7268. },
  7269. "notification-url": "https://packagist.org/downloads/",
  7270. "license": [
  7271. "MIT"
  7272. ],
  7273. "authors": [
  7274. {
  7275. "name": "Ion Bazan",
  7276. "email": "ion.bazan@gmail.com"
  7277. },
  7278. {
  7279. "name": "Nicolas Grekas",
  7280. "email": "p@tchwork.com"
  7281. },
  7282. {
  7283. "name": "Symfony Community",
  7284. "homepage": "https://symfony.com/contributors"
  7285. }
  7286. ],
  7287. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7288. "homepage": "https://symfony.com",
  7289. "keywords": [
  7290. "compatibility",
  7291. "polyfill",
  7292. "portable",
  7293. "shim"
  7294. ],
  7295. "support": {
  7296. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.0"
  7297. },
  7298. "funding": [
  7299. {
  7300. "url": "https://symfony.com/sponsor",
  7301. "type": "custom"
  7302. },
  7303. {
  7304. "url": "https://github.com/fabpot",
  7305. "type": "github"
  7306. },
  7307. {
  7308. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7309. "type": "tidelift"
  7310. }
  7311. ],
  7312. "time": "2021-01-07T16:49:33+00:00"
  7313. },
  7314. {
  7315. "name": "symfony/process",
  7316. "version": "v5.2.1",
  7317. "source": {
  7318. "type": "git",
  7319. "url": "https://github.com/symfony/process.git",
  7320. "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd"
  7321. },
  7322. "dist": {
  7323. "type": "zip",
  7324. "url": "https://api.github.com/repos/symfony/process/zipball/bd8815b8b6705298beaa384f04fabd459c10bedd",
  7325. "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd",
  7326. "shasum": ""
  7327. },
  7328. "require": {
  7329. "php": ">=7.2.5",
  7330. "symfony/polyfill-php80": "^1.15"
  7331. },
  7332. "type": "library",
  7333. "autoload": {
  7334. "psr-4": {
  7335. "Symfony\\Component\\Process\\": ""
  7336. },
  7337. "exclude-from-classmap": [
  7338. "/Tests/"
  7339. ]
  7340. },
  7341. "notification-url": "https://packagist.org/downloads/",
  7342. "license": [
  7343. "MIT"
  7344. ],
  7345. "authors": [
  7346. {
  7347. "name": "Fabien Potencier",
  7348. "email": "fabien@symfony.com"
  7349. },
  7350. {
  7351. "name": "Symfony Community",
  7352. "homepage": "https://symfony.com/contributors"
  7353. }
  7354. ],
  7355. "description": "Symfony Process Component",
  7356. "homepage": "https://symfony.com",
  7357. "support": {
  7358. "source": "https://github.com/symfony/process/tree/v5.2.1"
  7359. },
  7360. "funding": [
  7361. {
  7362. "url": "https://symfony.com/sponsor",
  7363. "type": "custom"
  7364. },
  7365. {
  7366. "url": "https://github.com/fabpot",
  7367. "type": "github"
  7368. },
  7369. {
  7370. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7371. "type": "tidelift"
  7372. }
  7373. ],
  7374. "time": "2020-12-08T17:03:37+00:00"
  7375. },
  7376. {
  7377. "name": "symfony/psr-http-message-bridge",
  7378. "version": "v2.0.2",
  7379. "source": {
  7380. "type": "git",
  7381. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7382. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e"
  7383. },
  7384. "dist": {
  7385. "type": "zip",
  7386. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  7387. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  7388. "shasum": ""
  7389. },
  7390. "require": {
  7391. "php": ">=7.1",
  7392. "psr/http-message": "^1.0",
  7393. "symfony/http-foundation": "^4.4 || ^5.0"
  7394. },
  7395. "require-dev": {
  7396. "nyholm/psr7": "^1.1",
  7397. "symfony/phpunit-bridge": "^4.4 || ^5.0"
  7398. },
  7399. "suggest": {
  7400. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  7401. },
  7402. "type": "symfony-bridge",
  7403. "extra": {
  7404. "branch-alias": {
  7405. "dev-master": "2.0-dev"
  7406. }
  7407. },
  7408. "autoload": {
  7409. "psr-4": {
  7410. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7411. },
  7412. "exclude-from-classmap": [
  7413. "/Tests/"
  7414. ]
  7415. },
  7416. "notification-url": "https://packagist.org/downloads/",
  7417. "license": [
  7418. "MIT"
  7419. ],
  7420. "authors": [
  7421. {
  7422. "name": "Fabien Potencier",
  7423. "email": "fabien@symfony.com"
  7424. },
  7425. {
  7426. "name": "Symfony Community",
  7427. "homepage": "http://symfony.com/contributors"
  7428. }
  7429. ],
  7430. "description": "PSR HTTP message bridge",
  7431. "homepage": "http://symfony.com",
  7432. "keywords": [
  7433. "http",
  7434. "http-message",
  7435. "psr-17",
  7436. "psr-7"
  7437. ],
  7438. "support": {
  7439. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  7440. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.0.2"
  7441. },
  7442. "funding": [
  7443. {
  7444. "url": "https://symfony.com/sponsor",
  7445. "type": "custom"
  7446. },
  7447. {
  7448. "url": "https://github.com/fabpot",
  7449. "type": "github"
  7450. },
  7451. {
  7452. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7453. "type": "tidelift"
  7454. }
  7455. ],
  7456. "time": "2020-09-29T08:17:46+00:00"
  7457. },
  7458. {
  7459. "name": "symfony/routing",
  7460. "version": "v5.2.1",
  7461. "source": {
  7462. "type": "git",
  7463. "url": "https://github.com/symfony/routing.git",
  7464. "reference": "934ac2720dcc878a47a45c986b483a7ee7193620"
  7465. },
  7466. "dist": {
  7467. "type": "zip",
  7468. "url": "https://api.github.com/repos/symfony/routing/zipball/934ac2720dcc878a47a45c986b483a7ee7193620",
  7469. "reference": "934ac2720dcc878a47a45c986b483a7ee7193620",
  7470. "shasum": ""
  7471. },
  7472. "require": {
  7473. "php": ">=7.2.5",
  7474. "symfony/deprecation-contracts": "^2.1",
  7475. "symfony/polyfill-php80": "^1.15"
  7476. },
  7477. "conflict": {
  7478. "symfony/config": "<5.0",
  7479. "symfony/dependency-injection": "<4.4",
  7480. "symfony/yaml": "<4.4"
  7481. },
  7482. "require-dev": {
  7483. "doctrine/annotations": "^1.7",
  7484. "psr/log": "~1.0",
  7485. "symfony/config": "^5.0",
  7486. "symfony/dependency-injection": "^4.4|^5.0",
  7487. "symfony/expression-language": "^4.4|^5.0",
  7488. "symfony/http-foundation": "^4.4|^5.0",
  7489. "symfony/yaml": "^4.4|^5.0"
  7490. },
  7491. "suggest": {
  7492. "doctrine/annotations": "For using the annotation loader",
  7493. "symfony/config": "For using the all-in-one router or any loader",
  7494. "symfony/expression-language": "For using expression matching",
  7495. "symfony/http-foundation": "For using a Symfony Request object",
  7496. "symfony/yaml": "For using the YAML loader"
  7497. },
  7498. "type": "library",
  7499. "autoload": {
  7500. "psr-4": {
  7501. "Symfony\\Component\\Routing\\": ""
  7502. },
  7503. "exclude-from-classmap": [
  7504. "/Tests/"
  7505. ]
  7506. },
  7507. "notification-url": "https://packagist.org/downloads/",
  7508. "license": [
  7509. "MIT"
  7510. ],
  7511. "authors": [
  7512. {
  7513. "name": "Fabien Potencier",
  7514. "email": "fabien@symfony.com"
  7515. },
  7516. {
  7517. "name": "Symfony Community",
  7518. "homepage": "https://symfony.com/contributors"
  7519. }
  7520. ],
  7521. "description": "Symfony Routing Component",
  7522. "homepage": "https://symfony.com",
  7523. "keywords": [
  7524. "router",
  7525. "routing",
  7526. "uri",
  7527. "url"
  7528. ],
  7529. "support": {
  7530. "source": "https://github.com/symfony/routing/tree/v5.2.1"
  7531. },
  7532. "funding": [
  7533. {
  7534. "url": "https://symfony.com/sponsor",
  7535. "type": "custom"
  7536. },
  7537. {
  7538. "url": "https://github.com/fabpot",
  7539. "type": "github"
  7540. },
  7541. {
  7542. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7543. "type": "tidelift"
  7544. }
  7545. ],
  7546. "time": "2020-12-08T17:03:37+00:00"
  7547. },
  7548. {
  7549. "name": "symfony/service-contracts",
  7550. "version": "v2.2.0",
  7551. "source": {
  7552. "type": "git",
  7553. "url": "https://github.com/symfony/service-contracts.git",
  7554. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  7555. },
  7556. "dist": {
  7557. "type": "zip",
  7558. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  7559. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  7560. "shasum": ""
  7561. },
  7562. "require": {
  7563. "php": ">=7.2.5",
  7564. "psr/container": "^1.0"
  7565. },
  7566. "suggest": {
  7567. "symfony/service-implementation": ""
  7568. },
  7569. "type": "library",
  7570. "extra": {
  7571. "branch-alias": {
  7572. "dev-master": "2.2-dev"
  7573. },
  7574. "thanks": {
  7575. "name": "symfony/contracts",
  7576. "url": "https://github.com/symfony/contracts"
  7577. }
  7578. },
  7579. "autoload": {
  7580. "psr-4": {
  7581. "Symfony\\Contracts\\Service\\": ""
  7582. }
  7583. },
  7584. "notification-url": "https://packagist.org/downloads/",
  7585. "license": [
  7586. "MIT"
  7587. ],
  7588. "authors": [
  7589. {
  7590. "name": "Nicolas Grekas",
  7591. "email": "p@tchwork.com"
  7592. },
  7593. {
  7594. "name": "Symfony Community",
  7595. "homepage": "https://symfony.com/contributors"
  7596. }
  7597. ],
  7598. "description": "Generic abstractions related to writing services",
  7599. "homepage": "https://symfony.com",
  7600. "keywords": [
  7601. "abstractions",
  7602. "contracts",
  7603. "decoupling",
  7604. "interfaces",
  7605. "interoperability",
  7606. "standards"
  7607. ],
  7608. "support": {
  7609. "source": "https://github.com/symfony/service-contracts/tree/master"
  7610. },
  7611. "funding": [
  7612. {
  7613. "url": "https://symfony.com/sponsor",
  7614. "type": "custom"
  7615. },
  7616. {
  7617. "url": "https://github.com/fabpot",
  7618. "type": "github"
  7619. },
  7620. {
  7621. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7622. "type": "tidelift"
  7623. }
  7624. ],
  7625. "time": "2020-09-07T11:33:47+00:00"
  7626. },
  7627. {
  7628. "name": "symfony/string",
  7629. "version": "v5.2.1",
  7630. "source": {
  7631. "type": "git",
  7632. "url": "https://github.com/symfony/string.git",
  7633. "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed"
  7634. },
  7635. "dist": {
  7636. "type": "zip",
  7637. "url": "https://api.github.com/repos/symfony/string/zipball/5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
  7638. "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
  7639. "shasum": ""
  7640. },
  7641. "require": {
  7642. "php": ">=7.2.5",
  7643. "symfony/polyfill-ctype": "~1.8",
  7644. "symfony/polyfill-intl-grapheme": "~1.0",
  7645. "symfony/polyfill-intl-normalizer": "~1.0",
  7646. "symfony/polyfill-mbstring": "~1.0",
  7647. "symfony/polyfill-php80": "~1.15"
  7648. },
  7649. "require-dev": {
  7650. "symfony/error-handler": "^4.4|^5.0",
  7651. "symfony/http-client": "^4.4|^5.0",
  7652. "symfony/translation-contracts": "^1.1|^2",
  7653. "symfony/var-exporter": "^4.4|^5.0"
  7654. },
  7655. "type": "library",
  7656. "autoload": {
  7657. "psr-4": {
  7658. "Symfony\\Component\\String\\": ""
  7659. },
  7660. "files": [
  7661. "Resources/functions.php"
  7662. ],
  7663. "exclude-from-classmap": [
  7664. "/Tests/"
  7665. ]
  7666. },
  7667. "notification-url": "https://packagist.org/downloads/",
  7668. "license": [
  7669. "MIT"
  7670. ],
  7671. "authors": [
  7672. {
  7673. "name": "Nicolas Grekas",
  7674. "email": "p@tchwork.com"
  7675. },
  7676. {
  7677. "name": "Symfony Community",
  7678. "homepage": "https://symfony.com/contributors"
  7679. }
  7680. ],
  7681. "description": "Symfony String component",
  7682. "homepage": "https://symfony.com",
  7683. "keywords": [
  7684. "grapheme",
  7685. "i18n",
  7686. "string",
  7687. "unicode",
  7688. "utf-8",
  7689. "utf8"
  7690. ],
  7691. "support": {
  7692. "source": "https://github.com/symfony/string/tree/v5.2.1"
  7693. },
  7694. "funding": [
  7695. {
  7696. "url": "https://symfony.com/sponsor",
  7697. "type": "custom"
  7698. },
  7699. {
  7700. "url": "https://github.com/fabpot",
  7701. "type": "github"
  7702. },
  7703. {
  7704. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7705. "type": "tidelift"
  7706. }
  7707. ],
  7708. "time": "2020-12-05T07:33:16+00:00"
  7709. },
  7710. {
  7711. "name": "symfony/translation",
  7712. "version": "v5.2.1",
  7713. "source": {
  7714. "type": "git",
  7715. "url": "https://github.com/symfony/translation.git",
  7716. "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70"
  7717. },
  7718. "dist": {
  7719. "type": "zip",
  7720. "url": "https://api.github.com/repos/symfony/translation/zipball/a04209ba0d1391c828e5b2373181dac63c52ee70",
  7721. "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70",
  7722. "shasum": ""
  7723. },
  7724. "require": {
  7725. "php": ">=7.2.5",
  7726. "symfony/polyfill-mbstring": "~1.0",
  7727. "symfony/polyfill-php80": "^1.15",
  7728. "symfony/translation-contracts": "^2.3"
  7729. },
  7730. "conflict": {
  7731. "symfony/config": "<4.4",
  7732. "symfony/dependency-injection": "<5.0",
  7733. "symfony/http-kernel": "<5.0",
  7734. "symfony/twig-bundle": "<5.0",
  7735. "symfony/yaml": "<4.4"
  7736. },
  7737. "provide": {
  7738. "symfony/translation-implementation": "2.0"
  7739. },
  7740. "require-dev": {
  7741. "psr/log": "~1.0",
  7742. "symfony/config": "^4.4|^5.0",
  7743. "symfony/console": "^4.4|^5.0",
  7744. "symfony/dependency-injection": "^5.0",
  7745. "symfony/finder": "^4.4|^5.0",
  7746. "symfony/http-kernel": "^5.0",
  7747. "symfony/intl": "^4.4|^5.0",
  7748. "symfony/service-contracts": "^1.1.2|^2",
  7749. "symfony/yaml": "^4.4|^5.0"
  7750. },
  7751. "suggest": {
  7752. "psr/log-implementation": "To use logging capability in translator",
  7753. "symfony/config": "",
  7754. "symfony/yaml": ""
  7755. },
  7756. "type": "library",
  7757. "autoload": {
  7758. "files": [
  7759. "Resources/functions.php"
  7760. ],
  7761. "psr-4": {
  7762. "Symfony\\Component\\Translation\\": ""
  7763. },
  7764. "exclude-from-classmap": [
  7765. "/Tests/"
  7766. ]
  7767. },
  7768. "notification-url": "https://packagist.org/downloads/",
  7769. "license": [
  7770. "MIT"
  7771. ],
  7772. "authors": [
  7773. {
  7774. "name": "Fabien Potencier",
  7775. "email": "fabien@symfony.com"
  7776. },
  7777. {
  7778. "name": "Symfony Community",
  7779. "homepage": "https://symfony.com/contributors"
  7780. }
  7781. ],
  7782. "description": "Symfony Translation Component",
  7783. "homepage": "https://symfony.com",
  7784. "support": {
  7785. "source": "https://github.com/symfony/translation/tree/v5.2.1"
  7786. },
  7787. "funding": [
  7788. {
  7789. "url": "https://symfony.com/sponsor",
  7790. "type": "custom"
  7791. },
  7792. {
  7793. "url": "https://github.com/fabpot",
  7794. "type": "github"
  7795. },
  7796. {
  7797. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7798. "type": "tidelift"
  7799. }
  7800. ],
  7801. "time": "2020-12-08T17:03:37+00:00"
  7802. },
  7803. {
  7804. "name": "symfony/translation-contracts",
  7805. "version": "v2.3.0",
  7806. "source": {
  7807. "type": "git",
  7808. "url": "https://github.com/symfony/translation-contracts.git",
  7809. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  7810. },
  7811. "dist": {
  7812. "type": "zip",
  7813. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  7814. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  7815. "shasum": ""
  7816. },
  7817. "require": {
  7818. "php": ">=7.2.5"
  7819. },
  7820. "suggest": {
  7821. "symfony/translation-implementation": ""
  7822. },
  7823. "type": "library",
  7824. "extra": {
  7825. "branch-alias": {
  7826. "dev-master": "2.3-dev"
  7827. },
  7828. "thanks": {
  7829. "name": "symfony/contracts",
  7830. "url": "https://github.com/symfony/contracts"
  7831. }
  7832. },
  7833. "autoload": {
  7834. "psr-4": {
  7835. "Symfony\\Contracts\\Translation\\": ""
  7836. }
  7837. },
  7838. "notification-url": "https://packagist.org/downloads/",
  7839. "license": [
  7840. "MIT"
  7841. ],
  7842. "authors": [
  7843. {
  7844. "name": "Nicolas Grekas",
  7845. "email": "p@tchwork.com"
  7846. },
  7847. {
  7848. "name": "Symfony Community",
  7849. "homepage": "https://symfony.com/contributors"
  7850. }
  7851. ],
  7852. "description": "Generic abstractions related to translation",
  7853. "homepage": "https://symfony.com",
  7854. "keywords": [
  7855. "abstractions",
  7856. "contracts",
  7857. "decoupling",
  7858. "interfaces",
  7859. "interoperability",
  7860. "standards"
  7861. ],
  7862. "support": {
  7863. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  7864. },
  7865. "funding": [
  7866. {
  7867. "url": "https://symfony.com/sponsor",
  7868. "type": "custom"
  7869. },
  7870. {
  7871. "url": "https://github.com/fabpot",
  7872. "type": "github"
  7873. },
  7874. {
  7875. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7876. "type": "tidelift"
  7877. }
  7878. ],
  7879. "time": "2020-09-28T13:05:58+00:00"
  7880. },
  7881. {
  7882. "name": "symfony/var-dumper",
  7883. "version": "v5.2.1",
  7884. "source": {
  7885. "type": "git",
  7886. "url": "https://github.com/symfony/var-dumper.git",
  7887. "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089"
  7888. },
  7889. "dist": {
  7890. "type": "zip",
  7891. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/13e7e882eaa55863faa7c4ad7c60f12f1a8b5089",
  7892. "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089",
  7893. "shasum": ""
  7894. },
  7895. "require": {
  7896. "php": ">=7.2.5",
  7897. "symfony/polyfill-mbstring": "~1.0",
  7898. "symfony/polyfill-php80": "^1.15"
  7899. },
  7900. "conflict": {
  7901. "phpunit/phpunit": "<5.4.3",
  7902. "symfony/console": "<4.4"
  7903. },
  7904. "require-dev": {
  7905. "ext-iconv": "*",
  7906. "symfony/console": "^4.4|^5.0",
  7907. "symfony/process": "^4.4|^5.0",
  7908. "twig/twig": "^2.4|^3.0"
  7909. },
  7910. "suggest": {
  7911. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7912. "ext-intl": "To show region name in time zone dump",
  7913. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7914. },
  7915. "bin": [
  7916. "Resources/bin/var-dump-server"
  7917. ],
  7918. "type": "library",
  7919. "autoload": {
  7920. "files": [
  7921. "Resources/functions/dump.php"
  7922. ],
  7923. "psr-4": {
  7924. "Symfony\\Component\\VarDumper\\": ""
  7925. },
  7926. "exclude-from-classmap": [
  7927. "/Tests/"
  7928. ]
  7929. },
  7930. "notification-url": "https://packagist.org/downloads/",
  7931. "license": [
  7932. "MIT"
  7933. ],
  7934. "authors": [
  7935. {
  7936. "name": "Nicolas Grekas",
  7937. "email": "p@tchwork.com"
  7938. },
  7939. {
  7940. "name": "Symfony Community",
  7941. "homepage": "https://symfony.com/contributors"
  7942. }
  7943. ],
  7944. "description": "Symfony mechanism for exploring and dumping PHP variables",
  7945. "homepage": "https://symfony.com",
  7946. "keywords": [
  7947. "debug",
  7948. "dump"
  7949. ],
  7950. "support": {
  7951. "source": "https://github.com/symfony/var-dumper/tree/v5.2.1"
  7952. },
  7953. "funding": [
  7954. {
  7955. "url": "https://symfony.com/sponsor",
  7956. "type": "custom"
  7957. },
  7958. {
  7959. "url": "https://github.com/fabpot",
  7960. "type": "github"
  7961. },
  7962. {
  7963. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7964. "type": "tidelift"
  7965. }
  7966. ],
  7967. "time": "2020-12-16T17:02:19+00:00"
  7968. },
  7969. {
  7970. "name": "tightenco/collect",
  7971. "version": "v5.6.33",
  7972. "source": {
  7973. "type": "git",
  7974. "url": "https://github.com/tighten/collect.git",
  7975. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  7976. },
  7977. "dist": {
  7978. "type": "zip",
  7979. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  7980. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  7981. "shasum": ""
  7982. },
  7983. "require": {
  7984. "php": ">=7.1.3",
  7985. "symfony/var-dumper": ">=3.1.10"
  7986. },
  7987. "require-dev": {
  7988. "mockery/mockery": "~1.0",
  7989. "nesbot/carbon": "~1.20",
  7990. "phpunit/phpunit": "~7.0"
  7991. },
  7992. "type": "library",
  7993. "autoload": {
  7994. "files": [
  7995. "src/Collect/Support/helpers.php",
  7996. "src/Collect/Support/alias.php"
  7997. ],
  7998. "psr-4": {
  7999. "Tightenco\\Collect\\": "src/Collect"
  8000. }
  8001. },
  8002. "notification-url": "https://packagist.org/downloads/",
  8003. "license": [
  8004. "MIT"
  8005. ],
  8006. "authors": [
  8007. {
  8008. "name": "Taylor Otwell",
  8009. "email": "taylorotwell@gmail.com"
  8010. }
  8011. ],
  8012. "description": "Collect - Illuminate Collections as a separate package.",
  8013. "keywords": [
  8014. "collection",
  8015. "laravel"
  8016. ],
  8017. "support": {
  8018. "issues": "https://github.com/tighten/collect/issues",
  8019. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  8020. },
  8021. "time": "2018-08-09T16:56:26+00:00"
  8022. },
  8023. {
  8024. "name": "tijsverkoyen/css-to-inline-styles",
  8025. "version": "2.2.3",
  8026. "source": {
  8027. "type": "git",
  8028. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8029. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  8030. },
  8031. "dist": {
  8032. "type": "zip",
  8033. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  8034. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  8035. "shasum": ""
  8036. },
  8037. "require": {
  8038. "ext-dom": "*",
  8039. "ext-libxml": "*",
  8040. "php": "^5.5 || ^7.0 || ^8.0",
  8041. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  8042. },
  8043. "require-dev": {
  8044. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  8045. },
  8046. "type": "library",
  8047. "extra": {
  8048. "branch-alias": {
  8049. "dev-master": "2.2.x-dev"
  8050. }
  8051. },
  8052. "autoload": {
  8053. "psr-4": {
  8054. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8055. }
  8056. },
  8057. "notification-url": "https://packagist.org/downloads/",
  8058. "license": [
  8059. "BSD-3-Clause"
  8060. ],
  8061. "authors": [
  8062. {
  8063. "name": "Tijs Verkoyen",
  8064. "email": "css_to_inline_styles@verkoyen.eu",
  8065. "role": "Developer"
  8066. }
  8067. ],
  8068. "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.",
  8069. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8070. "support": {
  8071. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8072. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  8073. },
  8074. "time": "2020-07-13T06:12:54+00:00"
  8075. },
  8076. {
  8077. "name": "vlucas/phpdotenv",
  8078. "version": "v5.3.0",
  8079. "source": {
  8080. "type": "git",
  8081. "url": "https://github.com/vlucas/phpdotenv.git",
  8082. "reference": "b3eac5c7ac896e52deab4a99068e3f4ab12d9e56"
  8083. },
  8084. "dist": {
  8085. "type": "zip",
  8086. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/b3eac5c7ac896e52deab4a99068e3f4ab12d9e56",
  8087. "reference": "b3eac5c7ac896e52deab4a99068e3f4ab12d9e56",
  8088. "shasum": ""
  8089. },
  8090. "require": {
  8091. "ext-pcre": "*",
  8092. "graham-campbell/result-type": "^1.0.1",
  8093. "php": "^7.1.3 || ^8.0",
  8094. "phpoption/phpoption": "^1.7.4",
  8095. "symfony/polyfill-ctype": "^1.17",
  8096. "symfony/polyfill-mbstring": "^1.17",
  8097. "symfony/polyfill-php80": "^1.17"
  8098. },
  8099. "require-dev": {
  8100. "bamarni/composer-bin-plugin": "^1.4.1",
  8101. "ext-filter": "*",
  8102. "phpunit/phpunit": "^7.5.20 || ^8.5.14 || ^9.5.1"
  8103. },
  8104. "suggest": {
  8105. "ext-filter": "Required to use the boolean validator."
  8106. },
  8107. "type": "library",
  8108. "extra": {
  8109. "branch-alias": {
  8110. "dev-master": "5.3-dev"
  8111. }
  8112. },
  8113. "autoload": {
  8114. "psr-4": {
  8115. "Dotenv\\": "src/"
  8116. }
  8117. },
  8118. "notification-url": "https://packagist.org/downloads/",
  8119. "license": [
  8120. "BSD-3-Clause"
  8121. ],
  8122. "authors": [
  8123. {
  8124. "name": "Graham Campbell",
  8125. "email": "graham@alt-three.com",
  8126. "homepage": "https://gjcampbell.co.uk/"
  8127. },
  8128. {
  8129. "name": "Vance Lucas",
  8130. "email": "vance@vancelucas.com",
  8131. "homepage": "https://vancelucas.com/"
  8132. }
  8133. ],
  8134. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8135. "keywords": [
  8136. "dotenv",
  8137. "env",
  8138. "environment"
  8139. ],
  8140. "support": {
  8141. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8142. "source": "https://github.com/vlucas/phpdotenv/tree/v5.3.0"
  8143. },
  8144. "funding": [
  8145. {
  8146. "url": "https://github.com/GrahamCampbell",
  8147. "type": "github"
  8148. },
  8149. {
  8150. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8151. "type": "tidelift"
  8152. }
  8153. ],
  8154. "time": "2021-01-20T15:23:13+00:00"
  8155. },
  8156. {
  8157. "name": "voku/portable-ascii",
  8158. "version": "1.5.6",
  8159. "source": {
  8160. "type": "git",
  8161. "url": "https://github.com/voku/portable-ascii.git",
  8162. "reference": "80953678b19901e5165c56752d087fc11526017c"
  8163. },
  8164. "dist": {
  8165. "type": "zip",
  8166. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  8167. "reference": "80953678b19901e5165c56752d087fc11526017c",
  8168. "shasum": ""
  8169. },
  8170. "require": {
  8171. "php": ">=7.0.0"
  8172. },
  8173. "require-dev": {
  8174. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8175. },
  8176. "suggest": {
  8177. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8178. },
  8179. "type": "library",
  8180. "autoload": {
  8181. "psr-4": {
  8182. "voku\\": "src/voku/"
  8183. }
  8184. },
  8185. "notification-url": "https://packagist.org/downloads/",
  8186. "license": [
  8187. "MIT"
  8188. ],
  8189. "authors": [
  8190. {
  8191. "name": "Lars Moelleken",
  8192. "homepage": "http://www.moelleken.org/"
  8193. }
  8194. ],
  8195. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8196. "homepage": "https://github.com/voku/portable-ascii",
  8197. "keywords": [
  8198. "ascii",
  8199. "clean",
  8200. "php"
  8201. ],
  8202. "support": {
  8203. "issues": "https://github.com/voku/portable-ascii/issues",
  8204. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  8205. },
  8206. "funding": [
  8207. {
  8208. "url": "https://www.paypal.me/moelleken",
  8209. "type": "custom"
  8210. },
  8211. {
  8212. "url": "https://github.com/voku",
  8213. "type": "github"
  8214. },
  8215. {
  8216. "url": "https://opencollective.com/portable-ascii",
  8217. "type": "open_collective"
  8218. },
  8219. {
  8220. "url": "https://www.patreon.com/voku",
  8221. "type": "patreon"
  8222. },
  8223. {
  8224. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8225. "type": "tidelift"
  8226. }
  8227. ],
  8228. "time": "2020-11-12T00:07:28+00:00"
  8229. },
  8230. {
  8231. "name": "webmozart/assert",
  8232. "version": "1.9.1",
  8233. "source": {
  8234. "type": "git",
  8235. "url": "https://github.com/webmozarts/assert.git",
  8236. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  8237. },
  8238. "dist": {
  8239. "type": "zip",
  8240. "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8241. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8242. "shasum": ""
  8243. },
  8244. "require": {
  8245. "php": "^5.3.3 || ^7.0 || ^8.0",
  8246. "symfony/polyfill-ctype": "^1.8"
  8247. },
  8248. "conflict": {
  8249. "phpstan/phpstan": "<0.12.20",
  8250. "vimeo/psalm": "<3.9.1"
  8251. },
  8252. "require-dev": {
  8253. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  8254. },
  8255. "type": "library",
  8256. "autoload": {
  8257. "psr-4": {
  8258. "Webmozart\\Assert\\": "src/"
  8259. }
  8260. },
  8261. "notification-url": "https://packagist.org/downloads/",
  8262. "license": [
  8263. "MIT"
  8264. ],
  8265. "authors": [
  8266. {
  8267. "name": "Bernhard Schussek",
  8268. "email": "bschussek@gmail.com"
  8269. }
  8270. ],
  8271. "description": "Assertions to validate method input/output with nice error messages.",
  8272. "keywords": [
  8273. "assert",
  8274. "check",
  8275. "validate"
  8276. ],
  8277. "support": {
  8278. "issues": "https://github.com/webmozarts/assert/issues",
  8279. "source": "https://github.com/webmozarts/assert/tree/1.9.1"
  8280. },
  8281. "time": "2020-07-08T17:02:28+00:00"
  8282. }
  8283. ],
  8284. "packages-dev": [
  8285. {
  8286. "name": "brianium/paratest",
  8287. "version": "v6.1.2",
  8288. "source": {
  8289. "type": "git",
  8290. "url": "https://github.com/paratestphp/paratest.git",
  8291. "reference": "235db99a43401d68fdc4495b20b49291ea2e767d"
  8292. },
  8293. "dist": {
  8294. "type": "zip",
  8295. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/235db99a43401d68fdc4495b20b49291ea2e767d",
  8296. "reference": "235db99a43401d68fdc4495b20b49291ea2e767d",
  8297. "shasum": ""
  8298. },
  8299. "require": {
  8300. "ext-dom": "*",
  8301. "ext-pcre": "*",
  8302. "ext-reflection": "*",
  8303. "ext-simplexml": "*",
  8304. "php": "^7.3 || ^8.0",
  8305. "phpunit/php-code-coverage": "^9.2.5",
  8306. "phpunit/php-file-iterator": "^3.0.5",
  8307. "phpunit/php-timer": "^5.0.3",
  8308. "phpunit/phpunit": "^9.5.0",
  8309. "sebastian/environment": "^5.1.3",
  8310. "symfony/console": "^4.4 || ^5.2",
  8311. "symfony/process": "^4.4 || ^5.2"
  8312. },
  8313. "require-dev": {
  8314. "doctrine/coding-standard": "^8.2.0",
  8315. "ekino/phpstan-banned-code": "^0.3.1",
  8316. "ergebnis/phpstan-rules": "^0.15.3",
  8317. "ext-posix": "*",
  8318. "infection/infection": "^0.18.2",
  8319. "phpstan/phpstan": "^0.12.58",
  8320. "phpstan/phpstan-deprecation-rules": "^0.12.5",
  8321. "phpstan/phpstan-phpunit": "^0.12.16",
  8322. "phpstan/phpstan-strict-rules": "^0.12.5",
  8323. "squizlabs/php_codesniffer": "^3.5.8",
  8324. "symfony/filesystem": "^5.2.0",
  8325. "thecodingmachine/phpstan-strict-rules": "^0.12.1",
  8326. "vimeo/psalm": "^4.3.1"
  8327. },
  8328. "bin": [
  8329. "bin/paratest"
  8330. ],
  8331. "type": "library",
  8332. "autoload": {
  8333. "psr-4": {
  8334. "ParaTest\\": [
  8335. "src/"
  8336. ]
  8337. }
  8338. },
  8339. "notification-url": "https://packagist.org/downloads/",
  8340. "license": [
  8341. "MIT"
  8342. ],
  8343. "authors": [
  8344. {
  8345. "name": "Brian Scaturro",
  8346. "email": "scaturrob@gmail.com",
  8347. "homepage": "http://brianscaturro.com",
  8348. "role": "Lead"
  8349. }
  8350. ],
  8351. "description": "Parallel testing for PHP",
  8352. "homepage": "https://github.com/paratestphp/paratest",
  8353. "keywords": [
  8354. "concurrent",
  8355. "parallel",
  8356. "phpunit",
  8357. "testing"
  8358. ],
  8359. "support": {
  8360. "issues": "https://github.com/paratestphp/paratest/issues",
  8361. "source": "https://github.com/paratestphp/paratest/tree/v6.1.2"
  8362. },
  8363. "time": "2020-12-15T11:41:54+00:00"
  8364. },
  8365. {
  8366. "name": "doctrine/instantiator",
  8367. "version": "1.4.0",
  8368. "source": {
  8369. "type": "git",
  8370. "url": "https://github.com/doctrine/instantiator.git",
  8371. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8372. },
  8373. "dist": {
  8374. "type": "zip",
  8375. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8376. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8377. "shasum": ""
  8378. },
  8379. "require": {
  8380. "php": "^7.1 || ^8.0"
  8381. },
  8382. "require-dev": {
  8383. "doctrine/coding-standard": "^8.0",
  8384. "ext-pdo": "*",
  8385. "ext-phar": "*",
  8386. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8387. "phpstan/phpstan": "^0.12",
  8388. "phpstan/phpstan-phpunit": "^0.12",
  8389. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8390. },
  8391. "type": "library",
  8392. "autoload": {
  8393. "psr-4": {
  8394. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8395. }
  8396. },
  8397. "notification-url": "https://packagist.org/downloads/",
  8398. "license": [
  8399. "MIT"
  8400. ],
  8401. "authors": [
  8402. {
  8403. "name": "Marco Pivetta",
  8404. "email": "ocramius@gmail.com",
  8405. "homepage": "https://ocramius.github.io/"
  8406. }
  8407. ],
  8408. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8409. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8410. "keywords": [
  8411. "constructor",
  8412. "instantiate"
  8413. ],
  8414. "support": {
  8415. "issues": "https://github.com/doctrine/instantiator/issues",
  8416. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8417. },
  8418. "funding": [
  8419. {
  8420. "url": "https://www.doctrine-project.org/sponsorship.html",
  8421. "type": "custom"
  8422. },
  8423. {
  8424. "url": "https://www.patreon.com/phpdoctrine",
  8425. "type": "patreon"
  8426. },
  8427. {
  8428. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8429. "type": "tidelift"
  8430. }
  8431. ],
  8432. "time": "2020-11-10T18:47:58+00:00"
  8433. },
  8434. {
  8435. "name": "facade/flare-client-php",
  8436. "version": "1.3.7",
  8437. "source": {
  8438. "type": "git",
  8439. "url": "https://github.com/facade/flare-client-php.git",
  8440. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492"
  8441. },
  8442. "dist": {
  8443. "type": "zip",
  8444. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8445. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8446. "shasum": ""
  8447. },
  8448. "require": {
  8449. "facade/ignition-contracts": "~1.0",
  8450. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8451. "php": "^7.1|^8.0",
  8452. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8453. "symfony/mime": "^3.4|^4.0|^5.1",
  8454. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8455. },
  8456. "require-dev": {
  8457. "friendsofphp/php-cs-fixer": "^2.14",
  8458. "phpunit/phpunit": "^7.5.16",
  8459. "spatie/phpunit-snapshot-assertions": "^2.0"
  8460. },
  8461. "type": "library",
  8462. "extra": {
  8463. "branch-alias": {
  8464. "dev-master": "1.0-dev"
  8465. }
  8466. },
  8467. "autoload": {
  8468. "psr-4": {
  8469. "Facade\\FlareClient\\": "src"
  8470. },
  8471. "files": [
  8472. "src/helpers.php"
  8473. ]
  8474. },
  8475. "notification-url": "https://packagist.org/downloads/",
  8476. "license": [
  8477. "MIT"
  8478. ],
  8479. "description": "Send PHP errors to Flare",
  8480. "homepage": "https://github.com/facade/flare-client-php",
  8481. "keywords": [
  8482. "exception",
  8483. "facade",
  8484. "flare",
  8485. "reporting"
  8486. ],
  8487. "support": {
  8488. "issues": "https://github.com/facade/flare-client-php/issues",
  8489. "source": "https://github.com/facade/flare-client-php/tree/1.3.7"
  8490. },
  8491. "funding": [
  8492. {
  8493. "url": "https://github.com/spatie",
  8494. "type": "github"
  8495. }
  8496. ],
  8497. "time": "2020-10-21T16:02:39+00:00"
  8498. },
  8499. {
  8500. "name": "facade/ignition",
  8501. "version": "2.5.9",
  8502. "source": {
  8503. "type": "git",
  8504. "url": "https://github.com/facade/ignition.git",
  8505. "reference": "66b3138ecce38024723fb3bfc66ef8852a779ea9"
  8506. },
  8507. "dist": {
  8508. "type": "zip",
  8509. "url": "https://api.github.com/repos/facade/ignition/zipball/66b3138ecce38024723fb3bfc66ef8852a779ea9",
  8510. "reference": "66b3138ecce38024723fb3bfc66ef8852a779ea9",
  8511. "shasum": ""
  8512. },
  8513. "require": {
  8514. "ext-json": "*",
  8515. "ext-mbstring": "*",
  8516. "facade/flare-client-php": "^1.3.7",
  8517. "facade/ignition-contracts": "^1.0.2",
  8518. "filp/whoops": "^2.4",
  8519. "illuminate/support": "^7.0|^8.0",
  8520. "monolog/monolog": "^2.0",
  8521. "php": "^7.2.5|^8.0",
  8522. "symfony/console": "^5.0",
  8523. "symfony/var-dumper": "^5.0"
  8524. },
  8525. "require-dev": {
  8526. "friendsofphp/php-cs-fixer": "^2.14",
  8527. "mockery/mockery": "^1.3",
  8528. "orchestra/testbench": "^5.0|^6.0",
  8529. "psalm/plugin-laravel": "^1.2"
  8530. },
  8531. "suggest": {
  8532. "laravel/telescope": "^3.1"
  8533. },
  8534. "type": "library",
  8535. "extra": {
  8536. "branch-alias": {
  8537. "dev-master": "2.x-dev"
  8538. },
  8539. "laravel": {
  8540. "providers": [
  8541. "Facade\\Ignition\\IgnitionServiceProvider"
  8542. ],
  8543. "aliases": {
  8544. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8545. }
  8546. }
  8547. },
  8548. "autoload": {
  8549. "psr-4": {
  8550. "Facade\\Ignition\\": "src"
  8551. },
  8552. "files": [
  8553. "src/helpers.php"
  8554. ]
  8555. },
  8556. "notification-url": "https://packagist.org/downloads/",
  8557. "license": [
  8558. "MIT"
  8559. ],
  8560. "description": "A beautiful error page for Laravel applications.",
  8561. "homepage": "https://github.com/facade/ignition",
  8562. "keywords": [
  8563. "error",
  8564. "flare",
  8565. "laravel",
  8566. "page"
  8567. ],
  8568. "support": {
  8569. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8570. "forum": "https://twitter.com/flareappio",
  8571. "issues": "https://github.com/facade/ignition/issues",
  8572. "source": "https://github.com/facade/ignition"
  8573. },
  8574. "time": "2021-01-26T14:45:19+00:00"
  8575. },
  8576. {
  8577. "name": "facade/ignition-contracts",
  8578. "version": "1.0.2",
  8579. "source": {
  8580. "type": "git",
  8581. "url": "https://github.com/facade/ignition-contracts.git",
  8582. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8583. },
  8584. "dist": {
  8585. "type": "zip",
  8586. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8587. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8588. "shasum": ""
  8589. },
  8590. "require": {
  8591. "php": "^7.3|^8.0"
  8592. },
  8593. "require-dev": {
  8594. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8595. "phpunit/phpunit": "^9.3.11",
  8596. "vimeo/psalm": "^3.17.1"
  8597. },
  8598. "type": "library",
  8599. "autoload": {
  8600. "psr-4": {
  8601. "Facade\\IgnitionContracts\\": "src"
  8602. }
  8603. },
  8604. "notification-url": "https://packagist.org/downloads/",
  8605. "license": [
  8606. "MIT"
  8607. ],
  8608. "authors": [
  8609. {
  8610. "name": "Freek Van der Herten",
  8611. "email": "freek@spatie.be",
  8612. "homepage": "https://flareapp.io",
  8613. "role": "Developer"
  8614. }
  8615. ],
  8616. "description": "Solution contracts for Ignition",
  8617. "homepage": "https://github.com/facade/ignition-contracts",
  8618. "keywords": [
  8619. "contracts",
  8620. "flare",
  8621. "ignition"
  8622. ],
  8623. "support": {
  8624. "issues": "https://github.com/facade/ignition-contracts/issues",
  8625. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8626. },
  8627. "time": "2020-10-16T08:27:54+00:00"
  8628. },
  8629. {
  8630. "name": "filp/whoops",
  8631. "version": "2.9.2",
  8632. "source": {
  8633. "type": "git",
  8634. "url": "https://github.com/filp/whoops.git",
  8635. "reference": "df7933820090489623ce0be5e85c7e693638e536"
  8636. },
  8637. "dist": {
  8638. "type": "zip",
  8639. "url": "https://api.github.com/repos/filp/whoops/zipball/df7933820090489623ce0be5e85c7e693638e536",
  8640. "reference": "df7933820090489623ce0be5e85c7e693638e536",
  8641. "shasum": ""
  8642. },
  8643. "require": {
  8644. "php": "^5.5.9 || ^7.0 || ^8.0",
  8645. "psr/log": "^1.0.1"
  8646. },
  8647. "require-dev": {
  8648. "mockery/mockery": "^0.9 || ^1.0",
  8649. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8650. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8651. },
  8652. "suggest": {
  8653. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8654. "whoops/soap": "Formats errors as SOAP responses"
  8655. },
  8656. "type": "library",
  8657. "extra": {
  8658. "branch-alias": {
  8659. "dev-master": "2.7-dev"
  8660. }
  8661. },
  8662. "autoload": {
  8663. "psr-4": {
  8664. "Whoops\\": "src/Whoops/"
  8665. }
  8666. },
  8667. "notification-url": "https://packagist.org/downloads/",
  8668. "license": [
  8669. "MIT"
  8670. ],
  8671. "authors": [
  8672. {
  8673. "name": "Filipe Dobreira",
  8674. "homepage": "https://github.com/filp",
  8675. "role": "Developer"
  8676. }
  8677. ],
  8678. "description": "php error handling for cool kids",
  8679. "homepage": "https://filp.github.io/whoops/",
  8680. "keywords": [
  8681. "error",
  8682. "exception",
  8683. "handling",
  8684. "library",
  8685. "throwable",
  8686. "whoops"
  8687. ],
  8688. "support": {
  8689. "issues": "https://github.com/filp/whoops/issues",
  8690. "source": "https://github.com/filp/whoops/tree/2.9.2"
  8691. },
  8692. "funding": [
  8693. {
  8694. "url": "https://github.com/denis-sokolov",
  8695. "type": "github"
  8696. }
  8697. ],
  8698. "time": "2021-01-24T12:00:00+00:00"
  8699. },
  8700. {
  8701. "name": "fzaninotto/faker",
  8702. "version": "v1.9.2",
  8703. "source": {
  8704. "type": "git",
  8705. "url": "https://github.com/fzaninotto/Faker.git",
  8706. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8707. },
  8708. "dist": {
  8709. "type": "zip",
  8710. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8711. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8712. "shasum": ""
  8713. },
  8714. "require": {
  8715. "php": "^5.3.3 || ^7.0"
  8716. },
  8717. "require-dev": {
  8718. "ext-intl": "*",
  8719. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8720. "squizlabs/php_codesniffer": "^2.9.2"
  8721. },
  8722. "type": "library",
  8723. "extra": {
  8724. "branch-alias": {
  8725. "dev-master": "1.9-dev"
  8726. }
  8727. },
  8728. "autoload": {
  8729. "psr-4": {
  8730. "Faker\\": "src/Faker/"
  8731. }
  8732. },
  8733. "notification-url": "https://packagist.org/downloads/",
  8734. "license": [
  8735. "MIT"
  8736. ],
  8737. "authors": [
  8738. {
  8739. "name": "François Zaninotto"
  8740. }
  8741. ],
  8742. "description": "Faker is a PHP library that generates fake data for you.",
  8743. "keywords": [
  8744. "data",
  8745. "faker",
  8746. "fixtures"
  8747. ],
  8748. "support": {
  8749. "issues": "https://github.com/fzaninotto/Faker/issues",
  8750. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  8751. },
  8752. "abandoned": true,
  8753. "time": "2020-12-11T09:56:16+00:00"
  8754. },
  8755. {
  8756. "name": "hamcrest/hamcrest-php",
  8757. "version": "v2.0.1",
  8758. "source": {
  8759. "type": "git",
  8760. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8761. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8762. },
  8763. "dist": {
  8764. "type": "zip",
  8765. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8766. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8767. "shasum": ""
  8768. },
  8769. "require": {
  8770. "php": "^5.3|^7.0|^8.0"
  8771. },
  8772. "replace": {
  8773. "cordoval/hamcrest-php": "*",
  8774. "davedevelopment/hamcrest-php": "*",
  8775. "kodova/hamcrest-php": "*"
  8776. },
  8777. "require-dev": {
  8778. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8779. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8780. },
  8781. "type": "library",
  8782. "extra": {
  8783. "branch-alias": {
  8784. "dev-master": "2.1-dev"
  8785. }
  8786. },
  8787. "autoload": {
  8788. "classmap": [
  8789. "hamcrest"
  8790. ]
  8791. },
  8792. "notification-url": "https://packagist.org/downloads/",
  8793. "license": [
  8794. "BSD-3-Clause"
  8795. ],
  8796. "description": "This is the PHP port of Hamcrest Matchers",
  8797. "keywords": [
  8798. "test"
  8799. ],
  8800. "support": {
  8801. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8802. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8803. },
  8804. "time": "2020-07-09T08:09:16+00:00"
  8805. },
  8806. {
  8807. "name": "mockery/mockery",
  8808. "version": "1.4.2",
  8809. "source": {
  8810. "type": "git",
  8811. "url": "https://github.com/mockery/mockery.git",
  8812. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  8813. },
  8814. "dist": {
  8815. "type": "zip",
  8816. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  8817. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  8818. "shasum": ""
  8819. },
  8820. "require": {
  8821. "hamcrest/hamcrest-php": "^2.0.1",
  8822. "lib-pcre": ">=7.0",
  8823. "php": "^7.3 || ^8.0"
  8824. },
  8825. "conflict": {
  8826. "phpunit/phpunit": "<8.0"
  8827. },
  8828. "require-dev": {
  8829. "phpunit/phpunit": "^8.5 || ^9.3"
  8830. },
  8831. "type": "library",
  8832. "extra": {
  8833. "branch-alias": {
  8834. "dev-master": "1.4.x-dev"
  8835. }
  8836. },
  8837. "autoload": {
  8838. "psr-0": {
  8839. "Mockery": "library/"
  8840. }
  8841. },
  8842. "notification-url": "https://packagist.org/downloads/",
  8843. "license": [
  8844. "BSD-3-Clause"
  8845. ],
  8846. "authors": [
  8847. {
  8848. "name": "Pádraic Brady",
  8849. "email": "padraic.brady@gmail.com",
  8850. "homepage": "http://blog.astrumfutura.com"
  8851. },
  8852. {
  8853. "name": "Dave Marshall",
  8854. "email": "dave.marshall@atstsolutions.co.uk",
  8855. "homepage": "http://davedevelopment.co.uk"
  8856. }
  8857. ],
  8858. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8859. "homepage": "https://github.com/mockery/mockery",
  8860. "keywords": [
  8861. "BDD",
  8862. "TDD",
  8863. "library",
  8864. "mock",
  8865. "mock objects",
  8866. "mockery",
  8867. "stub",
  8868. "test",
  8869. "test double",
  8870. "testing"
  8871. ],
  8872. "support": {
  8873. "issues": "https://github.com/mockery/mockery/issues",
  8874. "source": "https://github.com/mockery/mockery/tree/master"
  8875. },
  8876. "time": "2020-08-11T18:10:13+00:00"
  8877. },
  8878. {
  8879. "name": "myclabs/deep-copy",
  8880. "version": "1.10.2",
  8881. "source": {
  8882. "type": "git",
  8883. "url": "https://github.com/myclabs/DeepCopy.git",
  8884. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8885. },
  8886. "dist": {
  8887. "type": "zip",
  8888. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8889. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8890. "shasum": ""
  8891. },
  8892. "require": {
  8893. "php": "^7.1 || ^8.0"
  8894. },
  8895. "replace": {
  8896. "myclabs/deep-copy": "self.version"
  8897. },
  8898. "require-dev": {
  8899. "doctrine/collections": "^1.0",
  8900. "doctrine/common": "^2.6",
  8901. "phpunit/phpunit": "^7.1"
  8902. },
  8903. "type": "library",
  8904. "autoload": {
  8905. "psr-4": {
  8906. "DeepCopy\\": "src/DeepCopy/"
  8907. },
  8908. "files": [
  8909. "src/DeepCopy/deep_copy.php"
  8910. ]
  8911. },
  8912. "notification-url": "https://packagist.org/downloads/",
  8913. "license": [
  8914. "MIT"
  8915. ],
  8916. "description": "Create deep copies (clones) of your objects",
  8917. "keywords": [
  8918. "clone",
  8919. "copy",
  8920. "duplicate",
  8921. "object",
  8922. "object graph"
  8923. ],
  8924. "support": {
  8925. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8926. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8927. },
  8928. "funding": [
  8929. {
  8930. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8931. "type": "tidelift"
  8932. }
  8933. ],
  8934. "time": "2020-11-13T09:40:50+00:00"
  8935. },
  8936. {
  8937. "name": "nunomaduro/collision",
  8938. "version": "v5.3.0",
  8939. "source": {
  8940. "type": "git",
  8941. "url": "https://github.com/nunomaduro/collision.git",
  8942. "reference": "aca63581f380f63a492b1e3114604e411e39133a"
  8943. },
  8944. "dist": {
  8945. "type": "zip",
  8946. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/aca63581f380f63a492b1e3114604e411e39133a",
  8947. "reference": "aca63581f380f63a492b1e3114604e411e39133a",
  8948. "shasum": ""
  8949. },
  8950. "require": {
  8951. "facade/ignition-contracts": "^1.0",
  8952. "filp/whoops": "^2.7.2",
  8953. "php": "^7.3 || ^8.0",
  8954. "symfony/console": "^5.0"
  8955. },
  8956. "require-dev": {
  8957. "brianium/paratest": "^6.1",
  8958. "fideloper/proxy": "^4.4.1",
  8959. "friendsofphp/php-cs-fixer": "^2.17.3",
  8960. "fruitcake/laravel-cors": "^2.0.3",
  8961. "laravel/framework": "^9.0",
  8962. "nunomaduro/larastan": "^0.6.2",
  8963. "nunomaduro/mock-final-classes": "^1.0",
  8964. "orchestra/testbench": "^7.0",
  8965. "phpstan/phpstan": "^0.12.64",
  8966. "phpunit/phpunit": "^9.5.0"
  8967. },
  8968. "type": "library",
  8969. "extra": {
  8970. "laravel": {
  8971. "providers": [
  8972. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8973. ]
  8974. }
  8975. },
  8976. "autoload": {
  8977. "psr-4": {
  8978. "NunoMaduro\\Collision\\": "src/"
  8979. }
  8980. },
  8981. "notification-url": "https://packagist.org/downloads/",
  8982. "license": [
  8983. "MIT"
  8984. ],
  8985. "authors": [
  8986. {
  8987. "name": "Nuno Maduro",
  8988. "email": "enunomaduro@gmail.com"
  8989. }
  8990. ],
  8991. "description": "Cli error handling for console/command-line PHP applications.",
  8992. "keywords": [
  8993. "artisan",
  8994. "cli",
  8995. "command-line",
  8996. "console",
  8997. "error",
  8998. "handling",
  8999. "laravel",
  9000. "laravel-zero",
  9001. "php",
  9002. "symfony"
  9003. ],
  9004. "support": {
  9005. "issues": "https://github.com/nunomaduro/collision/issues",
  9006. "source": "https://github.com/nunomaduro/collision"
  9007. },
  9008. "funding": [
  9009. {
  9010. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  9011. "type": "custom"
  9012. },
  9013. {
  9014. "url": "https://github.com/nunomaduro",
  9015. "type": "github"
  9016. },
  9017. {
  9018. "url": "https://www.patreon.com/nunomaduro",
  9019. "type": "patreon"
  9020. }
  9021. ],
  9022. "time": "2021-01-25T15:34:13+00:00"
  9023. },
  9024. {
  9025. "name": "phar-io/manifest",
  9026. "version": "2.0.1",
  9027. "source": {
  9028. "type": "git",
  9029. "url": "https://github.com/phar-io/manifest.git",
  9030. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  9031. },
  9032. "dist": {
  9033. "type": "zip",
  9034. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9035. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9036. "shasum": ""
  9037. },
  9038. "require": {
  9039. "ext-dom": "*",
  9040. "ext-phar": "*",
  9041. "ext-xmlwriter": "*",
  9042. "phar-io/version": "^3.0.1",
  9043. "php": "^7.2 || ^8.0"
  9044. },
  9045. "type": "library",
  9046. "extra": {
  9047. "branch-alias": {
  9048. "dev-master": "2.0.x-dev"
  9049. }
  9050. },
  9051. "autoload": {
  9052. "classmap": [
  9053. "src/"
  9054. ]
  9055. },
  9056. "notification-url": "https://packagist.org/downloads/",
  9057. "license": [
  9058. "BSD-3-Clause"
  9059. ],
  9060. "authors": [
  9061. {
  9062. "name": "Arne Blankerts",
  9063. "email": "arne@blankerts.de",
  9064. "role": "Developer"
  9065. },
  9066. {
  9067. "name": "Sebastian Heuer",
  9068. "email": "sebastian@phpeople.de",
  9069. "role": "Developer"
  9070. },
  9071. {
  9072. "name": "Sebastian Bergmann",
  9073. "email": "sebastian@phpunit.de",
  9074. "role": "Developer"
  9075. }
  9076. ],
  9077. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9078. "support": {
  9079. "issues": "https://github.com/phar-io/manifest/issues",
  9080. "source": "https://github.com/phar-io/manifest/tree/master"
  9081. },
  9082. "time": "2020-06-27T14:33:11+00:00"
  9083. },
  9084. {
  9085. "name": "phar-io/version",
  9086. "version": "3.0.4",
  9087. "source": {
  9088. "type": "git",
  9089. "url": "https://github.com/phar-io/version.git",
  9090. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451"
  9091. },
  9092. "dist": {
  9093. "type": "zip",
  9094. "url": "https://api.github.com/repos/phar-io/version/zipball/e4782611070e50613683d2b9a57730e9a3ba5451",
  9095. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451",
  9096. "shasum": ""
  9097. },
  9098. "require": {
  9099. "php": "^7.2 || ^8.0"
  9100. },
  9101. "type": "library",
  9102. "autoload": {
  9103. "classmap": [
  9104. "src/"
  9105. ]
  9106. },
  9107. "notification-url": "https://packagist.org/downloads/",
  9108. "license": [
  9109. "BSD-3-Clause"
  9110. ],
  9111. "authors": [
  9112. {
  9113. "name": "Arne Blankerts",
  9114. "email": "arne@blankerts.de",
  9115. "role": "Developer"
  9116. },
  9117. {
  9118. "name": "Sebastian Heuer",
  9119. "email": "sebastian@phpeople.de",
  9120. "role": "Developer"
  9121. },
  9122. {
  9123. "name": "Sebastian Bergmann",
  9124. "email": "sebastian@phpunit.de",
  9125. "role": "Developer"
  9126. }
  9127. ],
  9128. "description": "Library for handling version information and constraints",
  9129. "support": {
  9130. "issues": "https://github.com/phar-io/version/issues",
  9131. "source": "https://github.com/phar-io/version/tree/3.0.4"
  9132. },
  9133. "time": "2020-12-13T23:18:30+00:00"
  9134. },
  9135. {
  9136. "name": "phpdocumentor/reflection-common",
  9137. "version": "2.2.0",
  9138. "source": {
  9139. "type": "git",
  9140. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9141. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9142. },
  9143. "dist": {
  9144. "type": "zip",
  9145. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9146. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9147. "shasum": ""
  9148. },
  9149. "require": {
  9150. "php": "^7.2 || ^8.0"
  9151. },
  9152. "type": "library",
  9153. "extra": {
  9154. "branch-alias": {
  9155. "dev-2.x": "2.x-dev"
  9156. }
  9157. },
  9158. "autoload": {
  9159. "psr-4": {
  9160. "phpDocumentor\\Reflection\\": "src/"
  9161. }
  9162. },
  9163. "notification-url": "https://packagist.org/downloads/",
  9164. "license": [
  9165. "MIT"
  9166. ],
  9167. "authors": [
  9168. {
  9169. "name": "Jaap van Otterdijk",
  9170. "email": "opensource@ijaap.nl"
  9171. }
  9172. ],
  9173. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9174. "homepage": "http://www.phpdoc.org",
  9175. "keywords": [
  9176. "FQSEN",
  9177. "phpDocumentor",
  9178. "phpdoc",
  9179. "reflection",
  9180. "static analysis"
  9181. ],
  9182. "support": {
  9183. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9184. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9185. },
  9186. "time": "2020-06-27T09:03:43+00:00"
  9187. },
  9188. {
  9189. "name": "phpdocumentor/reflection-docblock",
  9190. "version": "5.2.2",
  9191. "source": {
  9192. "type": "git",
  9193. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9194. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  9195. },
  9196. "dist": {
  9197. "type": "zip",
  9198. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  9199. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  9200. "shasum": ""
  9201. },
  9202. "require": {
  9203. "ext-filter": "*",
  9204. "php": "^7.2 || ^8.0",
  9205. "phpdocumentor/reflection-common": "^2.2",
  9206. "phpdocumentor/type-resolver": "^1.3",
  9207. "webmozart/assert": "^1.9.1"
  9208. },
  9209. "require-dev": {
  9210. "mockery/mockery": "~1.3.2"
  9211. },
  9212. "type": "library",
  9213. "extra": {
  9214. "branch-alias": {
  9215. "dev-master": "5.x-dev"
  9216. }
  9217. },
  9218. "autoload": {
  9219. "psr-4": {
  9220. "phpDocumentor\\Reflection\\": "src"
  9221. }
  9222. },
  9223. "notification-url": "https://packagist.org/downloads/",
  9224. "license": [
  9225. "MIT"
  9226. ],
  9227. "authors": [
  9228. {
  9229. "name": "Mike van Riel",
  9230. "email": "me@mikevanriel.com"
  9231. },
  9232. {
  9233. "name": "Jaap van Otterdijk",
  9234. "email": "account@ijaap.nl"
  9235. }
  9236. ],
  9237. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9238. "support": {
  9239. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  9240. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  9241. },
  9242. "time": "2020-09-03T19:13:55+00:00"
  9243. },
  9244. {
  9245. "name": "phpdocumentor/type-resolver",
  9246. "version": "1.4.0",
  9247. "source": {
  9248. "type": "git",
  9249. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9250. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  9251. },
  9252. "dist": {
  9253. "type": "zip",
  9254. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9255. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9256. "shasum": ""
  9257. },
  9258. "require": {
  9259. "php": "^7.2 || ^8.0",
  9260. "phpdocumentor/reflection-common": "^2.0"
  9261. },
  9262. "require-dev": {
  9263. "ext-tokenizer": "*"
  9264. },
  9265. "type": "library",
  9266. "extra": {
  9267. "branch-alias": {
  9268. "dev-1.x": "1.x-dev"
  9269. }
  9270. },
  9271. "autoload": {
  9272. "psr-4": {
  9273. "phpDocumentor\\Reflection\\": "src"
  9274. }
  9275. },
  9276. "notification-url": "https://packagist.org/downloads/",
  9277. "license": [
  9278. "MIT"
  9279. ],
  9280. "authors": [
  9281. {
  9282. "name": "Mike van Riel",
  9283. "email": "me@mikevanriel.com"
  9284. }
  9285. ],
  9286. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9287. "support": {
  9288. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9289. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  9290. },
  9291. "time": "2020-09-17T18:55:26+00:00"
  9292. },
  9293. {
  9294. "name": "phpspec/prophecy",
  9295. "version": "1.12.2",
  9296. "source": {
  9297. "type": "git",
  9298. "url": "https://github.com/phpspec/prophecy.git",
  9299. "reference": "245710e971a030f42e08f4912863805570f23d39"
  9300. },
  9301. "dist": {
  9302. "type": "zip",
  9303. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
  9304. "reference": "245710e971a030f42e08f4912863805570f23d39",
  9305. "shasum": ""
  9306. },
  9307. "require": {
  9308. "doctrine/instantiator": "^1.2",
  9309. "php": "^7.2 || ~8.0, <8.1",
  9310. "phpdocumentor/reflection-docblock": "^5.2",
  9311. "sebastian/comparator": "^3.0 || ^4.0",
  9312. "sebastian/recursion-context": "^3.0 || ^4.0"
  9313. },
  9314. "require-dev": {
  9315. "phpspec/phpspec": "^6.0",
  9316. "phpunit/phpunit": "^8.0 || ^9.0"
  9317. },
  9318. "type": "library",
  9319. "extra": {
  9320. "branch-alias": {
  9321. "dev-master": "1.11.x-dev"
  9322. }
  9323. },
  9324. "autoload": {
  9325. "psr-4": {
  9326. "Prophecy\\": "src/Prophecy"
  9327. }
  9328. },
  9329. "notification-url": "https://packagist.org/downloads/",
  9330. "license": [
  9331. "MIT"
  9332. ],
  9333. "authors": [
  9334. {
  9335. "name": "Konstantin Kudryashov",
  9336. "email": "ever.zet@gmail.com",
  9337. "homepage": "http://everzet.com"
  9338. },
  9339. {
  9340. "name": "Marcello Duarte",
  9341. "email": "marcello.duarte@gmail.com"
  9342. }
  9343. ],
  9344. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9345. "homepage": "https://github.com/phpspec/prophecy",
  9346. "keywords": [
  9347. "Double",
  9348. "Dummy",
  9349. "fake",
  9350. "mock",
  9351. "spy",
  9352. "stub"
  9353. ],
  9354. "support": {
  9355. "issues": "https://github.com/phpspec/prophecy/issues",
  9356. "source": "https://github.com/phpspec/prophecy/tree/1.12.2"
  9357. },
  9358. "time": "2020-12-19T10:15:11+00:00"
  9359. },
  9360. {
  9361. "name": "phpunit/php-code-coverage",
  9362. "version": "9.2.5",
  9363. "source": {
  9364. "type": "git",
  9365. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9366. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1"
  9367. },
  9368. "dist": {
  9369. "type": "zip",
  9370. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1",
  9371. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1",
  9372. "shasum": ""
  9373. },
  9374. "require": {
  9375. "ext-dom": "*",
  9376. "ext-libxml": "*",
  9377. "ext-xmlwriter": "*",
  9378. "nikic/php-parser": "^4.10.2",
  9379. "php": ">=7.3",
  9380. "phpunit/php-file-iterator": "^3.0.3",
  9381. "phpunit/php-text-template": "^2.0.2",
  9382. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9383. "sebastian/complexity": "^2.0",
  9384. "sebastian/environment": "^5.1.2",
  9385. "sebastian/lines-of-code": "^1.0.3",
  9386. "sebastian/version": "^3.0.1",
  9387. "theseer/tokenizer": "^1.2.0"
  9388. },
  9389. "require-dev": {
  9390. "phpunit/phpunit": "^9.3"
  9391. },
  9392. "suggest": {
  9393. "ext-pcov": "*",
  9394. "ext-xdebug": "*"
  9395. },
  9396. "type": "library",
  9397. "extra": {
  9398. "branch-alias": {
  9399. "dev-master": "9.2-dev"
  9400. }
  9401. },
  9402. "autoload": {
  9403. "classmap": [
  9404. "src/"
  9405. ]
  9406. },
  9407. "notification-url": "https://packagist.org/downloads/",
  9408. "license": [
  9409. "BSD-3-Clause"
  9410. ],
  9411. "authors": [
  9412. {
  9413. "name": "Sebastian Bergmann",
  9414. "email": "sebastian@phpunit.de",
  9415. "role": "lead"
  9416. }
  9417. ],
  9418. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9419. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9420. "keywords": [
  9421. "coverage",
  9422. "testing",
  9423. "xunit"
  9424. ],
  9425. "support": {
  9426. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9427. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5"
  9428. },
  9429. "funding": [
  9430. {
  9431. "url": "https://github.com/sebastianbergmann",
  9432. "type": "github"
  9433. }
  9434. ],
  9435. "time": "2020-11-28T06:44:49+00:00"
  9436. },
  9437. {
  9438. "name": "phpunit/php-file-iterator",
  9439. "version": "3.0.5",
  9440. "source": {
  9441. "type": "git",
  9442. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9443. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  9444. },
  9445. "dist": {
  9446. "type": "zip",
  9447. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  9448. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  9449. "shasum": ""
  9450. },
  9451. "require": {
  9452. "php": ">=7.3"
  9453. },
  9454. "require-dev": {
  9455. "phpunit/phpunit": "^9.3"
  9456. },
  9457. "type": "library",
  9458. "extra": {
  9459. "branch-alias": {
  9460. "dev-master": "3.0-dev"
  9461. }
  9462. },
  9463. "autoload": {
  9464. "classmap": [
  9465. "src/"
  9466. ]
  9467. },
  9468. "notification-url": "https://packagist.org/downloads/",
  9469. "license": [
  9470. "BSD-3-Clause"
  9471. ],
  9472. "authors": [
  9473. {
  9474. "name": "Sebastian Bergmann",
  9475. "email": "sebastian@phpunit.de",
  9476. "role": "lead"
  9477. }
  9478. ],
  9479. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9480. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9481. "keywords": [
  9482. "filesystem",
  9483. "iterator"
  9484. ],
  9485. "support": {
  9486. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9487. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  9488. },
  9489. "funding": [
  9490. {
  9491. "url": "https://github.com/sebastianbergmann",
  9492. "type": "github"
  9493. }
  9494. ],
  9495. "time": "2020-09-28T05:57:25+00:00"
  9496. },
  9497. {
  9498. "name": "phpunit/php-invoker",
  9499. "version": "3.1.1",
  9500. "source": {
  9501. "type": "git",
  9502. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9503. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9504. },
  9505. "dist": {
  9506. "type": "zip",
  9507. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9508. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9509. "shasum": ""
  9510. },
  9511. "require": {
  9512. "php": ">=7.3"
  9513. },
  9514. "require-dev": {
  9515. "ext-pcntl": "*",
  9516. "phpunit/phpunit": "^9.3"
  9517. },
  9518. "suggest": {
  9519. "ext-pcntl": "*"
  9520. },
  9521. "type": "library",
  9522. "extra": {
  9523. "branch-alias": {
  9524. "dev-master": "3.1-dev"
  9525. }
  9526. },
  9527. "autoload": {
  9528. "classmap": [
  9529. "src/"
  9530. ]
  9531. },
  9532. "notification-url": "https://packagist.org/downloads/",
  9533. "license": [
  9534. "BSD-3-Clause"
  9535. ],
  9536. "authors": [
  9537. {
  9538. "name": "Sebastian Bergmann",
  9539. "email": "sebastian@phpunit.de",
  9540. "role": "lead"
  9541. }
  9542. ],
  9543. "description": "Invoke callables with a timeout",
  9544. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9545. "keywords": [
  9546. "process"
  9547. ],
  9548. "support": {
  9549. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9550. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9551. },
  9552. "funding": [
  9553. {
  9554. "url": "https://github.com/sebastianbergmann",
  9555. "type": "github"
  9556. }
  9557. ],
  9558. "time": "2020-09-28T05:58:55+00:00"
  9559. },
  9560. {
  9561. "name": "phpunit/php-text-template",
  9562. "version": "2.0.4",
  9563. "source": {
  9564. "type": "git",
  9565. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9566. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9567. },
  9568. "dist": {
  9569. "type": "zip",
  9570. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9571. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9572. "shasum": ""
  9573. },
  9574. "require": {
  9575. "php": ">=7.3"
  9576. },
  9577. "require-dev": {
  9578. "phpunit/phpunit": "^9.3"
  9579. },
  9580. "type": "library",
  9581. "extra": {
  9582. "branch-alias": {
  9583. "dev-master": "2.0-dev"
  9584. }
  9585. },
  9586. "autoload": {
  9587. "classmap": [
  9588. "src/"
  9589. ]
  9590. },
  9591. "notification-url": "https://packagist.org/downloads/",
  9592. "license": [
  9593. "BSD-3-Clause"
  9594. ],
  9595. "authors": [
  9596. {
  9597. "name": "Sebastian Bergmann",
  9598. "email": "sebastian@phpunit.de",
  9599. "role": "lead"
  9600. }
  9601. ],
  9602. "description": "Simple template engine.",
  9603. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9604. "keywords": [
  9605. "template"
  9606. ],
  9607. "support": {
  9608. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9609. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9610. },
  9611. "funding": [
  9612. {
  9613. "url": "https://github.com/sebastianbergmann",
  9614. "type": "github"
  9615. }
  9616. ],
  9617. "time": "2020-10-26T05:33:50+00:00"
  9618. },
  9619. {
  9620. "name": "phpunit/php-timer",
  9621. "version": "5.0.3",
  9622. "source": {
  9623. "type": "git",
  9624. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9625. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9626. },
  9627. "dist": {
  9628. "type": "zip",
  9629. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9630. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9631. "shasum": ""
  9632. },
  9633. "require": {
  9634. "php": ">=7.3"
  9635. },
  9636. "require-dev": {
  9637. "phpunit/phpunit": "^9.3"
  9638. },
  9639. "type": "library",
  9640. "extra": {
  9641. "branch-alias": {
  9642. "dev-master": "5.0-dev"
  9643. }
  9644. },
  9645. "autoload": {
  9646. "classmap": [
  9647. "src/"
  9648. ]
  9649. },
  9650. "notification-url": "https://packagist.org/downloads/",
  9651. "license": [
  9652. "BSD-3-Clause"
  9653. ],
  9654. "authors": [
  9655. {
  9656. "name": "Sebastian Bergmann",
  9657. "email": "sebastian@phpunit.de",
  9658. "role": "lead"
  9659. }
  9660. ],
  9661. "description": "Utility class for timing",
  9662. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9663. "keywords": [
  9664. "timer"
  9665. ],
  9666. "support": {
  9667. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9668. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9669. },
  9670. "funding": [
  9671. {
  9672. "url": "https://github.com/sebastianbergmann",
  9673. "type": "github"
  9674. }
  9675. ],
  9676. "time": "2020-10-26T13:16:10+00:00"
  9677. },
  9678. {
  9679. "name": "phpunit/phpunit",
  9680. "version": "9.5.1",
  9681. "source": {
  9682. "type": "git",
  9683. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9684. "reference": "e7bdf4085de85a825f4424eae52c99a1cec2f360"
  9685. },
  9686. "dist": {
  9687. "type": "zip",
  9688. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e7bdf4085de85a825f4424eae52c99a1cec2f360",
  9689. "reference": "e7bdf4085de85a825f4424eae52c99a1cec2f360",
  9690. "shasum": ""
  9691. },
  9692. "require": {
  9693. "doctrine/instantiator": "^1.3.1",
  9694. "ext-dom": "*",
  9695. "ext-json": "*",
  9696. "ext-libxml": "*",
  9697. "ext-mbstring": "*",
  9698. "ext-xml": "*",
  9699. "ext-xmlwriter": "*",
  9700. "myclabs/deep-copy": "^1.10.1",
  9701. "phar-io/manifest": "^2.0.1",
  9702. "phar-io/version": "^3.0.2",
  9703. "php": ">=7.3",
  9704. "phpspec/prophecy": "^1.12.1",
  9705. "phpunit/php-code-coverage": "^9.2.3",
  9706. "phpunit/php-file-iterator": "^3.0.5",
  9707. "phpunit/php-invoker": "^3.1.1",
  9708. "phpunit/php-text-template": "^2.0.3",
  9709. "phpunit/php-timer": "^5.0.2",
  9710. "sebastian/cli-parser": "^1.0.1",
  9711. "sebastian/code-unit": "^1.0.6",
  9712. "sebastian/comparator": "^4.0.5",
  9713. "sebastian/diff": "^4.0.3",
  9714. "sebastian/environment": "^5.1.3",
  9715. "sebastian/exporter": "^4.0.3",
  9716. "sebastian/global-state": "^5.0.1",
  9717. "sebastian/object-enumerator": "^4.0.3",
  9718. "sebastian/resource-operations": "^3.0.3",
  9719. "sebastian/type": "^2.3",
  9720. "sebastian/version": "^3.0.2"
  9721. },
  9722. "require-dev": {
  9723. "ext-pdo": "*",
  9724. "phpspec/prophecy-phpunit": "^2.0.1"
  9725. },
  9726. "suggest": {
  9727. "ext-soap": "*",
  9728. "ext-xdebug": "*"
  9729. },
  9730. "bin": [
  9731. "phpunit"
  9732. ],
  9733. "type": "library",
  9734. "extra": {
  9735. "branch-alias": {
  9736. "dev-master": "9.5-dev"
  9737. }
  9738. },
  9739. "autoload": {
  9740. "classmap": [
  9741. "src/"
  9742. ],
  9743. "files": [
  9744. "src/Framework/Assert/Functions.php"
  9745. ]
  9746. },
  9747. "notification-url": "https://packagist.org/downloads/",
  9748. "license": [
  9749. "BSD-3-Clause"
  9750. ],
  9751. "authors": [
  9752. {
  9753. "name": "Sebastian Bergmann",
  9754. "email": "sebastian@phpunit.de",
  9755. "role": "lead"
  9756. }
  9757. ],
  9758. "description": "The PHP Unit Testing framework.",
  9759. "homepage": "https://phpunit.de/",
  9760. "keywords": [
  9761. "phpunit",
  9762. "testing",
  9763. "xunit"
  9764. ],
  9765. "support": {
  9766. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9767. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.1"
  9768. },
  9769. "funding": [
  9770. {
  9771. "url": "https://phpunit.de/donate.html",
  9772. "type": "custom"
  9773. },
  9774. {
  9775. "url": "https://github.com/sebastianbergmann",
  9776. "type": "github"
  9777. }
  9778. ],
  9779. "time": "2021-01-17T07:42:25+00:00"
  9780. },
  9781. {
  9782. "name": "sebastian/cli-parser",
  9783. "version": "1.0.1",
  9784. "source": {
  9785. "type": "git",
  9786. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9787. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9788. },
  9789. "dist": {
  9790. "type": "zip",
  9791. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9792. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9793. "shasum": ""
  9794. },
  9795. "require": {
  9796. "php": ">=7.3"
  9797. },
  9798. "require-dev": {
  9799. "phpunit/phpunit": "^9.3"
  9800. },
  9801. "type": "library",
  9802. "extra": {
  9803. "branch-alias": {
  9804. "dev-master": "1.0-dev"
  9805. }
  9806. },
  9807. "autoload": {
  9808. "classmap": [
  9809. "src/"
  9810. ]
  9811. },
  9812. "notification-url": "https://packagist.org/downloads/",
  9813. "license": [
  9814. "BSD-3-Clause"
  9815. ],
  9816. "authors": [
  9817. {
  9818. "name": "Sebastian Bergmann",
  9819. "email": "sebastian@phpunit.de",
  9820. "role": "lead"
  9821. }
  9822. ],
  9823. "description": "Library for parsing CLI options",
  9824. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9825. "support": {
  9826. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9827. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9828. },
  9829. "funding": [
  9830. {
  9831. "url": "https://github.com/sebastianbergmann",
  9832. "type": "github"
  9833. }
  9834. ],
  9835. "time": "2020-09-28T06:08:49+00:00"
  9836. },
  9837. {
  9838. "name": "sebastian/code-unit",
  9839. "version": "1.0.8",
  9840. "source": {
  9841. "type": "git",
  9842. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9843. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9844. },
  9845. "dist": {
  9846. "type": "zip",
  9847. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9848. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9849. "shasum": ""
  9850. },
  9851. "require": {
  9852. "php": ">=7.3"
  9853. },
  9854. "require-dev": {
  9855. "phpunit/phpunit": "^9.3"
  9856. },
  9857. "type": "library",
  9858. "extra": {
  9859. "branch-alias": {
  9860. "dev-master": "1.0-dev"
  9861. }
  9862. },
  9863. "autoload": {
  9864. "classmap": [
  9865. "src/"
  9866. ]
  9867. },
  9868. "notification-url": "https://packagist.org/downloads/",
  9869. "license": [
  9870. "BSD-3-Clause"
  9871. ],
  9872. "authors": [
  9873. {
  9874. "name": "Sebastian Bergmann",
  9875. "email": "sebastian@phpunit.de",
  9876. "role": "lead"
  9877. }
  9878. ],
  9879. "description": "Collection of value objects that represent the PHP code units",
  9880. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9881. "support": {
  9882. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9883. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9884. },
  9885. "funding": [
  9886. {
  9887. "url": "https://github.com/sebastianbergmann",
  9888. "type": "github"
  9889. }
  9890. ],
  9891. "time": "2020-10-26T13:08:54+00:00"
  9892. },
  9893. {
  9894. "name": "sebastian/code-unit-reverse-lookup",
  9895. "version": "2.0.3",
  9896. "source": {
  9897. "type": "git",
  9898. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9899. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9900. },
  9901. "dist": {
  9902. "type": "zip",
  9903. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9904. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9905. "shasum": ""
  9906. },
  9907. "require": {
  9908. "php": ">=7.3"
  9909. },
  9910. "require-dev": {
  9911. "phpunit/phpunit": "^9.3"
  9912. },
  9913. "type": "library",
  9914. "extra": {
  9915. "branch-alias": {
  9916. "dev-master": "2.0-dev"
  9917. }
  9918. },
  9919. "autoload": {
  9920. "classmap": [
  9921. "src/"
  9922. ]
  9923. },
  9924. "notification-url": "https://packagist.org/downloads/",
  9925. "license": [
  9926. "BSD-3-Clause"
  9927. ],
  9928. "authors": [
  9929. {
  9930. "name": "Sebastian Bergmann",
  9931. "email": "sebastian@phpunit.de"
  9932. }
  9933. ],
  9934. "description": "Looks up which function or method a line of code belongs to",
  9935. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9936. "support": {
  9937. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9938. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9939. },
  9940. "funding": [
  9941. {
  9942. "url": "https://github.com/sebastianbergmann",
  9943. "type": "github"
  9944. }
  9945. ],
  9946. "time": "2020-09-28T05:30:19+00:00"
  9947. },
  9948. {
  9949. "name": "sebastian/comparator",
  9950. "version": "4.0.6",
  9951. "source": {
  9952. "type": "git",
  9953. "url": "https://github.com/sebastianbergmann/comparator.git",
  9954. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  9955. },
  9956. "dist": {
  9957. "type": "zip",
  9958. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  9959. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  9960. "shasum": ""
  9961. },
  9962. "require": {
  9963. "php": ">=7.3",
  9964. "sebastian/diff": "^4.0",
  9965. "sebastian/exporter": "^4.0"
  9966. },
  9967. "require-dev": {
  9968. "phpunit/phpunit": "^9.3"
  9969. },
  9970. "type": "library",
  9971. "extra": {
  9972. "branch-alias": {
  9973. "dev-master": "4.0-dev"
  9974. }
  9975. },
  9976. "autoload": {
  9977. "classmap": [
  9978. "src/"
  9979. ]
  9980. },
  9981. "notification-url": "https://packagist.org/downloads/",
  9982. "license": [
  9983. "BSD-3-Clause"
  9984. ],
  9985. "authors": [
  9986. {
  9987. "name": "Sebastian Bergmann",
  9988. "email": "sebastian@phpunit.de"
  9989. },
  9990. {
  9991. "name": "Jeff Welch",
  9992. "email": "whatthejeff@gmail.com"
  9993. },
  9994. {
  9995. "name": "Volker Dusch",
  9996. "email": "github@wallbash.com"
  9997. },
  9998. {
  9999. "name": "Bernhard Schussek",
  10000. "email": "bschussek@2bepublished.at"
  10001. }
  10002. ],
  10003. "description": "Provides the functionality to compare PHP values for equality",
  10004. "homepage": "https://github.com/sebastianbergmann/comparator",
  10005. "keywords": [
  10006. "comparator",
  10007. "compare",
  10008. "equality"
  10009. ],
  10010. "support": {
  10011. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10012. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  10013. },
  10014. "funding": [
  10015. {
  10016. "url": "https://github.com/sebastianbergmann",
  10017. "type": "github"
  10018. }
  10019. ],
  10020. "time": "2020-10-26T15:49:45+00:00"
  10021. },
  10022. {
  10023. "name": "sebastian/complexity",
  10024. "version": "2.0.2",
  10025. "source": {
  10026. "type": "git",
  10027. "url": "https://github.com/sebastianbergmann/complexity.git",
  10028. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10029. },
  10030. "dist": {
  10031. "type": "zip",
  10032. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10033. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10034. "shasum": ""
  10035. },
  10036. "require": {
  10037. "nikic/php-parser": "^4.7",
  10038. "php": ">=7.3"
  10039. },
  10040. "require-dev": {
  10041. "phpunit/phpunit": "^9.3"
  10042. },
  10043. "type": "library",
  10044. "extra": {
  10045. "branch-alias": {
  10046. "dev-master": "2.0-dev"
  10047. }
  10048. },
  10049. "autoload": {
  10050. "classmap": [
  10051. "src/"
  10052. ]
  10053. },
  10054. "notification-url": "https://packagist.org/downloads/",
  10055. "license": [
  10056. "BSD-3-Clause"
  10057. ],
  10058. "authors": [
  10059. {
  10060. "name": "Sebastian Bergmann",
  10061. "email": "sebastian@phpunit.de",
  10062. "role": "lead"
  10063. }
  10064. ],
  10065. "description": "Library for calculating the complexity of PHP code units",
  10066. "homepage": "https://github.com/sebastianbergmann/complexity",
  10067. "support": {
  10068. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10069. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10070. },
  10071. "funding": [
  10072. {
  10073. "url": "https://github.com/sebastianbergmann",
  10074. "type": "github"
  10075. }
  10076. ],
  10077. "time": "2020-10-26T15:52:27+00:00"
  10078. },
  10079. {
  10080. "name": "sebastian/diff",
  10081. "version": "4.0.4",
  10082. "source": {
  10083. "type": "git",
  10084. "url": "https://github.com/sebastianbergmann/diff.git",
  10085. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10086. },
  10087. "dist": {
  10088. "type": "zip",
  10089. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10090. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10091. "shasum": ""
  10092. },
  10093. "require": {
  10094. "php": ">=7.3"
  10095. },
  10096. "require-dev": {
  10097. "phpunit/phpunit": "^9.3",
  10098. "symfony/process": "^4.2 || ^5"
  10099. },
  10100. "type": "library",
  10101. "extra": {
  10102. "branch-alias": {
  10103. "dev-master": "4.0-dev"
  10104. }
  10105. },
  10106. "autoload": {
  10107. "classmap": [
  10108. "src/"
  10109. ]
  10110. },
  10111. "notification-url": "https://packagist.org/downloads/",
  10112. "license": [
  10113. "BSD-3-Clause"
  10114. ],
  10115. "authors": [
  10116. {
  10117. "name": "Sebastian Bergmann",
  10118. "email": "sebastian@phpunit.de"
  10119. },
  10120. {
  10121. "name": "Kore Nordmann",
  10122. "email": "mail@kore-nordmann.de"
  10123. }
  10124. ],
  10125. "description": "Diff implementation",
  10126. "homepage": "https://github.com/sebastianbergmann/diff",
  10127. "keywords": [
  10128. "diff",
  10129. "udiff",
  10130. "unidiff",
  10131. "unified diff"
  10132. ],
  10133. "support": {
  10134. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10135. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10136. },
  10137. "funding": [
  10138. {
  10139. "url": "https://github.com/sebastianbergmann",
  10140. "type": "github"
  10141. }
  10142. ],
  10143. "time": "2020-10-26T13:10:38+00:00"
  10144. },
  10145. {
  10146. "name": "sebastian/environment",
  10147. "version": "5.1.3",
  10148. "source": {
  10149. "type": "git",
  10150. "url": "https://github.com/sebastianbergmann/environment.git",
  10151. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  10152. },
  10153. "dist": {
  10154. "type": "zip",
  10155. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  10156. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  10157. "shasum": ""
  10158. },
  10159. "require": {
  10160. "php": ">=7.3"
  10161. },
  10162. "require-dev": {
  10163. "phpunit/phpunit": "^9.3"
  10164. },
  10165. "suggest": {
  10166. "ext-posix": "*"
  10167. },
  10168. "type": "library",
  10169. "extra": {
  10170. "branch-alias": {
  10171. "dev-master": "5.1-dev"
  10172. }
  10173. },
  10174. "autoload": {
  10175. "classmap": [
  10176. "src/"
  10177. ]
  10178. },
  10179. "notification-url": "https://packagist.org/downloads/",
  10180. "license": [
  10181. "BSD-3-Clause"
  10182. ],
  10183. "authors": [
  10184. {
  10185. "name": "Sebastian Bergmann",
  10186. "email": "sebastian@phpunit.de"
  10187. }
  10188. ],
  10189. "description": "Provides functionality to handle HHVM/PHP environments",
  10190. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10191. "keywords": [
  10192. "Xdebug",
  10193. "environment",
  10194. "hhvm"
  10195. ],
  10196. "support": {
  10197. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10198. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  10199. },
  10200. "funding": [
  10201. {
  10202. "url": "https://github.com/sebastianbergmann",
  10203. "type": "github"
  10204. }
  10205. ],
  10206. "time": "2020-09-28T05:52:38+00:00"
  10207. },
  10208. {
  10209. "name": "sebastian/exporter",
  10210. "version": "4.0.3",
  10211. "source": {
  10212. "type": "git",
  10213. "url": "https://github.com/sebastianbergmann/exporter.git",
  10214. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  10215. },
  10216. "dist": {
  10217. "type": "zip",
  10218. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10219. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10220. "shasum": ""
  10221. },
  10222. "require": {
  10223. "php": ">=7.3",
  10224. "sebastian/recursion-context": "^4.0"
  10225. },
  10226. "require-dev": {
  10227. "ext-mbstring": "*",
  10228. "phpunit/phpunit": "^9.3"
  10229. },
  10230. "type": "library",
  10231. "extra": {
  10232. "branch-alias": {
  10233. "dev-master": "4.0-dev"
  10234. }
  10235. },
  10236. "autoload": {
  10237. "classmap": [
  10238. "src/"
  10239. ]
  10240. },
  10241. "notification-url": "https://packagist.org/downloads/",
  10242. "license": [
  10243. "BSD-3-Clause"
  10244. ],
  10245. "authors": [
  10246. {
  10247. "name": "Sebastian Bergmann",
  10248. "email": "sebastian@phpunit.de"
  10249. },
  10250. {
  10251. "name": "Jeff Welch",
  10252. "email": "whatthejeff@gmail.com"
  10253. },
  10254. {
  10255. "name": "Volker Dusch",
  10256. "email": "github@wallbash.com"
  10257. },
  10258. {
  10259. "name": "Adam Harvey",
  10260. "email": "aharvey@php.net"
  10261. },
  10262. {
  10263. "name": "Bernhard Schussek",
  10264. "email": "bschussek@gmail.com"
  10265. }
  10266. ],
  10267. "description": "Provides the functionality to export PHP variables for visualization",
  10268. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10269. "keywords": [
  10270. "export",
  10271. "exporter"
  10272. ],
  10273. "support": {
  10274. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10275. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  10276. },
  10277. "funding": [
  10278. {
  10279. "url": "https://github.com/sebastianbergmann",
  10280. "type": "github"
  10281. }
  10282. ],
  10283. "time": "2020-09-28T05:24:23+00:00"
  10284. },
  10285. {
  10286. "name": "sebastian/global-state",
  10287. "version": "5.0.2",
  10288. "source": {
  10289. "type": "git",
  10290. "url": "https://github.com/sebastianbergmann/global-state.git",
  10291. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  10292. },
  10293. "dist": {
  10294. "type": "zip",
  10295. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  10296. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  10297. "shasum": ""
  10298. },
  10299. "require": {
  10300. "php": ">=7.3",
  10301. "sebastian/object-reflector": "^2.0",
  10302. "sebastian/recursion-context": "^4.0"
  10303. },
  10304. "require-dev": {
  10305. "ext-dom": "*",
  10306. "phpunit/phpunit": "^9.3"
  10307. },
  10308. "suggest": {
  10309. "ext-uopz": "*"
  10310. },
  10311. "type": "library",
  10312. "extra": {
  10313. "branch-alias": {
  10314. "dev-master": "5.0-dev"
  10315. }
  10316. },
  10317. "autoload": {
  10318. "classmap": [
  10319. "src/"
  10320. ]
  10321. },
  10322. "notification-url": "https://packagist.org/downloads/",
  10323. "license": [
  10324. "BSD-3-Clause"
  10325. ],
  10326. "authors": [
  10327. {
  10328. "name": "Sebastian Bergmann",
  10329. "email": "sebastian@phpunit.de"
  10330. }
  10331. ],
  10332. "description": "Snapshotting of global state",
  10333. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10334. "keywords": [
  10335. "global state"
  10336. ],
  10337. "support": {
  10338. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10339. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  10340. },
  10341. "funding": [
  10342. {
  10343. "url": "https://github.com/sebastianbergmann",
  10344. "type": "github"
  10345. }
  10346. ],
  10347. "time": "2020-10-26T15:55:19+00:00"
  10348. },
  10349. {
  10350. "name": "sebastian/lines-of-code",
  10351. "version": "1.0.3",
  10352. "source": {
  10353. "type": "git",
  10354. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10355. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10356. },
  10357. "dist": {
  10358. "type": "zip",
  10359. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10360. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10361. "shasum": ""
  10362. },
  10363. "require": {
  10364. "nikic/php-parser": "^4.6",
  10365. "php": ">=7.3"
  10366. },
  10367. "require-dev": {
  10368. "phpunit/phpunit": "^9.3"
  10369. },
  10370. "type": "library",
  10371. "extra": {
  10372. "branch-alias": {
  10373. "dev-master": "1.0-dev"
  10374. }
  10375. },
  10376. "autoload": {
  10377. "classmap": [
  10378. "src/"
  10379. ]
  10380. },
  10381. "notification-url": "https://packagist.org/downloads/",
  10382. "license": [
  10383. "BSD-3-Clause"
  10384. ],
  10385. "authors": [
  10386. {
  10387. "name": "Sebastian Bergmann",
  10388. "email": "sebastian@phpunit.de",
  10389. "role": "lead"
  10390. }
  10391. ],
  10392. "description": "Library for counting the lines of code in PHP source code",
  10393. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10394. "support": {
  10395. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10396. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10397. },
  10398. "funding": [
  10399. {
  10400. "url": "https://github.com/sebastianbergmann",
  10401. "type": "github"
  10402. }
  10403. ],
  10404. "time": "2020-11-28T06:42:11+00:00"
  10405. },
  10406. {
  10407. "name": "sebastian/object-enumerator",
  10408. "version": "4.0.4",
  10409. "source": {
  10410. "type": "git",
  10411. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10412. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10413. },
  10414. "dist": {
  10415. "type": "zip",
  10416. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10417. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10418. "shasum": ""
  10419. },
  10420. "require": {
  10421. "php": ">=7.3",
  10422. "sebastian/object-reflector": "^2.0",
  10423. "sebastian/recursion-context": "^4.0"
  10424. },
  10425. "require-dev": {
  10426. "phpunit/phpunit": "^9.3"
  10427. },
  10428. "type": "library",
  10429. "extra": {
  10430. "branch-alias": {
  10431. "dev-master": "4.0-dev"
  10432. }
  10433. },
  10434. "autoload": {
  10435. "classmap": [
  10436. "src/"
  10437. ]
  10438. },
  10439. "notification-url": "https://packagist.org/downloads/",
  10440. "license": [
  10441. "BSD-3-Clause"
  10442. ],
  10443. "authors": [
  10444. {
  10445. "name": "Sebastian Bergmann",
  10446. "email": "sebastian@phpunit.de"
  10447. }
  10448. ],
  10449. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10450. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10451. "support": {
  10452. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10453. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10454. },
  10455. "funding": [
  10456. {
  10457. "url": "https://github.com/sebastianbergmann",
  10458. "type": "github"
  10459. }
  10460. ],
  10461. "time": "2020-10-26T13:12:34+00:00"
  10462. },
  10463. {
  10464. "name": "sebastian/object-reflector",
  10465. "version": "2.0.4",
  10466. "source": {
  10467. "type": "git",
  10468. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10469. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10470. },
  10471. "dist": {
  10472. "type": "zip",
  10473. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10474. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10475. "shasum": ""
  10476. },
  10477. "require": {
  10478. "php": ">=7.3"
  10479. },
  10480. "require-dev": {
  10481. "phpunit/phpunit": "^9.3"
  10482. },
  10483. "type": "library",
  10484. "extra": {
  10485. "branch-alias": {
  10486. "dev-master": "2.0-dev"
  10487. }
  10488. },
  10489. "autoload": {
  10490. "classmap": [
  10491. "src/"
  10492. ]
  10493. },
  10494. "notification-url": "https://packagist.org/downloads/",
  10495. "license": [
  10496. "BSD-3-Clause"
  10497. ],
  10498. "authors": [
  10499. {
  10500. "name": "Sebastian Bergmann",
  10501. "email": "sebastian@phpunit.de"
  10502. }
  10503. ],
  10504. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10505. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10506. "support": {
  10507. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10508. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10509. },
  10510. "funding": [
  10511. {
  10512. "url": "https://github.com/sebastianbergmann",
  10513. "type": "github"
  10514. }
  10515. ],
  10516. "time": "2020-10-26T13:14:26+00:00"
  10517. },
  10518. {
  10519. "name": "sebastian/recursion-context",
  10520. "version": "4.0.4",
  10521. "source": {
  10522. "type": "git",
  10523. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10524. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  10525. },
  10526. "dist": {
  10527. "type": "zip",
  10528. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  10529. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  10530. "shasum": ""
  10531. },
  10532. "require": {
  10533. "php": ">=7.3"
  10534. },
  10535. "require-dev": {
  10536. "phpunit/phpunit": "^9.3"
  10537. },
  10538. "type": "library",
  10539. "extra": {
  10540. "branch-alias": {
  10541. "dev-master": "4.0-dev"
  10542. }
  10543. },
  10544. "autoload": {
  10545. "classmap": [
  10546. "src/"
  10547. ]
  10548. },
  10549. "notification-url": "https://packagist.org/downloads/",
  10550. "license": [
  10551. "BSD-3-Clause"
  10552. ],
  10553. "authors": [
  10554. {
  10555. "name": "Sebastian Bergmann",
  10556. "email": "sebastian@phpunit.de"
  10557. },
  10558. {
  10559. "name": "Jeff Welch",
  10560. "email": "whatthejeff@gmail.com"
  10561. },
  10562. {
  10563. "name": "Adam Harvey",
  10564. "email": "aharvey@php.net"
  10565. }
  10566. ],
  10567. "description": "Provides functionality to recursively process PHP variables",
  10568. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10569. "support": {
  10570. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10571. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  10572. },
  10573. "funding": [
  10574. {
  10575. "url": "https://github.com/sebastianbergmann",
  10576. "type": "github"
  10577. }
  10578. ],
  10579. "time": "2020-10-26T13:17:30+00:00"
  10580. },
  10581. {
  10582. "name": "sebastian/resource-operations",
  10583. "version": "3.0.3",
  10584. "source": {
  10585. "type": "git",
  10586. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10587. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10588. },
  10589. "dist": {
  10590. "type": "zip",
  10591. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10592. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10593. "shasum": ""
  10594. },
  10595. "require": {
  10596. "php": ">=7.3"
  10597. },
  10598. "require-dev": {
  10599. "phpunit/phpunit": "^9.0"
  10600. },
  10601. "type": "library",
  10602. "extra": {
  10603. "branch-alias": {
  10604. "dev-master": "3.0-dev"
  10605. }
  10606. },
  10607. "autoload": {
  10608. "classmap": [
  10609. "src/"
  10610. ]
  10611. },
  10612. "notification-url": "https://packagist.org/downloads/",
  10613. "license": [
  10614. "BSD-3-Clause"
  10615. ],
  10616. "authors": [
  10617. {
  10618. "name": "Sebastian Bergmann",
  10619. "email": "sebastian@phpunit.de"
  10620. }
  10621. ],
  10622. "description": "Provides a list of PHP built-in functions that operate on resources",
  10623. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10624. "support": {
  10625. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10626. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10627. },
  10628. "funding": [
  10629. {
  10630. "url": "https://github.com/sebastianbergmann",
  10631. "type": "github"
  10632. }
  10633. ],
  10634. "time": "2020-09-28T06:45:17+00:00"
  10635. },
  10636. {
  10637. "name": "sebastian/type",
  10638. "version": "2.3.1",
  10639. "source": {
  10640. "type": "git",
  10641. "url": "https://github.com/sebastianbergmann/type.git",
  10642. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  10643. },
  10644. "dist": {
  10645. "type": "zip",
  10646. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  10647. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  10648. "shasum": ""
  10649. },
  10650. "require": {
  10651. "php": ">=7.3"
  10652. },
  10653. "require-dev": {
  10654. "phpunit/phpunit": "^9.3"
  10655. },
  10656. "type": "library",
  10657. "extra": {
  10658. "branch-alias": {
  10659. "dev-master": "2.3-dev"
  10660. }
  10661. },
  10662. "autoload": {
  10663. "classmap": [
  10664. "src/"
  10665. ]
  10666. },
  10667. "notification-url": "https://packagist.org/downloads/",
  10668. "license": [
  10669. "BSD-3-Clause"
  10670. ],
  10671. "authors": [
  10672. {
  10673. "name": "Sebastian Bergmann",
  10674. "email": "sebastian@phpunit.de",
  10675. "role": "lead"
  10676. }
  10677. ],
  10678. "description": "Collection of value objects that represent the types of the PHP type system",
  10679. "homepage": "https://github.com/sebastianbergmann/type",
  10680. "support": {
  10681. "issues": "https://github.com/sebastianbergmann/type/issues",
  10682. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  10683. },
  10684. "funding": [
  10685. {
  10686. "url": "https://github.com/sebastianbergmann",
  10687. "type": "github"
  10688. }
  10689. ],
  10690. "time": "2020-10-26T13:18:59+00:00"
  10691. },
  10692. {
  10693. "name": "sebastian/version",
  10694. "version": "3.0.2",
  10695. "source": {
  10696. "type": "git",
  10697. "url": "https://github.com/sebastianbergmann/version.git",
  10698. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10699. },
  10700. "dist": {
  10701. "type": "zip",
  10702. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10703. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10704. "shasum": ""
  10705. },
  10706. "require": {
  10707. "php": ">=7.3"
  10708. },
  10709. "type": "library",
  10710. "extra": {
  10711. "branch-alias": {
  10712. "dev-master": "3.0-dev"
  10713. }
  10714. },
  10715. "autoload": {
  10716. "classmap": [
  10717. "src/"
  10718. ]
  10719. },
  10720. "notification-url": "https://packagist.org/downloads/",
  10721. "license": [
  10722. "BSD-3-Clause"
  10723. ],
  10724. "authors": [
  10725. {
  10726. "name": "Sebastian Bergmann",
  10727. "email": "sebastian@phpunit.de",
  10728. "role": "lead"
  10729. }
  10730. ],
  10731. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10732. "homepage": "https://github.com/sebastianbergmann/version",
  10733. "support": {
  10734. "issues": "https://github.com/sebastianbergmann/version/issues",
  10735. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10736. },
  10737. "funding": [
  10738. {
  10739. "url": "https://github.com/sebastianbergmann",
  10740. "type": "github"
  10741. }
  10742. ],
  10743. "time": "2020-09-28T06:39:44+00:00"
  10744. },
  10745. {
  10746. "name": "theseer/tokenizer",
  10747. "version": "1.2.0",
  10748. "source": {
  10749. "type": "git",
  10750. "url": "https://github.com/theseer/tokenizer.git",
  10751. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  10752. },
  10753. "dist": {
  10754. "type": "zip",
  10755. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  10756. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  10757. "shasum": ""
  10758. },
  10759. "require": {
  10760. "ext-dom": "*",
  10761. "ext-tokenizer": "*",
  10762. "ext-xmlwriter": "*",
  10763. "php": "^7.2 || ^8.0"
  10764. },
  10765. "type": "library",
  10766. "autoload": {
  10767. "classmap": [
  10768. "src/"
  10769. ]
  10770. },
  10771. "notification-url": "https://packagist.org/downloads/",
  10772. "license": [
  10773. "BSD-3-Clause"
  10774. ],
  10775. "authors": [
  10776. {
  10777. "name": "Arne Blankerts",
  10778. "email": "arne@blankerts.de",
  10779. "role": "Developer"
  10780. }
  10781. ],
  10782. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10783. "support": {
  10784. "issues": "https://github.com/theseer/tokenizer/issues",
  10785. "source": "https://github.com/theseer/tokenizer/tree/master"
  10786. },
  10787. "funding": [
  10788. {
  10789. "url": "https://github.com/theseer",
  10790. "type": "github"
  10791. }
  10792. ],
  10793. "time": "2020-07-12T23:59:07+00:00"
  10794. }
  10795. ],
  10796. "aliases": [],
  10797. "minimum-stability": "dev",
  10798. "stability-flags": [],
  10799. "prefer-stable": true,
  10800. "prefer-lowest": false,
  10801. "platform": {
  10802. "php": "^7.3",
  10803. "ext-bcmath": "*",
  10804. "ext-ctype": "*",
  10805. "ext-curl": "*",
  10806. "ext-intl": "*",
  10807. "ext-json": "*",
  10808. "ext-mbstring": "*",
  10809. "ext-openssl": "*"
  10810. },
  10811. "platform-dev": [],
  10812. "plugin-api-version": "2.0.0"
  10813. }