composer.lock 187 KB

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