composer.lock 176 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076
  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": "e6e1a76cc207c57b4e810605df02766b",
  8. "packages": [
  9. {
  10. "name": "2amigos/yii2-editable-widget",
  11. "version": "0.1.4",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/2amigos/yii2-editable-widget.git",
  15. "reference": "4ef78e7bfd575dc39e43e85ef23196382cb72783"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://mirrors.huaweicloud.com/repository/php/2amigos/yii2-editable-widget/0.1.4/2amigos-yii2-editable-widget-0.1.4.zip",
  20. "reference": "4ef78e7bfd575dc39e43e85ef23196382cb72783",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "bower-asset/select2": "3.5.2",
  25. "yiisoft/yii2": "*"
  26. },
  27. "type": "yii2-extension",
  28. "autoload": {
  29. "psr-4": {
  30. "dosamigos\\editable\\": ""
  31. }
  32. },
  33. "license": [
  34. "BSD-3-Clause"
  35. ],
  36. "authors": [
  37. {
  38. "name": "Antonio Ramirez",
  39. "email": "ramirez.cobos@gmail.com",
  40. "homepage": "http://2amigos.us"
  41. }
  42. ],
  43. "description": "X-Editable widget for Yii2.",
  44. "keywords": [
  45. "extension",
  46. "widget",
  47. "x-editable",
  48. "yii"
  49. ],
  50. "abandoned": true,
  51. "time": "2015-02-20T15:13:36+00:00"
  52. },
  53. {
  54. "name": "abei2017/yii2-wx",
  55. "version": "1.3.6",
  56. "source": {
  57. "type": "git",
  58. "url": "https://github.com/abei2017/yii2-wx.git",
  59. "reference": "3bc6794d8a5d5792695b1b38c3134f5cfeec1e1b"
  60. },
  61. "dist": {
  62. "type": "zip",
  63. "url": "https://mirrors.huaweicloud.com/repository/php/abei2017/yii2-wx/1.3.6/abei2017-yii2-wx-1.3.6.zip",
  64. "reference": "3bc6794d8a5d5792695b1b38c3134f5cfeec1e1b",
  65. "shasum": ""
  66. },
  67. "require": {
  68. "php": ">=5.4",
  69. "yiisoft/yii2": "*",
  70. "yiisoft/yii2-httpclient": "^2.0"
  71. },
  72. "type": "yii2-extension",
  73. "autoload": {
  74. "psr-4": {
  75. "abei2017\\wx\\": "src"
  76. }
  77. },
  78. "license": [
  79. "MIT"
  80. ],
  81. "authors": [
  82. {
  83. "name": "abei",
  84. "email": "abei@nai8.me"
  85. }
  86. ],
  87. "description": "一个专注于yii2的微信sdk",
  88. "keywords": [
  89. "extension",
  90. "wechat",
  91. "yii2"
  92. ],
  93. "time": "2020-12-02T01:25:14+00:00"
  94. },
  95. {
  96. "name": "aferrandini/phpqrcode",
  97. "version": "1.0.1",
  98. "source": {
  99. "type": "git",
  100. "url": "https://github.com/aferrandini/PHPQRCode.git",
  101. "reference": "3c1c0454d43710ab5bbe19a51ad4cb41c22e3d46"
  102. },
  103. "dist": {
  104. "type": "zip",
  105. "url": "https://mirrors.huaweicloud.com/repository/php/aferrandini/phpqrcode/1.0.1/aferrandini-phpqrcode-1.0.1.zip",
  106. "reference": "3c1c0454d43710ab5bbe19a51ad4cb41c22e3d46",
  107. "shasum": ""
  108. },
  109. "require": {
  110. "php": ">=5.3.0"
  111. },
  112. "type": "library",
  113. "autoload": {
  114. "psr-0": {
  115. "PHPQRCode": "lib/"
  116. }
  117. },
  118. "license": [
  119. "MIT"
  120. ],
  121. "authors": [
  122. {
  123. "name": "Ariel Ferrandini",
  124. "email": "arielferrandini@gmail.com",
  125. "homepage": "http://www.ferrandini.com/",
  126. "role": "Developer"
  127. }
  128. ],
  129. "description": "PHPQRCode porting and changed for PHP 5.3 compatibility",
  130. "homepage": "https://github.com/aferrandini/PHPQRCode",
  131. "keywords": [
  132. "barcode",
  133. "php",
  134. "qrcode"
  135. ],
  136. "abandoned": "endroid/qr-code",
  137. "time": "2013-07-08T09:39:08+00:00"
  138. },
  139. {
  140. "name": "bower-asset/blueimp-file-upload",
  141. "version": "v10.32.0",
  142. "source": {
  143. "type": "git",
  144. "url": "https://github.com/blueimp/jQuery-File-Upload.git",
  145. "reference": "0c85627dfb551e2ce25b82cddef557069bd803ed"
  146. },
  147. "dist": {
  148. "type": "zip",
  149. "url": "https://api.github.com/repos/blueimp/jQuery-File-Upload/zipball/0c85627dfb551e2ce25b82cddef557069bd803ed",
  150. "reference": "0c85627dfb551e2ce25b82cddef557069bd803ed"
  151. },
  152. "type": "bower-asset"
  153. },
  154. {
  155. "name": "bower-asset/bootstrap",
  156. "version": "v3.4.1",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/twbs/bootstrap.git",
  160. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/68b0d231a13201eb14acd3dc84e51543d16e5f7e",
  165. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e"
  166. },
  167. "require": {
  168. "bower-asset/jquery": ">=1.9.1,<4.0"
  169. },
  170. "type": "bower-asset",
  171. "license": [
  172. "MIT"
  173. ]
  174. },
  175. {
  176. "name": "bower-asset/editor.md",
  177. "version": "v1.5.0",
  178. "source": {
  179. "type": "git",
  180. "url": "https://github.com/pandao/editor.md.git",
  181. "reference": "af08536772e34f6ef95870bb4cfd85d09bf1c932"
  182. },
  183. "dist": {
  184. "type": "zip",
  185. "url": "https://api.github.com/repos/pandao/editor.md/zipball/af08536772e34f6ef95870bb4cfd85d09bf1c932",
  186. "reference": "af08536772e34f6ef95870bb4cfd85d09bf1c932"
  187. },
  188. "type": "bower-asset",
  189. "license": [
  190. "MIT"
  191. ]
  192. },
  193. {
  194. "name": "bower-asset/inputmask",
  195. "version": "3.3.11",
  196. "source": {
  197. "type": "git",
  198. "url": "https://github.com/RobinHerbots/Inputmask.git",
  199. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  200. },
  201. "dist": {
  202. "type": "zip",
  203. "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/5e670ad62f50c738388d4dcec78d2888505ad77b",
  204. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  205. },
  206. "require": {
  207. "bower-asset/jquery": ">=1.7"
  208. },
  209. "type": "bower-asset",
  210. "license": [
  211. "http://opensource.org/licenses/mit-license.php"
  212. ]
  213. },
  214. {
  215. "name": "bower-asset/jquery",
  216. "version": "3.7.1",
  217. "source": {
  218. "type": "git",
  219. "url": "https://github.com/jquery/jquery-dist.git",
  220. "reference": "fde1f76e2799dd877c176abde0ec836553246991"
  221. },
  222. "dist": {
  223. "type": "zip",
  224. "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/fde1f76e2799dd877c176abde0ec836553246991",
  225. "reference": "fde1f76e2799dd877c176abde0ec836553246991"
  226. },
  227. "type": "bower-asset",
  228. "license": [
  229. "MIT"
  230. ]
  231. },
  232. {
  233. "name": "bower-asset/punycode",
  234. "version": "v1.3.2",
  235. "source": {
  236. "type": "git",
  237. "url": "https://github.com/mathiasbynens/punycode.js.git",
  238. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  239. },
  240. "dist": {
  241. "type": "zip",
  242. "url": "https://api.github.com/repos/mathiasbynens/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  243. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  244. },
  245. "type": "bower-asset"
  246. },
  247. {
  248. "name": "bower-asset/select2",
  249. "version": "3.5.2",
  250. "source": {
  251. "type": "git",
  252. "url": "git@github.com:ivaynberg/select2.git",
  253. "reference": "6633cda9061d9fc65075dd140c63f9a6adbcbd72"
  254. },
  255. "dist": {
  256. "type": "zip",
  257. "url": "https://api.github.com/repos/ivaynberg/select2/zipball/6633cda9061d9fc65075dd140c63f9a6adbcbd72",
  258. "reference": "6633cda9061d9fc65075dd140c63f9a6adbcbd72"
  259. },
  260. "require": {
  261. "bower-asset/jquery": ">=1.7.1"
  262. },
  263. "type": "bower-asset"
  264. },
  265. {
  266. "name": "bower-asset/yii2-pjax",
  267. "version": "2.0.8",
  268. "source": {
  269. "type": "git",
  270. "url": "git@github.com:yiisoft/jquery-pjax.git",
  271. "reference": "a9298d57da63d14a950f1b94366a864bc62264fb"
  272. },
  273. "dist": {
  274. "type": "zip",
  275. "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/a9298d57da63d14a950f1b94366a864bc62264fb",
  276. "reference": "a9298d57da63d14a950f1b94366a864bc62264fb"
  277. },
  278. "require": {
  279. "bower-asset/jquery": ">=1.8"
  280. },
  281. "type": "bower-asset",
  282. "license": [
  283. "MIT"
  284. ]
  285. },
  286. {
  287. "name": "cebe/markdown",
  288. "version": "1.2.1",
  289. "source": {
  290. "type": "git",
  291. "url": "https://github.com/cebe/markdown.git",
  292. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86"
  293. },
  294. "dist": {
  295. "type": "zip",
  296. "url": "https://mirrors.huaweicloud.com/repository/php/cebe/markdown/1.2.1/cebe-markdown-1.2.1.zip",
  297. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  298. "shasum": ""
  299. },
  300. "require": {
  301. "lib-pcre": "*",
  302. "php": ">=5.4.0"
  303. },
  304. "require-dev": {
  305. "cebe/indent": "*",
  306. "facebook/xhprof": "*@dev",
  307. "phpunit/phpunit": "4.1.*"
  308. },
  309. "bin": [
  310. "bin/markdown"
  311. ],
  312. "type": "library",
  313. "extra": {
  314. "branch-alias": {
  315. "dev-master": "1.2.x-dev"
  316. }
  317. },
  318. "autoload": {
  319. "psr-4": {
  320. "cebe\\markdown\\": ""
  321. }
  322. },
  323. "license": [
  324. "MIT"
  325. ],
  326. "authors": [
  327. {
  328. "name": "Carsten Brandt",
  329. "email": "mail@cebe.cc",
  330. "homepage": "http://cebe.cc/",
  331. "role": "Creator"
  332. }
  333. ],
  334. "description": "A super fast, highly extensible markdown parser for PHP",
  335. "homepage": "https://github.com/cebe/markdown#readme",
  336. "keywords": [
  337. "extensible",
  338. "fast",
  339. "gfm",
  340. "markdown",
  341. "markdown-extra"
  342. ],
  343. "time": "2018-03-26T11:24:36+00:00"
  344. },
  345. {
  346. "name": "chenkby/yii2-region",
  347. "version": "dev-master",
  348. "source": {
  349. "type": "git",
  350. "url": "https://github.com/chenkby/yii2-region.git",
  351. "reference": "b377af6986f0372bb0707512e52a7b54f7d323c2"
  352. },
  353. "dist": {
  354. "type": "zip",
  355. "url": "https://mirrors.huaweicloud.com/repository/php/chenkby/yii2-region/dev-master/chenkby-yii2-region-dev-master.zip",
  356. "reference": "b377af6986f0372bb0707512e52a7b54f7d323c2",
  357. "shasum": ""
  358. },
  359. "require": {
  360. "yiisoft/yii2": "*"
  361. },
  362. "default-branch": true,
  363. "type": "yii2-widget",
  364. "autoload": {
  365. "psr-4": {
  366. "chenkby\\region\\": ""
  367. }
  368. },
  369. "license": [
  370. "BSD-3-Clause"
  371. ],
  372. "authors": [
  373. {
  374. "name": "ChenGuanQun",
  375. "email": "99912250@qq.com"
  376. }
  377. ],
  378. "description": "Yii2中国省市区三级联动",
  379. "keywords": [
  380. "city",
  381. "district",
  382. "province",
  383. "region",
  384. "yii2"
  385. ],
  386. "time": "2017-02-22T07:06:12+00:00"
  387. },
  388. {
  389. "name": "creocoder/yii2-flysystem",
  390. "version": "1.2.0",
  391. "source": {
  392. "type": "git",
  393. "url": "https://github.com/creocoder/yii2-flysystem.git",
  394. "reference": "12b0c0cc8ded3ff8d41d9cd723d7fb7b09b99a49"
  395. },
  396. "dist": {
  397. "type": "zip",
  398. "url": "https://mirrors.huaweicloud.com/repository/php/creocoder/yii2-flysystem/1.2.0/creocoder-yii2-flysystem-1.2.0.zip",
  399. "reference": "12b0c0cc8ded3ff8d41d9cd723d7fb7b09b99a49",
  400. "shasum": ""
  401. },
  402. "require": {
  403. "league/flysystem": "~1.0",
  404. "yiisoft/yii2": "~2.0.0"
  405. },
  406. "conflict": {
  407. "league/flysystem-aws-s3-v3": "<1.0.26"
  408. },
  409. "require-dev": {
  410. "league/flysystem-aws-s3-v3": "~1.0",
  411. "league/flysystem-azure": "~1.0",
  412. "league/flysystem-cached-adapter": "~1.0",
  413. "league/flysystem-gridfs": "~1.0",
  414. "league/flysystem-rackspace": "~1.0",
  415. "league/flysystem-replicate-adapter": "~1.0",
  416. "league/flysystem-sftp": "~1.0",
  417. "league/flysystem-webdav": "~1.0",
  418. "league/flysystem-ziparchive": "~1.0",
  419. "spatie/flysystem-dropbox": "~1.0"
  420. },
  421. "type": "yii2-extension",
  422. "autoload": {
  423. "psr-4": {
  424. "creocoder\\flysystem\\": "src"
  425. }
  426. },
  427. "license": [
  428. "BSD-3-Clause"
  429. ],
  430. "authors": [
  431. {
  432. "name": "Alexander Kochetov",
  433. "email": "creocoder@gmail.com"
  434. }
  435. ],
  436. "description": "The flysystem extension for the Yii framework",
  437. "keywords": [
  438. "Flysystem",
  439. "GridFS",
  440. "WebDAV",
  441. "aws",
  442. "azure",
  443. "copy.com",
  444. "dropbox",
  445. "files",
  446. "filesystem",
  447. "ftp",
  448. "rackspace",
  449. "s3",
  450. "sftp",
  451. "yii2"
  452. ],
  453. "time": "2023-07-31T16:02:45+00:00"
  454. },
  455. {
  456. "name": "doctrine/deprecations",
  457. "version": "v1.1.1",
  458. "source": {
  459. "type": "git",
  460. "url": "https://github.com/doctrine/deprecations.git",
  461. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3"
  462. },
  463. "dist": {
  464. "type": "zip",
  465. "url": "https://mirrors.huaweicloud.com/repository/php/doctrine/deprecations/v1.1.1/doctrine-deprecations-v1.1.1.zip",
  466. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  467. "shasum": ""
  468. },
  469. "require": {
  470. "php": "^7.1 || ^8.0"
  471. },
  472. "require-dev": {
  473. "doctrine/coding-standard": "^9",
  474. "phpstan/phpstan": "1.4.10 || 1.10.15",
  475. "phpstan/phpstan-phpunit": "^1.0",
  476. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  477. "psalm/plugin-phpunit": "0.18.4",
  478. "psr/log": "^1 || ^2 || ^3",
  479. "vimeo/psalm": "4.30.0 || 5.12.0"
  480. },
  481. "suggest": {
  482. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  483. },
  484. "type": "library",
  485. "autoload": {
  486. "psr-4": {
  487. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  488. }
  489. },
  490. "license": [
  491. "MIT"
  492. ],
  493. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  494. "homepage": "https://www.doctrine-project.org/",
  495. "time": "2023-06-03T09:27:29+00:00"
  496. },
  497. {
  498. "name": "doctrine/lexer",
  499. "version": "2.1.0",
  500. "source": {
  501. "type": "git",
  502. "url": "https://github.com/doctrine/lexer.git",
  503. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  504. },
  505. "dist": {
  506. "type": "zip",
  507. "url": "https://mirrors.huaweicloud.com/repository/php/doctrine/lexer/2.1.0/doctrine-lexer-2.1.0.zip",
  508. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  509. "shasum": ""
  510. },
  511. "require": {
  512. "doctrine/deprecations": "^1.0",
  513. "php": "^7.1 || ^8.0"
  514. },
  515. "require-dev": {
  516. "doctrine/coding-standard": "^9 || ^10",
  517. "phpstan/phpstan": "^1.3",
  518. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  519. "psalm/plugin-phpunit": "^0.18.3",
  520. "vimeo/psalm": "^4.11 || ^5.0"
  521. },
  522. "type": "library",
  523. "autoload": {
  524. "psr-4": {
  525. "Doctrine\\Common\\Lexer\\": "src"
  526. }
  527. },
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Guilherme Blanco",
  534. "email": "guilhermeblanco@gmail.com"
  535. },
  536. {
  537. "name": "Roman Borschel",
  538. "email": "roman@code-factory.org"
  539. },
  540. {
  541. "name": "Johannes Schmitt",
  542. "email": "schmittjoh@gmail.com"
  543. }
  544. ],
  545. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  546. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  547. "keywords": [
  548. "annotations",
  549. "docblock",
  550. "lexer",
  551. "parser",
  552. "php"
  553. ],
  554. "funding": [
  555. {
  556. "url": "https://www.doctrine-project.org/sponsorship.html",
  557. "type": "custom"
  558. },
  559. {
  560. "url": "https://www.patreon.com/phpdoctrine",
  561. "type": "patreon"
  562. },
  563. {
  564. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  565. "type": "tidelift"
  566. }
  567. ],
  568. "time": "2022-12-14T08:49:07+00:00"
  569. },
  570. {
  571. "name": "dragonmantank/cron-expression",
  572. "version": "v1.2.1",
  573. "source": {
  574. "type": "git",
  575. "url": "https://github.com/dragonmantank/cron-expression.git",
  576. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  577. },
  578. "dist": {
  579. "type": "zip",
  580. "url": "https://mirrors.huaweicloud.com/repository/php/dragonmantank/cron-expression/v1.2.1/dragonmantank-cron-expression-v1.2.1.zip",
  581. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  582. "shasum": ""
  583. },
  584. "require": {
  585. "php": ">=5.3.2"
  586. },
  587. "require-dev": {
  588. "phpunit/phpunit": "~4.0|~5.0"
  589. },
  590. "type": "library",
  591. "autoload": {
  592. "psr-4": {
  593. "Cron\\": "src/Cron/"
  594. }
  595. },
  596. "license": [
  597. "MIT"
  598. ],
  599. "authors": [
  600. {
  601. "name": "Michael Dowling",
  602. "email": "mtdowling@gmail.com",
  603. "homepage": "https://github.com/mtdowling"
  604. }
  605. ],
  606. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  607. "keywords": [
  608. "cron",
  609. "schedule"
  610. ],
  611. "time": "2017-01-23T04:29:33+00:00"
  612. },
  613. {
  614. "name": "egulias/email-validator",
  615. "version": "3.2.6",
  616. "source": {
  617. "type": "git",
  618. "url": "https://github.com/egulias/EmailValidator.git",
  619. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  620. },
  621. "dist": {
  622. "type": "zip",
  623. "url": "https://mirrors.huaweicloud.com/repository/php/egulias/email-validator/3.2.6/egulias-email-validator-3.2.6.zip",
  624. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  625. "shasum": ""
  626. },
  627. "require": {
  628. "doctrine/lexer": "^1.2|^2",
  629. "php": ">=7.2",
  630. "symfony/polyfill-intl-idn": "^1.15"
  631. },
  632. "require-dev": {
  633. "phpunit/phpunit": "^8.5.8|^9.3.3",
  634. "vimeo/psalm": "^4"
  635. },
  636. "suggest": {
  637. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  638. },
  639. "type": "library",
  640. "extra": {
  641. "branch-alias": {
  642. "dev-master": "3.0.x-dev"
  643. }
  644. },
  645. "autoload": {
  646. "psr-4": {
  647. "Egulias\\EmailValidator\\": "src"
  648. }
  649. },
  650. "license": [
  651. "MIT"
  652. ],
  653. "authors": [
  654. {
  655. "name": "Eduardo Gulias Davis"
  656. }
  657. ],
  658. "description": "A library for validating emails against several RFCs",
  659. "homepage": "https://github.com/egulias/EmailValidator",
  660. "keywords": [
  661. "email",
  662. "emailvalidation",
  663. "emailvalidator",
  664. "validation",
  665. "validator"
  666. ],
  667. "funding": [
  668. {
  669. "url": "https://github.com/egulias",
  670. "type": "github"
  671. }
  672. ],
  673. "time": "2023-06-01T07:04:22+00:00"
  674. },
  675. {
  676. "name": "ezyang/htmlpurifier",
  677. "version": "v4.16.0",
  678. "source": {
  679. "type": "git",
  680. "url": "https://github.com/ezyang/htmlpurifier.git",
  681. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  682. },
  683. "dist": {
  684. "type": "zip",
  685. "url": "https://mirrors.huaweicloud.com/repository/php/ezyang/htmlpurifier/v4.16.0/ezyang-htmlpurifier-v4.16.0.zip",
  686. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  687. "shasum": ""
  688. },
  689. "require": {
  690. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0"
  691. },
  692. "require-dev": {
  693. "cerdic/css-tidy": "^1.7 || ^2.0",
  694. "simpletest/simpletest": "dev-master"
  695. },
  696. "suggest": {
  697. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  698. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  699. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  700. "ext-tidy": "Used for pretty-printing HTML"
  701. },
  702. "type": "library",
  703. "autoload": {
  704. "files": [
  705. "library/HTMLPurifier.composer.php"
  706. ],
  707. "psr-0": {
  708. "HTMLPurifier": "library/"
  709. },
  710. "exclude-from-classmap": [
  711. "/library/HTMLPurifier/Language/"
  712. ]
  713. },
  714. "license": [
  715. "LGPL-2.1-or-later"
  716. ],
  717. "authors": [
  718. {
  719. "name": "Edward Z. Yang",
  720. "email": "admin@htmlpurifier.org",
  721. "homepage": "http://ezyang.com"
  722. }
  723. ],
  724. "description": "Standards compliant HTML filter written in PHP",
  725. "homepage": "http://htmlpurifier.org/",
  726. "keywords": [
  727. "html"
  728. ],
  729. "time": "2022-09-18T07:06:19+00:00"
  730. },
  731. {
  732. "name": "fabpot/goutte",
  733. "version": "v3.3.1",
  734. "source": {
  735. "type": "git",
  736. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  737. "reference": "80a23b64f44d54dd571d114c473d9d7e9ed84ca5"
  738. },
  739. "dist": {
  740. "type": "zip",
  741. "url": "https://mirrors.huaweicloud.com/repository/php/fabpot/goutte/v3.3.1/fabpot-goutte-v3.3.1.zip",
  742. "reference": "80a23b64f44d54dd571d114c473d9d7e9ed84ca5",
  743. "shasum": ""
  744. },
  745. "require": {
  746. "guzzlehttp/guzzle": "^6.0",
  747. "php": ">=7.1.3",
  748. "symfony/browser-kit": "^4.4|^5.0",
  749. "symfony/css-selector": "^4.4|^5.0",
  750. "symfony/dom-crawler": "^4.4|^5.0"
  751. },
  752. "require-dev": {
  753. "symfony/phpunit-bridge": "^5.0"
  754. },
  755. "type": "application",
  756. "extra": {
  757. "branch-alias": {
  758. "dev-master": "3.3-dev"
  759. }
  760. },
  761. "autoload": {
  762. "psr-4": {
  763. "Goutte\\": "Goutte"
  764. },
  765. "exclude-from-classmap": [
  766. "Goutte/Tests"
  767. ]
  768. },
  769. "license": [
  770. "MIT"
  771. ],
  772. "authors": [
  773. {
  774. "name": "Fabien Potencier",
  775. "email": "fabien@symfony.com"
  776. }
  777. ],
  778. "description": "A simple PHP Web Scraper",
  779. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  780. "keywords": [
  781. "scraper"
  782. ],
  783. "abandoned": "symfony/browser-kit",
  784. "time": "2020-11-01T09:30:18+00:00"
  785. },
  786. {
  787. "name": "guzzlehttp/guzzle",
  788. "version": "6.5.8",
  789. "source": {
  790. "type": "git",
  791. "url": "https://github.com/guzzle/guzzle.git",
  792. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  793. },
  794. "dist": {
  795. "type": "zip",
  796. "url": "https://mirrors.huaweicloud.com/repository/php/guzzlehttp/guzzle/6.5.8/guzzlehttp-guzzle-6.5.8.zip",
  797. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  798. "shasum": ""
  799. },
  800. "require": {
  801. "ext-json": "*",
  802. "guzzlehttp/promises": "^1.0",
  803. "guzzlehttp/psr7": "^1.9",
  804. "php": ">=5.5",
  805. "symfony/polyfill-intl-idn": "^1.17"
  806. },
  807. "require-dev": {
  808. "ext-curl": "*",
  809. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  810. "psr/log": "^1.1"
  811. },
  812. "suggest": {
  813. "psr/log": "Required for using the Log middleware"
  814. },
  815. "type": "library",
  816. "extra": {
  817. "branch-alias": {
  818. "dev-master": "6.5-dev"
  819. }
  820. },
  821. "autoload": {
  822. "files": [
  823. "src/functions_include.php"
  824. ],
  825. "psr-4": {
  826. "GuzzleHttp\\": "src/"
  827. }
  828. },
  829. "license": [
  830. "MIT"
  831. ],
  832. "authors": [
  833. {
  834. "name": "Graham Campbell",
  835. "email": "hello@gjcampbell.co.uk",
  836. "homepage": "https://github.com/GrahamCampbell"
  837. },
  838. {
  839. "name": "Michael Dowling",
  840. "email": "mtdowling@gmail.com",
  841. "homepage": "https://github.com/mtdowling"
  842. },
  843. {
  844. "name": "Jeremy Lindblom",
  845. "email": "jeremeamia@gmail.com",
  846. "homepage": "https://github.com/jeremeamia"
  847. },
  848. {
  849. "name": "George Mponos",
  850. "email": "gmponos@gmail.com",
  851. "homepage": "https://github.com/gmponos"
  852. },
  853. {
  854. "name": "Tobias Nyholm",
  855. "email": "tobias.nyholm@gmail.com",
  856. "homepage": "https://github.com/Nyholm"
  857. },
  858. {
  859. "name": "Márk Sági-Kazár",
  860. "email": "mark.sagikazar@gmail.com",
  861. "homepage": "https://github.com/sagikazarmark"
  862. },
  863. {
  864. "name": "Tobias Schultze",
  865. "email": "webmaster@tubo-world.de",
  866. "homepage": "https://github.com/Tobion"
  867. }
  868. ],
  869. "description": "Guzzle is a PHP HTTP client library",
  870. "homepage": "http://guzzlephp.org/",
  871. "keywords": [
  872. "client",
  873. "curl",
  874. "framework",
  875. "http",
  876. "http client",
  877. "rest",
  878. "web service"
  879. ],
  880. "funding": [
  881. {
  882. "url": "https://github.com/GrahamCampbell",
  883. "type": "github"
  884. },
  885. {
  886. "url": "https://github.com/Nyholm",
  887. "type": "github"
  888. },
  889. {
  890. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  891. "type": "tidelift"
  892. }
  893. ],
  894. "time": "2022-06-20T22:16:07+00:00"
  895. },
  896. {
  897. "name": "guzzlehttp/promises",
  898. "version": "1.5.3",
  899. "source": {
  900. "type": "git",
  901. "url": "https://github.com/guzzle/promises.git",
  902. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  903. },
  904. "dist": {
  905. "type": "zip",
  906. "url": "https://mirrors.huaweicloud.com/repository/php/guzzlehttp/promises/1.5.3/guzzlehttp-promises-1.5.3.zip",
  907. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  908. "shasum": ""
  909. },
  910. "require": {
  911. "php": ">=5.5"
  912. },
  913. "require-dev": {
  914. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  915. },
  916. "type": "library",
  917. "autoload": {
  918. "files": [
  919. "src/functions_include.php"
  920. ],
  921. "psr-4": {
  922. "GuzzleHttp\\Promise\\": "src/"
  923. }
  924. },
  925. "license": [
  926. "MIT"
  927. ],
  928. "authors": [
  929. {
  930. "name": "Graham Campbell",
  931. "email": "hello@gjcampbell.co.uk",
  932. "homepage": "https://github.com/GrahamCampbell"
  933. },
  934. {
  935. "name": "Michael Dowling",
  936. "email": "mtdowling@gmail.com",
  937. "homepage": "https://github.com/mtdowling"
  938. },
  939. {
  940. "name": "Tobias Nyholm",
  941. "email": "tobias.nyholm@gmail.com",
  942. "homepage": "https://github.com/Nyholm"
  943. },
  944. {
  945. "name": "Tobias Schultze",
  946. "email": "webmaster@tubo-world.de",
  947. "homepage": "https://github.com/Tobion"
  948. }
  949. ],
  950. "description": "Guzzle promises library",
  951. "keywords": [
  952. "promise"
  953. ],
  954. "funding": [
  955. {
  956. "url": "https://github.com/GrahamCampbell",
  957. "type": "github"
  958. },
  959. {
  960. "url": "https://github.com/Nyholm",
  961. "type": "github"
  962. },
  963. {
  964. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  965. "type": "tidelift"
  966. }
  967. ],
  968. "time": "2023-05-21T12:31:43+00:00"
  969. },
  970. {
  971. "name": "guzzlehttp/psr7",
  972. "version": "1.9.1",
  973. "source": {
  974. "type": "git",
  975. "url": "https://github.com/guzzle/psr7.git",
  976. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  977. },
  978. "dist": {
  979. "type": "zip",
  980. "url": "https://mirrors.huaweicloud.com/repository/php/guzzlehttp/psr7/1.9.1/guzzlehttp-psr7-1.9.1.zip",
  981. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  982. "shasum": ""
  983. },
  984. "require": {
  985. "php": ">=5.4.0",
  986. "psr/http-message": "~1.0",
  987. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  988. },
  989. "provide": {
  990. "psr/http-message-implementation": "1.0"
  991. },
  992. "require-dev": {
  993. "ext-zlib": "*",
  994. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  995. },
  996. "suggest": {
  997. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  998. },
  999. "type": "library",
  1000. "autoload": {
  1001. "files": [
  1002. "src/functions_include.php"
  1003. ],
  1004. "psr-4": {
  1005. "GuzzleHttp\\Psr7\\": "src/"
  1006. }
  1007. },
  1008. "license": [
  1009. "MIT"
  1010. ],
  1011. "authors": [
  1012. {
  1013. "name": "Graham Campbell",
  1014. "email": "hello@gjcampbell.co.uk",
  1015. "homepage": "https://github.com/GrahamCampbell"
  1016. },
  1017. {
  1018. "name": "Michael Dowling",
  1019. "email": "mtdowling@gmail.com",
  1020. "homepage": "https://github.com/mtdowling"
  1021. },
  1022. {
  1023. "name": "George Mponos",
  1024. "email": "gmponos@gmail.com",
  1025. "homepage": "https://github.com/gmponos"
  1026. },
  1027. {
  1028. "name": "Tobias Nyholm",
  1029. "email": "tobias.nyholm@gmail.com",
  1030. "homepage": "https://github.com/Nyholm"
  1031. },
  1032. {
  1033. "name": "Márk Sági-Kazár",
  1034. "email": "mark.sagikazar@gmail.com",
  1035. "homepage": "https://github.com/sagikazarmark"
  1036. },
  1037. {
  1038. "name": "Tobias Schultze",
  1039. "email": "webmaster@tubo-world.de",
  1040. "homepage": "https://github.com/Tobion"
  1041. }
  1042. ],
  1043. "description": "PSR-7 message implementation that also provides common utility methods",
  1044. "keywords": [
  1045. "http",
  1046. "message",
  1047. "psr-7",
  1048. "request",
  1049. "response",
  1050. "stream",
  1051. "uri",
  1052. "url"
  1053. ],
  1054. "funding": [
  1055. {
  1056. "url": "https://github.com/GrahamCampbell",
  1057. "type": "github"
  1058. },
  1059. {
  1060. "url": "https://github.com/Nyholm",
  1061. "type": "github"
  1062. },
  1063. {
  1064. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1065. "type": "tidelift"
  1066. }
  1067. ],
  1068. "time": "2023-04-17T16:00:37+00:00"
  1069. },
  1070. {
  1071. "name": "hightman/xunsearch",
  1072. "version": "1.4.17",
  1073. "source": {
  1074. "type": "git",
  1075. "url": "https://github.com/hightman/xs-sdk-php.git",
  1076. "reference": "3803e5a7a3dba462b656d995770f0b8254c30f06"
  1077. },
  1078. "dist": {
  1079. "type": "zip",
  1080. "url": "https://mirrors.huaweicloud.com/repository/php/hightman/xunsearch/1.4.17/hightman-xunsearch-1.4.17.zip",
  1081. "reference": "3803e5a7a3dba462b656d995770f0b8254c30f06",
  1082. "shasum": ""
  1083. },
  1084. "require": {
  1085. "ext-mbstring": "*",
  1086. "lib-pcre": "*",
  1087. "php": ">=5.3.0"
  1088. },
  1089. "bin": [
  1090. "util/xs"
  1091. ],
  1092. "type": "library",
  1093. "extra": {
  1094. "branch-alias": {
  1095. "dev-master": "1.4.x-dev"
  1096. }
  1097. },
  1098. "autoload": {
  1099. "psr-4": {
  1100. "hightman\\xunsearch\\": "wrapper/yii2-ext/"
  1101. },
  1102. "classmap": [
  1103. "lib/",
  1104. "wrapper/yii-ext/"
  1105. ]
  1106. },
  1107. "license": [
  1108. "GPL-2.0+"
  1109. ],
  1110. "authors": [
  1111. {
  1112. "name": "hightman",
  1113. "email": "hightman@twomice.net",
  1114. "role": "Founder and project leader"
  1115. }
  1116. ],
  1117. "description": "xunsearch php sdk, include yii, yii2 supports",
  1118. "homepage": "http://www.xunsearch.com/",
  1119. "keywords": [
  1120. "search engine",
  1121. "xunsearch",
  1122. "yii",
  1123. "yii2"
  1124. ],
  1125. "time": "2022-08-11T12:39:26+00:00"
  1126. },
  1127. {
  1128. "name": "imagine/imagine",
  1129. "version": "1.3.5",
  1130. "source": {
  1131. "type": "git",
  1132. "url": "https://github.com/php-imagine/Imagine.git",
  1133. "reference": "7151d553edec4dc2bbac60419f7a74ff34700e7f"
  1134. },
  1135. "dist": {
  1136. "type": "zip",
  1137. "url": "https://mirrors.huaweicloud.com/repository/php/imagine/imagine/1.3.5/imagine-imagine-1.3.5.zip",
  1138. "reference": "7151d553edec4dc2bbac60419f7a74ff34700e7f",
  1139. "shasum": ""
  1140. },
  1141. "require": {
  1142. "php": ">=5.5"
  1143. },
  1144. "require-dev": {
  1145. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.4 || ^9.3"
  1146. },
  1147. "suggest": {
  1148. "ext-exif": "to read EXIF metadata",
  1149. "ext-gd": "to use the GD implementation",
  1150. "ext-gmagick": "to use the Gmagick implementation",
  1151. "ext-imagick": "to use the Imagick implementation"
  1152. },
  1153. "type": "library",
  1154. "extra": {
  1155. "branch-alias": {
  1156. "dev-develop": "1.x-dev"
  1157. }
  1158. },
  1159. "autoload": {
  1160. "psr-4": {
  1161. "Imagine\\": "src/"
  1162. }
  1163. },
  1164. "license": [
  1165. "MIT"
  1166. ],
  1167. "authors": [
  1168. {
  1169. "name": "Bulat Shakirzyanov",
  1170. "email": "mallluhuct@gmail.com",
  1171. "homepage": "http://avalanche123.com"
  1172. }
  1173. ],
  1174. "description": "Image processing for PHP 5.3",
  1175. "homepage": "http://imagine.readthedocs.org/",
  1176. "keywords": [
  1177. "drawing",
  1178. "graphics",
  1179. "image manipulation",
  1180. "image processing"
  1181. ],
  1182. "time": "2023-06-07T14:49:52+00:00"
  1183. },
  1184. {
  1185. "name": "kartik-v/bootstrap-popover-x",
  1186. "version": "v1.5.2",
  1187. "source": {
  1188. "type": "git",
  1189. "url": "https://github.com/kartik-v/bootstrap-popover-x.git",
  1190. "reference": "0a6f1c8bf44565f2308757d4eebf123f284a7ac0"
  1191. },
  1192. "dist": {
  1193. "type": "zip",
  1194. "url": "https://mirrors.huaweicloud.com/repository/php/kartik-v/bootstrap-popover-x/v1.5.2/kartik-v-bootstrap-popover-x-v1.5.2.zip",
  1195. "reference": "0a6f1c8bf44565f2308757d4eebf123f284a7ac0",
  1196. "shasum": ""
  1197. },
  1198. "type": "library",
  1199. "extra": {
  1200. "branch-alias": {
  1201. "dev-master": "1.5.x-dev"
  1202. }
  1203. },
  1204. "autoload": {
  1205. "psr-4": {
  1206. "kartik\\plugins\\popover\\": ""
  1207. }
  1208. },
  1209. "license": [
  1210. "BSD-3-Clause"
  1211. ],
  1212. "authors": [
  1213. {
  1214. "name": "Kartik Visweswaran",
  1215. "email": "kartikv2@gmail.com",
  1216. "homepage": "http://www.krajee.com/"
  1217. }
  1218. ],
  1219. "description": "Bootstrap Popover Extended - Popover with modal behavior, styling enhancements and more.",
  1220. "homepage": "https://github.com/kartik-v/bootstrap-popover-x",
  1221. "keywords": [
  1222. "bootstrap",
  1223. "extended",
  1224. "jquery",
  1225. "modal",
  1226. "modal-popover",
  1227. "popover",
  1228. "popover-x"
  1229. ],
  1230. "funding": [
  1231. {
  1232. "url": "https://opencollective.com/bootstrap-popover-x",
  1233. "type": "open_collective"
  1234. }
  1235. ],
  1236. "time": "2023-07-22T19:34:37+00:00"
  1237. },
  1238. {
  1239. "name": "kartik-v/yii2-dialog",
  1240. "version": "v1.0.6",
  1241. "source": {
  1242. "type": "git",
  1243. "url": "https://github.com/kartik-v/yii2-dialog.git",
  1244. "reference": "510c3a35ffe79987cde9a9366cedbff545fd92d4"
  1245. },
  1246. "dist": {
  1247. "type": "zip",
  1248. "url": "https://mirrors.huaweicloud.com/repository/php/kartik-v/yii2-dialog/v1.0.6/kartik-v-yii2-dialog-v1.0.6.zip",
  1249. "reference": "510c3a35ffe79987cde9a9366cedbff545fd92d4",
  1250. "shasum": ""
  1251. },
  1252. "require": {
  1253. "kartik-v/yii2-krajee-base": ">=3.0.0"
  1254. },
  1255. "type": "yii2-extension",
  1256. "extra": {
  1257. "branch-alias": {
  1258. "dev-master": "1.0.x-dev"
  1259. }
  1260. },
  1261. "autoload": {
  1262. "psr-4": {
  1263. "kartik\\dialog\\": "src"
  1264. }
  1265. },
  1266. "license": [
  1267. "BSD-3-Clause"
  1268. ],
  1269. "authors": [
  1270. {
  1271. "name": "Kartik Visweswaran",
  1272. "email": "kartikv2@gmail.com",
  1273. "homepage": "http://www.krajee.com/"
  1274. }
  1275. ],
  1276. "description": "An asset bundle for bootstrap3-dialog for Yii 2.0 framework.",
  1277. "homepage": "https://github.com/kartik-v/yii2-dialog",
  1278. "keywords": [
  1279. "alert",
  1280. "bootstrap",
  1281. "dialog",
  1282. "extension",
  1283. "modal",
  1284. "yii2"
  1285. ],
  1286. "time": "2021-09-02T08:26:37+00:00"
  1287. },
  1288. {
  1289. "name": "kartik-v/yii2-editable",
  1290. "version": "dev-master",
  1291. "source": {
  1292. "type": "git",
  1293. "url": "https://github.com/kartik-v/yii2-editable.git",
  1294. "reference": "ae4cc2384e667ba9dfe8bfb0098716caeb2500a8"
  1295. },
  1296. "dist": {
  1297. "type": "zip",
  1298. "url": "https://mirrors.huaweicloud.com/repository/php/kartik-v/yii2-editable/dev-master/kartik-v-yii2-editable-dev-master.zip",
  1299. "reference": "ae4cc2384e667ba9dfe8bfb0098716caeb2500a8",
  1300. "shasum": ""
  1301. },
  1302. "require": {
  1303. "kartik-v/yii2-popover-x": "~1.3",
  1304. "kartik-v/yii2-widget-activeform": ">=1.6.2"
  1305. },
  1306. "default-branch": true,
  1307. "type": "yii2-extension",
  1308. "extra": {
  1309. "branch-alias": {
  1310. "dev-master": "1.8.x-dev"
  1311. }
  1312. },
  1313. "autoload": {
  1314. "psr-4": {
  1315. "kartik\\editable\\": "src"
  1316. }
  1317. },
  1318. "license": [
  1319. "BSD-3-Clause"
  1320. ],
  1321. "authors": [
  1322. {
  1323. "name": "Kartik Visweswaran",
  1324. "email": "kartikv2@gmail.com",
  1325. "homepage": "http://www.krajee.com/"
  1326. }
  1327. ],
  1328. "description": "An enhanced editable widget for Yii 2.0 that allows easy editing of displayed data with numerous configuration possibilities.",
  1329. "homepage": "https://github.com/kartik-v/yii2-editable",
  1330. "keywords": [
  1331. "bootstrap",
  1332. "editable",
  1333. "input",
  1334. "jquery",
  1335. "popover",
  1336. "popover-x",
  1337. "widget"
  1338. ],
  1339. "time": "2022-04-29T12:51:01+00:00"
  1340. },
  1341. {
  1342. "name": "kartik-v/yii2-grid",
  1343. "version": "dev-master",
  1344. "source": {
  1345. "type": "git",
  1346. "url": "https://github.com/kartik-v/yii2-grid.git",
  1347. "reference": "cfc1a8e18bddfe22668783abb70f08583abab0a9"
  1348. },
  1349. "dist": {
  1350. "type": "zip",
  1351. "url": "https://mirrors.huaweicloud.com/repository/php/kartik-v/yii2-grid/dev-master/kartik-v-yii2-grid-dev-master.zip",
  1352. "reference": "cfc1a8e18bddfe22668783abb70f08583abab0a9",
  1353. "shasum": ""
  1354. },
  1355. "require": {
  1356. "kartik-v/yii2-dialog": "~1.0",
  1357. "kartik-v/yii2-krajee-base": ">=3.0.3"
  1358. },
  1359. "suggest": {
  1360. "kartik-v/yii2-bootstrap4-dropdown": "For enabling dropdown support when using with Bootstrap v4.x",
  1361. "kartik-v/yii2-bootstrap5-dropdown": "For enabling dropdown support when using with Bootstrap v5.x",
  1362. "kartik-v/yii2-mpdf": "For exporting grids to PDF"
  1363. },
  1364. "default-branch": true,
  1365. "type": "yii2-extension",
  1366. "extra": {
  1367. "branch-alias": {
  1368. "dev-master": "3.5.x-dev"
  1369. }
  1370. },
  1371. "autoload": {
  1372. "psr-4": {
  1373. "kartik\\grid\\": "src"
  1374. }
  1375. },
  1376. "license": [
  1377. "BSD-3-Clause"
  1378. ],
  1379. "authors": [
  1380. {
  1381. "name": "Kartik Visweswaran",
  1382. "email": "kartikv2@gmail.com",
  1383. "homepage": "http://www.krajee.com/"
  1384. }
  1385. ],
  1386. "description": "Yii 2 GridView on steroids. Various enhancements and utilities for the Yii 2.0 GridView widget.",
  1387. "homepage": "https://github.com/kartik-v/yii2-grid",
  1388. "keywords": [
  1389. "extension",
  1390. "grid",
  1391. "widget",
  1392. "yii2"
  1393. ],
  1394. "funding": [
  1395. {
  1396. "url": "https://opencollective.com/yii2-grid",
  1397. "type": "open_collective"
  1398. }
  1399. ],
  1400. "time": "2023-07-25T11:41:33+00:00"
  1401. },
  1402. {
  1403. "name": "kartik-v/yii2-krajee-base",
  1404. "version": "v3.0.5",
  1405. "source": {
  1406. "type": "git",
  1407. "url": "https://github.com/kartik-v/yii2-krajee-base.git",
  1408. "reference": "5c095126d1be47e0bb1f92779b7dc099f6feae31"
  1409. },
  1410. "dist": {
  1411. "type": "zip",
  1412. "url": "https://mirrors.huaweicloud.com/repository/php/kartik-v/yii2-krajee-base/v3.0.5/kartik-v-yii2-krajee-base-v3.0.5.zip",
  1413. "reference": "5c095126d1be47e0bb1f92779b7dc099f6feae31",
  1414. "shasum": ""
  1415. },
  1416. "suggest": {
  1417. "yiisoft/yii2-bootstrap": "for Krajee extensions to work with Bootstrap 3.x version",
  1418. "yiisoft/yii2-bootstrap4": "for Krajee extensions to work with Bootstrap 4.x version",
  1419. "yiisoft/yii2-bootstrap5": "for Krajee extensions to work with Bootstrap 5.x version"
  1420. },
  1421. "type": "yii2-extension",
  1422. "extra": {
  1423. "branch-alias": {
  1424. "dev-master": "3.0.x-dev"
  1425. }
  1426. },
  1427. "autoload": {
  1428. "psr-4": {
  1429. "kartik\\base\\": "src"
  1430. }
  1431. },
  1432. "license": [
  1433. "BSD-3-Clause"
  1434. ],
  1435. "authors": [
  1436. {
  1437. "name": "Kartik Visweswaran",
  1438. "email": "kartikv2@gmail.com",
  1439. "homepage": "http://www.krajee.com/"
  1440. }
  1441. ],
  1442. "description": "Base library and foundation components for all Yii2 Krajee extensions.",
  1443. "homepage": "https://github.com/kartik-v/yii2-krajee-base",
  1444. "keywords": [
  1445. "base",
  1446. "extension",
  1447. "foundation",
  1448. "krajee",
  1449. "widget",
  1450. "yii2"
  1451. ],
  1452. "time": "2022-06-01T14:05:39+00:00"
  1453. },
  1454. {
  1455. "name": "kartik-v/yii2-popover-x",
  1456. "version": "v1.3.5",
  1457. "source": {
  1458. "type": "git",
  1459. "url": "https://github.com/kartik-v/yii2-popover-x.git",
  1460. "reference": "b0320d1315bbfce31ec8907882c6f4abed223a28"
  1461. },
  1462. "dist": {
  1463. "type": "zip",
  1464. "url": "https://mirrors.huaweicloud.com/repository/php/kartik-v/yii2-popover-x/v1.3.5/kartik-v-yii2-popover-x-v1.3.5.zip",
  1465. "reference": "b0320d1315bbfce31ec8907882c6f4abed223a28",
  1466. "shasum": ""
  1467. },
  1468. "require": {
  1469. "kartik-v/bootstrap-popover-x": ">=1.4",
  1470. "kartik-v/yii2-krajee-base": ">=2.0"
  1471. },
  1472. "type": "yii2-extension",
  1473. "extra": {
  1474. "branch-alias": {
  1475. "dev-master": "1.3.x-dev"
  1476. }
  1477. },
  1478. "autoload": {
  1479. "psr-4": {
  1480. "kartik\\popover\\": "src"
  1481. }
  1482. },
  1483. "license": [
  1484. "BSD-3-Clause"
  1485. ],
  1486. "authors": [
  1487. {
  1488. "name": "Kartik Visweswaran",
  1489. "email": "kartikv2@gmail.com",
  1490. "homepage": "http://www.krajee.com/"
  1491. }
  1492. ],
  1493. "description": "An extended bootstrap 3.0 popover widget which combines both the bootstrap popover and modal features and includes various new styling enhancements.",
  1494. "homepage": "https://github.com/kartik-v/yii2-popover-x",
  1495. "keywords": [
  1496. "bootstrap",
  1497. "extended",
  1498. "jquery",
  1499. "modal",
  1500. "modal-popover",
  1501. "popover",
  1502. "popover-x"
  1503. ],
  1504. "time": "2020-04-02T17:20:29+00:00"
  1505. },
  1506. {
  1507. "name": "kartik-v/yii2-widget-activeform",
  1508. "version": "v1.6.4",
  1509. "source": {
  1510. "type": "git",
  1511. "url": "https://github.com/kartik-v/yii2-widget-activeform.git",
  1512. "reference": "697407c8fa9c81593a7bb9bef4b7ad53f7d38b79"
  1513. },
  1514. "dist": {
  1515. "type": "zip",
  1516. "url": "https://mirrors.huaweicloud.com/repository/php/kartik-v/yii2-widget-activeform/v1.6.4/kartik-v-yii2-widget-activeform-v1.6.4.zip",
  1517. "reference": "697407c8fa9c81593a7bb9bef4b7ad53f7d38b79",
  1518. "shasum": ""
  1519. },
  1520. "require": {
  1521. "kartik-v/yii2-krajee-base": ">=3.0.3"
  1522. },
  1523. "type": "yii2-extension",
  1524. "extra": {
  1525. "branch-alias": {
  1526. "dev-master": "1.6.x-dev"
  1527. }
  1528. },
  1529. "autoload": {
  1530. "psr-4": {
  1531. "kartik\\form\\": "src"
  1532. }
  1533. },
  1534. "license": [
  1535. "BSD-3-Clause"
  1536. ],
  1537. "authors": [
  1538. {
  1539. "name": "Kartik Visweswaran",
  1540. "email": "kartikv2@gmail.com",
  1541. "homepage": "http://www.krajee.com/"
  1542. }
  1543. ],
  1544. "description": "Enhanced Yii2 active-form and active-field with full bootstrap styling support (sub repo split from yii2-widgets).",
  1545. "homepage": "https://github.com/kartik-v/yii2-widget-activeform",
  1546. "keywords": [
  1547. "activefield",
  1548. "activeform",
  1549. "extension",
  1550. "field",
  1551. "form",
  1552. "widget",
  1553. "yii2"
  1554. ],
  1555. "funding": [
  1556. {
  1557. "url": "https://opencollective.com/yii2-widgets",
  1558. "type": "open_collective"
  1559. }
  1560. ],
  1561. "time": "2023-07-31T11:33:59+00:00"
  1562. },
  1563. {
  1564. "name": "kartik-v/yii2-widget-datepicker",
  1565. "version": "v1.4.8",
  1566. "source": {
  1567. "type": "git",
  1568. "url": "https://github.com/kartik-v/yii2-widget-datepicker.git",
  1569. "reference": "f5f8b396cf03d4a383aad5e7b338f8cb065abf66"
  1570. },
  1571. "dist": {
  1572. "type": "zip",
  1573. "url": "https://mirrors.huaweicloud.com/repository/php/kartik-v/yii2-widget-datepicker/v1.4.8/kartik-v-yii2-widget-datepicker-v1.4.8.zip",
  1574. "reference": "f5f8b396cf03d4a383aad5e7b338f8cb065abf66",
  1575. "shasum": ""
  1576. },
  1577. "require": {
  1578. "kartik-v/yii2-krajee-base": ">=2.0.0"
  1579. },
  1580. "type": "yii2-extension",
  1581. "extra": {
  1582. "branch-alias": {
  1583. "dev-master": "1.4.x-dev"
  1584. }
  1585. },
  1586. "autoload": {
  1587. "psr-4": {
  1588. "kartik\\date\\": "src"
  1589. }
  1590. },
  1591. "license": [
  1592. "BSD-3-Clause"
  1593. ],
  1594. "authors": [
  1595. {
  1596. "name": "Kartik Visweswaran",
  1597. "email": "kartikv2@gmail.com",
  1598. "homepage": "http://www.krajee.com/"
  1599. }
  1600. ],
  1601. "description": "Enhanced Yii2 wrapper for the bootstrap datepicker plugin (sub repo split from yii2-widgets).",
  1602. "homepage": "https://github.com/kartik-v/yii2-widget-datepicker",
  1603. "keywords": [
  1604. "date",
  1605. "extension",
  1606. "form",
  1607. "jquery",
  1608. "picker",
  1609. "plugin",
  1610. "select2",
  1611. "widget",
  1612. "yii2"
  1613. ],
  1614. "time": "2021-10-28T03:58:09+00:00"
  1615. },
  1616. {
  1617. "name": "kartik-v/yii2-widget-datetimepicker",
  1618. "version": "v1.5.1",
  1619. "source": {
  1620. "type": "git",
  1621. "url": "https://github.com/kartik-v/yii2-widget-datetimepicker.git",
  1622. "reference": "85b22d38553ca207f86be198f37e6531347e9a23"
  1623. },
  1624. "dist": {
  1625. "type": "zip",
  1626. "url": "https://mirrors.huaweicloud.com/repository/php/kartik-v/yii2-widget-datetimepicker/v1.5.1/kartik-v-yii2-widget-datetimepicker-v1.5.1.zip",
  1627. "reference": "85b22d38553ca207f86be198f37e6531347e9a23",
  1628. "shasum": ""
  1629. },
  1630. "require": {
  1631. "kartik-v/yii2-krajee-base": ">=3.0.4"
  1632. },
  1633. "type": "yii2-extension",
  1634. "extra": {
  1635. "branch-alias": {
  1636. "dev-master": "1.5.x-dev"
  1637. }
  1638. },
  1639. "autoload": {
  1640. "psr-4": {
  1641. "kartik\\datetime\\": "src"
  1642. }
  1643. },
  1644. "license": [
  1645. "BSD-3-Clause"
  1646. ],
  1647. "authors": [
  1648. {
  1649. "name": "Kartik Visweswaran",
  1650. "email": "kartikv2@gmail.com",
  1651. "homepage": "http://www.krajee.com/"
  1652. }
  1653. ],
  1654. "description": "Enhanced Yii2 wrapper for the bootstrap datetimepicker plugin (sub repo split from yii2-widgets)",
  1655. "homepage": "https://github.com/kartik-v/yii2-widget-datetimepicker",
  1656. "keywords": [
  1657. "datetime",
  1658. "extension",
  1659. "form",
  1660. "jquery",
  1661. "picker",
  1662. "plugin",
  1663. "select2",
  1664. "widget",
  1665. "yii2"
  1666. ],
  1667. "time": "2022-03-18T17:42:22+00:00"
  1668. },
  1669. {
  1670. "name": "kartik-v/yii2-widget-select2",
  1671. "version": "v2.2.5",
  1672. "source": {
  1673. "type": "git",
  1674. "url": "https://github.com/kartik-v/yii2-widget-select2.git",
  1675. "reference": "4b8ef7dd9780531fc997fa23a53a38a1f7674bec"
  1676. },
  1677. "dist": {
  1678. "type": "zip",
  1679. "url": "https://mirrors.huaweicloud.com/repository/php/kartik-v/yii2-widget-select2/v2.2.5/kartik-v-yii2-widget-select2-v2.2.5.zip",
  1680. "reference": "4b8ef7dd9780531fc997fa23a53a38a1f7674bec",
  1681. "shasum": ""
  1682. },
  1683. "require": {
  1684. "kartik-v/yii2-krajee-base": ">=3.0.4",
  1685. "select2/select2": ">=4.0.0"
  1686. },
  1687. "type": "yii2-extension",
  1688. "extra": {
  1689. "branch-alias": {
  1690. "dev-master": "2.2.x-dev"
  1691. }
  1692. },
  1693. "autoload": {
  1694. "psr-4": {
  1695. "kartik\\select2\\": "src"
  1696. }
  1697. },
  1698. "license": [
  1699. "BSD-3-Clause"
  1700. ],
  1701. "authors": [
  1702. {
  1703. "name": "Kartik Visweswaran",
  1704. "email": "kartikv2@gmail.com",
  1705. "homepage": "http://www.krajee.com/"
  1706. }
  1707. ],
  1708. "description": "Enhanced Yii2 wrapper for the Select2 jQuery plugin (sub repo split from yii2-widgets).",
  1709. "homepage": "https://github.com/kartik-v/yii2-widget-select2",
  1710. "keywords": [
  1711. "dropdown",
  1712. "extension",
  1713. "form",
  1714. "jquery",
  1715. "plugin",
  1716. "select2",
  1717. "widget",
  1718. "yii2"
  1719. ],
  1720. "funding": [
  1721. {
  1722. "url": "https://opencollective.com/yii2-widget-select2",
  1723. "type": "open_collective"
  1724. }
  1725. ],
  1726. "time": "2023-06-22T07:43:31+00:00"
  1727. },
  1728. {
  1729. "name": "kosinix/grafika",
  1730. "version": "2.0.8",
  1731. "source": {
  1732. "type": "git",
  1733. "url": "https://github.com/kosinix/grafika.git",
  1734. "reference": "211f61fc334b8b36616b23e8af7c5727971d96ee"
  1735. },
  1736. "dist": {
  1737. "type": "zip",
  1738. "url": "https://mirrors.huaweicloud.com/repository/php/kosinix/grafika/2.0.8/kosinix-grafika-2.0.8.zip",
  1739. "reference": "211f61fc334b8b36616b23e8af7c5727971d96ee",
  1740. "shasum": ""
  1741. },
  1742. "require": {
  1743. "php": ">=5.3"
  1744. },
  1745. "type": "library",
  1746. "autoload": {
  1747. "psr-4": {
  1748. "Grafika\\": "src/Grafika"
  1749. }
  1750. },
  1751. "license": [
  1752. "MIT",
  1753. "GPL-2.0+"
  1754. ],
  1755. "authors": [
  1756. {
  1757. "name": "Nico Amarilla",
  1758. "homepage": "https://www.kosinix.com"
  1759. }
  1760. ],
  1761. "description": "An image manipulation library for PHP.",
  1762. "homepage": "http://kosinix.github.io/grafika",
  1763. "keywords": [
  1764. "grafika"
  1765. ],
  1766. "time": "2017-06-20T03:13:49+00:00"
  1767. },
  1768. {
  1769. "name": "league/flysystem",
  1770. "version": "1.1.10",
  1771. "source": {
  1772. "type": "git",
  1773. "url": "https://github.com/thephpleague/flysystem.git",
  1774. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  1775. },
  1776. "dist": {
  1777. "type": "zip",
  1778. "url": "https://mirrors.huaweicloud.com/repository/php/league/flysystem/1.1.10/league-flysystem-1.1.10.zip",
  1779. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1780. "shasum": ""
  1781. },
  1782. "require": {
  1783. "ext-fileinfo": "*",
  1784. "league/mime-type-detection": "^1.3",
  1785. "php": "^7.2.5 || ^8.0"
  1786. },
  1787. "conflict": {
  1788. "league/flysystem-sftp": "<1.0.6"
  1789. },
  1790. "require-dev": {
  1791. "phpspec/prophecy": "^1.11.1",
  1792. "phpunit/phpunit": "^8.5.8"
  1793. },
  1794. "suggest": {
  1795. "ext-ftp": "Allows you to use FTP server storage",
  1796. "ext-openssl": "Allows you to use FTPS server storage",
  1797. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1798. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1799. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1800. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1801. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1802. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1803. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1804. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1805. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1806. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1807. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1808. },
  1809. "type": "library",
  1810. "extra": {
  1811. "branch-alias": {
  1812. "dev-master": "1.1-dev"
  1813. }
  1814. },
  1815. "autoload": {
  1816. "psr-4": {
  1817. "League\\Flysystem\\": "src/"
  1818. }
  1819. },
  1820. "license": [
  1821. "MIT"
  1822. ],
  1823. "authors": [
  1824. {
  1825. "name": "Frank de Jonge",
  1826. "email": "info@frenky.net"
  1827. }
  1828. ],
  1829. "description": "Filesystem abstraction: Many filesystems, one API.",
  1830. "keywords": [
  1831. "Cloud Files",
  1832. "WebDAV",
  1833. "abstraction",
  1834. "aws",
  1835. "cloud",
  1836. "copy.com",
  1837. "dropbox",
  1838. "file systems",
  1839. "files",
  1840. "filesystem",
  1841. "filesystems",
  1842. "ftp",
  1843. "rackspace",
  1844. "remote",
  1845. "s3",
  1846. "sftp",
  1847. "storage"
  1848. ],
  1849. "funding": [
  1850. {
  1851. "url": "https://offset.earth/frankdejonge",
  1852. "type": "other"
  1853. }
  1854. ],
  1855. "time": "2022-10-04T09:16:37+00:00"
  1856. },
  1857. {
  1858. "name": "league/mime-type-detection",
  1859. "version": "1.12.0",
  1860. "source": {
  1861. "type": "git",
  1862. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1863. "reference": "c7f2872fb273bf493811473dafc88d60ae829f48"
  1864. },
  1865. "dist": {
  1866. "type": "zip",
  1867. "url": "https://mirrors.huaweicloud.com/repository/php/league/mime-type-detection/1.12.0/league-mime-type-detection-1.12.0.zip",
  1868. "reference": "c7f2872fb273bf493811473dafc88d60ae829f48",
  1869. "shasum": ""
  1870. },
  1871. "require": {
  1872. "ext-fileinfo": "*",
  1873. "php": "^7.2 || ^8.0"
  1874. },
  1875. "require-dev": {
  1876. "friendsofphp/php-cs-fixer": "^3.2",
  1877. "phpstan/phpstan": "^0.12.68",
  1878. "phpunit/phpunit": "^8.5.8 || ^9.3"
  1879. },
  1880. "type": "library",
  1881. "autoload": {
  1882. "psr-4": {
  1883. "League\\MimeTypeDetection\\": "src"
  1884. }
  1885. },
  1886. "license": [
  1887. "MIT"
  1888. ],
  1889. "authors": [
  1890. {
  1891. "name": "Frank de Jonge",
  1892. "email": "info@frankdejonge.nl"
  1893. }
  1894. ],
  1895. "description": "Mime-type detection for Flysystem",
  1896. "funding": [
  1897. {
  1898. "url": "https://github.com/frankdejonge",
  1899. "type": "github"
  1900. },
  1901. {
  1902. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1903. "type": "tidelift"
  1904. }
  1905. ],
  1906. "time": "2023-08-03T07:14:11+00:00"
  1907. },
  1908. {
  1909. "name": "light/yii2-layer",
  1910. "version": "0.1.2",
  1911. "source": {
  1912. "type": "git",
  1913. "url": "https://github.com/lichunqiang/yii2-layer.git",
  1914. "reference": "fb592a63b2e3200169c191f9cebecf527f843263"
  1915. },
  1916. "dist": {
  1917. "type": "zip",
  1918. "url": "https://mirrors.huaweicloud.com/repository/php/light/yii2-layer/0.1.2/light-yii2-layer-0.1.2.zip",
  1919. "reference": "fb592a63b2e3200169c191f9cebecf527f843263",
  1920. "shasum": ""
  1921. },
  1922. "require": {
  1923. "php": ">=5.4.0",
  1924. "yiisoft/yii2": "*"
  1925. },
  1926. "type": "library",
  1927. "autoload": {
  1928. "psr-4": {
  1929. "light\\assets\\": ""
  1930. }
  1931. },
  1932. "license": [
  1933. "MIT"
  1934. ],
  1935. "authors": [
  1936. {
  1937. "name": "lichunqiang",
  1938. "email": "light-li@hotmail.com"
  1939. }
  1940. ],
  1941. "description": "yii2 asset plugin for layer",
  1942. "time": "2015-04-24T16:07:16+00:00"
  1943. },
  1944. {
  1945. "name": "lvht/geohash",
  1946. "version": "v1.1.0",
  1947. "source": {
  1948. "type": "git",
  1949. "url": "https://github.com/lvht/geohash.git",
  1950. "reference": "bbba3e1b487f0ec2e5e666c1bc9d1d4277990a29"
  1951. },
  1952. "dist": {
  1953. "type": "zip",
  1954. "url": "https://mirrors.huaweicloud.com/repository/php/lvht/geohash/v1.1.0/lvht-geohash-v1.1.0.zip",
  1955. "reference": "bbba3e1b487f0ec2e5e666c1bc9d1d4277990a29",
  1956. "shasum": ""
  1957. },
  1958. "require": {
  1959. "php": ">=5.4.0"
  1960. },
  1961. "type": "library",
  1962. "autoload": {
  1963. "psr-4": {
  1964. "Lvht\\": "src"
  1965. }
  1966. },
  1967. "license": [
  1968. "MIT"
  1969. ],
  1970. "authors": [
  1971. {
  1972. "name": "吕海涛",
  1973. "email": "git@lvht.net",
  1974. "homepage": "https://github.com/lvht"
  1975. }
  1976. ],
  1977. "description": "geohash like python-geohash",
  1978. "homepage": "http://github.com/lvht/geohash",
  1979. "keywords": [
  1980. "geohash"
  1981. ],
  1982. "time": "2017-08-24T11:05:30+00:00"
  1983. },
  1984. {
  1985. "name": "maennchen/zipstream-php",
  1986. "version": "2.1.0",
  1987. "source": {
  1988. "type": "git",
  1989. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  1990. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  1991. },
  1992. "dist": {
  1993. "type": "zip",
  1994. "url": "https://mirrors.huaweicloud.com/repository/php/maennchen/zipstream-php/2.1.0/maennchen-zipstream-php-2.1.0.zip",
  1995. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1996. "shasum": ""
  1997. },
  1998. "require": {
  1999. "myclabs/php-enum": "^1.5",
  2000. "php": ">= 7.1",
  2001. "psr/http-message": "^1.0",
  2002. "symfony/polyfill-mbstring": "^1.0"
  2003. },
  2004. "require-dev": {
  2005. "ext-zip": "*",
  2006. "guzzlehttp/guzzle": ">= 6.3",
  2007. "mikey179/vfsstream": "^1.6",
  2008. "phpunit/phpunit": ">= 7.5"
  2009. },
  2010. "type": "library",
  2011. "autoload": {
  2012. "psr-4": {
  2013. "ZipStream\\": "src/"
  2014. }
  2015. },
  2016. "license": [
  2017. "MIT"
  2018. ],
  2019. "authors": [
  2020. {
  2021. "name": "Paul Duncan",
  2022. "email": "pabs@pablotron.org"
  2023. },
  2024. {
  2025. "name": "Jonatan Männchen",
  2026. "email": "jonatan@maennchen.ch"
  2027. },
  2028. {
  2029. "name": "Jesse Donat",
  2030. "email": "donatj@gmail.com"
  2031. },
  2032. {
  2033. "name": "András Kolesár",
  2034. "email": "kolesar@kolesar.hu"
  2035. }
  2036. ],
  2037. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2038. "keywords": [
  2039. "stream",
  2040. "zip"
  2041. ],
  2042. "funding": [
  2043. {
  2044. "url": "https://github.com/maennchen",
  2045. "type": "github"
  2046. },
  2047. {
  2048. "url": "https://opencollective.com/zipstream",
  2049. "type": "open_collective"
  2050. }
  2051. ],
  2052. "time": "2020-05-30T13:11:16+00:00"
  2053. },
  2054. {
  2055. "name": "markbaker/complex",
  2056. "version": "3.0.2",
  2057. "source": {
  2058. "type": "git",
  2059. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2060. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  2061. },
  2062. "dist": {
  2063. "type": "zip",
  2064. "url": "https://mirrors.huaweicloud.com/repository/php/markbaker/complex/3.0.2/markbaker-complex-3.0.2.zip",
  2065. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2066. "shasum": ""
  2067. },
  2068. "require": {
  2069. "php": "^7.2 || ^8.0"
  2070. },
  2071. "require-dev": {
  2072. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2073. "phpcompatibility/php-compatibility": "^9.3",
  2074. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2075. "squizlabs/php_codesniffer": "^3.7"
  2076. },
  2077. "type": "library",
  2078. "autoload": {
  2079. "psr-4": {
  2080. "Complex\\": "classes/src/"
  2081. }
  2082. },
  2083. "license": [
  2084. "MIT"
  2085. ],
  2086. "authors": [
  2087. {
  2088. "name": "Mark Baker",
  2089. "email": "mark@lange.demon.co.uk"
  2090. }
  2091. ],
  2092. "description": "PHP Class for working with complex numbers",
  2093. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2094. "keywords": [
  2095. "complex",
  2096. "mathematics"
  2097. ],
  2098. "time": "2022-12-06T16:21:08+00:00"
  2099. },
  2100. {
  2101. "name": "markbaker/matrix",
  2102. "version": "3.0.1",
  2103. "source": {
  2104. "type": "git",
  2105. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2106. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  2107. },
  2108. "dist": {
  2109. "type": "zip",
  2110. "url": "https://mirrors.huaweicloud.com/repository/php/markbaker/matrix/3.0.1/markbaker-matrix-3.0.1.zip",
  2111. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  2112. "shasum": ""
  2113. },
  2114. "require": {
  2115. "php": "^7.1 || ^8.0"
  2116. },
  2117. "require-dev": {
  2118. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2119. "phpcompatibility/php-compatibility": "^9.3",
  2120. "phpdocumentor/phpdocumentor": "2.*",
  2121. "phploc/phploc": "^4.0",
  2122. "phpmd/phpmd": "2.*",
  2123. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2124. "sebastian/phpcpd": "^4.0",
  2125. "squizlabs/php_codesniffer": "^3.7"
  2126. },
  2127. "type": "library",
  2128. "autoload": {
  2129. "psr-4": {
  2130. "Matrix\\": "classes/src/"
  2131. }
  2132. },
  2133. "license": [
  2134. "MIT"
  2135. ],
  2136. "authors": [
  2137. {
  2138. "name": "Mark Baker",
  2139. "email": "mark@demon-angel.eu"
  2140. }
  2141. ],
  2142. "description": "PHP Class for working with matrices",
  2143. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2144. "keywords": [
  2145. "mathematics",
  2146. "matrix",
  2147. "vector"
  2148. ],
  2149. "time": "2022-12-02T22:17:43+00:00"
  2150. },
  2151. {
  2152. "name": "mobiledetect/mobiledetectlib",
  2153. "version": "2.8.41",
  2154. "source": {
  2155. "type": "git",
  2156. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  2157. "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1"
  2158. },
  2159. "dist": {
  2160. "type": "zip",
  2161. "url": "https://mirrors.huaweicloud.com/repository/php/mobiledetect/mobiledetectlib/2.8.41/mobiledetect-mobiledetectlib-2.8.41.zip",
  2162. "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1",
  2163. "shasum": ""
  2164. },
  2165. "require": {
  2166. "php": ">=5.0.0"
  2167. },
  2168. "require-dev": {
  2169. "phpunit/phpunit": "~4.8.35||~5.7"
  2170. },
  2171. "type": "library",
  2172. "autoload": {
  2173. "psr-0": {
  2174. "Detection": "namespaced/"
  2175. },
  2176. "classmap": [
  2177. "Mobile_Detect.php"
  2178. ]
  2179. },
  2180. "license": [
  2181. "MIT"
  2182. ],
  2183. "authors": [
  2184. {
  2185. "name": "Serban Ghita",
  2186. "email": "serbanghita@gmail.com",
  2187. "homepage": "http://mobiledetect.net",
  2188. "role": "Developer"
  2189. }
  2190. ],
  2191. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  2192. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  2193. "keywords": [
  2194. "detect mobile devices",
  2195. "mobile",
  2196. "mobile detect",
  2197. "mobile detector",
  2198. "php mobile detect"
  2199. ],
  2200. "time": "2022-11-08T18:31:26+00:00"
  2201. },
  2202. {
  2203. "name": "myclabs/php-enum",
  2204. "version": "1.7.7",
  2205. "source": {
  2206. "type": "git",
  2207. "url": "https://github.com/myclabs/php-enum.git",
  2208. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
  2209. },
  2210. "dist": {
  2211. "type": "zip",
  2212. "url": "https://mirrors.huaweicloud.com/repository/php/myclabs/php-enum/1.7.7/myclabs-php-enum-1.7.7.zip",
  2213. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  2214. "shasum": ""
  2215. },
  2216. "require": {
  2217. "ext-json": "*",
  2218. "php": ">=7.1"
  2219. },
  2220. "require-dev": {
  2221. "phpunit/phpunit": "^7",
  2222. "squizlabs/php_codesniffer": "1.*",
  2223. "vimeo/psalm": "^3.8"
  2224. },
  2225. "type": "library",
  2226. "autoload": {
  2227. "psr-4": {
  2228. "MyCLabs\\Enum\\": "src/"
  2229. }
  2230. },
  2231. "license": [
  2232. "MIT"
  2233. ],
  2234. "authors": [
  2235. {
  2236. "name": "PHP Enum contributors",
  2237. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2238. }
  2239. ],
  2240. "description": "PHP Enum implementation",
  2241. "homepage": "http://github.com/myclabs/php-enum",
  2242. "keywords": [
  2243. "enum"
  2244. ],
  2245. "funding": [
  2246. {
  2247. "url": "https://github.com/mnapoli",
  2248. "type": "github"
  2249. },
  2250. {
  2251. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2252. "type": "tidelift"
  2253. }
  2254. ],
  2255. "time": "2020-11-14T18:14:52+00:00"
  2256. },
  2257. {
  2258. "name": "omnilight/yii2-scheduling",
  2259. "version": "1.1.6",
  2260. "source": {
  2261. "type": "git",
  2262. "url": "https://github.com/omnilight/yii2-scheduling.git",
  2263. "reference": "e69b281202bef06fa056ea91eb43a28569bd89e5"
  2264. },
  2265. "dist": {
  2266. "type": "zip",
  2267. "url": "https://mirrors.huaweicloud.com/repository/php/omnilight/yii2-scheduling/1.1.6/omnilight-yii2-scheduling-1.1.6.zip",
  2268. "reference": "e69b281202bef06fa056ea91eb43a28569bd89e5",
  2269. "shasum": ""
  2270. },
  2271. "require": {
  2272. "dragonmantank/cron-expression": "1.*",
  2273. "php": ">=5.4.0",
  2274. "symfony/process": "2.6.* || 3.* || 4.*",
  2275. "yiisoft/yii2": "2.0.*"
  2276. },
  2277. "require-dev": {
  2278. "phpunit/phpunit": "4.8.36"
  2279. },
  2280. "suggest": {
  2281. "guzzlehttp/guzzle": "Required to use the thenPing method on schedules (~5.0)."
  2282. },
  2283. "type": "yii2-extension",
  2284. "extra": {
  2285. "bootstrap": "omnilight\\scheduling\\Bootstrap"
  2286. },
  2287. "autoload": {
  2288. "psr-4": {
  2289. "omnilight\\scheduling\\": "src"
  2290. }
  2291. },
  2292. "authors": [
  2293. {
  2294. "name": "Pavel Agalecky",
  2295. "email": "pavel.agalecky@gmail.com"
  2296. }
  2297. ],
  2298. "description": "Scheduling extension for Yii2 framework",
  2299. "keywords": [
  2300. "cron",
  2301. "scheduling",
  2302. "yii"
  2303. ],
  2304. "time": "2022-05-16T17:28:24+00:00"
  2305. },
  2306. {
  2307. "name": "paragonie/random_compat",
  2308. "version": "v9.99.100",
  2309. "source": {
  2310. "type": "git",
  2311. "url": "https://github.com/paragonie/random_compat.git",
  2312. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  2313. },
  2314. "dist": {
  2315. "type": "zip",
  2316. "url": "https://mirrors.huaweicloud.com/repository/php/paragonie/random_compat/v9.99.100/paragonie-random_compat-v9.99.100.zip",
  2317. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  2318. "shasum": ""
  2319. },
  2320. "require": {
  2321. "php": ">= 7"
  2322. },
  2323. "require-dev": {
  2324. "phpunit/phpunit": "4.*|5.*",
  2325. "vimeo/psalm": "^1"
  2326. },
  2327. "suggest": {
  2328. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2329. },
  2330. "type": "library",
  2331. "license": [
  2332. "MIT"
  2333. ],
  2334. "authors": [
  2335. {
  2336. "name": "Paragon Initiative Enterprises",
  2337. "email": "security@paragonie.com",
  2338. "homepage": "https://paragonie.com"
  2339. }
  2340. ],
  2341. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2342. "keywords": [
  2343. "csprng",
  2344. "polyfill",
  2345. "pseudorandom",
  2346. "random"
  2347. ],
  2348. "time": "2020-10-15T08:29:30+00:00"
  2349. },
  2350. {
  2351. "name": "phpoffice/phpspreadsheet",
  2352. "version": "1.19.0",
  2353. "source": {
  2354. "type": "git",
  2355. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2356. "reference": "a9ab55bfae02eecffb3df669a2e19ba0e2f04bbf"
  2357. },
  2358. "dist": {
  2359. "type": "zip",
  2360. "url": "https://mirrors.huaweicloud.com/repository/php/phpoffice/phpspreadsheet/1.19.0/phpoffice-phpspreadsheet-1.19.0.zip",
  2361. "reference": "a9ab55bfae02eecffb3df669a2e19ba0e2f04bbf",
  2362. "shasum": ""
  2363. },
  2364. "require": {
  2365. "ext-ctype": "*",
  2366. "ext-dom": "*",
  2367. "ext-fileinfo": "*",
  2368. "ext-gd": "*",
  2369. "ext-iconv": "*",
  2370. "ext-libxml": "*",
  2371. "ext-mbstring": "*",
  2372. "ext-simplexml": "*",
  2373. "ext-xml": "*",
  2374. "ext-xmlreader": "*",
  2375. "ext-xmlwriter": "*",
  2376. "ext-zip": "*",
  2377. "ext-zlib": "*",
  2378. "ezyang/htmlpurifier": "^4.13",
  2379. "maennchen/zipstream-php": "^2.1",
  2380. "markbaker/complex": "^3.0",
  2381. "markbaker/matrix": "^3.0",
  2382. "php": "^7.2 || ^8.0",
  2383. "psr/http-client": "^1.0",
  2384. "psr/http-factory": "^1.0",
  2385. "psr/simple-cache": "^1.0"
  2386. },
  2387. "require-dev": {
  2388. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2389. "dompdf/dompdf": "^1.0",
  2390. "friendsofphp/php-cs-fixer": "^2.18",
  2391. "jpgraph/jpgraph": "^4.0",
  2392. "mpdf/mpdf": "^8.0",
  2393. "phpcompatibility/php-compatibility": "^9.3",
  2394. "phpstan/phpstan": "^0.12.82",
  2395. "phpstan/phpstan-phpunit": "^0.12.18",
  2396. "phpunit/phpunit": "^8.5",
  2397. "squizlabs/php_codesniffer": "^3.5",
  2398. "tecnickcom/tcpdf": "^6.3"
  2399. },
  2400. "suggest": {
  2401. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  2402. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2403. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2404. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  2405. },
  2406. "type": "library",
  2407. "autoload": {
  2408. "psr-4": {
  2409. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2410. }
  2411. },
  2412. "license": [
  2413. "MIT"
  2414. ],
  2415. "authors": [
  2416. {
  2417. "name": "Maarten Balliauw",
  2418. "homepage": "https://blog.maartenballiauw.be"
  2419. },
  2420. {
  2421. "name": "Mark Baker",
  2422. "homepage": "https://markbakeruk.net"
  2423. },
  2424. {
  2425. "name": "Franck Lefevre",
  2426. "homepage": "https://rootslabs.net"
  2427. },
  2428. {
  2429. "name": "Erik Tilt"
  2430. },
  2431. {
  2432. "name": "Adrien Crivelli"
  2433. }
  2434. ],
  2435. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2436. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2437. "keywords": [
  2438. "OpenXML",
  2439. "excel",
  2440. "gnumeric",
  2441. "ods",
  2442. "php",
  2443. "spreadsheet",
  2444. "xls",
  2445. "xlsx"
  2446. ],
  2447. "time": "2021-10-31T15:09:20+00:00"
  2448. },
  2449. {
  2450. "name": "pimple/pimple",
  2451. "version": "v3.5.0",
  2452. "source": {
  2453. "type": "git",
  2454. "url": "https://github.com/silexphp/Pimple.git",
  2455. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  2456. },
  2457. "dist": {
  2458. "type": "zip",
  2459. "url": "https://mirrors.huaweicloud.com/repository/php/pimple/pimple/v3.5.0/pimple-pimple-v3.5.0.zip",
  2460. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  2461. "shasum": ""
  2462. },
  2463. "require": {
  2464. "php": ">=7.2.5",
  2465. "psr/container": "^1.1 || ^2.0"
  2466. },
  2467. "require-dev": {
  2468. "symfony/phpunit-bridge": "^5.4@dev"
  2469. },
  2470. "type": "library",
  2471. "extra": {
  2472. "branch-alias": {
  2473. "dev-master": "3.4.x-dev"
  2474. }
  2475. },
  2476. "autoload": {
  2477. "psr-0": {
  2478. "Pimple": "src/"
  2479. }
  2480. },
  2481. "license": [
  2482. "MIT"
  2483. ],
  2484. "authors": [
  2485. {
  2486. "name": "Fabien Potencier",
  2487. "email": "fabien@symfony.com"
  2488. }
  2489. ],
  2490. "description": "Pimple, a simple Dependency Injection Container",
  2491. "homepage": "https://pimple.symfony.com",
  2492. "keywords": [
  2493. "container",
  2494. "dependency injection"
  2495. ],
  2496. "time": "2021-10-28T11:13:42+00:00"
  2497. },
  2498. {
  2499. "name": "psr/container",
  2500. "version": "2.0.1",
  2501. "source": {
  2502. "type": "git",
  2503. "url": "https://github.com/php-fig/container.git",
  2504. "reference": "2ae37329ee82f91efadc282cc2d527fd6065a5ef"
  2505. },
  2506. "dist": {
  2507. "type": "zip",
  2508. "url": "https://mirrors.huaweicloud.com/repository/php/psr/container/2.0.1/psr-container-2.0.1.zip",
  2509. "reference": "2ae37329ee82f91efadc282cc2d527fd6065a5ef",
  2510. "shasum": ""
  2511. },
  2512. "require": {
  2513. "php": ">=7.2.0"
  2514. },
  2515. "type": "library",
  2516. "extra": {
  2517. "branch-alias": {
  2518. "dev-master": "2.0.x-dev"
  2519. }
  2520. },
  2521. "autoload": {
  2522. "psr-4": {
  2523. "Psr\\Container\\": "src/"
  2524. }
  2525. },
  2526. "license": [
  2527. "MIT"
  2528. ],
  2529. "authors": [
  2530. {
  2531. "name": "PHP-FIG",
  2532. "homepage": "https://www.php-fig.org/"
  2533. }
  2534. ],
  2535. "description": "Common Container Interface (PHP FIG PSR-11)",
  2536. "homepage": "https://github.com/php-fig/container",
  2537. "keywords": [
  2538. "PSR-11",
  2539. "container",
  2540. "container-interface",
  2541. "container-interop",
  2542. "psr"
  2543. ],
  2544. "time": "2021-03-24T13:40:57+00:00"
  2545. },
  2546. {
  2547. "name": "psr/http-client",
  2548. "version": "1.0.2",
  2549. "source": {
  2550. "type": "git",
  2551. "url": "https://github.com/php-fig/http-client.git",
  2552. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
  2553. },
  2554. "dist": {
  2555. "type": "zip",
  2556. "url": "https://mirrors.huaweicloud.com/repository/php/psr/http-client/1.0.2/psr-http-client-1.0.2.zip",
  2557. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  2558. "shasum": ""
  2559. },
  2560. "require": {
  2561. "php": "^7.0 || ^8.0",
  2562. "psr/http-message": "^1.0 || ^2.0"
  2563. },
  2564. "type": "library",
  2565. "extra": {
  2566. "branch-alias": {
  2567. "dev-master": "1.0.x-dev"
  2568. }
  2569. },
  2570. "autoload": {
  2571. "psr-4": {
  2572. "Psr\\Http\\Client\\": "src/"
  2573. }
  2574. },
  2575. "license": [
  2576. "MIT"
  2577. ],
  2578. "authors": [
  2579. {
  2580. "name": "PHP-FIG",
  2581. "homepage": "https://www.php-fig.org/"
  2582. }
  2583. ],
  2584. "description": "Common interface for HTTP clients",
  2585. "homepage": "https://github.com/php-fig/http-client",
  2586. "keywords": [
  2587. "http",
  2588. "http-client",
  2589. "psr",
  2590. "psr-18"
  2591. ],
  2592. "time": "2023-04-10T20:12:12+00:00"
  2593. },
  2594. {
  2595. "name": "psr/http-factory",
  2596. "version": "1.0.2",
  2597. "source": {
  2598. "type": "git",
  2599. "url": "https://github.com/php-fig/http-factory.git",
  2600. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  2601. },
  2602. "dist": {
  2603. "type": "zip",
  2604. "url": "https://mirrors.huaweicloud.com/repository/php/psr/http-factory/1.0.2/psr-http-factory-1.0.2.zip",
  2605. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  2606. "shasum": ""
  2607. },
  2608. "require": {
  2609. "php": ">=7.0.0",
  2610. "psr/http-message": "^1.0 || ^2.0"
  2611. },
  2612. "type": "library",
  2613. "extra": {
  2614. "branch-alias": {
  2615. "dev-master": "1.0.x-dev"
  2616. }
  2617. },
  2618. "autoload": {
  2619. "psr-4": {
  2620. "Psr\\Http\\Message\\": "src/"
  2621. }
  2622. },
  2623. "license": [
  2624. "MIT"
  2625. ],
  2626. "authors": [
  2627. {
  2628. "name": "PHP-FIG",
  2629. "homepage": "https://www.php-fig.org/"
  2630. }
  2631. ],
  2632. "description": "Common interfaces for PSR-7 HTTP message factories",
  2633. "keywords": [
  2634. "factory",
  2635. "http",
  2636. "message",
  2637. "psr",
  2638. "psr-17",
  2639. "psr-7",
  2640. "request",
  2641. "response"
  2642. ],
  2643. "time": "2023-04-10T20:10:41+00:00"
  2644. },
  2645. {
  2646. "name": "psr/http-message",
  2647. "version": "1.1",
  2648. "source": {
  2649. "type": "git",
  2650. "url": "https://github.com/php-fig/http-message.git",
  2651. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  2652. },
  2653. "dist": {
  2654. "type": "zip",
  2655. "url": "https://mirrors.huaweicloud.com/repository/php/psr/http-message/1.1/psr-http-message-1.1.zip",
  2656. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2657. "shasum": ""
  2658. },
  2659. "require": {
  2660. "php": "^7.2 || ^8.0"
  2661. },
  2662. "type": "library",
  2663. "extra": {
  2664. "branch-alias": {
  2665. "dev-master": "1.1.x-dev"
  2666. }
  2667. },
  2668. "autoload": {
  2669. "psr-4": {
  2670. "Psr\\Http\\Message\\": "src/"
  2671. }
  2672. },
  2673. "license": [
  2674. "MIT"
  2675. ],
  2676. "authors": [
  2677. {
  2678. "name": "PHP-FIG",
  2679. "homepage": "http://www.php-fig.org/"
  2680. }
  2681. ],
  2682. "description": "Common interface for HTTP messages",
  2683. "homepage": "https://github.com/php-fig/http-message",
  2684. "keywords": [
  2685. "http",
  2686. "http-message",
  2687. "psr",
  2688. "psr-7",
  2689. "request",
  2690. "response"
  2691. ],
  2692. "time": "2023-04-04T09:50:52+00:00"
  2693. },
  2694. {
  2695. "name": "psr/simple-cache",
  2696. "version": "1.0.1",
  2697. "source": {
  2698. "type": "git",
  2699. "url": "https://github.com/php-fig/simple-cache.git",
  2700. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2701. },
  2702. "dist": {
  2703. "type": "zip",
  2704. "url": "https://mirrors.huaweicloud.com/repository/php/psr/simple-cache/1.0.1/psr-simple-cache-1.0.1.zip",
  2705. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2706. "shasum": ""
  2707. },
  2708. "require": {
  2709. "php": ">=5.3.0"
  2710. },
  2711. "type": "library",
  2712. "extra": {
  2713. "branch-alias": {
  2714. "dev-master": "1.0.x-dev"
  2715. }
  2716. },
  2717. "autoload": {
  2718. "psr-4": {
  2719. "Psr\\SimpleCache\\": "src/"
  2720. }
  2721. },
  2722. "license": [
  2723. "MIT"
  2724. ],
  2725. "authors": [
  2726. {
  2727. "name": "PHP-FIG",
  2728. "homepage": "http://www.php-fig.org/"
  2729. }
  2730. ],
  2731. "description": "Common interfaces for simple caching",
  2732. "keywords": [
  2733. "cache",
  2734. "caching",
  2735. "psr",
  2736. "psr-16",
  2737. "simple-cache"
  2738. ],
  2739. "time": "2017-10-23T01:57:42+00:00"
  2740. },
  2741. {
  2742. "name": "qiniu/php-sdk",
  2743. "version": "v7.11.0",
  2744. "source": {
  2745. "type": "git",
  2746. "url": "https://github.com/qiniu/php-sdk.git",
  2747. "reference": "9ee81f0acd57fa7bb435ffe9e515d7a9fdd0489b"
  2748. },
  2749. "dist": {
  2750. "type": "zip",
  2751. "url": "https://mirrors.huaweicloud.com/repository/php/qiniu/php-sdk/v7.11.0/qiniu-php-sdk-v7.11.0.zip",
  2752. "reference": "9ee81f0acd57fa7bb435ffe9e515d7a9fdd0489b",
  2753. "shasum": ""
  2754. },
  2755. "require": {
  2756. "myclabs/php-enum": "~1.5.2 || ~1.6.6 || ~1.7.7 || ~1.8.4",
  2757. "php": ">=5.3.3"
  2758. },
  2759. "require-dev": {
  2760. "paragonie/random_compat": ">=2",
  2761. "phpunit/phpunit": "^4.8 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4",
  2762. "squizlabs/php_codesniffer": "^2.3 || ~3.6"
  2763. },
  2764. "type": "library",
  2765. "autoload": {
  2766. "files": [
  2767. "src/Qiniu/functions.php",
  2768. "src/Qiniu/Http/Middleware/Middleware.php"
  2769. ],
  2770. "psr-4": {
  2771. "Qiniu\\": "src/Qiniu"
  2772. }
  2773. },
  2774. "license": [
  2775. "MIT"
  2776. ],
  2777. "authors": [
  2778. {
  2779. "name": "Qiniu",
  2780. "email": "sdk@qiniu.com",
  2781. "homepage": "http://www.qiniu.com"
  2782. }
  2783. ],
  2784. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  2785. "homepage": "http://developer.qiniu.com/",
  2786. "keywords": [
  2787. "cloud",
  2788. "qiniu",
  2789. "sdk",
  2790. "storage"
  2791. ],
  2792. "time": "2023-09-05T12:33:39+00:00"
  2793. },
  2794. {
  2795. "name": "ralouphie/getallheaders",
  2796. "version": "3.0.3",
  2797. "source": {
  2798. "type": "git",
  2799. "url": "https://github.com/ralouphie/getallheaders.git",
  2800. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2801. },
  2802. "dist": {
  2803. "type": "zip",
  2804. "url": "https://mirrors.huaweicloud.com/repository/php/ralouphie/getallheaders/3.0.3/ralouphie-getallheaders-3.0.3.zip",
  2805. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2806. "shasum": ""
  2807. },
  2808. "require": {
  2809. "php": ">=5.6"
  2810. },
  2811. "require-dev": {
  2812. "php-coveralls/php-coveralls": "^2.1",
  2813. "phpunit/phpunit": "^5 || ^6.5"
  2814. },
  2815. "type": "library",
  2816. "autoload": {
  2817. "files": [
  2818. "src/getallheaders.php"
  2819. ]
  2820. },
  2821. "license": [
  2822. "MIT"
  2823. ],
  2824. "authors": [
  2825. {
  2826. "name": "Ralph Khattar",
  2827. "email": "ralph.khattar@gmail.com"
  2828. }
  2829. ],
  2830. "description": "A polyfill for getallheaders.",
  2831. "time": "2019-03-08T08:55:37+00:00"
  2832. },
  2833. {
  2834. "name": "raulfraile/distill",
  2835. "version": "v0.9.10",
  2836. "source": {
  2837. "type": "git",
  2838. "url": "https://github.com/raulfraile/distill.git",
  2839. "reference": "9ab33b98651bd15c2d6d70bf8c78eda0068fe52b"
  2840. },
  2841. "dist": {
  2842. "type": "zip",
  2843. "url": "https://mirrors.huaweicloud.com/repository/php/raulfraile/distill/v0.9.10/raulfraile-distill-v0.9.10.zip",
  2844. "reference": "9ab33b98651bd15c2d6d70bf8c78eda0068fe52b",
  2845. "shasum": ""
  2846. },
  2847. "require": {
  2848. "php": ">=5.4.0",
  2849. "pimple/pimple": "~3.0",
  2850. "symfony/filesystem": "~2.4|^3.0",
  2851. "symfony/process": "~2.4|^3.0"
  2852. },
  2853. "require-dev": {
  2854. "mockery/mockery": "0.9.1",
  2855. "raulfraile/ladybug": "~1.0",
  2856. "symfony/finder": "~2.4|^3.0"
  2857. },
  2858. "suggest": {
  2859. "ext-rar": "Allows to uncompress rar files using RarArchive",
  2860. "ext-zip": "Allows to uncompress zip files using ZipArchive"
  2861. },
  2862. "type": "library",
  2863. "autoload": {
  2864. "psr-4": {
  2865. "Distill\\": "src/"
  2866. }
  2867. },
  2868. "license": [
  2869. "MIT"
  2870. ],
  2871. "authors": [
  2872. {
  2873. "name": "Raul Fraile",
  2874. "email": "raulfraile@gmail.com"
  2875. }
  2876. ],
  2877. "description": "Smart compressed files extractor",
  2878. "keywords": [
  2879. "7zip",
  2880. "archive",
  2881. "bz2",
  2882. "bzip",
  2883. "bzip2",
  2884. "cab",
  2885. "compression",
  2886. "epub",
  2887. "extractor",
  2888. "gzip",
  2889. "phar",
  2890. "rar",
  2891. "strategy",
  2892. "tar.gz",
  2893. "tar.xz",
  2894. "tgz",
  2895. "unzip",
  2896. "xz",
  2897. "zip"
  2898. ],
  2899. "time": "2015-12-15T06:50:39+00:00"
  2900. },
  2901. {
  2902. "name": "select2/select2",
  2903. "version": "4.0.13",
  2904. "source": {
  2905. "type": "git",
  2906. "url": "https://github.com/select2/select2.git",
  2907. "reference": "45f2b83ceed5231afa7b3d5b12b58ad335edd82e"
  2908. },
  2909. "dist": {
  2910. "type": "zip",
  2911. "url": "https://mirrors.huaweicloud.com/repository/php/select2/select2/4.0.13/select2-select2-4.0.13.zip",
  2912. "reference": "45f2b83ceed5231afa7b3d5b12b58ad335edd82e",
  2913. "shasum": ""
  2914. },
  2915. "type": "component",
  2916. "extra": {
  2917. "component": {
  2918. "scripts": [
  2919. "dist/js/select2.js"
  2920. ],
  2921. "styles": [
  2922. "dist/css/select2.css"
  2923. ],
  2924. "files": [
  2925. "dist/js/select2.js",
  2926. "dist/js/i18n/*.js",
  2927. "dist/css/select2.css"
  2928. ]
  2929. }
  2930. },
  2931. "license": [
  2932. "MIT"
  2933. ],
  2934. "description": "Select2 is a jQuery based replacement for select boxes.",
  2935. "homepage": "https://select2.org/",
  2936. "time": "2020-01-28T05:01:22+00:00"
  2937. },
  2938. {
  2939. "name": "slavkovrn/yii2-lightbox",
  2940. "version": "v1.0.1",
  2941. "source": {
  2942. "type": "git",
  2943. "url": "https://github.com/SlavKoVrn/yii2-lightbox.git",
  2944. "reference": "e2bc3c51a29fda59cb710cf309bcd1b4de75c311"
  2945. },
  2946. "dist": {
  2947. "type": "zip",
  2948. "url": "https://mirrors.huaweicloud.com/repository/php/slavkovrn/yii2-lightbox/v1.0.1/slavkovrn-yii2-lightbox-v1.0.1.zip",
  2949. "reference": "e2bc3c51a29fda59cb710cf309bcd1b4de75c311",
  2950. "shasum": ""
  2951. },
  2952. "require": {
  2953. "yiisoft/yii2": "~2.0"
  2954. },
  2955. "type": "yii2-extension",
  2956. "extra": {
  2957. "asset-installer-paths": {
  2958. "npm-asset-library": "vendor/npm",
  2959. "bower-asset-library": "vendor/bower"
  2960. }
  2961. },
  2962. "autoload": {
  2963. "psr-4": {
  2964. "slavkovrn\\lightbox\\": "src/"
  2965. }
  2966. },
  2967. "license": [
  2968. "BSD-3-Clause"
  2969. ],
  2970. "authors": [
  2971. {
  2972. "name": "Viacheslav Kolesnikov",
  2973. "email": "slavko.chita@gmail.com",
  2974. "homepage": "http://yii2.kadastrcard.ru"
  2975. }
  2976. ],
  2977. "description": "Yii2 LightBox image galary widget uses Lightbox v2.10.0 by Lokesh Dhakar",
  2978. "keywords": [
  2979. "Image galary widget",
  2980. "jQuery Lightbox v2.10.0 by Lokesh Dhakar",
  2981. "yii 2",
  2982. "yii2"
  2983. ],
  2984. "time": "2018-10-14T11:49:11+00:00"
  2985. },
  2986. {
  2987. "name": "swiftmailer/swiftmailer",
  2988. "version": "v6.3.0",
  2989. "source": {
  2990. "type": "git",
  2991. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2992. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  2993. },
  2994. "dist": {
  2995. "type": "zip",
  2996. "url": "https://mirrors.huaweicloud.com/repository/php/swiftmailer/swiftmailer/v6.3.0/swiftmailer-swiftmailer-v6.3.0.zip",
  2997. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2998. "shasum": ""
  2999. },
  3000. "require": {
  3001. "egulias/email-validator": "^2.0|^3.1",
  3002. "php": ">=7.0.0",
  3003. "symfony/polyfill-iconv": "^1.0",
  3004. "symfony/polyfill-intl-idn": "^1.10",
  3005. "symfony/polyfill-mbstring": "^1.0"
  3006. },
  3007. "require-dev": {
  3008. "mockery/mockery": "^1.0",
  3009. "symfony/phpunit-bridge": "^4.4|^5.4"
  3010. },
  3011. "suggest": {
  3012. "ext-intl": "Needed to support internationalized email addresses"
  3013. },
  3014. "type": "library",
  3015. "extra": {
  3016. "branch-alias": {
  3017. "dev-master": "6.2-dev"
  3018. }
  3019. },
  3020. "autoload": {
  3021. "files": [
  3022. "lib/swift_required.php"
  3023. ]
  3024. },
  3025. "license": [
  3026. "MIT"
  3027. ],
  3028. "authors": [
  3029. {
  3030. "name": "Chris Corbyn"
  3031. },
  3032. {
  3033. "name": "Fabien Potencier",
  3034. "email": "fabien@symfony.com"
  3035. }
  3036. ],
  3037. "description": "Swiftmailer, free feature-rich PHP mailer",
  3038. "homepage": "https://swiftmailer.symfony.com",
  3039. "keywords": [
  3040. "email",
  3041. "mail",
  3042. "mailer"
  3043. ],
  3044. "funding": [
  3045. {
  3046. "url": "https://github.com/fabpot",
  3047. "type": "github"
  3048. },
  3049. {
  3050. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  3051. "type": "tidelift"
  3052. }
  3053. ],
  3054. "abandoned": "symfony/mailer",
  3055. "time": "2021-10-18T15:26:12+00:00"
  3056. },
  3057. {
  3058. "name": "symfony/browser-kit",
  3059. "version": "v5.4.21",
  3060. "source": {
  3061. "type": "git",
  3062. "url": "https://github.com/symfony/browser-kit.git",
  3063. "reference": "a866ca7e396f15d7efb6d74a8a7d364d4e05b704"
  3064. },
  3065. "dist": {
  3066. "type": "zip",
  3067. "url": "https://mirrors.huaweicloud.com/repository/php/symfony/browser-kit/v5.4.21/symfony-browser-kit-v5.4.21.zip",
  3068. "reference": "a866ca7e396f15d7efb6d74a8a7d364d4e05b704",
  3069. "shasum": ""
  3070. },
  3071. "require": {
  3072. "php": ">=7.2.5",
  3073. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  3074. "symfony/polyfill-php80": "^1.16"
  3075. },
  3076. "require-dev": {
  3077. "symfony/css-selector": "^4.4|^5.0|^6.0",
  3078. "symfony/http-client": "^4.4|^5.0|^6.0",
  3079. "symfony/mime": "^4.4|^5.0|^6.0",
  3080. "symfony/process": "^4.4|^5.0|^6.0"
  3081. },
  3082. "suggest": {
  3083. "symfony/process": ""
  3084. },
  3085. "type": "library",
  3086. "autoload": {
  3087. "psr-4": {
  3088. "Symfony\\Component\\BrowserKit\\": ""
  3089. },
  3090. "exclude-from-classmap": [
  3091. "/Tests/"
  3092. ]
  3093. },
  3094. "license": [
  3095. "MIT"
  3096. ],
  3097. "authors": [
  3098. {
  3099. "name": "Fabien Potencier",
  3100. "email": "fabien@symfony.com"
  3101. },
  3102. {
  3103. "name": "Symfony Community",
  3104. "homepage": "https://symfony.com/contributors"
  3105. }
  3106. ],
  3107. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  3108. "homepage": "https://symfony.com",
  3109. "funding": [
  3110. {
  3111. "url": "https://symfony.com/sponsor",
  3112. "type": "custom"
  3113. },
  3114. {
  3115. "url": "https://github.com/fabpot",
  3116. "type": "github"
  3117. },
  3118. {
  3119. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3120. "type": "tidelift"
  3121. }
  3122. ],
  3123. "time": "2023-02-14T08:03:56+00:00"
  3124. },
  3125. {
  3126. "name": "symfony/css-selector",
  3127. "version": "v5.4.26",
  3128. "source": {
  3129. "type": "git",
  3130. "url": "https://github.com/symfony/css-selector.git",
  3131. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a"
  3132. },
  3133. "dist": {
  3134. "type": "zip",
  3135. "url": "https://mirrors.huaweicloud.com/repository/php/symfony/css-selector/v5.4.26/symfony-css-selector-v5.4.26.zip",
  3136. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  3137. "shasum": ""
  3138. },
  3139. "require": {
  3140. "php": ">=7.2.5",
  3141. "symfony/polyfill-php80": "^1.16"
  3142. },
  3143. "type": "library",
  3144. "autoload": {
  3145. "psr-4": {
  3146. "Symfony\\Component\\CssSelector\\": ""
  3147. },
  3148. "exclude-from-classmap": [
  3149. "/Tests/"
  3150. ]
  3151. },
  3152. "license": [
  3153. "MIT"
  3154. ],
  3155. "authors": [
  3156. {
  3157. "name": "Fabien Potencier",
  3158. "email": "fabien@symfony.com"
  3159. },
  3160. {
  3161. "name": "Jean-François Simon",
  3162. "email": "jeanfrancois.simon@sensiolabs.com"
  3163. },
  3164. {
  3165. "name": "Symfony Community",
  3166. "homepage": "https://symfony.com/contributors"
  3167. }
  3168. ],
  3169. "description": "Converts CSS selectors to XPath expressions",
  3170. "homepage": "https://symfony.com",
  3171. "funding": [
  3172. {
  3173. "url": "https://symfony.com/sponsor",
  3174. "type": "custom"
  3175. },
  3176. {
  3177. "url": "https://github.com/fabpot",
  3178. "type": "github"
  3179. },
  3180. {
  3181. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3182. "type": "tidelift"
  3183. }
  3184. ],
  3185. "time": "2023-07-07T06:10:25+00:00"
  3186. },
  3187. {
  3188. "name": "symfony/deprecation-contracts",
  3189. "version": "v2.5.2",
  3190. "source": {
  3191. "type": "git",
  3192. "url": "https://github.com/symfony/deprecation-contracts.git",
  3193. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  3194. },
  3195. "dist": {
  3196. "type": "zip",
  3197. "url": "https://mirrors.huaweicloud.com/repository/php/symfony/deprecation-contracts/v2.5.2/symfony-deprecation-contracts-v2.5.2.zip",
  3198. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3199. "shasum": ""
  3200. },
  3201. "require": {
  3202. "php": ">=7.1"
  3203. },
  3204. "type": "library",
  3205. "extra": {
  3206. "branch-alias": {
  3207. "dev-main": "2.5-dev"
  3208. },
  3209. "thanks": {
  3210. "name": "symfony/contracts",
  3211. "url": "https://github.com/symfony/contracts"
  3212. }
  3213. },
  3214. "autoload": {
  3215. "files": [
  3216. "function.php"
  3217. ]
  3218. },
  3219. "license": [
  3220. "MIT"
  3221. ],
  3222. "authors": [
  3223. {
  3224. "name": "Nicolas Grekas",
  3225. "email": "p@tchwork.com"
  3226. },
  3227. {
  3228. "name": "Symfony Community",
  3229. "homepage": "https://symfony.com/contributors"
  3230. }
  3231. ],
  3232. "description": "A generic function and convention to trigger deprecation notices",
  3233. "homepage": "https://symfony.com",
  3234. "funding": [
  3235. {
  3236. "url": "https://symfony.com/sponsor",
  3237. "type": "custom"
  3238. },
  3239. {
  3240. "url": "https://github.com/fabpot",
  3241. "type": "github"
  3242. },
  3243. {
  3244. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3245. "type": "tidelift"
  3246. }
  3247. ],
  3248. "time": "2022-01-02T09:53:40+00:00"
  3249. },
  3250. {
  3251. "name": "symfony/dom-crawler",
  3252. "version": "v5.4.25",
  3253. "source": {
  3254. "type": "git",
  3255. "url": "https://github.com/symfony/dom-crawler.git",
  3256. "reference": "d2aefa5a7acc5511422792931d14d1be96fe9fea"
  3257. },
  3258. "dist": {
  3259. "type": "zip",
  3260. "url": "https://mirrors.huaweicloud.com/repository/php/symfony/dom-crawler/v5.4.25/symfony-dom-crawler-v5.4.25.zip",
  3261. "reference": "d2aefa5a7acc5511422792931d14d1be96fe9fea",
  3262. "shasum": ""
  3263. },
  3264. "require": {
  3265. "php": ">=7.2.5",
  3266. "symfony/deprecation-contracts": "^2.1|^3",
  3267. "symfony/polyfill-ctype": "~1.8",
  3268. "symfony/polyfill-mbstring": "~1.0",
  3269. "symfony/polyfill-php80": "^1.16"
  3270. },
  3271. "conflict": {
  3272. "masterminds/html5": "<2.6"
  3273. },
  3274. "require-dev": {
  3275. "masterminds/html5": "^2.6",
  3276. "symfony/css-selector": "^4.4|^5.0|^6.0"
  3277. },
  3278. "suggest": {
  3279. "symfony/css-selector": ""
  3280. },
  3281. "type": "library",
  3282. "autoload": {
  3283. "psr-4": {
  3284. "Symfony\\Component\\DomCrawler\\": ""
  3285. },
  3286. "exclude-from-classmap": [
  3287. "/Tests/"
  3288. ]
  3289. },
  3290. "license": [
  3291. "MIT"
  3292. ],
  3293. "authors": [
  3294. {
  3295. "name": "Fabien Potencier",
  3296. "email": "fabien@symfony.com"
  3297. },
  3298. {
  3299. "name": "Symfony Community",
  3300. "homepage": "https://symfony.com/contributors"
  3301. }
  3302. ],
  3303. "description": "Eases DOM navigation for HTML and XML documents",
  3304. "homepage": "https://symfony.com",
  3305. "funding": [
  3306. {
  3307. "url": "https://symfony.com/sponsor",
  3308. "type": "custom"
  3309. },
  3310. {
  3311. "url": "https://github.com/fabpot",
  3312. "type": "github"
  3313. },
  3314. {
  3315. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3316. "type": "tidelift"
  3317. }
  3318. ],
  3319. "time": "2023-06-05T08:05:41+00:00"
  3320. },
  3321. {
  3322. "name": "symfony/filesystem",
  3323. "version": "v3.4.47",
  3324. "source": {
  3325. "type": "git",
  3326. "url": "https://github.com/symfony/filesystem.git",
  3327. "reference": "e58d7841cddfed6e846829040dca2cca0ebbbbb3"
  3328. },
  3329. "dist": {
  3330. "type": "zip",
  3331. "url": "https://mirrors.huaweicloud.com/repository/php/symfony/filesystem/v3.4.47/symfony-filesystem-v3.4.47.zip",
  3332. "reference": "e58d7841cddfed6e846829040dca2cca0ebbbbb3",
  3333. "shasum": ""
  3334. },
  3335. "require": {
  3336. "php": "^5.5.9|>=7.0.8",
  3337. "symfony/polyfill-ctype": "~1.8"
  3338. },
  3339. "type": "library",
  3340. "autoload": {
  3341. "psr-4": {
  3342. "Symfony\\Component\\Filesystem\\": ""
  3343. },
  3344. "exclude-from-classmap": [
  3345. "/Tests/"
  3346. ]
  3347. },
  3348. "license": [
  3349. "MIT"
  3350. ],
  3351. "authors": [
  3352. {
  3353. "name": "Fabien Potencier",
  3354. "email": "fabien@symfony.com"
  3355. },
  3356. {
  3357. "name": "Symfony Community",
  3358. "homepage": "https://symfony.com/contributors"
  3359. }
  3360. ],
  3361. "description": "Symfony Filesystem Component",
  3362. "homepage": "https://symfony.com",
  3363. "funding": [
  3364. {
  3365. "url": "https://symfony.com/sponsor",
  3366. "type": "custom"
  3367. },
  3368. {
  3369. "url": "https://github.com/fabpot",
  3370. "type": "github"
  3371. },
  3372. {
  3373. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3374. "type": "tidelift"
  3375. }
  3376. ],
  3377. "time": "2020-10-24T10:57:07+00:00"
  3378. },
  3379. {
  3380. "name": "symfony/polyfill-ctype",
  3381. "version": "v1.28.0",
  3382. "source": {
  3383. "type": "git",
  3384. "url": "https://github.com/symfony/polyfill-ctype.git",
  3385. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  3386. },
  3387. "dist": {
  3388. "type": "zip",
  3389. "url": "https://mirrors.huaweicloud.com/repository/php/symfony/polyfill-ctype/v1.28.0/symfony-polyfill-ctype-v1.28.0.zip",
  3390. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  3391. "shasum": ""
  3392. },
  3393. "require": {
  3394. "php": ">=7.1"
  3395. },
  3396. "provide": {
  3397. "ext-ctype": "*"
  3398. },
  3399. "suggest": {
  3400. "ext-ctype": "For best performance"
  3401. },
  3402. "type": "library",
  3403. "extra": {
  3404. "branch-alias": {
  3405. "dev-main": "1.28-dev"
  3406. },
  3407. "thanks": {
  3408. "name": "symfony/polyfill",
  3409. "url": "https://github.com/symfony/polyfill"
  3410. }
  3411. },
  3412. "autoload": {
  3413. "files": [
  3414. "bootstrap.php"
  3415. ],
  3416. "psr-4": {
  3417. "Symfony\\Polyfill\\Ctype\\": ""
  3418. }
  3419. },
  3420. "license": [
  3421. "MIT"
  3422. ],
  3423. "authors": [
  3424. {
  3425. "name": "Gert de Pagter",
  3426. "email": "BackEndTea@gmail.com"
  3427. },
  3428. {
  3429. "name": "Symfony Community",
  3430. "homepage": "https://symfony.com/contributors"
  3431. }
  3432. ],
  3433. "description": "Symfony polyfill for ctype functions",
  3434. "homepage": "https://symfony.com",
  3435. "keywords": [
  3436. "compatibility",
  3437. "ctype",
  3438. "polyfill",
  3439. "portable"
  3440. ],
  3441. "funding": [
  3442. {
  3443. "url": "https://symfony.com/sponsor",
  3444. "type": "custom"
  3445. },
  3446. {
  3447. "url": "https://github.com/fabpot",
  3448. "type": "github"
  3449. },
  3450. {
  3451. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3452. "type": "tidelift"
  3453. }
  3454. ],
  3455. "time": "2023-01-26T09:26:14+00:00"
  3456. },
  3457. {
  3458. "name": "symfony/polyfill-iconv",
  3459. "version": "v1.28.0",
  3460. "source": {
  3461. "type": "git",
  3462. "url": "https://github.com/symfony/polyfill-iconv.git",
  3463. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  3464. },
  3465. "dist": {
  3466. "type": "zip",
  3467. "url": "https://mirrors.huaweicloud.com/repository/php/symfony/polyfill-iconv/v1.28.0/symfony-polyfill-iconv-v1.28.0.zip",
  3468. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  3469. "shasum": ""
  3470. },
  3471. "require": {
  3472. "php": ">=7.1"
  3473. },
  3474. "provide": {
  3475. "ext-iconv": "*"
  3476. },
  3477. "suggest": {
  3478. "ext-iconv": "For best performance"
  3479. },
  3480. "type": "library",
  3481. "extra": {
  3482. "branch-alias": {
  3483. "dev-main": "1.28-dev"
  3484. },
  3485. "thanks": {
  3486. "name": "symfony/polyfill",
  3487. "url": "https://github.com/symfony/polyfill"
  3488. }
  3489. },
  3490. "autoload": {
  3491. "files": [
  3492. "bootstrap.php"
  3493. ],
  3494. "psr-4": {
  3495. "Symfony\\Polyfill\\Iconv\\": ""
  3496. }
  3497. },
  3498. "license": [
  3499. "MIT"
  3500. ],
  3501. "authors": [
  3502. {
  3503. "name": "Nicolas Grekas",
  3504. "email": "p@tchwork.com"
  3505. },
  3506. {
  3507. "name": "Symfony Community",
  3508. "homepage": "https://symfony.com/contributors"
  3509. }
  3510. ],
  3511. "description": "Symfony polyfill for the Iconv extension",
  3512. "homepage": "https://symfony.com",
  3513. "keywords": [
  3514. "compatibility",
  3515. "iconv",
  3516. "polyfill",
  3517. "portable",
  3518. "shim"
  3519. ],
  3520. "funding": [
  3521. {
  3522. "url": "https://symfony.com/sponsor",
  3523. "type": "custom"
  3524. },
  3525. {
  3526. "url": "https://github.com/fabpot",
  3527. "type": "github"
  3528. },
  3529. {
  3530. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3531. "type": "tidelift"
  3532. }
  3533. ],
  3534. "time": "2023-01-26T09:26:14+00:00"
  3535. },
  3536. {
  3537. "name": "symfony/polyfill-intl-idn",
  3538. "version": "v1.28.0",
  3539. "source": {
  3540. "type": "git",
  3541. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3542. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  3543. },
  3544. "dist": {
  3545. "type": "zip",
  3546. "url": "https://mirrors.huaweicloud.com/repository/php/symfony/polyfill-intl-idn/v1.28.0/symfony-polyfill-intl-idn-v1.28.0.zip",
  3547. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  3548. "shasum": ""
  3549. },
  3550. "require": {
  3551. "php": ">=7.1",
  3552. "symfony/polyfill-intl-normalizer": "^1.10",
  3553. "symfony/polyfill-php72": "^1.10"
  3554. },
  3555. "suggest": {
  3556. "ext-intl": "For best performance"
  3557. },
  3558. "type": "library",
  3559. "extra": {
  3560. "branch-alias": {
  3561. "dev-main": "1.28-dev"
  3562. },
  3563. "thanks": {
  3564. "name": "symfony/polyfill",
  3565. "url": "https://github.com/symfony/polyfill"
  3566. }
  3567. },
  3568. "autoload": {
  3569. "files": [
  3570. "bootstrap.php"
  3571. ],
  3572. "psr-4": {
  3573. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3574. }
  3575. },
  3576. "license": [
  3577. "MIT"
  3578. ],
  3579. "authors": [
  3580. {
  3581. "name": "Laurent Bassin",
  3582. "email": "laurent@bassin.info"
  3583. },
  3584. {
  3585. "name": "Trevor Rowbotham",
  3586. "email": "trevor.rowbotham@pm.me"
  3587. },
  3588. {
  3589. "name": "Symfony Community",
  3590. "homepage": "https://symfony.com/contributors"
  3591. }
  3592. ],
  3593. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3594. "homepage": "https://symfony.com",
  3595. "keywords": [
  3596. "compatibility",
  3597. "idn",
  3598. "intl",
  3599. "polyfill",
  3600. "portable",
  3601. "shim"
  3602. ],
  3603. "funding": [
  3604. {
  3605. "url": "https://symfony.com/sponsor",
  3606. "type": "custom"
  3607. },
  3608. {
  3609. "url": "https://github.com/fabpot",
  3610. "type": "github"
  3611. },
  3612. {
  3613. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3614. "type": "tidelift"
  3615. }
  3616. ],
  3617. "time": "2023-01-26T09:30:37+00:00"
  3618. },
  3619. {
  3620. "name": "symfony/polyfill-intl-normalizer",
  3621. "version": "v1.28.0",
  3622. "source": {
  3623. "type": "git",
  3624. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3625. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  3626. },
  3627. "dist": {
  3628. "type": "zip",
  3629. "url": "https://mirrors.huaweicloud.com/repository/php/symfony/polyfill-intl-normalizer/v1.28.0/symfony-polyfill-intl-normalizer-v1.28.0.zip",
  3630. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  3631. "shasum": ""
  3632. },
  3633. "require": {
  3634. "php": ">=7.1"
  3635. },
  3636. "suggest": {
  3637. "ext-intl": "For best performance"
  3638. },
  3639. "type": "library",
  3640. "extra": {
  3641. "branch-alias": {
  3642. "dev-main": "1.28-dev"
  3643. },
  3644. "thanks": {
  3645. "name": "symfony/polyfill",
  3646. "url": "https://github.com/symfony/polyfill"
  3647. }
  3648. },
  3649. "autoload": {
  3650. "files": [
  3651. "bootstrap.php"
  3652. ],
  3653. "psr-4": {
  3654. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3655. },
  3656. "classmap": [
  3657. "Resources/stubs"
  3658. ]
  3659. },
  3660. "license": [
  3661. "MIT"
  3662. ],
  3663. "authors": [
  3664. {
  3665. "name": "Nicolas Grekas",
  3666. "email": "p@tchwork.com"
  3667. },
  3668. {
  3669. "name": "Symfony Community",
  3670. "homepage": "https://symfony.com/contributors"
  3671. }
  3672. ],
  3673. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3674. "homepage": "https://symfony.com",
  3675. "keywords": [
  3676. "compatibility",
  3677. "intl",
  3678. "normalizer",
  3679. "polyfill",
  3680. "portable",
  3681. "shim"
  3682. ],
  3683. "funding": [
  3684. {
  3685. "url": "https://symfony.com/sponsor",
  3686. "type": "custom"
  3687. },
  3688. {
  3689. "url": "https://github.com/fabpot",
  3690. "type": "github"
  3691. },
  3692. {
  3693. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3694. "type": "tidelift"
  3695. }
  3696. ],
  3697. "time": "2023-01-26T09:26:14+00:00"
  3698. },
  3699. {
  3700. "name": "symfony/polyfill-mbstring",
  3701. "version": "v1.28.0",
  3702. "source": {
  3703. "type": "git",
  3704. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3705. "reference": "42292d99c55abe617799667f454222c54c60e229"
  3706. },
  3707. "dist": {
  3708. "type": "zip",
  3709. "url": "https://mirrors.huaweicloud.com/repository/php/symfony/polyfill-mbstring/v1.28.0/symfony-polyfill-mbstring-v1.28.0.zip",
  3710. "reference": "42292d99c55abe617799667f454222c54c60e229",
  3711. "shasum": ""
  3712. },
  3713. "require": {
  3714. "php": ">=7.1"
  3715. },
  3716. "provide": {
  3717. "ext-mbstring": "*"
  3718. },
  3719. "suggest": {
  3720. "ext-mbstring": "For best performance"
  3721. },
  3722. "type": "library",
  3723. "extra": {
  3724. "branch-alias": {
  3725. "dev-main": "1.28-dev"
  3726. },
  3727. "thanks": {
  3728. "name": "symfony/polyfill",
  3729. "url": "https://github.com/symfony/polyfill"
  3730. }
  3731. },
  3732. "autoload": {
  3733. "files": [
  3734. "bootstrap.php"
  3735. ],
  3736. "psr-4": {
  3737. "Symfony\\Polyfill\\Mbstring\\": ""
  3738. }
  3739. },
  3740. "license": [
  3741. "MIT"
  3742. ],
  3743. "authors": [
  3744. {
  3745. "name": "Nicolas Grekas",
  3746. "email": "p@tchwork.com"
  3747. },
  3748. {
  3749. "name": "Symfony Community",
  3750. "homepage": "https://symfony.com/contributors"
  3751. }
  3752. ],
  3753. "description": "Symfony polyfill for the Mbstring extension",
  3754. "homepage": "https://symfony.com",
  3755. "keywords": [
  3756. "compatibility",
  3757. "mbstring",
  3758. "polyfill",
  3759. "portable",
  3760. "shim"
  3761. ],
  3762. "funding": [
  3763. {
  3764. "url": "https://symfony.com/sponsor",
  3765. "type": "custom"
  3766. },
  3767. {
  3768. "url": "https://github.com/fabpot",
  3769. "type": "github"
  3770. },
  3771. {
  3772. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3773. "type": "tidelift"
  3774. }
  3775. ],
  3776. "time": "2023-07-28T09:04:16+00:00"
  3777. },
  3778. {
  3779. "name": "symfony/polyfill-php72",
  3780. "version": "v1.28.0",
  3781. "source": {
  3782. "type": "git",
  3783. "url": "https://github.com/symfony/polyfill-php72.git",
  3784. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  3785. },
  3786. "dist": {
  3787. "type": "zip",
  3788. "url": "https://mirrors.huaweicloud.com/repository/php/symfony/polyfill-php72/v1.28.0/symfony-polyfill-php72-v1.28.0.zip",
  3789. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  3790. "shasum": ""
  3791. },
  3792. "require": {
  3793. "php": ">=7.1"
  3794. },
  3795. "type": "library",
  3796. "extra": {
  3797. "branch-alias": {
  3798. "dev-main": "1.28-dev"
  3799. },
  3800. "thanks": {
  3801. "name": "symfony/polyfill",
  3802. "url": "https://github.com/symfony/polyfill"
  3803. }
  3804. },
  3805. "autoload": {
  3806. "files": [
  3807. "bootstrap.php"
  3808. ],
  3809. "psr-4": {
  3810. "Symfony\\Polyfill\\Php72\\": ""
  3811. }
  3812. },
  3813. "license": [
  3814. "MIT"
  3815. ],
  3816. "authors": [
  3817. {
  3818. "name": "Nicolas Grekas",
  3819. "email": "p@tchwork.com"
  3820. },
  3821. {
  3822. "name": "Symfony Community",
  3823. "homepage": "https://symfony.com/contributors"
  3824. }
  3825. ],
  3826. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3827. "homepage": "https://symfony.com",
  3828. "keywords": [
  3829. "compatibility",
  3830. "polyfill",
  3831. "portable",
  3832. "shim"
  3833. ],
  3834. "funding": [
  3835. {
  3836. "url": "https://symfony.com/sponsor",
  3837. "type": "custom"
  3838. },
  3839. {
  3840. "url": "https://github.com/fabpot",
  3841. "type": "github"
  3842. },
  3843. {
  3844. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3845. "type": "tidelift"
  3846. }
  3847. ],
  3848. "time": "2023-01-26T09:26:14+00:00"
  3849. },
  3850. {
  3851. "name": "symfony/polyfill-php80",
  3852. "version": "v1.28.0",
  3853. "source": {
  3854. "type": "git",
  3855. "url": "https://github.com/symfony/polyfill-php80.git",
  3856. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  3857. },
  3858. "dist": {
  3859. "type": "zip",
  3860. "url": "https://mirrors.huaweicloud.com/repository/php/symfony/polyfill-php80/v1.28.0/symfony-polyfill-php80-v1.28.0.zip",
  3861. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  3862. "shasum": ""
  3863. },
  3864. "require": {
  3865. "php": ">=7.1"
  3866. },
  3867. "type": "library",
  3868. "extra": {
  3869. "branch-alias": {
  3870. "dev-main": "1.28-dev"
  3871. },
  3872. "thanks": {
  3873. "name": "symfony/polyfill",
  3874. "url": "https://github.com/symfony/polyfill"
  3875. }
  3876. },
  3877. "autoload": {
  3878. "files": [
  3879. "bootstrap.php"
  3880. ],
  3881. "psr-4": {
  3882. "Symfony\\Polyfill\\Php80\\": ""
  3883. },
  3884. "classmap": [
  3885. "Resources/stubs"
  3886. ]
  3887. },
  3888. "license": [
  3889. "MIT"
  3890. ],
  3891. "authors": [
  3892. {
  3893. "name": "Ion Bazan",
  3894. "email": "ion.bazan@gmail.com"
  3895. },
  3896. {
  3897. "name": "Nicolas Grekas",
  3898. "email": "p@tchwork.com"
  3899. },
  3900. {
  3901. "name": "Symfony Community",
  3902. "homepage": "https://symfony.com/contributors"
  3903. }
  3904. ],
  3905. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3906. "homepage": "https://symfony.com",
  3907. "keywords": [
  3908. "compatibility",
  3909. "polyfill",
  3910. "portable",
  3911. "shim"
  3912. ],
  3913. "funding": [
  3914. {
  3915. "url": "https://symfony.com/sponsor",
  3916. "type": "custom"
  3917. },
  3918. {
  3919. "url": "https://github.com/fabpot",
  3920. "type": "github"
  3921. },
  3922. {
  3923. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3924. "type": "tidelift"
  3925. }
  3926. ],
  3927. "time": "2023-01-26T09:26:14+00:00"
  3928. },
  3929. {
  3930. "name": "symfony/process",
  3931. "version": "v3.4.47",
  3932. "source": {
  3933. "type": "git",
  3934. "url": "https://github.com/symfony/process.git",
  3935. "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca"
  3936. },
  3937. "dist": {
  3938. "type": "zip",
  3939. "url": "https://mirrors.huaweicloud.com/repository/php/symfony/process/v3.4.47/symfony-process-v3.4.47.zip",
  3940. "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca",
  3941. "shasum": ""
  3942. },
  3943. "require": {
  3944. "php": "^5.5.9|>=7.0.8"
  3945. },
  3946. "type": "library",
  3947. "autoload": {
  3948. "psr-4": {
  3949. "Symfony\\Component\\Process\\": ""
  3950. },
  3951. "exclude-from-classmap": [
  3952. "/Tests/"
  3953. ]
  3954. },
  3955. "license": [
  3956. "MIT"
  3957. ],
  3958. "authors": [
  3959. {
  3960. "name": "Fabien Potencier",
  3961. "email": "fabien@symfony.com"
  3962. },
  3963. {
  3964. "name": "Symfony Community",
  3965. "homepage": "https://symfony.com/contributors"
  3966. }
  3967. ],
  3968. "description": "Symfony Process Component",
  3969. "homepage": "https://symfony.com",
  3970. "funding": [
  3971. {
  3972. "url": "https://symfony.com/sponsor",
  3973. "type": "custom"
  3974. },
  3975. {
  3976. "url": "https://github.com/fabpot",
  3977. "type": "github"
  3978. },
  3979. {
  3980. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3981. "type": "tidelift"
  3982. }
  3983. ],
  3984. "time": "2020-10-24T10:57:07+00:00"
  3985. },
  3986. {
  3987. "name": "vlucas/phpdotenv",
  3988. "version": "v2.6.9",
  3989. "source": {
  3990. "type": "git",
  3991. "url": "https://github.com/vlucas/phpdotenv.git",
  3992. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  3993. },
  3994. "dist": {
  3995. "type": "zip",
  3996. "url": "https://mirrors.huaweicloud.com/repository/php/vlucas/phpdotenv/v2.6.9/vlucas-phpdotenv-v2.6.9.zip",
  3997. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  3998. "shasum": ""
  3999. },
  4000. "require": {
  4001. "php": "^5.3.9 || ^7.0 || ^8.0",
  4002. "symfony/polyfill-ctype": "^1.17"
  4003. },
  4004. "require-dev": {
  4005. "ext-filter": "*",
  4006. "ext-pcre": "*",
  4007. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  4008. },
  4009. "suggest": {
  4010. "ext-filter": "Required to use the boolean validator.",
  4011. "ext-pcre": "Required to use most of the library."
  4012. },
  4013. "type": "library",
  4014. "extra": {
  4015. "branch-alias": {
  4016. "dev-master": "2.6-dev"
  4017. }
  4018. },
  4019. "autoload": {
  4020. "psr-4": {
  4021. "Dotenv\\": "src/"
  4022. }
  4023. },
  4024. "license": [
  4025. "BSD-3-Clause"
  4026. ],
  4027. "authors": [
  4028. {
  4029. "name": "Graham Campbell",
  4030. "email": "hello@gjcampbell.co.uk",
  4031. "homepage": "https://github.com/GrahamCampbell"
  4032. },
  4033. {
  4034. "name": "Vance Lucas",
  4035. "email": "vance@vancelucas.com",
  4036. "homepage": "https://github.com/vlucas"
  4037. }
  4038. ],
  4039. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4040. "keywords": [
  4041. "dotenv",
  4042. "env",
  4043. "environment"
  4044. ],
  4045. "funding": [
  4046. {
  4047. "url": "https://github.com/GrahamCampbell",
  4048. "type": "github"
  4049. },
  4050. {
  4051. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  4052. "type": "tidelift"
  4053. }
  4054. ],
  4055. "time": "2021-12-12T22:59:22+00:00"
  4056. },
  4057. {
  4058. "name": "vova07/yii2-imperavi-widget",
  4059. "version": "2.0.11",
  4060. "source": {
  4061. "type": "git",
  4062. "url": "https://github.com/vova07/yii2-imperavi-widget.git",
  4063. "reference": "c4fe4a9f64a4c53d9686c80b8744e2c1366184e5"
  4064. },
  4065. "dist": {
  4066. "type": "zip",
  4067. "url": "https://mirrors.huaweicloud.com/repository/php/vova07/yii2-imperavi-widget/2.0.11/vova07-yii2-imperavi-widget-2.0.11.zip",
  4068. "reference": "c4fe4a9f64a4c53d9686c80b8744e2c1366184e5",
  4069. "shasum": ""
  4070. },
  4071. "require": {
  4072. "yiisoft/yii2": "*"
  4073. },
  4074. "require-dev": {
  4075. "mikey179/vfsstream": "~1",
  4076. "phpunit/phpunit": "4.*",
  4077. "scrutinizer/ocular": "~1.1"
  4078. },
  4079. "type": "yii2-extension",
  4080. "autoload": {
  4081. "psr-4": {
  4082. "vova07\\imperavi\\": "src",
  4083. "vova07\\imperavi\\tests\\": "tests"
  4084. }
  4085. },
  4086. "license": [
  4087. "BSD-3-Clause"
  4088. ],
  4089. "authors": [
  4090. {
  4091. "name": "Crudu Vasile",
  4092. "email": "bazillio07@yandex.ru",
  4093. "homepage": "https://github.com/vova07",
  4094. "role": "Developer"
  4095. }
  4096. ],
  4097. "description": "The imperavi redactor widget for Yii 2 framework.",
  4098. "homepage": "https://github.com/vova07/yii2-imperavi-widget",
  4099. "keywords": [
  4100. "Redactor",
  4101. "extension",
  4102. "imperavi",
  4103. "widget",
  4104. "wysiwyg",
  4105. "yii",
  4106. "yii 2",
  4107. "yii2"
  4108. ],
  4109. "time": "2019-03-26T11:39:06+00:00"
  4110. },
  4111. {
  4112. "name": "yiisoft/yii2",
  4113. "version": "2.0.49",
  4114. "source": {
  4115. "type": "git",
  4116. "url": "https://github.com/yiisoft/yii2-framework.git",
  4117. "reference": "98008bf02a6f6bae78d2ab37e19240b59f8a2957"
  4118. },
  4119. "dist": {
  4120. "type": "zip",
  4121. "url": "https://mirrors.huaweicloud.com/repository/php/yiisoft/yii2/2.0.49/yiisoft-yii2-2.0.49.zip",
  4122. "reference": "98008bf02a6f6bae78d2ab37e19240b59f8a2957",
  4123. "shasum": ""
  4124. },
  4125. "require": {
  4126. "bower-asset/inputmask": "~3.2.2 | ~3.3.5",
  4127. "bower-asset/jquery": "3.7.*@stable | 3.6.*@stable | 3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  4128. "bower-asset/punycode": "1.3.*",
  4129. "bower-asset/yii2-pjax": "~2.0.1",
  4130. "cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
  4131. "ext-ctype": "*",
  4132. "ext-mbstring": "*",
  4133. "ezyang/htmlpurifier": "^4.6",
  4134. "lib-pcre": "*",
  4135. "paragonie/random_compat": ">=1",
  4136. "php": ">=5.4.0",
  4137. "yiisoft/yii2-composer": "~2.0.4"
  4138. },
  4139. "bin": [
  4140. "yii"
  4141. ],
  4142. "type": "library",
  4143. "extra": {
  4144. "branch-alias": {
  4145. "dev-master": "2.0.x-dev"
  4146. }
  4147. },
  4148. "autoload": {
  4149. "psr-4": {
  4150. "yii\\": ""
  4151. }
  4152. },
  4153. "license": [
  4154. "BSD-3-Clause"
  4155. ],
  4156. "authors": [
  4157. {
  4158. "name": "Qiang Xue",
  4159. "email": "qiang.xue@gmail.com",
  4160. "homepage": "https://www.yiiframework.com/",
  4161. "role": "Founder and project lead"
  4162. },
  4163. {
  4164. "name": "Alexander Makarov",
  4165. "email": "sam@rmcreative.ru",
  4166. "homepage": "https://rmcreative.ru/",
  4167. "role": "Core framework development"
  4168. },
  4169. {
  4170. "name": "Maurizio Domba",
  4171. "homepage": "http://mdomba.info/",
  4172. "role": "Core framework development"
  4173. },
  4174. {
  4175. "name": "Carsten Brandt",
  4176. "email": "mail@cebe.cc",
  4177. "homepage": "https://www.cebe.cc/",
  4178. "role": "Core framework development"
  4179. },
  4180. {
  4181. "name": "Timur Ruziev",
  4182. "email": "resurtm@gmail.com",
  4183. "homepage": "http://resurtm.com/",
  4184. "role": "Core framework development"
  4185. },
  4186. {
  4187. "name": "Paul Klimov",
  4188. "email": "klimov.paul@gmail.com",
  4189. "role": "Core framework development"
  4190. },
  4191. {
  4192. "name": "Dmitry Naumenko",
  4193. "email": "d.naumenko.a@gmail.com",
  4194. "role": "Core framework development"
  4195. },
  4196. {
  4197. "name": "Boudewijn Vahrmeijer",
  4198. "email": "info@dynasource.eu",
  4199. "homepage": "http://dynasource.eu",
  4200. "role": "Core framework development"
  4201. }
  4202. ],
  4203. "description": "Yii PHP Framework Version 2",
  4204. "homepage": "https://www.yiiframework.com/",
  4205. "keywords": [
  4206. "framework",
  4207. "yii2"
  4208. ],
  4209. "funding": [
  4210. {
  4211. "url": "https://github.com/yiisoft",
  4212. "type": "github"
  4213. },
  4214. {
  4215. "url": "https://opencollective.com/yiisoft",
  4216. "type": "open_collective"
  4217. },
  4218. {
  4219. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2",
  4220. "type": "tidelift"
  4221. }
  4222. ],
  4223. "time": "2023-08-29T13:36:17+00:00"
  4224. },
  4225. {
  4226. "name": "yiisoft/yii2-authclient",
  4227. "version": "2.1.8",
  4228. "source": {
  4229. "type": "git",
  4230. "url": "https://github.com/yiisoft/yii2-authclient.git",
  4231. "reference": "215bdcfbe9e6e362cbdbc31166bc9630f1edbbf7"
  4232. },
  4233. "dist": {
  4234. "type": "zip",
  4235. "url": "https://mirrors.huaweicloud.com/repository/php/yiisoft/yii2-authclient/2.1.8/yiisoft-yii2-authclient-2.1.8.zip",
  4236. "reference": "215bdcfbe9e6e362cbdbc31166bc9630f1edbbf7",
  4237. "shasum": ""
  4238. },
  4239. "require": {
  4240. "yiisoft/yii2-httpclient": "~2.0.5"
  4241. },
  4242. "suggest": {
  4243. "spomky-labs/jose": "required for JWS,JWT or JWK related flows like OpenIDConnect"
  4244. },
  4245. "type": "yii2-extension",
  4246. "extra": {
  4247. "branch-alias": {
  4248. "dev-master": "2.0.x-dev"
  4249. }
  4250. },
  4251. "autoload": {
  4252. "psr-4": {
  4253. "yii\\authclient\\": "src"
  4254. }
  4255. },
  4256. "license": [
  4257. "BSD-3-Clause"
  4258. ],
  4259. "authors": [
  4260. {
  4261. "name": "Paul Klimov",
  4262. "email": "klimov.paul@gmail.com"
  4263. }
  4264. ],
  4265. "description": "External authentication via OAuth and OpenID for the Yii framework",
  4266. "keywords": [
  4267. "OpenID Connect",
  4268. "OpenId",
  4269. "api",
  4270. "auth",
  4271. "oauth",
  4272. "yii2"
  4273. ],
  4274. "time": "2019-01-28T18:52:05+00:00"
  4275. },
  4276. {
  4277. "name": "yiisoft/yii2-bootstrap",
  4278. "version": "2.0.11",
  4279. "source": {
  4280. "type": "git",
  4281. "url": "https://github.com/yiisoft/yii2-bootstrap.git",
  4282. "reference": "83d144f4089adaa7064ad60dc4c1436daa2eb30e"
  4283. },
  4284. "dist": {
  4285. "type": "zip",
  4286. "url": "https://mirrors.huaweicloud.com/repository/php/yiisoft/yii2-bootstrap/2.0.11/yiisoft-yii2-bootstrap-2.0.11.zip",
  4287. "reference": "83d144f4089adaa7064ad60dc4c1436daa2eb30e",
  4288. "shasum": ""
  4289. },
  4290. "require": {
  4291. "bower-asset/bootstrap": "3.4.* | 3.3.* | 3.2.* | 3.1.*",
  4292. "yiisoft/yii2": "~2.0.6"
  4293. },
  4294. "require-dev": {
  4295. "cweagans/composer-patches": "^1.7",
  4296. "phpunit/phpunit": "4.8.34"
  4297. },
  4298. "type": "yii2-extension",
  4299. "extra": {
  4300. "branch-alias": {
  4301. "dev-master": "2.0.x-dev"
  4302. },
  4303. "patches": {
  4304. "phpunit/phpunit-mock-objects": {
  4305. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  4306. },
  4307. "phpunit/phpunit": {
  4308. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  4309. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  4310. }
  4311. }
  4312. },
  4313. "autoload": {
  4314. "psr-4": {
  4315. "yii\\bootstrap\\": "src"
  4316. }
  4317. },
  4318. "license": [
  4319. "BSD-3-Clause"
  4320. ],
  4321. "authors": [
  4322. {
  4323. "name": "Qiang Xue",
  4324. "email": "qiang.xue@gmail.com",
  4325. "homepage": "http://www.yiiframework.com/"
  4326. },
  4327. {
  4328. "name": "Alexander Makarov",
  4329. "email": "sam@rmcreative.ru",
  4330. "homepage": "http://rmcreative.ru/"
  4331. },
  4332. {
  4333. "name": "Antonio Ramirez",
  4334. "email": "amigo.cobos@gmail.com"
  4335. },
  4336. {
  4337. "name": "Paul Klimov",
  4338. "email": "klimov.paul@gmail.com"
  4339. }
  4340. ],
  4341. "description": "The Twitter Bootstrap extension for the Yii framework",
  4342. "keywords": [
  4343. "bootstrap",
  4344. "yii2"
  4345. ],
  4346. "funding": [
  4347. {
  4348. "url": "https://github.com/yiisoft",
  4349. "type": "github"
  4350. },
  4351. {
  4352. "url": "https://opencollective.com/yiisoft",
  4353. "type": "open_collective"
  4354. },
  4355. {
  4356. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-bootstrap",
  4357. "type": "tidelift"
  4358. }
  4359. ],
  4360. "time": "2021-08-09T20:54:06+00:00"
  4361. },
  4362. {
  4363. "name": "yiisoft/yii2-composer",
  4364. "version": "2.0.10",
  4365. "source": {
  4366. "type": "git",
  4367. "url": "https://github.com/yiisoft/yii2-composer.git",
  4368. "reference": "94bb3f66e779e2774f8776d6e1bdeab402940510"
  4369. },
  4370. "dist": {
  4371. "type": "zip",
  4372. "url": "https://mirrors.huaweicloud.com/repository/php/yiisoft/yii2-composer/2.0.10/yiisoft-yii2-composer-2.0.10.zip",
  4373. "reference": "94bb3f66e779e2774f8776d6e1bdeab402940510",
  4374. "shasum": ""
  4375. },
  4376. "require": {
  4377. "composer-plugin-api": "^1.0 | ^2.0"
  4378. },
  4379. "require-dev": {
  4380. "composer/composer": "^1.0 | ^2.0@dev",
  4381. "phpunit/phpunit": "<7"
  4382. },
  4383. "type": "composer-plugin",
  4384. "extra": {
  4385. "class": "yii\\composer\\Plugin",
  4386. "branch-alias": {
  4387. "dev-master": "2.0.x-dev"
  4388. }
  4389. },
  4390. "autoload": {
  4391. "psr-4": {
  4392. "yii\\composer\\": ""
  4393. }
  4394. },
  4395. "license": [
  4396. "BSD-3-Clause"
  4397. ],
  4398. "authors": [
  4399. {
  4400. "name": "Qiang Xue",
  4401. "email": "qiang.xue@gmail.com"
  4402. },
  4403. {
  4404. "name": "Carsten Brandt",
  4405. "email": "mail@cebe.cc"
  4406. }
  4407. ],
  4408. "description": "The composer plugin for Yii extension installer",
  4409. "keywords": [
  4410. "composer",
  4411. "extension installer",
  4412. "yii2"
  4413. ],
  4414. "funding": [
  4415. {
  4416. "url": "https://github.com/yiisoft",
  4417. "type": "github"
  4418. },
  4419. {
  4420. "url": "https://opencollective.com/yiisoft",
  4421. "type": "open_collective"
  4422. },
  4423. {
  4424. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-composer",
  4425. "type": "tidelift"
  4426. }
  4427. ],
  4428. "time": "2020-06-24T00:04:01+00:00"
  4429. },
  4430. {
  4431. "name": "yiisoft/yii2-httpclient",
  4432. "version": "2.0.15",
  4433. "source": {
  4434. "type": "git",
  4435. "url": "https://github.com/yiisoft/yii2-httpclient.git",
  4436. "reference": "5a8350e15f2db3555ba52830c9c701587c136e87"
  4437. },
  4438. "dist": {
  4439. "type": "zip",
  4440. "url": "https://mirrors.huaweicloud.com/repository/php/yiisoft/yii2-httpclient/2.0.15/yiisoft-yii2-httpclient-2.0.15.zip",
  4441. "reference": "5a8350e15f2db3555ba52830c9c701587c136e87",
  4442. "shasum": ""
  4443. },
  4444. "require": {
  4445. "paragonie/random_compat": ">=1",
  4446. "yiisoft/yii2": "~2.0.13"
  4447. },
  4448. "require-dev": {
  4449. "cweagans/composer-patches": "^1.7",
  4450. "phpunit/phpunit": "4.8.34"
  4451. },
  4452. "type": "yii2-extension",
  4453. "extra": {
  4454. "branch-alias": {
  4455. "dev-master": "2.0.x-dev"
  4456. },
  4457. "composer-exit-on-patch-failure": true,
  4458. "patches": {
  4459. "phpunit/phpunit-mock-objects": {
  4460. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  4461. },
  4462. "phpunit/phpunit": {
  4463. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  4464. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  4465. }
  4466. }
  4467. },
  4468. "autoload": {
  4469. "psr-4": {
  4470. "yii\\httpclient\\": "src"
  4471. }
  4472. },
  4473. "license": [
  4474. "BSD-3-Clause"
  4475. ],
  4476. "authors": [
  4477. {
  4478. "name": "Paul Klimov",
  4479. "email": "klimov.paul@gmail.com"
  4480. }
  4481. ],
  4482. "description": "HTTP client extension for the Yii framework",
  4483. "keywords": [
  4484. "curl",
  4485. "http",
  4486. "httpclient",
  4487. "yii2"
  4488. ],
  4489. "funding": [
  4490. {
  4491. "url": "https://github.com/yiisoft",
  4492. "type": "github"
  4493. },
  4494. {
  4495. "url": "https://opencollective.com/yiisoft",
  4496. "type": "open_collective"
  4497. },
  4498. {
  4499. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-httpclient",
  4500. "type": "tidelift"
  4501. }
  4502. ],
  4503. "time": "2023-05-22T18:32:24+00:00"
  4504. },
  4505. {
  4506. "name": "yiisoft/yii2-imagine",
  4507. "version": "2.3.1",
  4508. "source": {
  4509. "type": "git",
  4510. "url": "https://github.com/yiisoft/yii2-imagine.git",
  4511. "reference": "7ec4332dc25893aec5a7cf084722b162b3a4d55d"
  4512. },
  4513. "dist": {
  4514. "type": "zip",
  4515. "url": "https://mirrors.huaweicloud.com/repository/php/yiisoft/yii2-imagine/2.3.1/yiisoft-yii2-imagine-2.3.1.zip",
  4516. "reference": "7ec4332dc25893aec5a7cf084722b162b3a4d55d",
  4517. "shasum": ""
  4518. },
  4519. "require": {
  4520. "imagine/imagine": "^1.0",
  4521. "yiisoft/yii2": "~2.0.0"
  4522. },
  4523. "require-dev": {
  4524. "cweagans/composer-patches": "^1.7",
  4525. "phpunit/phpunit": "4.8.34"
  4526. },
  4527. "type": "yii2-extension",
  4528. "extra": {
  4529. "branch-alias": {
  4530. "dev-master": "2.0.x-dev"
  4531. },
  4532. "composer-exit-on-patch-failure": true,
  4533. "patches": {
  4534. "phpunit/phpunit-mock-objects": {
  4535. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  4536. },
  4537. "phpunit/phpunit": {
  4538. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  4539. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  4540. }
  4541. }
  4542. },
  4543. "autoload": {
  4544. "psr-4": {
  4545. "yii\\imagine\\": "src"
  4546. }
  4547. },
  4548. "license": [
  4549. "BSD-3-Clause"
  4550. ],
  4551. "authors": [
  4552. {
  4553. "name": "Antonio Ramirez",
  4554. "email": "amigo.cobos@gmail.com"
  4555. }
  4556. ],
  4557. "description": "The Imagine integration for the Yii framework",
  4558. "keywords": [
  4559. "helper",
  4560. "image",
  4561. "imagine",
  4562. "yii2"
  4563. ],
  4564. "funding": [
  4565. {
  4566. "url": "https://github.com/yiisoft",
  4567. "type": "github"
  4568. },
  4569. {
  4570. "url": "https://opencollective.com/yiisoft",
  4571. "type": "open_collective"
  4572. },
  4573. {
  4574. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-imagine",
  4575. "type": "tidelift"
  4576. }
  4577. ],
  4578. "time": "2022-09-04T10:06:40+00:00"
  4579. },
  4580. {
  4581. "name": "yiisoft/yii2-redis",
  4582. "version": "2.0.18",
  4583. "source": {
  4584. "type": "git",
  4585. "url": "https://github.com/yiisoft/yii2-redis.git",
  4586. "reference": "08aecdf44e091c5fae3411e719ac0fdb803ef594"
  4587. },
  4588. "dist": {
  4589. "type": "zip",
  4590. "url": "https://mirrors.huaweicloud.com/repository/php/yiisoft/yii2-redis/2.0.18/yiisoft-yii2-redis-2.0.18.zip",
  4591. "reference": "08aecdf44e091c5fae3411e719ac0fdb803ef594",
  4592. "shasum": ""
  4593. },
  4594. "require": {
  4595. "ext-openssl": "*",
  4596. "yiisoft/yii2": "~2.0.39"
  4597. },
  4598. "require-dev": {
  4599. "phpunit/phpunit": "<7",
  4600. "yiisoft/yii2-dev": "~2.0.39"
  4601. },
  4602. "type": "yii2-extension",
  4603. "extra": {
  4604. "branch-alias": {
  4605. "dev-master": "2.0.x-dev"
  4606. }
  4607. },
  4608. "autoload": {
  4609. "psr-4": {
  4610. "yii\\redis\\": "src"
  4611. }
  4612. },
  4613. "license": [
  4614. "BSD-3-Clause"
  4615. ],
  4616. "authors": [
  4617. {
  4618. "name": "Carsten Brandt",
  4619. "email": "mail@cebe.cc"
  4620. }
  4621. ],
  4622. "description": "Redis Cache, Session and ActiveRecord for the Yii framework",
  4623. "keywords": [
  4624. "active-record",
  4625. "cache",
  4626. "redis",
  4627. "session",
  4628. "yii2"
  4629. ],
  4630. "funding": [
  4631. {
  4632. "url": "https://github.com/yiisoft",
  4633. "type": "github"
  4634. },
  4635. {
  4636. "url": "https://opencollective.com/yiisoft",
  4637. "type": "open_collective"
  4638. },
  4639. {
  4640. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-redis",
  4641. "type": "tidelift"
  4642. }
  4643. ],
  4644. "time": "2022-09-04T10:34:42+00:00"
  4645. },
  4646. {
  4647. "name": "yiisoft/yii2-swiftmailer",
  4648. "version": "2.1.3",
  4649. "source": {
  4650. "type": "git",
  4651. "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
  4652. "reference": "7b7ec871b4a63c0abbcd10e1ee3fb5be22f8b340"
  4653. },
  4654. "dist": {
  4655. "type": "zip",
  4656. "url": "https://mirrors.huaweicloud.com/repository/php/yiisoft/yii2-swiftmailer/2.1.3/yiisoft-yii2-swiftmailer-2.1.3.zip",
  4657. "reference": "7b7ec871b4a63c0abbcd10e1ee3fb5be22f8b340",
  4658. "shasum": ""
  4659. },
  4660. "require": {
  4661. "swiftmailer/swiftmailer": "~6.0",
  4662. "yiisoft/yii2": ">=2.0.4"
  4663. },
  4664. "require-dev": {
  4665. "cweagans/composer-patches": "^1.7",
  4666. "phpunit/phpunit": "4.8.34"
  4667. },
  4668. "type": "yii2-extension",
  4669. "extra": {
  4670. "branch-alias": {
  4671. "dev-master": "2.1.x-dev"
  4672. },
  4673. "composer-exit-on-patch-failure": true,
  4674. "patches": {
  4675. "phpunit/phpunit-mock-objects": {
  4676. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  4677. },
  4678. "phpunit/phpunit": {
  4679. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  4680. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  4681. }
  4682. }
  4683. },
  4684. "autoload": {
  4685. "psr-4": {
  4686. "yii\\swiftmailer\\": "src"
  4687. }
  4688. },
  4689. "license": [
  4690. "BSD-3-Clause"
  4691. ],
  4692. "authors": [
  4693. {
  4694. "name": "Paul Klimov",
  4695. "email": "klimov.paul@gmail.com"
  4696. }
  4697. ],
  4698. "description": "The SwiftMailer integration for the Yii framework",
  4699. "keywords": [
  4700. "email",
  4701. "mail",
  4702. "mailer",
  4703. "swift",
  4704. "swiftmailer",
  4705. "yii2"
  4706. ],
  4707. "funding": [
  4708. {
  4709. "url": "https://github.com/yiisoft",
  4710. "type": "github"
  4711. },
  4712. {
  4713. "url": "https://opencollective.com/yiisoft",
  4714. "type": "open_collective"
  4715. },
  4716. {
  4717. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-swiftmailer",
  4718. "type": "tidelift"
  4719. }
  4720. ],
  4721. "time": "2021-12-30T08:48:48+00:00"
  4722. }
  4723. ],
  4724. "packages-dev": [
  4725. {
  4726. "name": "fakerphp/faker",
  4727. "version": "v1.20.0",
  4728. "source": {
  4729. "type": "git",
  4730. "url": "https://github.com/FakerPHP/Faker.git",
  4731. "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b"
  4732. },
  4733. "dist": {
  4734. "type": "zip",
  4735. "url": "https://mirrors.huaweicloud.com/repository/php/fakerphp/faker/v1.20.0/fakerphp-faker-v1.20.0.zip",
  4736. "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b",
  4737. "shasum": ""
  4738. },
  4739. "require": {
  4740. "php": "^7.1 || ^8.0",
  4741. "psr/container": "^1.0 || ^2.0",
  4742. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  4743. },
  4744. "conflict": {
  4745. "fzaninotto/faker": "*"
  4746. },
  4747. "require-dev": {
  4748. "bamarni/composer-bin-plugin": "^1.4.1",
  4749. "doctrine/persistence": "^1.3 || ^2.0",
  4750. "ext-intl": "*",
  4751. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  4752. },
  4753. "suggest": {
  4754. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  4755. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  4756. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  4757. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  4758. "ext-mbstring": "Required for multibyte Unicode string functionality."
  4759. },
  4760. "type": "library",
  4761. "extra": {
  4762. "branch-alias": {
  4763. "dev-main": "v1.20-dev"
  4764. }
  4765. },
  4766. "autoload": {
  4767. "psr-4": {
  4768. "Faker\\": "src/Faker/"
  4769. }
  4770. },
  4771. "license": [
  4772. "MIT"
  4773. ],
  4774. "authors": [
  4775. {
  4776. "name": "François Zaninotto"
  4777. }
  4778. ],
  4779. "description": "Faker is a PHP library that generates fake data for you.",
  4780. "keywords": [
  4781. "data",
  4782. "faker",
  4783. "fixtures"
  4784. ],
  4785. "time": "2022-07-20T13:12:54+00:00"
  4786. },
  4787. {
  4788. "name": "phpspec/php-diff",
  4789. "version": "v1.1.3",
  4790. "source": {
  4791. "type": "git",
  4792. "url": "https://github.com/phpspec/php-diff.git",
  4793. "reference": "fc1156187f9f6c8395886fe85ed88a0a245d72e9"
  4794. },
  4795. "dist": {
  4796. "type": "zip",
  4797. "url": "https://mirrors.huaweicloud.com/repository/php/phpspec/php-diff/v1.1.3/phpspec-php-diff-v1.1.3.zip",
  4798. "reference": "fc1156187f9f6c8395886fe85ed88a0a245d72e9",
  4799. "shasum": ""
  4800. },
  4801. "type": "library",
  4802. "extra": {
  4803. "branch-alias": {
  4804. "dev-master": "1.0.x-dev"
  4805. }
  4806. },
  4807. "autoload": {
  4808. "psr-0": {
  4809. "Diff": "lib/"
  4810. }
  4811. },
  4812. "license": [
  4813. "BSD-3-Clause"
  4814. ],
  4815. "authors": [
  4816. {
  4817. "name": "Chris Boulton",
  4818. "homepage": "http://github.com/chrisboulton"
  4819. }
  4820. ],
  4821. "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
  4822. "time": "2020-09-18T13:47:07+00:00"
  4823. },
  4824. {
  4825. "name": "yiisoft/yii2-debug",
  4826. "version": "2.1.24",
  4827. "source": {
  4828. "type": "git",
  4829. "url": "https://github.com/yiisoft/yii2-debug.git",
  4830. "reference": "e15e954d0beb82b0b532f998f55e7275083de592"
  4831. },
  4832. "dist": {
  4833. "type": "zip",
  4834. "url": "https://mirrors.huaweicloud.com/repository/php/yiisoft/yii2-debug/2.1.24/yiisoft-yii2-debug-2.1.24.zip",
  4835. "reference": "e15e954d0beb82b0b532f998f55e7275083de592",
  4836. "shasum": ""
  4837. },
  4838. "require": {
  4839. "ext-mbstring": "*",
  4840. "php": ">=5.4",
  4841. "yiisoft/yii2": "~2.0.13"
  4842. },
  4843. "require-dev": {
  4844. "cweagans/composer-patches": "^1.7",
  4845. "phpunit/phpunit": "4.8.34",
  4846. "yiisoft/yii2-coding-standards": "~2.0",
  4847. "yiisoft/yii2-swiftmailer": "*"
  4848. },
  4849. "type": "yii2-extension",
  4850. "extra": {
  4851. "branch-alias": {
  4852. "dev-master": "2.0.x-dev"
  4853. },
  4854. "composer-exit-on-patch-failure": true,
  4855. "patches": {
  4856. "phpunit/phpunit-mock-objects": {
  4857. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  4858. },
  4859. "phpunit/phpunit": {
  4860. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  4861. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch",
  4862. "Fix PHP 8.1 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php81.patch"
  4863. }
  4864. }
  4865. },
  4866. "autoload": {
  4867. "psr-4": {
  4868. "yii\\debug\\": "src"
  4869. }
  4870. },
  4871. "license": [
  4872. "BSD-3-Clause"
  4873. ],
  4874. "authors": [
  4875. {
  4876. "name": "Qiang Xue",
  4877. "email": "qiang.xue@gmail.com"
  4878. },
  4879. {
  4880. "name": "Simon Karlen",
  4881. "email": "simi.albi@outlook.com"
  4882. }
  4883. ],
  4884. "description": "The debugger extension for the Yii framework",
  4885. "keywords": [
  4886. "debug",
  4887. "debugger",
  4888. "yii2"
  4889. ],
  4890. "funding": [
  4891. {
  4892. "url": "https://github.com/yiisoft",
  4893. "type": "github"
  4894. },
  4895. {
  4896. "url": "https://opencollective.com/yiisoft",
  4897. "type": "open_collective"
  4898. },
  4899. {
  4900. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-debug",
  4901. "type": "tidelift"
  4902. }
  4903. ],
  4904. "time": "2023-07-10T06:07:43+00:00"
  4905. },
  4906. {
  4907. "name": "yiisoft/yii2-faker",
  4908. "version": "2.0.5",
  4909. "source": {
  4910. "type": "git",
  4911. "url": "https://github.com/yiisoft/yii2-faker.git",
  4912. "reference": "8c361657143bfaea58ff7dcc9bf51f1991a46f5d"
  4913. },
  4914. "dist": {
  4915. "type": "zip",
  4916. "url": "https://mirrors.huaweicloud.com/repository/php/yiisoft/yii2-faker/2.0.5/yiisoft-yii2-faker-2.0.5.zip",
  4917. "reference": "8c361657143bfaea58ff7dcc9bf51f1991a46f5d",
  4918. "shasum": ""
  4919. },
  4920. "require": {
  4921. "fakerphp/faker": "~1.9|~1.10",
  4922. "yiisoft/yii2": "~2.0.0"
  4923. },
  4924. "require-dev": {
  4925. "cweagans/composer-patches": "^1.7",
  4926. "phpunit/phpunit": "4.8.34"
  4927. },
  4928. "type": "yii2-extension",
  4929. "extra": {
  4930. "branch-alias": {
  4931. "dev-master": "2.0.x-dev"
  4932. },
  4933. "composer-exit-on-patch-failure": true,
  4934. "patches": {
  4935. "phpunit/phpunit-mock-objects": {
  4936. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  4937. },
  4938. "phpunit/phpunit": {
  4939. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  4940. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  4941. }
  4942. }
  4943. },
  4944. "autoload": {
  4945. "psr-4": {
  4946. "yii\\faker\\": "src"
  4947. }
  4948. },
  4949. "license": [
  4950. "BSD-3-Clause"
  4951. ],
  4952. "authors": [
  4953. {
  4954. "name": "Mark Jebri",
  4955. "email": "mark.github@yandex.ru"
  4956. }
  4957. ],
  4958. "description": "Fixture generator. The Faker integration for the Yii framework.",
  4959. "keywords": [
  4960. "Fixture",
  4961. "faker",
  4962. "yii2"
  4963. ],
  4964. "funding": [
  4965. {
  4966. "url": "https://github.com/yiisoft",
  4967. "type": "github"
  4968. },
  4969. {
  4970. "url": "https://opencollective.com/yiisoft",
  4971. "type": "open_collective"
  4972. },
  4973. {
  4974. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-faker",
  4975. "type": "tidelift"
  4976. }
  4977. ],
  4978. "time": "2020-11-10T12:27:35+00:00"
  4979. },
  4980. {
  4981. "name": "yiisoft/yii2-gii",
  4982. "version": "2.2.6",
  4983. "source": {
  4984. "type": "git",
  4985. "url": "https://github.com/yiisoft/yii2-gii.git",
  4986. "reference": "ac574e7e2c29fd865145c8688719f252d19aae23"
  4987. },
  4988. "dist": {
  4989. "type": "zip",
  4990. "url": "https://mirrors.huaweicloud.com/repository/php/yiisoft/yii2-gii/2.2.6/yiisoft-yii2-gii-2.2.6.zip",
  4991. "reference": "ac574e7e2c29fd865145c8688719f252d19aae23",
  4992. "shasum": ""
  4993. },
  4994. "require": {
  4995. "phpspec/php-diff": "^1.1.0",
  4996. "yiisoft/yii2": "~2.0.46"
  4997. },
  4998. "require-dev": {
  4999. "cweagans/composer-patches": "^1.7",
  5000. "phpunit/phpunit": "4.8.34",
  5001. "yiisoft/yii2-coding-standards": "~2.0"
  5002. },
  5003. "type": "yii2-extension",
  5004. "extra": {
  5005. "branch-alias": {
  5006. "dev-master": "2.0.x-dev"
  5007. },
  5008. "composer-exit-on-patch-failure": true,
  5009. "patches": {
  5010. "phpunit/phpunit-mock-objects": {
  5011. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  5012. },
  5013. "phpunit/php-file-iterator": {
  5014. "Fix PHP 8.1 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_path_file_iterator.patch"
  5015. },
  5016. "phpunit/phpunit": {
  5017. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  5018. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch",
  5019. "Fix PHP 8.1 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php81.patch"
  5020. }
  5021. }
  5022. },
  5023. "autoload": {
  5024. "psr-4": {
  5025. "yii\\gii\\": "src"
  5026. }
  5027. },
  5028. "license": [
  5029. "BSD-3-Clause"
  5030. ],
  5031. "authors": [
  5032. {
  5033. "name": "Qiang Xue",
  5034. "email": "qiang.xue@gmail.com"
  5035. }
  5036. ],
  5037. "description": "The Gii extension for the Yii framework",
  5038. "keywords": [
  5039. "code generator",
  5040. "gii",
  5041. "yii2"
  5042. ],
  5043. "funding": [
  5044. {
  5045. "url": "https://github.com/yiisoft",
  5046. "type": "github"
  5047. },
  5048. {
  5049. "url": "https://opencollective.com/yiisoft",
  5050. "type": "open_collective"
  5051. },
  5052. {
  5053. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-gii",
  5054. "type": "tidelift"
  5055. }
  5056. ],
  5057. "time": "2023-05-22T20:55:37+00:00"
  5058. }
  5059. ],
  5060. "aliases": [],
  5061. "minimum-stability": "stable",
  5062. "stability-flags": {
  5063. "raulfraile/distill": 0,
  5064. "hightman/xunsearch": 10,
  5065. "chenkby/yii2-region": 20,
  5066. "kartik-v/yii2-grid": 20,
  5067. "kartik-v/yii2-editable": 20
  5068. },
  5069. "prefer-stable": false,
  5070. "prefer-lowest": false,
  5071. "platform": {
  5072. "php": ">=5.4.0"
  5073. },
  5074. "platform-dev": [],
  5075. "plugin-api-version": "2.6.0"
  5076. }