composer.lock 194 KB

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