composer.lock 244 KB

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