composer.lock 198 KB

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