composer.lock 195 KB

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