composer.lock 220 KB

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