composer.lock 204 KB

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