composer.lock 246 KB

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