composer.lock 245 KB

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