composer.lock 206 KB

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