composer.lock 199 KB

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