composer.lock 205 KB

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