composer.lock 200 KB

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