You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.lock 177KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031
  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": "c1b56bcfac04c081e20f434f8844f8c9",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  20. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  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.0|^5.0|^6.0",
  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": "2019-01-01T23:59:15+00:00"
  63. },
  64. {
  65. "name": "alibabacloud/tea",
  66. "version": "3.1.19",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/aliyun/tea-php.git",
  70. "reference": "f940148fa6eee0f014fbf138a68310df28e67765"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/f940148fa6eee0f014fbf138a68310df28e67765",
  75. "reference": "f940148fa6eee0f014fbf138a68310df28e67765",
  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. "ext-curl": "*",
  87. "ext-json": "*",
  88. "ext-libxml": "*",
  89. "ext-mbstring": "*",
  90. "ext-openssl": "*",
  91. "ext-simplexml": "*",
  92. "ext-xmlwriter": "*",
  93. "guzzlehttp/guzzle": "^6.3|^7.0",
  94. "php": ">=5.5"
  95. },
  96. "require-dev": {
  97. "phpunit/phpunit": "*",
  98. "symfony/dotenv": "^3.4",
  99. "symfony/var-dumper": "^3.4"
  100. },
  101. "suggest": {
  102. "ext-sockets": "To use client-side monitoring"
  103. },
  104. "type": "library",
  105. "autoload": {
  106. "psr-4": {
  107. "AlibabaCloud\\Tea\\": "src"
  108. }
  109. },
  110. "notification-url": "https://packagist.org/downloads/",
  111. "license": [
  112. "Apache-2.0"
  113. ],
  114. "authors": [
  115. {
  116. "name": "Alibaba Cloud SDK",
  117. "email": "sdk-team@alibabacloud.com",
  118. "homepage": "http://www.alibabacloud.com"
  119. }
  120. ],
  121. "description": "Client of Tea for PHP",
  122. "homepage": "https://www.alibabacloud.com/",
  123. "keywords": [
  124. "alibabacloud",
  125. "client",
  126. "cloud",
  127. "tea"
  128. ],
  129. "time": "2020-10-09T06:51:20+00:00"
  130. },
  131. {
  132. "name": "alibabacloud/tea-fileform",
  133. "version": "0.3.3",
  134. "source": {
  135. "type": "git",
  136. "url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git",
  137. "reference": "3878427b661392566411dfe13620e2359334c318"
  138. },
  139. "dist": {
  140. "type": "zip",
  141. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/3878427b661392566411dfe13620e2359334c318",
  142. "reference": "3878427b661392566411dfe13620e2359334c318",
  143. "shasum": "",
  144. "mirrors": [
  145. {
  146. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  147. "preferred": true
  148. }
  149. ]
  150. },
  151. "require": {
  152. "adbario/php-dot-notation": "^2.2",
  153. "alibabacloud/tea": "^3.0",
  154. "guzzlehttp/guzzle": "^6.5|^7.0",
  155. "php": ">5.5"
  156. },
  157. "require-dev": {
  158. "phpunit/phpunit": "^4.8.35|^5.4.3",
  159. "symfony/var-dumper": "^5.0"
  160. },
  161. "type": "library",
  162. "autoload": {
  163. "psr-4": {
  164. "AlibabaCloud\\Tea\\FileForm\\": "src"
  165. }
  166. },
  167. "notification-url": "https://packagist.org/downloads/",
  168. "license": [
  169. "Apache-2.0"
  170. ],
  171. "authors": [
  172. {
  173. "name": "Alibaba Cloud SDK",
  174. "email": "sdk-team@alibabacloud.com"
  175. }
  176. ],
  177. "description": "Alibaba Cloud Tea File Library for PHP",
  178. "time": "2020-09-19T15:49:15+00:00"
  179. },
  180. {
  181. "name": "alipaysdk/easysdk",
  182. "version": "2.0.0",
  183. "source": {
  184. "type": "git",
  185. "url": "https://github.com/alipay/alipay-easysdk.git",
  186. "reference": "677a035e11df6a66a085f1bd1efc58b72eb8b3d5"
  187. },
  188. "dist": {
  189. "type": "zip",
  190. "url": "https://api.github.com/repos/alipay/alipay-easysdk/zipball/677a035e11df6a66a085f1bd1efc58b72eb8b3d5",
  191. "reference": "677a035e11df6a66a085f1bd1efc58b72eb8b3d5",
  192. "shasum": "",
  193. "mirrors": [
  194. {
  195. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  196. "preferred": true
  197. }
  198. ]
  199. },
  200. "require": {
  201. "adbario/php-dot-notation": "^2.2",
  202. "alibabacloud/tea": "^3.1",
  203. "alibabacloud/tea-fileform": "^0.3.2",
  204. "danielstjules/stringy": "^3.1",
  205. "ext-ctype": "*",
  206. "ext-curl": "*",
  207. "ext-dom": "*",
  208. "ext-fileinfo": "*",
  209. "ext-json": "*",
  210. "ext-libxml": "*",
  211. "ext-mbstring": "*",
  212. "ext-openssl": "*",
  213. "ext-simplexml": "*",
  214. "ext-xmlwriter": "*",
  215. "guzzlehttp/guzzle": ">=6.3",
  216. "mtdowling/jmespath.php": "^2.4",
  217. "php": ">=7.0",
  218. "pimple/pimple": "^3.0",
  219. "psr/log": "^1.1",
  220. "songshenzong/support": "^2.0",
  221. "xin/container": "^2.0.1"
  222. },
  223. "require-dev": {
  224. "phpunit/phpunit": "^7.5"
  225. },
  226. "type": "library",
  227. "autoload": {
  228. "psr-4": {
  229. "Alipay\\EasySDK\\": "php/src/"
  230. }
  231. },
  232. "notification-url": "https://packagist.org/downloads/",
  233. "license": [
  234. "Apache-2.0"
  235. ],
  236. "authors": [
  237. {
  238. "name": "junying.wjy",
  239. "email": "junying.wjy@antfin.com"
  240. }
  241. ],
  242. "description": "支付宝官方 Alipay Easy SDK",
  243. "time": "2020-07-07T09:28:36+00:00"
  244. },
  245. {
  246. "name": "aliyuncs/oss-sdk-php",
  247. "version": "v2.3.0",
  248. "source": {
  249. "type": "git",
  250. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  251. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8"
  252. },
  253. "dist": {
  254. "type": "zip",
  255. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/e69f57916678458642ac9d2fd341ae78a56996c8",
  256. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8",
  257. "shasum": "",
  258. "mirrors": [
  259. {
  260. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  261. "preferred": true
  262. }
  263. ]
  264. },
  265. "require": {
  266. "php": ">=5.3"
  267. },
  268. "require-dev": {
  269. "phpunit/phpunit": "~4.0",
  270. "satooshi/php-coveralls": "~1.0"
  271. },
  272. "type": "library",
  273. "autoload": {
  274. "psr-4": {
  275. "OSS\\": "src/OSS"
  276. }
  277. },
  278. "notification-url": "https://packagist.org/downloads/",
  279. "license": [
  280. "MIT"
  281. ],
  282. "authors": [
  283. {
  284. "name": "Aliyuncs",
  285. "homepage": "http://www.aliyun.com"
  286. }
  287. ],
  288. "description": "Aliyun OSS SDK for PHP",
  289. "homepage": "http://www.aliyun.com/product/oss/",
  290. "time": "2018-01-08T06:59:35+00:00"
  291. },
  292. {
  293. "name": "bacon/bacon-qr-code",
  294. "version": "2.0.3",
  295. "source": {
  296. "type": "git",
  297. "url": "https://github.com/Bacon/BaconQrCode.git",
  298. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4"
  299. },
  300. "dist": {
  301. "type": "zip",
  302. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  303. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  304. "shasum": "",
  305. "mirrors": [
  306. {
  307. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  308. "preferred": true
  309. }
  310. ]
  311. },
  312. "require": {
  313. "dasprid/enum": "^1.0.3",
  314. "ext-iconv": "*",
  315. "php": "^7.1 || ^8.0"
  316. },
  317. "require-dev": {
  318. "phly/keep-a-changelog": "^1.4",
  319. "phpunit/phpunit": "^7 | ^8 | ^9",
  320. "squizlabs/php_codesniffer": "^3.4"
  321. },
  322. "suggest": {
  323. "ext-imagick": "to generate QR code images"
  324. },
  325. "type": "library",
  326. "autoload": {
  327. "psr-4": {
  328. "BaconQrCode\\": "src/"
  329. }
  330. },
  331. "notification-url": "https://packagist.org/downloads/",
  332. "license": [
  333. "BSD-2-Clause"
  334. ],
  335. "authors": [
  336. {
  337. "name": "Ben Scholzen 'DASPRiD'",
  338. "email": "mail@dasprids.de",
  339. "homepage": "https://dasprids.de/",
  340. "role": "Developer"
  341. }
  342. ],
  343. "description": "BaconQrCode is a QR code generator for PHP.",
  344. "homepage": "https://github.com/Bacon/BaconQrCode",
  345. "time": "2020-10-30T02:02:47+00:00"
  346. },
  347. {
  348. "name": "danielstjules/stringy",
  349. "version": "3.1.0",
  350. "source": {
  351. "type": "git",
  352. "url": "https://github.com/danielstjules/Stringy.git",
  353. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  354. },
  355. "dist": {
  356. "type": "zip",
  357. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  358. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  359. "shasum": "",
  360. "mirrors": [
  361. {
  362. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  363. "preferred": true
  364. }
  365. ]
  366. },
  367. "require": {
  368. "php": ">=5.4.0",
  369. "symfony/polyfill-mbstring": "~1.1"
  370. },
  371. "require-dev": {
  372. "phpunit/phpunit": "~4.0"
  373. },
  374. "type": "library",
  375. "autoload": {
  376. "psr-4": {
  377. "Stringy\\": "src/"
  378. },
  379. "files": [
  380. "src/Create.php"
  381. ]
  382. },
  383. "notification-url": "https://packagist.org/downloads/",
  384. "license": [
  385. "MIT"
  386. ],
  387. "authors": [
  388. {
  389. "name": "Daniel St. Jules",
  390. "email": "danielst.jules@gmail.com",
  391. "homepage": "http://www.danielstjules.com"
  392. }
  393. ],
  394. "description": "A string manipulation library with multibyte support",
  395. "homepage": "https://github.com/danielstjules/Stringy",
  396. "keywords": [
  397. "UTF",
  398. "helpers",
  399. "manipulation",
  400. "methods",
  401. "multibyte",
  402. "string",
  403. "utf-8",
  404. "utility",
  405. "utils"
  406. ],
  407. "time": "2017-06-12T01:10:27+00:00"
  408. },
  409. {
  410. "name": "dasprid/enum",
  411. "version": "1.0.3",
  412. "source": {
  413. "type": "git",
  414. "url": "https://github.com/DASPRiD/Enum.git",
  415. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  416. },
  417. "dist": {
  418. "type": "zip",
  419. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  420. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  421. "shasum": "",
  422. "mirrors": [
  423. {
  424. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  425. "preferred": true
  426. }
  427. ]
  428. },
  429. "require-dev": {
  430. "phpunit/phpunit": "^7 | ^8 | ^9",
  431. "squizlabs/php_codesniffer": "^3.4"
  432. },
  433. "type": "library",
  434. "autoload": {
  435. "psr-4": {
  436. "DASPRiD\\Enum\\": "src/"
  437. }
  438. },
  439. "notification-url": "https://packagist.org/downloads/",
  440. "license": [
  441. "BSD-2-Clause"
  442. ],
  443. "authors": [
  444. {
  445. "name": "Ben Scholzen 'DASPRiD'",
  446. "email": "mail@dasprids.de",
  447. "homepage": "https://dasprids.de/",
  448. "role": "Developer"
  449. }
  450. ],
  451. "description": "PHP 7.1 enum implementation",
  452. "keywords": [
  453. "enum",
  454. "map"
  455. ],
  456. "time": "2020-10-02T16:03:48+00:00"
  457. },
  458. {
  459. "name": "dh2y/think-qrcode",
  460. "version": "2.0",
  461. "source": {
  462. "type": "git",
  463. "url": "https://github.com/cinaofdai/think-qrcode.git",
  464. "reference": "977d032afa27b1852f5fc5441fad2497f6db7ff5"
  465. },
  466. "dist": {
  467. "type": "zip",
  468. "url": "https://api.github.com/repos/cinaofdai/think-qrcode/zipball/977d032afa27b1852f5fc5441fad2497f6db7ff5",
  469. "reference": "977d032afa27b1852f5fc5441fad2497f6db7ff5",
  470. "shasum": "",
  471. "mirrors": [
  472. {
  473. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  474. "preferred": true
  475. }
  476. ]
  477. },
  478. "require": {
  479. "php": ">=5.4.0"
  480. },
  481. "type": "library",
  482. "autoload": {
  483. "psr-4": {
  484. "dh2y\\qrcode\\": "src/"
  485. }
  486. },
  487. "notification-url": "https://packagist.org/downloads/",
  488. "license": [
  489. "MIT"
  490. ],
  491. "authors": [
  492. {
  493. "name": "dh2y",
  494. "email": "xiaodai54_long@163.com"
  495. }
  496. ],
  497. "description": "qrcode for thinkphp5",
  498. "homepage": "https://github.com/cinaofdai/think-qrcode",
  499. "time": "2019-07-10T02:57:29+00:00"
  500. },
  501. {
  502. "name": "doctrine/annotations",
  503. "version": "v1.2.7",
  504. "source": {
  505. "type": "git",
  506. "url": "https://github.com/doctrine/annotations.git",
  507. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  508. },
  509. "dist": {
  510. "type": "zip",
  511. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  512. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  513. "shasum": "",
  514. "mirrors": [
  515. {
  516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  517. "preferred": true
  518. }
  519. ]
  520. },
  521. "require": {
  522. "doctrine/lexer": "1.*",
  523. "php": ">=5.3.2"
  524. },
  525. "require-dev": {
  526. "doctrine/cache": "1.*",
  527. "phpunit/phpunit": "4.*"
  528. },
  529. "type": "library",
  530. "extra": {
  531. "branch-alias": {
  532. "dev-master": "1.3.x-dev"
  533. }
  534. },
  535. "autoload": {
  536. "psr-0": {
  537. "Doctrine\\Common\\Annotations\\": "lib/"
  538. }
  539. },
  540. "notification-url": "https://packagist.org/downloads/",
  541. "license": [
  542. "MIT"
  543. ],
  544. "authors": [
  545. {
  546. "name": "Roman Borschel",
  547. "email": "roman@code-factory.org"
  548. },
  549. {
  550. "name": "Benjamin Eberlei",
  551. "email": "kontakt@beberlei.de"
  552. },
  553. {
  554. "name": "Guilherme Blanco",
  555. "email": "guilhermeblanco@gmail.com"
  556. },
  557. {
  558. "name": "Jonathan Wage",
  559. "email": "jonwage@gmail.com"
  560. },
  561. {
  562. "name": "Johannes Schmitt",
  563. "email": "schmittjoh@gmail.com"
  564. }
  565. ],
  566. "description": "Docblock Annotations Parser",
  567. "homepage": "http://www.doctrine-project.org",
  568. "keywords": [
  569. "annotations",
  570. "docblock",
  571. "parser"
  572. ],
  573. "time": "2015-08-31T12:32:49+00:00"
  574. },
  575. {
  576. "name": "doctrine/cache",
  577. "version": "v1.4.4",
  578. "source": {
  579. "type": "git",
  580. "url": "https://github.com/doctrine/cache.git",
  581. "reference": "6433826dd02c9e5be8a127320dc13e7e6625d020"
  582. },
  583. "dist": {
  584. "type": "zip",
  585. "url": "https://api.github.com/repos/doctrine/cache/zipball/6433826dd02c9e5be8a127320dc13e7e6625d020",
  586. "reference": "6433826dd02c9e5be8a127320dc13e7e6625d020",
  587. "shasum": "",
  588. "mirrors": [
  589. {
  590. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  591. "preferred": true
  592. }
  593. ]
  594. },
  595. "require": {
  596. "php": ">=5.3.2"
  597. },
  598. "conflict": {
  599. "doctrine/common": ">2.2,<2.4"
  600. },
  601. "require-dev": {
  602. "phpunit/phpunit": ">=3.7",
  603. "predis/predis": "~1.0",
  604. "satooshi/php-coveralls": "~0.6"
  605. },
  606. "type": "library",
  607. "extra": {
  608. "branch-alias": {
  609. "dev-master": "1.5.x-dev"
  610. }
  611. },
  612. "autoload": {
  613. "psr-0": {
  614. "Doctrine\\Common\\Cache\\": "lib/"
  615. }
  616. },
  617. "notification-url": "https://packagist.org/downloads/",
  618. "license": [
  619. "MIT"
  620. ],
  621. "authors": [
  622. {
  623. "name": "Roman Borschel",
  624. "email": "roman@code-factory.org"
  625. },
  626. {
  627. "name": "Benjamin Eberlei",
  628. "email": "kontakt@beberlei.de"
  629. },
  630. {
  631. "name": "Guilherme Blanco",
  632. "email": "guilhermeblanco@gmail.com"
  633. },
  634. {
  635. "name": "Jonathan Wage",
  636. "email": "jonwage@gmail.com"
  637. },
  638. {
  639. "name": "Johannes Schmitt",
  640. "email": "schmittjoh@gmail.com"
  641. }
  642. ],
  643. "description": "Caching library offering an object-oriented API for many cache backends",
  644. "homepage": "http://www.doctrine-project.org",
  645. "keywords": [
  646. "cache",
  647. "caching"
  648. ],
  649. "time": "2015-11-02T18:33:51+00:00"
  650. },
  651. {
  652. "name": "doctrine/lexer",
  653. "version": "1.2.1",
  654. "source": {
  655. "type": "git",
  656. "url": "https://github.com/doctrine/lexer.git",
  657. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  658. },
  659. "dist": {
  660. "type": "zip",
  661. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  662. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  663. "shasum": "",
  664. "mirrors": [
  665. {
  666. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  667. "preferred": true
  668. }
  669. ]
  670. },
  671. "require": {
  672. "php": "^7.2 || ^8.0"
  673. },
  674. "require-dev": {
  675. "doctrine/coding-standard": "^6.0",
  676. "phpstan/phpstan": "^0.11.8",
  677. "phpunit/phpunit": "^8.2"
  678. },
  679. "type": "library",
  680. "extra": {
  681. "branch-alias": {
  682. "dev-master": "1.2.x-dev"
  683. }
  684. },
  685. "autoload": {
  686. "psr-4": {
  687. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  688. }
  689. },
  690. "notification-url": "https://packagist.org/downloads/",
  691. "license": [
  692. "MIT"
  693. ],
  694. "authors": [
  695. {
  696. "name": "Guilherme Blanco",
  697. "email": "guilhermeblanco@gmail.com"
  698. },
  699. {
  700. "name": "Roman Borschel",
  701. "email": "roman@code-factory.org"
  702. },
  703. {
  704. "name": "Johannes Schmitt",
  705. "email": "schmittjoh@gmail.com"
  706. }
  707. ],
  708. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  709. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  710. "keywords": [
  711. "annotations",
  712. "docblock",
  713. "lexer",
  714. "parser",
  715. "php"
  716. ],
  717. "time": "2020-05-25T17:44:05+00:00"
  718. },
  719. {
  720. "name": "endroid/qr-code",
  721. "version": "4.0.0",
  722. "source": {
  723. "type": "git",
  724. "url": "https://github.com/endroid/qr-code.git",
  725. "reference": "6fa27c4bcc87eddd4f8eb4f1ba796552a7d85f1e"
  726. },
  727. "dist": {
  728. "type": "zip",
  729. "url": "https://api.github.com/repos/endroid/qr-code/zipball/6fa27c4bcc87eddd4f8eb4f1ba796552a7d85f1e",
  730. "reference": "6fa27c4bcc87eddd4f8eb4f1ba796552a7d85f1e",
  731. "shasum": "",
  732. "mirrors": [
  733. {
  734. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  735. "preferred": true
  736. }
  737. ]
  738. },
  739. "require": {
  740. "bacon/bacon-qr-code": "^2.0",
  741. "php": "^7.3||^8.0"
  742. },
  743. "require-dev": {
  744. "endroid/quality": "dev-master",
  745. "ext-gd": "*",
  746. "khanamiryan/qrcode-detector-decoder": "^1.0.4",
  747. "setasign/fpdf": "^1.8.2"
  748. },
  749. "suggest": {
  750. "ext-gd": "Enables you to write PNG images",
  751. "khanamiryan/qrcode-detector-decoder": "Enables you to use the image validator",
  752. "roave/security-advisories": "Makes sure package versions with known security issues are not installed",
  753. "setasign/fpdf": "Enables you to use the PDF writer.",
  754. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  755. },
  756. "type": "library",
  757. "extra": {
  758. "branch-alias": {
  759. "dev-master": "4.x-dev"
  760. }
  761. },
  762. "autoload": {
  763. "psr-4": {
  764. "Endroid\\QrCode\\": "src/"
  765. }
  766. },
  767. "notification-url": "https://packagist.org/downloads/",
  768. "license": [
  769. "MIT"
  770. ],
  771. "authors": [
  772. {
  773. "name": "Jeroen van den Enden",
  774. "email": "info@endroid.nl"
  775. }
  776. ],
  777. "description": "Endroid QR Code",
  778. "homepage": "https://github.com/endroid/qr-code",
  779. "keywords": [
  780. "code",
  781. "endroid",
  782. "php",
  783. "qr",
  784. "qrcode"
  785. ],
  786. "funding": [
  787. {
  788. "url": "https://github.com/endroid",
  789. "type": "github"
  790. }
  791. ],
  792. "time": "2021-02-28T00:21:41+00:00"
  793. },
  794. {
  795. "name": "firebase/php-jwt",
  796. "version": "v5.0.0",
  797. "source": {
  798. "type": "git",
  799. "url": "https://github.com/firebase/php-jwt.git",
  800. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e"
  801. },
  802. "dist": {
  803. "type": "zip",
  804. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  805. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  806. "shasum": "",
  807. "mirrors": [
  808. {
  809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  810. "preferred": true
  811. }
  812. ]
  813. },
  814. "require": {
  815. "php": ">=5.3.0"
  816. },
  817. "require-dev": {
  818. "phpunit/phpunit": " 4.8.35"
  819. },
  820. "type": "library",
  821. "autoload": {
  822. "psr-4": {
  823. "Firebase\\JWT\\": "src"
  824. }
  825. },
  826. "notification-url": "https://packagist.org/downloads/",
  827. "license": [
  828. "BSD-3-Clause"
  829. ],
  830. "authors": [
  831. {
  832. "name": "Neuman Vong",
  833. "email": "neuman+pear@twilio.com",
  834. "role": "Developer"
  835. },
  836. {
  837. "name": "Anant Narayanan",
  838. "email": "anant@php.net",
  839. "role": "Developer"
  840. }
  841. ],
  842. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  843. "homepage": "https://github.com/firebase/php-jwt",
  844. "time": "2017-06-27T22:17:23+00:00"
  845. },
  846. {
  847. "name": "godruoyi/php-snowflake",
  848. "version": "1.0.9",
  849. "source": {
  850. "type": "git",
  851. "url": "https://github.com/godruoyi/php-snowflake.git",
  852. "reference": "4c73869e20ee4534bf867efa46dc294ba6578b73"
  853. },
  854. "dist": {
  855. "type": "zip",
  856. "url": "https://api.github.com/repos/godruoyi/php-snowflake/zipball/4c73869e20ee4534bf867efa46dc294ba6578b73",
  857. "reference": "4c73869e20ee4534bf867efa46dc294ba6578b73",
  858. "shasum": "",
  859. "mirrors": [
  860. {
  861. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  862. "preferred": true
  863. }
  864. ]
  865. },
  866. "require-dev": {
  867. "phpunit/phpunit": "~7"
  868. },
  869. "type": "library",
  870. "autoload": {
  871. "psr-4": {
  872. "Godruoyi\\Snowflake\\": "src"
  873. }
  874. },
  875. "notification-url": "https://packagist.org/downloads/",
  876. "license": [
  877. "MIT"
  878. ],
  879. "authors": [
  880. {
  881. "name": "Godruoyi",
  882. "email": "g@godruoyi.com"
  883. }
  884. ],
  885. "description": "An ID Generator for PHP based on Snowflake Algorithm (Twitter announced).",
  886. "homepage": "https://github.com/godruoyi/php-snowflake",
  887. "keywords": [
  888. "Unique ID",
  889. "laravel snowflake",
  890. "order id",
  891. "php snowflake",
  892. "php unique id",
  893. "snowflake algorithm",
  894. "unique order id"
  895. ],
  896. "time": "2020-05-25T06:13:54+00:00"
  897. },
  898. {
  899. "name": "guzzle/guzzle",
  900. "version": "v3.9.3",
  901. "source": {
  902. "type": "git",
  903. "url": "https://github.com/guzzle/guzzle3.git",
  904. "reference": "0645b70d953bc1c067bbc8d5bc53194706b628d9"
  905. },
  906. "dist": {
  907. "type": "zip",
  908. "url": "https://api.github.com/repos/guzzle/guzzle3/zipball/0645b70d953bc1c067bbc8d5bc53194706b628d9",
  909. "reference": "0645b70d953bc1c067bbc8d5bc53194706b628d9",
  910. "shasum": "",
  911. "mirrors": [
  912. {
  913. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  914. "preferred": true
  915. }
  916. ]
  917. },
  918. "require": {
  919. "ext-curl": "*",
  920. "php": ">=5.3.3",
  921. "symfony/event-dispatcher": "~2.1"
  922. },
  923. "replace": {
  924. "guzzle/batch": "self.version",
  925. "guzzle/cache": "self.version",
  926. "guzzle/common": "self.version",
  927. "guzzle/http": "self.version",
  928. "guzzle/inflection": "self.version",
  929. "guzzle/iterator": "self.version",
  930. "guzzle/log": "self.version",
  931. "guzzle/parser": "self.version",
  932. "guzzle/plugin": "self.version",
  933. "guzzle/plugin-async": "self.version",
  934. "guzzle/plugin-backoff": "self.version",
  935. "guzzle/plugin-cache": "self.version",
  936. "guzzle/plugin-cookie": "self.version",
  937. "guzzle/plugin-curlauth": "self.version",
  938. "guzzle/plugin-error-response": "self.version",
  939. "guzzle/plugin-history": "self.version",
  940. "guzzle/plugin-log": "self.version",
  941. "guzzle/plugin-md5": "self.version",
  942. "guzzle/plugin-mock": "self.version",
  943. "guzzle/plugin-oauth": "self.version",
  944. "guzzle/service": "self.version",
  945. "guzzle/stream": "self.version"
  946. },
  947. "require-dev": {
  948. "doctrine/cache": "~1.3",
  949. "monolog/monolog": "~1.0",
  950. "phpunit/phpunit": "3.7.*",
  951. "psr/log": "~1.0",
  952. "symfony/class-loader": "~2.1",
  953. "zendframework/zend-cache": "2.*,<2.3",
  954. "zendframework/zend-log": "2.*,<2.3"
  955. },
  956. "suggest": {
  957. "guzzlehttp/guzzle": "Guzzle 5 has moved to a new package name. The package you have installed, Guzzle 3, is deprecated."
  958. },
  959. "type": "library",
  960. "extra": {
  961. "branch-alias": {
  962. "dev-master": "3.9-dev"
  963. }
  964. },
  965. "autoload": {
  966. "psr-0": {
  967. "Guzzle": "src/",
  968. "Guzzle\\Tests": "tests/"
  969. }
  970. },
  971. "notification-url": "https://packagist.org/downloads/",
  972. "license": [
  973. "MIT"
  974. ],
  975. "authors": [
  976. {
  977. "name": "Michael Dowling",
  978. "email": "mtdowling@gmail.com",
  979. "homepage": "https://github.com/mtdowling"
  980. },
  981. {
  982. "name": "Guzzle Community",
  983. "homepage": "https://github.com/guzzle/guzzle/contributors"
  984. }
  985. ],
  986. "description": "PHP HTTP client. This library is deprecated in favor of https://packagist.org/packages/guzzlehttp/guzzle",
  987. "homepage": "http://guzzlephp.org/",
  988. "keywords": [
  989. "client",
  990. "curl",
  991. "framework",
  992. "http",
  993. "http client",
  994. "rest",
  995. "web service"
  996. ],
  997. "abandoned": "guzzlehttp/guzzle",
  998. "time": "2015-03-18T18:23:50+00:00"
  999. },
  1000. {
  1001. "name": "guzzlehttp/guzzle",
  1002. "version": "6.5.5",
  1003. "source": {
  1004. "type": "git",
  1005. "url": "https://github.com/guzzle/guzzle.git",
  1006. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1007. },
  1008. "dist": {
  1009. "type": "zip",
  1010. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1011. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1012. "shasum": "",
  1013. "mirrors": [
  1014. {
  1015. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1016. "preferred": true
  1017. }
  1018. ]
  1019. },
  1020. "require": {
  1021. "ext-json": "*",
  1022. "guzzlehttp/promises": "^1.0",
  1023. "guzzlehttp/psr7": "^1.6.1",
  1024. "php": ">=5.5",
  1025. "symfony/polyfill-intl-idn": "^1.17.0"
  1026. },
  1027. "require-dev": {
  1028. "ext-curl": "*",
  1029. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1030. "psr/log": "^1.1"
  1031. },
  1032. "suggest": {
  1033. "psr/log": "Required for using the Log middleware"
  1034. },
  1035. "type": "library",
  1036. "extra": {
  1037. "branch-alias": {
  1038. "dev-master": "6.5-dev"
  1039. }
  1040. },
  1041. "autoload": {
  1042. "psr-4": {
  1043. "GuzzleHttp\\": "src/"
  1044. },
  1045. "files": [
  1046. "src/functions_include.php"
  1047. ]
  1048. },
  1049. "notification-url": "https://packagist.org/downloads/",
  1050. "license": [
  1051. "MIT"
  1052. ],
  1053. "authors": [
  1054. {
  1055. "name": "Michael Dowling",
  1056. "email": "mtdowling@gmail.com",
  1057. "homepage": "https://github.com/mtdowling"
  1058. }
  1059. ],
  1060. "description": "Guzzle is a PHP HTTP client library",
  1061. "homepage": "http://guzzlephp.org/",
  1062. "keywords": [
  1063. "client",
  1064. "curl",
  1065. "framework",
  1066. "http",
  1067. "http client",
  1068. "rest",
  1069. "web service"
  1070. ],
  1071. "time": "2020-06-16T21:01:06+00:00"
  1072. },
  1073. {
  1074. "name": "guzzlehttp/promises",
  1075. "version": "v1.3.1",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/guzzle/promises.git",
  1079. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1084. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1085. "shasum": "",
  1086. "mirrors": [
  1087. {
  1088. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1089. "preferred": true
  1090. }
  1091. ]
  1092. },
  1093. "require": {
  1094. "php": ">=5.5.0"
  1095. },
  1096. "require-dev": {
  1097. "phpunit/phpunit": "^4.0"
  1098. },
  1099. "type": "library",
  1100. "extra": {
  1101. "branch-alias": {
  1102. "dev-master": "1.4-dev"
  1103. }
  1104. },
  1105. "autoload": {
  1106. "psr-4": {
  1107. "GuzzleHttp\\Promise\\": "src/"
  1108. },
  1109. "files": [
  1110. "src/functions_include.php"
  1111. ]
  1112. },
  1113. "notification-url": "https://packagist.org/downloads/",
  1114. "license": [
  1115. "MIT"
  1116. ],
  1117. "authors": [
  1118. {
  1119. "name": "Michael Dowling",
  1120. "email": "mtdowling@gmail.com",
  1121. "homepage": "https://github.com/mtdowling"
  1122. }
  1123. ],
  1124. "description": "Guzzle promises library",
  1125. "keywords": [
  1126. "promise"
  1127. ],
  1128. "time": "2016-12-20T10:07:11+00:00"
  1129. },
  1130. {
  1131. "name": "guzzlehttp/psr7",
  1132. "version": "1.7.0",
  1133. "source": {
  1134. "type": "git",
  1135. "url": "https://github.com/guzzle/psr7.git",
  1136. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  1137. },
  1138. "dist": {
  1139. "type": "zip",
  1140. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1141. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1142. "shasum": "",
  1143. "mirrors": [
  1144. {
  1145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1146. "preferred": true
  1147. }
  1148. ]
  1149. },
  1150. "require": {
  1151. "php": ">=5.4.0",
  1152. "psr/http-message": "~1.0",
  1153. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1154. },
  1155. "provide": {
  1156. "psr/http-message-implementation": "1.0"
  1157. },
  1158. "require-dev": {
  1159. "ext-zlib": "*",
  1160. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1161. },
  1162. "suggest": {
  1163. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1164. },
  1165. "type": "library",
  1166. "extra": {
  1167. "branch-alias": {
  1168. "dev-master": "1.7-dev"
  1169. }
  1170. },
  1171. "autoload": {
  1172. "psr-4": {
  1173. "GuzzleHttp\\Psr7\\": "src/"
  1174. },
  1175. "files": [
  1176. "src/functions_include.php"
  1177. ]
  1178. },
  1179. "notification-url": "https://packagist.org/downloads/",
  1180. "license": [
  1181. "MIT"
  1182. ],
  1183. "authors": [
  1184. {
  1185. "name": "Michael Dowling",
  1186. "email": "mtdowling@gmail.com",
  1187. "homepage": "https://github.com/mtdowling"
  1188. },
  1189. {
  1190. "name": "Tobias Schultze",
  1191. "homepage": "https://github.com/Tobion"
  1192. }
  1193. ],
  1194. "description": "PSR-7 message implementation that also provides common utility methods",
  1195. "keywords": [
  1196. "http",
  1197. "message",
  1198. "psr-7",
  1199. "request",
  1200. "response",
  1201. "stream",
  1202. "uri",
  1203. "url"
  1204. ],
  1205. "time": "2020-09-30T07:37:11+00:00"
  1206. },
  1207. {
  1208. "name": "league/flysystem",
  1209. "version": "1.1.3",
  1210. "source": {
  1211. "type": "git",
  1212. "url": "https://github.com/thephpleague/flysystem.git",
  1213. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  1214. },
  1215. "dist": {
  1216. "type": "zip",
  1217. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  1218. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  1219. "shasum": "",
  1220. "mirrors": [
  1221. {
  1222. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1223. "preferred": true
  1224. }
  1225. ]
  1226. },
  1227. "require": {
  1228. "ext-fileinfo": "*",
  1229. "league/mime-type-detection": "^1.3",
  1230. "php": "^7.2.5 || ^8.0"
  1231. },
  1232. "conflict": {
  1233. "league/flysystem-sftp": "<1.0.6"
  1234. },
  1235. "require-dev": {
  1236. "phpspec/prophecy": "^1.11.1",
  1237. "phpunit/phpunit": "^8.5.8"
  1238. },
  1239. "suggest": {
  1240. "ext-fileinfo": "Required for MimeType",
  1241. "ext-ftp": "Allows you to use FTP server storage",
  1242. "ext-openssl": "Allows you to use FTPS server storage",
  1243. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1244. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1245. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1246. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1247. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1248. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1249. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1250. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1251. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1252. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1253. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1254. },
  1255. "type": "library",
  1256. "extra": {
  1257. "branch-alias": {
  1258. "dev-master": "1.1-dev"
  1259. }
  1260. },
  1261. "autoload": {
  1262. "psr-4": {
  1263. "League\\Flysystem\\": "src/"
  1264. }
  1265. },
  1266. "notification-url": "https://packagist.org/downloads/",
  1267. "license": [
  1268. "MIT"
  1269. ],
  1270. "authors": [
  1271. {
  1272. "name": "Frank de Jonge",
  1273. "email": "info@frenky.net"
  1274. }
  1275. ],
  1276. "description": "Filesystem abstraction: Many filesystems, one API.",
  1277. "keywords": [
  1278. "Cloud Files",
  1279. "WebDAV",
  1280. "abstraction",
  1281. "aws",
  1282. "cloud",
  1283. "copy.com",
  1284. "dropbox",
  1285. "file systems",
  1286. "files",
  1287. "filesystem",
  1288. "filesystems",
  1289. "ftp",
  1290. "rackspace",
  1291. "remote",
  1292. "s3",
  1293. "sftp",
  1294. "storage"
  1295. ],
  1296. "time": "2020-08-23T07:39:11+00:00"
  1297. },
  1298. {
  1299. "name": "league/flysystem-cached-adapter",
  1300. "version": "1.1.0",
  1301. "source": {
  1302. "type": "git",
  1303. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  1304. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  1305. },
  1306. "dist": {
  1307. "type": "zip",
  1308. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  1309. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  1310. "shasum": "",
  1311. "mirrors": [
  1312. {
  1313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1314. "preferred": true
  1315. }
  1316. ]
  1317. },
  1318. "require": {
  1319. "league/flysystem": "~1.0",
  1320. "psr/cache": "^1.0.0"
  1321. },
  1322. "require-dev": {
  1323. "mockery/mockery": "~0.9",
  1324. "phpspec/phpspec": "^3.4",
  1325. "phpunit/phpunit": "^5.7",
  1326. "predis/predis": "~1.0",
  1327. "tedivm/stash": "~0.12"
  1328. },
  1329. "suggest": {
  1330. "ext-phpredis": "Pure C implemented extension for PHP"
  1331. },
  1332. "type": "library",
  1333. "autoload": {
  1334. "psr-4": {
  1335. "League\\Flysystem\\Cached\\": "src/"
  1336. }
  1337. },
  1338. "notification-url": "https://packagist.org/downloads/",
  1339. "license": [
  1340. "MIT"
  1341. ],
  1342. "authors": [
  1343. {
  1344. "name": "frankdejonge",
  1345. "email": "info@frenky.net"
  1346. }
  1347. ],
  1348. "description": "An adapter decorator to enable meta-data caching.",
  1349. "time": "2020-07-25T15:56:04+00:00"
  1350. },
  1351. {
  1352. "name": "league/mime-type-detection",
  1353. "version": "1.7.0",
  1354. "source": {
  1355. "type": "git",
  1356. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1357. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  1358. },
  1359. "dist": {
  1360. "type": "zip",
  1361. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  1362. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  1363. "shasum": "",
  1364. "mirrors": [
  1365. {
  1366. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1367. "preferred": true
  1368. }
  1369. ]
  1370. },
  1371. "require": {
  1372. "ext-fileinfo": "*",
  1373. "php": "^7.2 || ^8.0"
  1374. },
  1375. "require-dev": {
  1376. "friendsofphp/php-cs-fixer": "^2.18",
  1377. "phpstan/phpstan": "^0.12.68",
  1378. "phpunit/phpunit": "^8.5.8 || ^9.3"
  1379. },
  1380. "type": "library",
  1381. "autoload": {
  1382. "psr-4": {
  1383. "League\\MimeTypeDetection\\": "src"
  1384. }
  1385. },
  1386. "notification-url": "https://packagist.org/downloads/",
  1387. "license": [
  1388. "MIT"
  1389. ],
  1390. "authors": [
  1391. {
  1392. "name": "Frank de Jonge",
  1393. "email": "info@frankdejonge.nl"
  1394. }
  1395. ],
  1396. "description": "Mime-type detection for Flysystem",
  1397. "time": "2021-01-18T20:58:21+00:00"
  1398. },
  1399. {
  1400. "name": "joypack/tencent-map",
  1401. "version": "1.0.0",
  1402. "source": {
  1403. "type": "git",
  1404. "url": "https://github.com/joypack/tencent-map.git",
  1405. "reference": "6421402667943496618d67db4dc277094d404638"
  1406. },
  1407. "dist": {
  1408. "type": "zip",
  1409. "url": "https://api.github.com/repos/joypack/tencent-map/zipball/6421402667943496618d67db4dc277094d404638",
  1410. "reference": "6421402667943496618d67db4dc277094d404638",
  1411. "shasum": "",
  1412. "mirrors": [
  1413. {
  1414. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1415. "preferred": true
  1416. }
  1417. ]
  1418. },
  1419. "require": {
  1420. "php": ">=5.6"
  1421. },
  1422. "type": "library",
  1423. "autoload": {
  1424. "psr-4": {
  1425. "Joypack\\Tencent\\Map\\": "src"
  1426. }
  1427. },
  1428. "notification-url": "https://packagist.org/downloads/",
  1429. "license": [
  1430. "Apache-2.0"
  1431. ],
  1432. "authors": [
  1433. {
  1434. "name": "堪笑",
  1435. "email": "jixiang.f@gmail.com",
  1436. "homepage": "http://cli.life",
  1437. "role": "Developer"
  1438. }
  1439. ],
  1440. "description": "腾讯位置服务(WebService)",
  1441. "homepage": "https://github.com/joypack/tencent-map",
  1442. "keywords": [
  1443. "LBS",
  1444. "腾讯位置服务"
  1445. ],
  1446. "time": "2020-11-26T13:13:58+00:00"
  1447. },
  1448. {
  1449. "name": "maennchen/zipstream-php",
  1450. "version": "2.1.0",
  1451. "source": {
  1452. "type": "git",
  1453. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  1454. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  1455. },
  1456. "dist": {
  1457. "type": "zip",
  1458. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1459. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1460. "shasum": "",
  1461. "mirrors": [
  1462. {
  1463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1464. "preferred": true
  1465. }
  1466. ]
  1467. },
  1468. "require": {
  1469. "myclabs/php-enum": "^1.5",
  1470. "php": ">= 7.1",
  1471. "psr/http-message": "^1.0",
  1472. "symfony/polyfill-mbstring": "^1.0"
  1473. },
  1474. "require-dev": {
  1475. "ext-zip": "*",
  1476. "guzzlehttp/guzzle": ">= 6.3",
  1477. "mikey179/vfsstream": "^1.6",
  1478. "phpunit/phpunit": ">= 7.5"
  1479. },
  1480. "type": "library",
  1481. "autoload": {
  1482. "psr-4": {
  1483. "ZipStream\\": "src/"
  1484. }
  1485. },
  1486. "notification-url": "https://packagist.org/downloads/",
  1487. "license": [
  1488. "MIT"
  1489. ],
  1490. "authors": [
  1491. {
  1492. "name": "Paul Duncan",
  1493. "email": "pabs@pablotron.org"
  1494. },
  1495. {
  1496. "name": "Jonatan Männchen",
  1497. "email": "jonatan@maennchen.ch"
  1498. },
  1499. {
  1500. "name": "Jesse Donat",
  1501. "email": "donatj@gmail.com"
  1502. },
  1503. {
  1504. "name": "András Kolesár",
  1505. "email": "kolesar@kolesar.hu"
  1506. }
  1507. ],
  1508. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1509. "keywords": [
  1510. "stream",
  1511. "zip"
  1512. ],
  1513. "time": "2020-05-30T13:11:16+00:00"
  1514. },
  1515. {
  1516. "name": "markbaker/complex",
  1517. "version": "1.4.8",
  1518. "source": {
  1519. "type": "git",
  1520. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1521. "reference": "8eaa40cceec7bf0518187530b2e63871be661b72"
  1522. },
  1523. "dist": {
  1524. "type": "zip",
  1525. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/8eaa40cceec7bf0518187530b2e63871be661b72",
  1526. "reference": "8eaa40cceec7bf0518187530b2e63871be661b72",
  1527. "shasum": "",
  1528. "mirrors": [
  1529. {
  1530. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1531. "preferred": true
  1532. }
  1533. ]
  1534. },
  1535. "require": {
  1536. "php": "^5.6.0|^7.0.0"
  1537. },
  1538. "require-dev": {
  1539. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  1540. "phpcompatibility/php-compatibility": "^9.0",
  1541. "phpdocumentor/phpdocumentor": "2.*",
  1542. "phploc/phploc": "2.*",
  1543. "phpmd/phpmd": "2.*",
  1544. "phpunit/phpunit": "^4.8.35|^5.4.0",
  1545. "sebastian/phpcpd": "2.*",
  1546. "squizlabs/php_codesniffer": "^3.4.0"
  1547. },
  1548. "type": "library",
  1549. "autoload": {
  1550. "psr-4": {
  1551. "Complex\\": "classes/src/"
  1552. },
  1553. "files": [
  1554. "classes/src/functions/abs.php",
  1555. "classes/src/functions/acos.php",
  1556. "classes/src/functions/acosh.php",
  1557. "classes/src/functions/acot.php",
  1558. "classes/src/functions/acoth.php",
  1559. "classes/src/functions/acsc.php",
  1560. "classes/src/functions/acsch.php",
  1561. "classes/src/functions/argument.php",
  1562. "classes/src/functions/asec.php",
  1563. "classes/src/functions/asech.php",
  1564. "classes/src/functions/asin.php",
  1565. "classes/src/functions/asinh.php",
  1566. "classes/src/functions/atan.php",
  1567. "classes/src/functions/atanh.php",
  1568. "classes/src/functions/conjugate.php",
  1569. "classes/src/functions/cos.php",
  1570. "classes/src/functions/cosh.php",
  1571. "classes/src/functions/cot.php",
  1572. "classes/src/functions/coth.php",
  1573. "classes/src/functions/csc.php",
  1574. "classes/src/functions/csch.php",
  1575. "classes/src/functions/exp.php",
  1576. "classes/src/functions/inverse.php",
  1577. "classes/src/functions/ln.php",
  1578. "classes/src/functions/log2.php",
  1579. "classes/src/functions/log10.php",
  1580. "classes/src/functions/negative.php",
  1581. "classes/src/functions/pow.php",
  1582. "classes/src/functions/rho.php",
  1583. "classes/src/functions/sec.php",
  1584. "classes/src/functions/sech.php",
  1585. "classes/src/functions/sin.php",
  1586. "classes/src/functions/sinh.php",
  1587. "classes/src/functions/sqrt.php",
  1588. "classes/src/functions/tan.php",
  1589. "classes/src/functions/tanh.php",
  1590. "classes/src/functions/theta.php",
  1591. "classes/src/operations/add.php",
  1592. "classes/src/operations/subtract.php",
  1593. "classes/src/operations/multiply.php",
  1594. "classes/src/operations/divideby.php",
  1595. "classes/src/operations/divideinto.php"
  1596. ]
  1597. },
  1598. "notification-url": "https://packagist.org/downloads/",
  1599. "license": [
  1600. "MIT"
  1601. ],
  1602. "authors": [
  1603. {
  1604. "name": "Mark Baker",
  1605. "email": "mark@lange.demon.co.uk"
  1606. }
  1607. ],
  1608. "description": "PHP Class for working with complex numbers",
  1609. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1610. "keywords": [
  1611. "complex",
  1612. "mathematics"
  1613. ],
  1614. "time": "2020-03-11T20:15:49+00:00"
  1615. },
  1616. {
  1617. "name": "markbaker/matrix",
  1618. "version": "1.2.0",
  1619. "source": {
  1620. "type": "git",
  1621. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1622. "reference": "5348c5a67e3b75cd209d70103f916a93b1f1ed21"
  1623. },
  1624. "dist": {
  1625. "type": "zip",
  1626. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/5348c5a67e3b75cd209d70103f916a93b1f1ed21",
  1627. "reference": "5348c5a67e3b75cd209d70103f916a93b1f1ed21",
  1628. "shasum": "",
  1629. "mirrors": [
  1630. {
  1631. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1632. "preferred": true
  1633. }
  1634. ]
  1635. },
  1636. "require": {
  1637. "php": "^5.6.0|^7.0.0"
  1638. },
  1639. "require-dev": {
  1640. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1641. "phpcompatibility/php-compatibility": "dev-master",
  1642. "phploc/phploc": "^4",
  1643. "phpmd/phpmd": "dev-master",
  1644. "phpunit/phpunit": "^5.7",
  1645. "sebastian/phpcpd": "^3.0",
  1646. "squizlabs/php_codesniffer": "^3.0@dev"
  1647. },
  1648. "type": "library",
  1649. "autoload": {
  1650. "psr-4": {
  1651. "Matrix\\": "classes/src/"
  1652. },
  1653. "files": [
  1654. "classes/src/functions/adjoint.php",
  1655. "classes/src/functions/antidiagonal.php",
  1656. "classes/src/functions/cofactors.php",
  1657. "classes/src/functions/determinant.php",
  1658. "classes/src/functions/diagonal.php",
  1659. "classes/src/functions/identity.php",
  1660. "classes/src/functions/inverse.php",
  1661. "classes/src/functions/minors.php",
  1662. "classes/src/functions/trace.php",
  1663. "classes/src/functions/transpose.php",
  1664. "classes/src/operations/add.php",
  1665. "classes/src/operations/directsum.php",
  1666. "classes/src/operations/subtract.php",
  1667. "classes/src/operations/multiply.php",
  1668. "classes/src/operations/divideby.php",
  1669. "classes/src/operations/divideinto.php"
  1670. ]
  1671. },
  1672. "notification-url": "https://packagist.org/downloads/",
  1673. "license": [
  1674. "MIT"
  1675. ],
  1676. "authors": [
  1677. {
  1678. "name": "Mark Baker",
  1679. "email": "mark@lange.demon.co.uk"
  1680. }
  1681. ],
  1682. "description": "PHP Class for working with matrices",
  1683. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1684. "keywords": [
  1685. "mathematics",
  1686. "matrix",
  1687. "vector"
  1688. ],
  1689. "time": "2019-10-06T11:29:25+00:00"
  1690. },
  1691. {
  1692. "name": "monolog/monolog",
  1693. "version": "1.24.0",
  1694. "source": {
  1695. "type": "git",
  1696. "url": "https://github.com/Seldaek/monolog.git",
  1697. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  1698. },
  1699. "dist": {
  1700. "type": "zip",
  1701. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1702. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1703. "shasum": "",
  1704. "mirrors": [
  1705. {
  1706. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1707. "preferred": true
  1708. }
  1709. ]
  1710. },
  1711. "require": {
  1712. "php": ">=5.3.0",
  1713. "psr/log": "~1.0"
  1714. },
  1715. "provide": {
  1716. "psr/log-implementation": "1.0.0"
  1717. },
  1718. "require-dev": {
  1719. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1720. "doctrine/couchdb": "~1.0@dev",
  1721. "graylog2/gelf-php": "~1.0",
  1722. "jakub-onderka/php-parallel-lint": "0.9",
  1723. "php-amqplib/php-amqplib": "~2.4",
  1724. "php-console/php-console": "^3.1.3",
  1725. "phpunit/phpunit": "~4.5",
  1726. "phpunit/phpunit-mock-objects": "2.3.0",
  1727. "ruflin/elastica": ">=0.90 <3.0",
  1728. "sentry/sentry": "^0.13",
  1729. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1730. },
  1731. "suggest": {
  1732. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1733. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1734. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1735. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1736. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1737. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1738. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1739. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1740. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1741. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1742. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1743. },
  1744. "type": "library",
  1745. "extra": {
  1746. "branch-alias": {
  1747. "dev-master": "2.0.x-dev"
  1748. }
  1749. },
  1750. "autoload": {
  1751. "psr-4": {
  1752. "Monolog\\": "src/Monolog"
  1753. }
  1754. },
  1755. "notification-url": "https://packagist.org/downloads/",
  1756. "license": [
  1757. "MIT"
  1758. ],
  1759. "authors": [
  1760. {
  1761. "name": "Jordi Boggiano",
  1762. "email": "j.boggiano@seld.be",
  1763. "homepage": "http://seld.be"
  1764. }
  1765. ],
  1766. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1767. "homepage": "http://github.com/Seldaek/monolog",
  1768. "keywords": [
  1769. "log",
  1770. "logging",
  1771. "psr-3"
  1772. ],
  1773. "time": "2018-11-05T09:00:11+00:00"
  1774. },
  1775. {
  1776. "name": "mtdowling/jmespath.php",
  1777. "version": "2.5.0",
  1778. "source": {
  1779. "type": "git",
  1780. "url": "https://github.com/jmespath/jmespath.php.git",
  1781. "reference": "52168cb9472de06979613d365c7f1ab8798be895"
  1782. },
  1783. "dist": {
  1784. "type": "zip",
  1785. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/52168cb9472de06979613d365c7f1ab8798be895",
  1786. "reference": "52168cb9472de06979613d365c7f1ab8798be895",
  1787. "shasum": "",
  1788. "mirrors": [
  1789. {
  1790. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1791. "preferred": true
  1792. }
  1793. ]
  1794. },
  1795. "require": {
  1796. "php": ">=5.4.0",
  1797. "symfony/polyfill-mbstring": "^1.4"
  1798. },
  1799. "require-dev": {
  1800. "composer/xdebug-handler": "^1.2",
  1801. "phpunit/phpunit": "^4.8.36|^7.5.15"
  1802. },
  1803. "bin": [
  1804. "bin/jp.php"
  1805. ],
  1806. "type": "library",
  1807. "extra": {
  1808. "branch-alias": {
  1809. "dev-master": "2.5-dev"
  1810. }
  1811. },
  1812. "autoload": {
  1813. "psr-4": {
  1814. "JmesPath\\": "src/"
  1815. },
  1816. "files": [
  1817. "src/JmesPath.php"
  1818. ]
  1819. },
  1820. "notification-url": "https://packagist.org/downloads/",
  1821. "license": [
  1822. "MIT"
  1823. ],
  1824. "authors": [
  1825. {
  1826. "name": "Michael Dowling",
  1827. "email": "mtdowling@gmail.com",
  1828. "homepage": "https://github.com/mtdowling"
  1829. }
  1830. ],
  1831. "description": "Declaratively specify how to extract elements from a JSON document",
  1832. "keywords": [
  1833. "json",
  1834. "jsonpath"
  1835. ],
  1836. "time": "2019-12-30T18:03:34+00:00"
  1837. },
  1838. {
  1839. "name": "myclabs/php-enum",
  1840. "version": "1.7.6",
  1841. "source": {
  1842. "type": "git",
  1843. "url": "https://github.com/myclabs/php-enum.git",
  1844. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c"
  1845. },
  1846. "dist": {
  1847. "type": "zip",
  1848. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  1849. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  1850. "shasum": "",
  1851. "mirrors": [
  1852. {
  1853. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1854. "preferred": true
  1855. }
  1856. ]
  1857. },
  1858. "require": {
  1859. "ext-json": "*",
  1860. "php": ">=7.1"
  1861. },
  1862. "require-dev": {
  1863. "phpunit/phpunit": "^7",
  1864. "squizlabs/php_codesniffer": "1.*",
  1865. "vimeo/psalm": "^3.8"
  1866. },
  1867. "type": "library",
  1868. "autoload": {
  1869. "psr-4": {
  1870. "MyCLabs\\Enum\\": "src/"
  1871. }
  1872. },
  1873. "notification-url": "https://packagist.org/downloads/",
  1874. "license": [
  1875. "MIT"
  1876. ],
  1877. "authors": [
  1878. {
  1879. "name": "PHP Enum contributors",
  1880. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  1881. }
  1882. ],
  1883. "description": "PHP Enum implementation",
  1884. "homepage": "http://github.com/myclabs/php-enum",
  1885. "keywords": [
  1886. "enum"
  1887. ],
  1888. "time": "2020-02-14T08:15:52+00:00"
  1889. },
  1890. {
  1891. "name": "nesbot/carbon",
  1892. "version": "2.20.0",
  1893. "source": {
  1894. "type": "git",
  1895. "url": "https://github.com/briannesbitt/Carbon.git",
  1896. "reference": "bc671b896c276795fad8426b0aa24e8ade0f2498"
  1897. },
  1898. "dist": {
  1899. "type": "zip",
  1900. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/bc671b896c276795fad8426b0aa24e8ade0f2498",
  1901. "reference": "bc671b896c276795fad8426b0aa24e8ade0f2498",
  1902. "shasum": "",
  1903. "mirrors": [
  1904. {
  1905. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1906. "preferred": true
  1907. }
  1908. ]
  1909. },
  1910. "require": {
  1911. "ext-json": "*",
  1912. "php": "^7.1.8 || ^8.0",
  1913. "symfony/translation": "^3.4 || ^4.0"
  1914. },
  1915. "require-dev": {
  1916. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  1917. "kylekatarnls/multi-tester": "^1.1",
  1918. "phpmd/phpmd": "^2.6",
  1919. "phpstan/phpstan": "^0.11",
  1920. "phpunit/phpunit": "^7.5 || ^8.0",
  1921. "squizlabs/php_codesniffer": "^3.4"
  1922. },
  1923. "type": "library",
  1924. "extra": {
  1925. "laravel": {
  1926. "providers": [
  1927. "Carbon\\Laravel\\ServiceProvider"
  1928. ]
  1929. }
  1930. },
  1931. "autoload": {
  1932. "psr-4": {
  1933. "Carbon\\": "src/Carbon/"
  1934. }
  1935. },
  1936. "notification-url": "https://packagist.org/downloads/",
  1937. "license": [
  1938. "MIT"
  1939. ],
  1940. "authors": [
  1941. {
  1942. "name": "Brian Nesbitt",
  1943. "email": "brian@nesbot.com",
  1944. "homepage": "http://nesbot.com"
  1945. }
  1946. ],
  1947. "description": "A simple API extension for DateTime.",
  1948. "homepage": "http://carbon.nesbot.com",
  1949. "keywords": [
  1950. "date",
  1951. "datetime",
  1952. "time"
  1953. ],
  1954. "time": "2019-06-25T10:00:57+00:00"
  1955. },
  1956. {
  1957. "name": "nette/php-generator",
  1958. "version": "v3.5.2",
  1959. "source": {
  1960. "type": "git",
  1961. "url": "https://github.com/nette/php-generator.git",
  1962. "reference": "41dcc5d1cb322835e5950a76515166c90923c6b7"
  1963. },
  1964. "dist": {
  1965. "type": "zip",
  1966. "url": "https://api.github.com/repos/nette/php-generator/zipball/41dcc5d1cb322835e5950a76515166c90923c6b7",
  1967. "reference": "41dcc5d1cb322835e5950a76515166c90923c6b7",
  1968. "shasum": "",
  1969. "mirrors": [
  1970. {
  1971. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1972. "preferred": true
  1973. }
  1974. ]
  1975. },
  1976. "require": {
  1977. "nette/utils": "^3.1.2",
  1978. "php": ">=7.1"
  1979. },
  1980. "require-dev": {
  1981. "nette/tester": "^2.0",
  1982. "nikic/php-parser": "^4.4",
  1983. "phpstan/phpstan": "^0.12",
  1984. "tracy/tracy": "^2.3"
  1985. },
  1986. "suggest": {
  1987. "nikic/php-parser": "to use ClassType::withBodiesFrom() & GlobalFunction::withBodyFrom()"
  1988. },
  1989. "type": "library",
  1990. "extra": {
  1991. "branch-alias": {
  1992. "dev-master": "3.5-dev"
  1993. }
  1994. },
  1995. "autoload": {
  1996. "classmap": [
  1997. "src/"
  1998. ]
  1999. },
  2000. "notification-url": "https://packagist.org/downloads/",
  2001. "license": [
  2002. "BSD-3-Clause",
  2003. "GPL-2.0-only",
  2004. "GPL-3.0-only"
  2005. ],
  2006. "authors": [
  2007. {
  2008. "name": "David Grudl",
  2009. "homepage": "https://davidgrudl.com"
  2010. },
  2011. {
  2012. "name": "Nette Community",
  2013. "homepage": "https://nette.org/contributors"
  2014. }
  2015. ],
  2016. "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 7.4 features.",
  2017. "homepage": "https://nette.org",
  2018. "keywords": [
  2019. "code",
  2020. "nette",
  2021. "php",
  2022. "scaffolding"
  2023. ],
  2024. "time": "2021-01-19T13:02:23+00:00"
  2025. },
  2026. {
  2027. "name": "nette/utils",
  2028. "version": "v3.2.1",
  2029. "source": {
  2030. "type": "git",
  2031. "url": "https://github.com/nette/utils.git",
  2032. "reference": "2bc2f58079c920c2ecbb6935645abf6f2f5f94ba"
  2033. },
  2034. "dist": {
  2035. "type": "zip",
  2036. "url": "https://api.github.com/repos/nette/utils/zipball/2bc2f58079c920c2ecbb6935645abf6f2f5f94ba",
  2037. "reference": "2bc2f58079c920c2ecbb6935645abf6f2f5f94ba",
  2038. "shasum": "",
  2039. "mirrors": [
  2040. {
  2041. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2042. "preferred": true
  2043. }
  2044. ]
  2045. },
  2046. "require": {
  2047. "php": ">=7.2 <8.1"
  2048. },
  2049. "conflict": {
  2050. "nette/di": "<3.0.6"
  2051. },
  2052. "require-dev": {
  2053. "nette/tester": "~2.0",
  2054. "phpstan/phpstan": "^0.12",
  2055. "tracy/tracy": "^2.3"
  2056. },
  2057. "suggest": {
  2058. "ext-gd": "to use Image",
  2059. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2060. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2061. "ext-json": "to use Nette\\Utils\\Json",
  2062. "ext-mbstring": "to use Strings::lower() etc...",
  2063. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2064. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2065. },
  2066. "type": "library",
  2067. "extra": {
  2068. "branch-alias": {
  2069. "dev-master": "3.2-dev"
  2070. }
  2071. },
  2072. "autoload": {
  2073. "classmap": [
  2074. "src/"
  2075. ]
  2076. },
  2077. "notification-url": "https://packagist.org/downloads/",
  2078. "license": [
  2079. "BSD-3-Clause",
  2080. "GPL-2.0-only",
  2081. "GPL-3.0-only"
  2082. ],
  2083. "authors": [
  2084. {
  2085. "name": "David Grudl",
  2086. "homepage": "https://davidgrudl.com"
  2087. },
  2088. {
  2089. "name": "Nette Community",
  2090. "homepage": "https://nette.org/contributors"
  2091. }
  2092. ],
  2093. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2094. "homepage": "https://nette.org",
  2095. "keywords": [
  2096. "array",
  2097. "core",
  2098. "datetime",
  2099. "images",
  2100. "json",
  2101. "nette",
  2102. "paginator",
  2103. "password",
  2104. "slugify",
  2105. "string",
  2106. "unicode",
  2107. "utf-8",
  2108. "utility",
  2109. "validation"
  2110. ],
  2111. "time": "2021-01-11T03:05:59+00:00"
  2112. },
  2113. {
  2114. "name": "open-smf/connection-pool",
  2115. "version": "v1.0.15",
  2116. "source": {
  2117. "type": "git",
  2118. "url": "https://github.com/open-smf/connection-pool.git",
  2119. "reference": "f9289cb5ee61d3e901bc74ab745e5b2162461a1e"
  2120. },
  2121. "dist": {
  2122. "type": "zip",
  2123. "url": "https://api.github.com/repos/open-smf/connection-pool/zipball/f9289cb5ee61d3e901bc74ab745e5b2162461a1e",
  2124. "reference": "f9289cb5ee61d3e901bc74ab745e5b2162461a1e",
  2125. "shasum": "",
  2126. "mirrors": [
  2127. {
  2128. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2129. "preferred": true
  2130. }
  2131. ]
  2132. },
  2133. "require": {
  2134. "ext-json": "*",
  2135. "ext-swoole": ">=4.2.9",
  2136. "php": ">=7.0.0"
  2137. },
  2138. "require-dev": {
  2139. "swoole/ide-helper": "@dev"
  2140. },
  2141. "suggest": {
  2142. "ext-redis": "A PHP extension for Redis."
  2143. },
  2144. "type": "library",
  2145. "autoload": {
  2146. "psr-4": {
  2147. "Smf\\ConnectionPool\\": "src"
  2148. }
  2149. },
  2150. "notification-url": "https://packagist.org/downloads/",
  2151. "license": [
  2152. "MIT"
  2153. ],
  2154. "authors": [
  2155. {
  2156. "name": "Xie Biao",
  2157. "email": "hhxsv5@sina.com"
  2158. }
  2159. ],
  2160. "description": "A common connection pool based on Swoole is usually used as the database connection pool.",
  2161. "homepage": "https://github.com/open-smf/connection-pool",
  2162. "keywords": [
  2163. "connection-pool",
  2164. "database-connection-pool",
  2165. "swoole"
  2166. ],
  2167. "time": "2020-05-29T05:20:59+00:00"
  2168. },
  2169. {
  2170. "name": "opis/closure",
  2171. "version": "3.6.1",
  2172. "source": {
  2173. "type": "git",
  2174. "url": "https://github.com/opis/closure.git",
  2175. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  2176. },
  2177. "dist": {
  2178. "type": "zip",
  2179. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  2180. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  2181. "shasum": "",
  2182. "mirrors": [
  2183. {
  2184. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2185. "preferred": true
  2186. }
  2187. ]
  2188. },
  2189. "require": {
  2190. "php": "^5.4 || ^7.0 || ^8.0"
  2191. },
  2192. "require-dev": {
  2193. "jeremeamia/superclosure": "^2.0",
  2194. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  2195. },
  2196. "type": "library",
  2197. "extra": {
  2198. "branch-alias": {
  2199. "dev-master": "3.6.x-dev"
  2200. }
  2201. },
  2202. "autoload": {
  2203. "psr-4": {
  2204. "Opis\\Closure\\": "src/"
  2205. },
  2206. "files": [
  2207. "functions.php"
  2208. ]
  2209. },
  2210. "notification-url": "https://packagist.org/downloads/",
  2211. "license": [
  2212. "MIT"
  2213. ],
  2214. "authors": [
  2215. {
  2216. "name": "Marius Sarca",
  2217. "email": "marius.sarca@gmail.com"
  2218. },
  2219. {
  2220. "name": "Sorin Sarca",
  2221. "email": "sarca_sorin@hotmail.com"
  2222. }
  2223. ],
  2224. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2225. "homepage": "https://opis.io/closure",
  2226. "keywords": [
  2227. "anonymous functions",
  2228. "closure",
  2229. "function",
  2230. "serializable",
  2231. "serialization",
  2232. "serialize"
  2233. ],
  2234. "time": "2020-11-07T02:01:34+00:00"
  2235. },
  2236. {
  2237. "name": "overtrue/socialite",
  2238. "version": "1.3.0",
  2239. "source": {
  2240. "type": "git",
  2241. "url": "https://github.com/overtrue/socialite.git",
  2242. "reference": "fda55f0acef43a144799b1957a8f93d9f5deffce"
  2243. },
  2244. "dist": {
  2245. "type": "zip",
  2246. "url": "https://api.github.com/repos/overtrue/socialite/zipball/fda55f0acef43a144799b1957a8f93d9f5deffce",
  2247. "reference": "fda55f0acef43a144799b1957a8f93d9f5deffce",
  2248. "shasum": "",
  2249. "mirrors": [
  2250. {
  2251. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2252. "preferred": true
  2253. }
  2254. ]
  2255. },
  2256. "require": {
  2257. "guzzlehttp/guzzle": "~5.0|~6.0",
  2258. "php": ">=5.4.0",
  2259. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0"
  2260. },
  2261. "require-dev": {
  2262. "mockery/mockery": "~0.9",
  2263. "phpunit/phpunit": "~4.0"
  2264. },
  2265. "type": "library",
  2266. "autoload": {
  2267. "psr-4": {
  2268. "Overtrue\\Socialite\\": "src/"
  2269. }
  2270. },
  2271. "notification-url": "https://packagist.org/downloads/",
  2272. "license": [
  2273. "MIT"
  2274. ],
  2275. "authors": [
  2276. {
  2277. "name": "overtrue",
  2278. "email": "anzhengchao@gmail.com"
  2279. }
  2280. ],
  2281. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  2282. "keywords": [
  2283. "login",
  2284. "oauth",
  2285. "qq",
  2286. "social",
  2287. "wechat",
  2288. "weibo"
  2289. ],
  2290. "time": "2017-08-04T06:28:22+00:00"
  2291. },
  2292. {
  2293. "name": "overtrue/wechat",
  2294. "version": "3.3.33",
  2295. "source": {
  2296. "type": "git",
  2297. "url": "https://github.com/w7corp/easywechat.git",
  2298. "reference": "78e5476df330754040d1c400d0bca640d5b77cb7"
  2299. },
  2300. "dist": {
  2301. "type": "zip",
  2302. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/78e5476df330754040d1c400d0bca640d5b77cb7",
  2303. "reference": "78e5476df330754040d1c400d0bca640d5b77cb7",
  2304. "shasum": "",
  2305. "mirrors": [
  2306. {
  2307. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2308. "preferred": true
  2309. }
  2310. ]
  2311. },
  2312. "require": {
  2313. "doctrine/cache": "1.4.*",
  2314. "ext-openssl": "*",
  2315. "guzzlehttp/guzzle": "~6.2",
  2316. "monolog/monolog": "^1.17",
  2317. "overtrue/socialite": "^1.0.25",
  2318. "php": ">=5.5.0",
  2319. "pimple/pimple": "~3.0",
  2320. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0",
  2321. "symfony/psr-http-message-bridge": "~0.3|^1.0"
  2322. },
  2323. "require-dev": {
  2324. "mockery/mockery": "^0.9.9",
  2325. "overtrue/phplint": "dev-master",
  2326. "phpunit/phpunit": "~4.0"
  2327. },
  2328. "type": "library",
  2329. "autoload": {
  2330. "psr-4": {
  2331. "EasyWeChat\\": "src/"
  2332. },
  2333. "files": [
  2334. "src/Payment/helpers.php"
  2335. ]
  2336. },
  2337. "notification-url": "https://packagist.org/downloads/",
  2338. "license": [
  2339. "MIT"
  2340. ],
  2341. "authors": [
  2342. {
  2343. "name": "overtrue",
  2344. "email": "anzhengchao@gmail.com"
  2345. }
  2346. ],
  2347. "description": "微信SDK",
  2348. "keywords": [
  2349. "sdk",
  2350. "wechat",
  2351. "weixin",
  2352. "weixin-sdk"
  2353. ],
  2354. "time": "2018-10-17T12:27:27+00:00"
  2355. },
  2356. {
  2357. "name": "paragonie/random_compat",
  2358. "version": "v9.99.99",
  2359. "source": {
  2360. "type": "git",
  2361. "url": "https://github.com/paragonie/random_compat.git",
  2362. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  2363. },
  2364. "dist": {
  2365. "type": "zip",
  2366. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2367. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2368. "shasum": "",
  2369. "mirrors": [
  2370. {
  2371. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2372. "preferred": true
  2373. }
  2374. ]
  2375. },
  2376. "require": {
  2377. "php": "^7"
  2378. },
  2379. "require-dev": {
  2380. "phpunit/phpunit": "4.*|5.*",
  2381. "vimeo/psalm": "^1"
  2382. },
  2383. "suggest": {
  2384. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2385. },
  2386. "type": "library",
  2387. "notification-url": "https://packagist.org/downloads/",
  2388. "license": [
  2389. "MIT"
  2390. ],
  2391. "authors": [
  2392. {
  2393. "name": "Paragon Initiative Enterprises",
  2394. "email": "security@paragonie.com",
  2395. "homepage": "https://paragonie.com"
  2396. }
  2397. ],
  2398. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2399. "keywords": [
  2400. "csprng",
  2401. "polyfill",
  2402. "pseudorandom",
  2403. "random"
  2404. ],
  2405. "time": "2018-07-02T15:55:56+00:00"
  2406. },
  2407. {
  2408. "name": "phpoffice/phpspreadsheet",
  2409. "version": "1.13.0",
  2410. "source": {
  2411. "type": "git",
  2412. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2413. "reference": "21bfb5b3243b8ceb9eda499a4d699fc42c11a9d1"
  2414. },
  2415. "dist": {
  2416. "type": "zip",
  2417. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/21bfb5b3243b8ceb9eda499a4d699fc42c11a9d1",
  2418. "reference": "21bfb5b3243b8ceb9eda499a4d699fc42c11a9d1",
  2419. "shasum": "",
  2420. "mirrors": [
  2421. {
  2422. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2423. "preferred": true
  2424. }
  2425. ]
  2426. },
  2427. "require": {
  2428. "ext-ctype": "*",
  2429. "ext-dom": "*",
  2430. "ext-fileinfo": "*",
  2431. "ext-gd": "*",
  2432. "ext-iconv": "*",
  2433. "ext-libxml": "*",
  2434. "ext-mbstring": "*",
  2435. "ext-simplexml": "*",
  2436. "ext-xml": "*",
  2437. "ext-xmlreader": "*",
  2438. "ext-xmlwriter": "*",
  2439. "ext-zip": "*",
  2440. "ext-zlib": "*",
  2441. "maennchen/zipstream-php": "^2.0",
  2442. "markbaker/complex": "^1.4",
  2443. "markbaker/matrix": "^1.2",
  2444. "php": "^7.2",
  2445. "psr/simple-cache": "^1.0"
  2446. },
  2447. "require-dev": {
  2448. "dompdf/dompdf": "^0.8.5",
  2449. "friendsofphp/php-cs-fixer": "^2.16",
  2450. "jpgraph/jpgraph": "^4.0",
  2451. "mpdf/mpdf": "^8.0",
  2452. "phpcompatibility/php-compatibility": "^9.3",
  2453. "phpunit/phpunit": "^8.5",
  2454. "squizlabs/php_codesniffer": "^3.5",
  2455. "tecnickcom/tcpdf": "^6.3"
  2456. },
  2457. "suggest": {
  2458. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2459. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2460. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2461. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2462. },
  2463. "type": "library",
  2464. "autoload": {
  2465. "psr-4": {
  2466. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2467. }
  2468. },
  2469. "notification-url": "https://packagist.org/downloads/",
  2470. "license": [
  2471. "MIT"
  2472. ],
  2473. "authors": [
  2474. {
  2475. "name": "Maarten Balliauw",
  2476. "homepage": "https://blog.maartenballiauw.be"
  2477. },
  2478. {
  2479. "name": "Mark Baker",
  2480. "homepage": "https://markbakeruk.net"
  2481. },
  2482. {
  2483. "name": "Franck Lefevre",
  2484. "homepage": "https://rootslabs.net"
  2485. },
  2486. {
  2487. "name": "Erik Tilt"
  2488. },
  2489. {
  2490. "name": "Adrien Crivelli"
  2491. }
  2492. ],
  2493. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2494. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2495. "keywords": [
  2496. "OpenXML",
  2497. "excel",
  2498. "gnumeric",
  2499. "ods",
  2500. "php",
  2501. "spreadsheet",
  2502. "xls",
  2503. "xlsx"
  2504. ],
  2505. "time": "2020-05-31T13:49:28+00:00"
  2506. },
  2507. {
  2508. "name": "pimple/pimple",
  2509. "version": "v3.2.3",
  2510. "source": {
  2511. "type": "git",
  2512. "url": "https://github.com/silexphp/Pimple.git",
  2513. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
  2514. },
  2515. "dist": {
  2516. "type": "zip",
  2517. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
  2518. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
  2519. "shasum": "",
  2520. "mirrors": [
  2521. {
  2522. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2523. "preferred": true
  2524. }
  2525. ]
  2526. },
  2527. "require": {
  2528. "php": ">=5.3.0",
  2529. "psr/container": "^1.0"
  2530. },
  2531. "require-dev": {
  2532. "symfony/phpunit-bridge": "^3.2"
  2533. },
  2534. "type": "library",
  2535. "extra": {
  2536. "branch-alias": {
  2537. "dev-master": "3.2.x-dev"
  2538. }
  2539. },
  2540. "autoload": {
  2541. "psr-0": {
  2542. "Pimple": "src/"
  2543. }
  2544. },
  2545. "notification-url": "https://packagist.org/downloads/",
  2546. "license": [
  2547. "MIT"
  2548. ],
  2549. "authors": [
  2550. {
  2551. "name": "Fabien Potencier",
  2552. "email": "fabien@symfony.com"
  2553. }
  2554. ],
  2555. "description": "Pimple, a simple Dependency Injection Container",
  2556. "homepage": "http://pimple.sensiolabs.org",
  2557. "keywords": [
  2558. "container",
  2559. "dependency injection"
  2560. ],
  2561. "time": "2018-01-21T07:42:36+00:00"
  2562. },
  2563. {
  2564. "name": "psr/cache",
  2565. "version": "1.0.1",
  2566. "source": {
  2567. "type": "git",
  2568. "url": "https://github.com/php-fig/cache.git",
  2569. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2570. },
  2571. "dist": {
  2572. "type": "zip",
  2573. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2574. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2575. "shasum": "",
  2576. "mirrors": [
  2577. {
  2578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2579. "preferred": true
  2580. }
  2581. ]
  2582. },
  2583. "require": {
  2584. "php": ">=5.3.0"
  2585. },
  2586. "type": "library",
  2587. "extra": {
  2588. "branch-alias": {
  2589. "dev-master": "1.0.x-dev"
  2590. }
  2591. },
  2592. "autoload": {
  2593. "psr-4": {
  2594. "Psr\\Cache\\": "src/"
  2595. }
  2596. },
  2597. "notification-url": "https://packagist.org/downloads/",
  2598. "license": [
  2599. "MIT"
  2600. ],
  2601. "authors": [
  2602. {
  2603. "name": "PHP-FIG",
  2604. "homepage": "http://www.php-fig.org/"
  2605. }
  2606. ],
  2607. "description": "Common interface for caching libraries",
  2608. "keywords": [
  2609. "cache",
  2610. "psr",
  2611. "psr-6"
  2612. ],
  2613. "time": "2016-08-06T20:24:11+00:00"
  2614. },
  2615. {
  2616. "name": "psr/container",
  2617. "version": "1.0.0",
  2618. "source": {
  2619. "type": "git",
  2620. "url": "https://github.com/php-fig/container.git",
  2621. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2622. },
  2623. "dist": {
  2624. "type": "zip",
  2625. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2626. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2627. "shasum": "",
  2628. "mirrors": [
  2629. {
  2630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2631. "preferred": true
  2632. }
  2633. ]
  2634. },
  2635. "require": {
  2636. "php": ">=5.3.0"
  2637. },
  2638. "type": "library",
  2639. "extra": {
  2640. "branch-alias": {
  2641. "dev-master": "1.0.x-dev"
  2642. }
  2643. },
  2644. "autoload": {
  2645. "psr-4": {
  2646. "Psr\\Container\\": "src/"
  2647. }
  2648. },
  2649. "notification-url": "https://packagist.org/downloads/",
  2650. "license": [
  2651. "MIT"
  2652. ],
  2653. "authors": [
  2654. {
  2655. "name": "PHP-FIG",
  2656. "homepage": "http://www.php-fig.org/"
  2657. }
  2658. ],
  2659. "description": "Common Container Interface (PHP FIG PSR-11)",
  2660. "homepage": "https://github.com/php-fig/container",
  2661. "keywords": [
  2662. "PSR-11",
  2663. "container",
  2664. "container-interface",
  2665. "container-interop",
  2666. "psr"
  2667. ],
  2668. "time": "2017-02-14T16:28:37+00:00"
  2669. },
  2670. {
  2671. "name": "psr/http-message",
  2672. "version": "1.0.1",
  2673. "source": {
  2674. "type": "git",
  2675. "url": "https://github.com/php-fig/http-message.git",
  2676. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2677. },
  2678. "dist": {
  2679. "type": "zip",
  2680. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2681. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2682. "shasum": "",
  2683. "mirrors": [
  2684. {
  2685. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2686. "preferred": true
  2687. }
  2688. ]
  2689. },
  2690. "require": {
  2691. "php": ">=5.3.0"
  2692. },
  2693. "type": "library",
  2694. "extra": {
  2695. "branch-alias": {
  2696. "dev-master": "1.0.x-dev"
  2697. }
  2698. },
  2699. "autoload": {
  2700. "psr-4": {
  2701. "Psr\\Http\\Message\\": "src/"
  2702. }
  2703. },
  2704. "notification-url": "https://packagist.org/downloads/",
  2705. "license": [
  2706. "MIT"
  2707. ],
  2708. "authors": [
  2709. {
  2710. "name": "PHP-FIG",
  2711. "homepage": "http://www.php-fig.org/"
  2712. }
  2713. ],
  2714. "description": "Common interface for HTTP messages",
  2715. "homepage": "https://github.com/php-fig/http-message",
  2716. "keywords": [
  2717. "http",
  2718. "http-message",
  2719. "psr",
  2720. "psr-7",
  2721. "request",
  2722. "response"
  2723. ],
  2724. "time": "2016-08-06T14:39:51+00:00"
  2725. },
  2726. {
  2727. "name": "psr/log",
  2728. "version": "1.1.3",
  2729. "source": {
  2730. "type": "git",
  2731. "url": "https://github.com/php-fig/log.git",
  2732. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  2733. },
  2734. "dist": {
  2735. "type": "zip",
  2736. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  2737. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  2738. "shasum": "",
  2739. "mirrors": [
  2740. {
  2741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2742. "preferred": true
  2743. }
  2744. ]
  2745. },
  2746. "require": {
  2747. "php": ">=5.3.0"
  2748. },
  2749. "type": "library",
  2750. "extra": {
  2751. "branch-alias": {
  2752. "dev-master": "1.1.x-dev"
  2753. }
  2754. },
  2755. "autoload": {
  2756. "psr-4": {
  2757. "Psr\\Log\\": "Psr/Log/"
  2758. }
  2759. },
  2760. "notification-url": "https://packagist.org/downloads/",
  2761. "license": [
  2762. "MIT"
  2763. ],
  2764. "authors": [
  2765. {
  2766. "name": "PHP-FIG",
  2767. "homepage": "http://www.php-fig.org/"
  2768. }
  2769. ],
  2770. "description": "Common interface for logging libraries",
  2771. "homepage": "https://github.com/php-fig/log",
  2772. "keywords": [
  2773. "log",
  2774. "psr",
  2775. "psr-3"
  2776. ],
  2777. "time": "2020-03-23T09:12:05+00:00"
  2778. },
  2779. {
  2780. "name": "psr/simple-cache",
  2781. "version": "1.0.1",
  2782. "source": {
  2783. "type": "git",
  2784. "url": "https://github.com/php-fig/simple-cache.git",
  2785. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2786. },
  2787. "dist": {
  2788. "type": "zip",
  2789. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2790. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2791. "shasum": "",
  2792. "mirrors": [
  2793. {
  2794. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2795. "preferred": true
  2796. }
  2797. ]
  2798. },
  2799. "require": {
  2800. "php": ">=5.3.0"
  2801. },
  2802. "type": "library",
  2803. "extra": {
  2804. "branch-alias": {
  2805. "dev-master": "1.0.x-dev"
  2806. }
  2807. },
  2808. "autoload": {
  2809. "psr-4": {
  2810. "Psr\\SimpleCache\\": "src/"
  2811. }
  2812. },
  2813. "notification-url": "https://packagist.org/downloads/",
  2814. "license": [
  2815. "MIT"
  2816. ],
  2817. "authors": [
  2818. {
  2819. "name": "PHP-FIG",
  2820. "homepage": "http://www.php-fig.org/"
  2821. }
  2822. ],
  2823. "description": "Common interfaces for simple caching",
  2824. "keywords": [
  2825. "cache",
  2826. "caching",
  2827. "psr",
  2828. "psr-16",
  2829. "simple-cache"
  2830. ],
  2831. "time": "2017-10-23T01:57:42+00:00"
  2832. },
  2833. {
  2834. "name": "qcloud/cos-sdk-v5",
  2835. "version": "v1.3.3",
  2836. "source": {
  2837. "type": "git",
  2838. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  2839. "reference": "cd1b9cefa04521eaf125a82eb53552d9a87aae4d"
  2840. },
  2841. "dist": {
  2842. "type": "zip",
  2843. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/cd1b9cefa04521eaf125a82eb53552d9a87aae4d",
  2844. "reference": "cd1b9cefa04521eaf125a82eb53552d9a87aae4d",
  2845. "shasum": "",
  2846. "mirrors": [
  2847. {
  2848. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2849. "preferred": true
  2850. }
  2851. ]
  2852. },
  2853. "require": {
  2854. "guzzle/guzzle": "~3.7",
  2855. "php": ">=5.3.0"
  2856. },
  2857. "type": "library",
  2858. "autoload": {
  2859. "psr-0": {
  2860. "Qcloud\\Cos\\": "src/"
  2861. }
  2862. },
  2863. "notification-url": "https://packagist.org/downloads/",
  2864. "license": [
  2865. "MIT"
  2866. ],
  2867. "authors": [
  2868. {
  2869. "name": "yaozongyou",
  2870. "email": "yaozongyou@vip.qq.com"
  2871. },
  2872. {
  2873. "name": "lewzylu",
  2874. "email": "327874225@qq.com"
  2875. }
  2876. ],
  2877. "description": "PHP SDK for QCloud COS",
  2878. "keywords": [
  2879. "cos",
  2880. "php",
  2881. "qcloud"
  2882. ],
  2883. "time": "2019-08-07T10:15:47+00:00"
  2884. },
  2885. {
  2886. "name": "qcloud_sts/qcloud-sts-sdk",
  2887. "version": "3.0.3",
  2888. "source": {
  2889. "type": "git",
  2890. "url": "https://github.com/tencentyun/qcloud-cos-sts-php-sdk.git",
  2891. "reference": "d6b12a0bdebc025f039c958979714298d408bf92"
  2892. },
  2893. "dist": {
  2894. "type": "zip",
  2895. "url": "https://api.github.com/repos/tencentyun/qcloud-cos-sts-php-sdk/zipball/d6b12a0bdebc025f039c958979714298d408bf92",
  2896. "reference": "d6b12a0bdebc025f039c958979714298d408bf92",
  2897. "shasum": "",
  2898. "mirrors": [
  2899. {
  2900. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2901. "preferred": true
  2902. }
  2903. ]
  2904. },
  2905. "require": {
  2906. "php": ">=5.3.0"
  2907. },
  2908. "type": "library",
  2909. "autoload": {
  2910. "psr-4": {
  2911. "QCloud\\COSSTS\\": "src"
  2912. }
  2913. },
  2914. "notification-url": "https://packagist.org/downloads/",
  2915. "license": [
  2916. "MIT"
  2917. ],
  2918. "authors": [
  2919. {
  2920. "name": "qcloudterminal",
  2921. "email": "qcloudterminal@gmail.com"
  2922. }
  2923. ],
  2924. "description": "PHP SDK for QCloud STS",
  2925. "homepage": "https://github.com/tencentyun/qcloud-cos-sts-sdk",
  2926. "keywords": [
  2927. "cos",
  2928. "php",
  2929. "qcloud",
  2930. "sts"
  2931. ],
  2932. "time": "2020-06-03T11:55:39+00:00"
  2933. },
  2934. {
  2935. "name": "qiniu/php-sdk",
  2936. "version": "v7.2.9",
  2937. "source": {
  2938. "type": "git",
  2939. "url": "https://github.com/qiniu/php-sdk.git",
  2940. "reference": "afe7d8715d8a688b1d8d8cdf031240d2363dad90"
  2941. },
  2942. "dist": {
  2943. "type": "zip",
  2944. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/afe7d8715d8a688b1d8d8cdf031240d2363dad90",
  2945. "reference": "afe7d8715d8a688b1d8d8cdf031240d2363dad90",
  2946. "shasum": "",
  2947. "mirrors": [
  2948. {
  2949. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2950. "preferred": true
  2951. }
  2952. ]
  2953. },
  2954. "require": {
  2955. "php": ">=5.3.3"
  2956. },
  2957. "require-dev": {
  2958. "phpunit/phpunit": "~4.0",
  2959. "squizlabs/php_codesniffer": "~2.3"
  2960. },
  2961. "type": "library",
  2962. "autoload": {
  2963. "psr-4": {
  2964. "Qiniu\\": "src/Qiniu"
  2965. },
  2966. "files": [
  2967. "src/Qiniu/functions.php"
  2968. ]
  2969. },
  2970. "notification-url": "https://packagist.org/downloads/",
  2971. "license": [
  2972. "MIT"
  2973. ],
  2974. "authors": [
  2975. {
  2976. "name": "Qiniu",
  2977. "email": "sdk@qiniu.com",
  2978. "homepage": "http://www.qiniu.com"
  2979. }
  2980. ],
  2981. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  2982. "homepage": "http://developer.qiniu.com/",
  2983. "keywords": [
  2984. "cloud",
  2985. "qiniu",
  2986. "sdk",
  2987. "storage"
  2988. ],
  2989. "time": "2019-07-09T07:55:07+00:00"
  2990. },
  2991. {
  2992. "name": "ralouphie/getallheaders",
  2993. "version": "2.0.5",
  2994. "source": {
  2995. "type": "git",
  2996. "url": "https://github.com/ralouphie/getallheaders.git",
  2997. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  2998. },
  2999. "dist": {
  3000. "type": "zip",
  3001. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  3002. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  3003. "shasum": "",
  3004. "mirrors": [
  3005. {
  3006. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3007. "preferred": true
  3008. }
  3009. ]
  3010. },
  3011. "require": {
  3012. "php": ">=5.3"
  3013. },
  3014. "require-dev": {
  3015. "phpunit/phpunit": "~3.7.0",
  3016. "satooshi/php-coveralls": ">=1.0"
  3017. },
  3018. "type": "library",
  3019. "autoload": {
  3020. "files": [
  3021. "src/getallheaders.php"
  3022. ]
  3023. },
  3024. "notification-url": "https://packagist.org/downloads/",
  3025. "license": [
  3026. "MIT"
  3027. ],
  3028. "authors": [
  3029. {
  3030. "name": "Ralph Khattar",
  3031. "email": "ralph.khattar@gmail.com"
  3032. }
  3033. ],
  3034. "description": "A polyfill for getallheaders.",
  3035. "time": "2016-02-11T07:05:27+00:00"
  3036. },
  3037. {
  3038. "name": "songshenzong/support",
  3039. "version": "2.0.5",
  3040. "source": {
  3041. "type": "git",
  3042. "url": "https://github.com/songshenzong/support.git",
  3043. "reference": "34973c04ffcf226e503f1c3a69d30ac49f7621f6"
  3044. },
  3045. "dist": {
  3046. "type": "zip",
  3047. "url": "https://api.github.com/repos/songshenzong/support/zipball/34973c04ffcf226e503f1c3a69d30ac49f7621f6",
  3048. "reference": "34973c04ffcf226e503f1c3a69d30ac49f7621f6",
  3049. "shasum": "",
  3050. "mirrors": [
  3051. {
  3052. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3053. "preferred": true
  3054. }
  3055. ]
  3056. },
  3057. "require": {
  3058. "danielstjules/stringy": "^3.1",
  3059. "ext-json": "*",
  3060. "ext-simplexml": "*",
  3061. "ext-xml": "*",
  3062. "php": ">=5.5"
  3063. },
  3064. "require-dev": {
  3065. "laravel/framework": "^5.8",
  3066. "phpunit/phpunit": "^4.8.35|^5.4.3"
  3067. },
  3068. "type": "library",
  3069. "extra": {
  3070. "laravel": {
  3071. "providers": [
  3072. "Songshenzong\\Support\\StringsServiceProvider"
  3073. ],
  3074. "aliases": {
  3075. "Strings": "Songshenzong\\Support\\StringsFacade"
  3076. }
  3077. }
  3078. },
  3079. "autoload": {
  3080. "psr-4": {
  3081. "Songshenzong\\Support\\": "src/"
  3082. },
  3083. "files": [
  3084. "src/StringsHelpers.php",
  3085. "src/BashEchoHelpers.php"
  3086. ]
  3087. },
  3088. "notification-url": "https://packagist.org/downloads/",
  3089. "license": [
  3090. "MIT"
  3091. ],
  3092. "authors": [
  3093. {
  3094. "name": "Songshenzong",
  3095. "email": "i@songshenzong.com"
  3096. }
  3097. ],
  3098. "description": "The Songshenzong Support package.",
  3099. "homepage": "http://songshenzong.com",
  3100. "keywords": [
  3101. "laravel",
  3102. "support",
  3103. "tools",
  3104. "web"
  3105. ],
  3106. "time": "2019-08-29T01:59:12+00:00"
  3107. },
  3108. {
  3109. "name": "spatie/macroable",
  3110. "version": "1.0.0",
  3111. "source": {
  3112. "type": "git",
  3113. "url": "https://github.com/spatie/macroable.git",
  3114. "reference": "74b0d189ce75142f1706aad834d5a428dfc7c3c3"
  3115. },
  3116. "dist": {
  3117. "type": "zip",
  3118. "url": "https://api.github.com/repos/spatie/macroable/zipball/74b0d189ce75142f1706aad834d5a428dfc7c3c3",
  3119. "reference": "74b0d189ce75142f1706aad834d5a428dfc7c3c3",
  3120. "shasum": "",
  3121. "mirrors": [
  3122. {
  3123. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3124. "preferred": true
  3125. }
  3126. ]
  3127. },
  3128. "require": {
  3129. "php": "^7.0"
  3130. },
  3131. "require-dev": {
  3132. "phpunit/phpunit": "^6.3"
  3133. },
  3134. "type": "library",
  3135. "autoload": {
  3136. "psr-4": {
  3137. "Spatie\\Macroable\\": "src"
  3138. }
  3139. },
  3140. "notification-url": "https://packagist.org/downloads/",
  3141. "license": [
  3142. "MIT"
  3143. ],
  3144. "authors": [
  3145. {
  3146. "name": "Freek Van der Herten",
  3147. "email": "freek@spatie.be",
  3148. "homepage": "https://spatie.be",
  3149. "role": "Developer"
  3150. }
  3151. ],
  3152. "description": "A trait to dynamically add methods to a class",
  3153. "homepage": "https://github.com/spatie/macroable",
  3154. "keywords": [
  3155. "macroable",
  3156. "spatie"
  3157. ],
  3158. "time": "2017-09-18T09:51:20+00:00"
  3159. },
  3160. {
  3161. "name": "swoole/ide-helper",
  3162. "version": "4.6.2",
  3163. "source": {
  3164. "type": "git",
  3165. "url": "https://github.com/swoole/ide-helper.git",
  3166. "reference": "62d923e3406d4d9c5a4749d810d11e2beb201abe"
  3167. },
  3168. "dist": {
  3169. "type": "zip",
  3170. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/62d923e3406d4d9c5a4749d810d11e2beb201abe",
  3171. "reference": "62d923e3406d4d9c5a4749d810d11e2beb201abe",
  3172. "shasum": "",
  3173. "mirrors": [
  3174. {
  3175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3176. "preferred": true
  3177. }
  3178. ]
  3179. },
  3180. "require-dev": {
  3181. "guzzlehttp/guzzle": "~6.5.0",
  3182. "laminas/laminas-code": "~3.4.0",
  3183. "squizlabs/php_codesniffer": "~3.5.0",
  3184. "symfony/filesystem": "~4.0"
  3185. },
  3186. "type": "library",
  3187. "notification-url": "https://packagist.org/downloads/",
  3188. "license": [
  3189. "Apache-2.0"
  3190. ],
  3191. "authors": [
  3192. {
  3193. "name": "Team Swoole",
  3194. "email": "team@swoole.com"
  3195. }
  3196. ],
  3197. "description": "IDE help files for Swoole.",
  3198. "time": "2021-01-26T00:17:29+00:00"
  3199. },
  3200. {
  3201. "name": "symfony/event-dispatcher",
  3202. "version": "v2.8.50",
  3203. "source": {
  3204. "type": "git",
  3205. "url": "https://github.com/symfony/event-dispatcher.git",
  3206. "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0"
  3207. },
  3208. "dist": {
  3209. "type": "zip",
  3210. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a77e974a5fecb4398833b0709210e3d5e334ffb0",
  3211. "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0",
  3212. "shasum": "",
  3213. "mirrors": [
  3214. {
  3215. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3216. "preferred": true
  3217. }
  3218. ]
  3219. },
  3220. "require": {
  3221. "php": ">=5.3.9"
  3222. },
  3223. "require-dev": {
  3224. "psr/log": "~1.0",
  3225. "symfony/config": "^2.0.5|~3.0.0",
  3226. "symfony/dependency-injection": "~2.6|~3.0.0",
  3227. "symfony/expression-language": "~2.6|~3.0.0",
  3228. "symfony/stopwatch": "~2.3|~3.0.0"
  3229. },
  3230. "suggest": {
  3231. "symfony/dependency-injection": "",
  3232. "symfony/http-kernel": ""
  3233. },
  3234. "type": "library",
  3235. "extra": {
  3236. "branch-alias": {
  3237. "dev-master": "2.8-dev"
  3238. }
  3239. },
  3240. "autoload": {
  3241. "psr-4": {
  3242. "Symfony\\Component\\EventDispatcher\\": ""
  3243. },
  3244. "exclude-from-classmap": [
  3245. "/Tests/"
  3246. ]
  3247. },
  3248. "notification-url": "https://packagist.org/downloads/",
  3249. "license": [
  3250. "MIT"
  3251. ],
  3252. "authors": [
  3253. {
  3254. "name": "Fabien Potencier",
  3255. "email": "fabien@symfony.com"
  3256. },
  3257. {
  3258. "name": "Symfony Community",
  3259. "homepage": "https://symfony.com/contributors"
  3260. }
  3261. ],
  3262. "description": "Symfony EventDispatcher Component",
  3263. "homepage": "https://symfony.com",
  3264. "time": "2018-11-21T14:20:20+00:00"
  3265. },
  3266. {
  3267. "name": "symfony/finder",
  3268. "version": "v5.2.2",
  3269. "source": {
  3270. "type": "git",
  3271. "url": "https://github.com/symfony/finder.git",
  3272. "reference": "196f45723b5e618bf0e23b97e96d11652696ea9e"
  3273. },
  3274. "dist": {
  3275. "type": "zip",
  3276. "url": "https://api.github.com/repos/symfony/finder/zipball/196f45723b5e618bf0e23b97e96d11652696ea9e",
  3277. "reference": "196f45723b5e618bf0e23b97e96d11652696ea9e",
  3278. "shasum": "",
  3279. "mirrors": [
  3280. {
  3281. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3282. "preferred": true
  3283. }
  3284. ]
  3285. },
  3286. "require": {
  3287. "php": ">=7.2.5"
  3288. },
  3289. "type": "library",
  3290. "autoload": {
  3291. "psr-4": {
  3292. "Symfony\\Component\\Finder\\": ""
  3293. },
  3294. "exclude-from-classmap": [
  3295. "/Tests/"
  3296. ]
  3297. },
  3298. "notification-url": "https://packagist.org/downloads/",
  3299. "license": [
  3300. "MIT"
  3301. ],
  3302. "authors": [
  3303. {
  3304. "name": "Fabien Potencier",
  3305. "email": "fabien@symfony.com"
  3306. },
  3307. {
  3308. "name": "Symfony Community",
  3309. "homepage": "https://symfony.com/contributors"
  3310. }
  3311. ],
  3312. "description": "Finds files and directories via an intuitive fluent interface",
  3313. "homepage": "https://symfony.com",
  3314. "funding": [
  3315. {
  3316. "url": "https://symfony.com/sponsor",
  3317. "type": "custom"
  3318. },
  3319. {
  3320. "url": "https://github.com/fabpot",
  3321. "type": "github"
  3322. },
  3323. {
  3324. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3325. "type": "tidelift"
  3326. }
  3327. ],
  3328. "time": "2021-01-27T10:01:46+00:00"
  3329. },
  3330. {
  3331. "name": "symfony/http-foundation",
  3332. "version": "v3.4.28",
  3333. "source": {
  3334. "type": "git",
  3335. "url": "https://github.com/symfony/http-foundation.git",
  3336. "reference": "677ae5e892b081e71a665bfa7dd90fe61800c00e"
  3337. },
  3338. "dist": {
  3339. "type": "zip",
  3340. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/677ae5e892b081e71a665bfa7dd90fe61800c00e",
  3341. "reference": "677ae5e892b081e71a665bfa7dd90fe61800c00e",
  3342. "shasum": "",
  3343. "mirrors": [
  3344. {
  3345. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3346. "preferred": true
  3347. }
  3348. ]
  3349. },
  3350. "require": {
  3351. "php": "^5.5.9|>=7.0.8",
  3352. "symfony/polyfill-mbstring": "~1.1",
  3353. "symfony/polyfill-php70": "~1.6"
  3354. },
  3355. "require-dev": {
  3356. "symfony/expression-language": "~2.8|~3.0|~4.0"
  3357. },
  3358. "type": "library",
  3359. "extra": {
  3360. "branch-alias": {
  3361. "dev-master": "3.4-dev"
  3362. }
  3363. },
  3364. "autoload": {
  3365. "psr-4": {
  3366. "Symfony\\Component\\HttpFoundation\\": ""
  3367. },
  3368. "exclude-from-classmap": [
  3369. "/Tests/"
  3370. ]
  3371. },
  3372. "notification-url": "https://packagist.org/downloads/",
  3373. "license": [
  3374. "MIT"
  3375. ],
  3376. "authors": [
  3377. {
  3378. "name": "Fabien Potencier",
  3379. "email": "fabien@symfony.com"
  3380. },
  3381. {
  3382. "name": "Symfony Community",
  3383. "homepage": "https://symfony.com/contributors"
  3384. }
  3385. ],
  3386. "description": "Symfony HttpFoundation Component",
  3387. "homepage": "https://symfony.com",
  3388. "time": "2019-05-27T05:50:24+00:00"
  3389. },
  3390. {
  3391. "name": "symfony/polyfill-intl-idn",
  3392. "version": "v1.18.1",
  3393. "source": {
  3394. "type": "git",
  3395. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3396. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251"
  3397. },
  3398. "dist": {
  3399. "type": "zip",
  3400. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  3401. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  3402. "shasum": "",
  3403. "mirrors": [
  3404. {
  3405. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3406. "preferred": true
  3407. }
  3408. ]
  3409. },
  3410. "require": {
  3411. "php": ">=5.3.3",
  3412. "symfony/polyfill-intl-normalizer": "^1.10",
  3413. "symfony/polyfill-php70": "^1.10",
  3414. "symfony/polyfill-php72": "^1.10"
  3415. },
  3416. "suggest": {
  3417. "ext-intl": "For best performance"
  3418. },
  3419. "type": "library",
  3420. "extra": {
  3421. "branch-alias": {
  3422. "dev-master": "1.18-dev"
  3423. },
  3424. "thanks": {
  3425. "name": "symfony/polyfill",
  3426. "url": "https://github.com/symfony/polyfill"
  3427. }
  3428. },
  3429. "autoload": {
  3430. "psr-4": {
  3431. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3432. },
  3433. "files": [
  3434. "bootstrap.php"
  3435. ]
  3436. },
  3437. "notification-url": "https://packagist.org/downloads/",
  3438. "license": [
  3439. "MIT"
  3440. ],
  3441. "authors": [
  3442. {
  3443. "name": "Laurent Bassin",
  3444. "email": "laurent@bassin.info"
  3445. },
  3446. {
  3447. "name": "Trevor Rowbotham",
  3448. "email": "trevor.rowbotham@pm.me"
  3449. },
  3450. {
  3451. "name": "Symfony Community",
  3452. "homepage": "https://symfony.com/contributors"
  3453. }
  3454. ],
  3455. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3456. "homepage": "https://symfony.com",
  3457. "keywords": [
  3458. "compatibility",
  3459. "idn",
  3460. "intl",
  3461. "polyfill",
  3462. "portable",
  3463. "shim"
  3464. ],
  3465. "time": "2020-08-04T06:02:08+00:00"
  3466. },
  3467. {
  3468. "name": "symfony/polyfill-intl-normalizer",
  3469. "version": "v1.18.1",
  3470. "source": {
  3471. "type": "git",
  3472. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3473. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e"
  3474. },
  3475. "dist": {
  3476. "type": "zip",
  3477. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  3478. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  3479. "shasum": "",
  3480. "mirrors": [
  3481. {
  3482. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3483. "preferred": true
  3484. }
  3485. ]
  3486. },
  3487. "require": {
  3488. "php": ">=5.3.3"
  3489. },
  3490. "suggest": {
  3491. "ext-intl": "For best performance"
  3492. },
  3493. "type": "library",
  3494. "extra": {
  3495. "branch-alias": {
  3496. "dev-master": "1.18-dev"
  3497. },
  3498. "thanks": {
  3499. "name": "symfony/polyfill",
  3500. "url": "https://github.com/symfony/polyfill"
  3501. }
  3502. },
  3503. "autoload": {
  3504. "psr-4": {
  3505. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3506. },
  3507. "files": [
  3508. "bootstrap.php"
  3509. ],
  3510. "classmap": [
  3511. "Resources/stubs"
  3512. ]
  3513. },
  3514. "notification-url": "https://packagist.org/downloads/",
  3515. "license": [
  3516. "MIT"
  3517. ],
  3518. "authors": [
  3519. {
  3520. "name": "Nicolas Grekas",
  3521. "email": "p@tchwork.com"
  3522. },
  3523. {
  3524. "name": "Symfony Community",
  3525. "homepage": "https://symfony.com/contributors"
  3526. }
  3527. ],
  3528. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3529. "homepage": "https://symfony.com",
  3530. "keywords": [
  3531. "compatibility",
  3532. "intl",
  3533. "normalizer",
  3534. "polyfill",
  3535. "portable",
  3536. "shim"
  3537. ],
  3538. "time": "2020-07-14T12:35:20+00:00"
  3539. },
  3540. {
  3541. "name": "symfony/polyfill-mbstring",
  3542. "version": "v1.11.0",
  3543. "source": {
  3544. "type": "git",
  3545. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3546. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  3547. },
  3548. "dist": {
  3549. "type": "zip",
  3550. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  3551. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  3552. "shasum": "",
  3553. "mirrors": [
  3554. {
  3555. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3556. "preferred": true
  3557. }
  3558. ]
  3559. },
  3560. "require": {
  3561. "php": ">=5.3.3"
  3562. },
  3563. "suggest": {
  3564. "ext-mbstring": "For best performance"
  3565. },
  3566. "type": "library",
  3567. "extra": {
  3568. "branch-alias": {
  3569. "dev-master": "1.11-dev"
  3570. }
  3571. },
  3572. "autoload": {
  3573. "psr-4": {
  3574. "Symfony\\Polyfill\\Mbstring\\": ""
  3575. },
  3576. "files": [
  3577. "bootstrap.php"
  3578. ]
  3579. },
  3580. "notification-url": "https://packagist.org/downloads/",
  3581. "license": [
  3582. "MIT"
  3583. ],
  3584. "authors": [
  3585. {
  3586. "name": "Nicolas Grekas",
  3587. "email": "p@tchwork.com"
  3588. },
  3589. {
  3590. "name": "Symfony Community",
  3591. "homepage": "https://symfony.com/contributors"
  3592. }
  3593. ],
  3594. "description": "Symfony polyfill for the Mbstring extension",
  3595. "homepage": "https://symfony.com",
  3596. "keywords": [
  3597. "compatibility",
  3598. "mbstring",
  3599. "polyfill",
  3600. "portable",
  3601. "shim"
  3602. ],
  3603. "time": "2019-02-06T07:57:58+00:00"
  3604. },
  3605. {
  3606. "name": "symfony/polyfill-php70",
  3607. "version": "v1.11.0",
  3608. "source": {
  3609. "type": "git",
  3610. "url": "https://github.com/symfony/polyfill-php70.git",
  3611. "reference": "bc4858fb611bda58719124ca079baff854149c89"
  3612. },
  3613. "dist": {
  3614. "type": "zip",
  3615. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/bc4858fb611bda58719124ca079baff854149c89",
  3616. "reference": "bc4858fb611bda58719124ca079baff854149c89",
  3617. "shasum": "",
  3618. "mirrors": [
  3619. {
  3620. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3621. "preferred": true
  3622. }
  3623. ]
  3624. },
  3625. "require": {
  3626. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  3627. "php": ">=5.3.3"
  3628. },
  3629. "type": "library",
  3630. "extra": {
  3631. "branch-alias": {
  3632. "dev-master": "1.11-dev"
  3633. }
  3634. },
  3635. "autoload": {
  3636. "psr-4": {
  3637. "Symfony\\Polyfill\\Php70\\": ""
  3638. },
  3639. "files": [
  3640. "bootstrap.php"
  3641. ],
  3642. "classmap": [
  3643. "Resources/stubs"
  3644. ]
  3645. },
  3646. "notification-url": "https://packagist.org/downloads/",
  3647. "license": [
  3648. "MIT"
  3649. ],
  3650. "authors": [
  3651. {
  3652. "name": "Nicolas Grekas",
  3653. "email": "p@tchwork.com"
  3654. },
  3655. {
  3656. "name": "Symfony Community",
  3657. "homepage": "https://symfony.com/contributors"
  3658. }
  3659. ],
  3660. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  3661. "homepage": "https://symfony.com",
  3662. "keywords": [
  3663. "compatibility",
  3664. "polyfill",
  3665. "portable",
  3666. "shim"
  3667. ],
  3668. "time": "2019-02-06T07:57:58+00:00"
  3669. },
  3670. {
  3671. "name": "symfony/polyfill-php72",
  3672. "version": "v1.11.0",
  3673. "source": {
  3674. "type": "git",
  3675. "url": "https://github.com/symfony/polyfill-php72.git",
  3676. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c"
  3677. },
  3678. "dist": {
  3679. "type": "zip",
  3680. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  3681. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  3682. "shasum": "",
  3683. "mirrors": [
  3684. {
  3685. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3686. "preferred": true
  3687. }
  3688. ]
  3689. },
  3690. "require": {
  3691. "php": ">=5.3.3"
  3692. },
  3693. "type": "library",
  3694. "extra": {
  3695. "branch-alias": {
  3696. "dev-master": "1.11-dev"
  3697. }
  3698. },
  3699. "autoload": {
  3700. "psr-4": {
  3701. "Symfony\\Polyfill\\Php72\\": ""
  3702. },
  3703. "files": [
  3704. "bootstrap.php"
  3705. ]
  3706. },
  3707. "notification-url": "https://packagist.org/downloads/",
  3708. "license": [
  3709. "MIT"
  3710. ],
  3711. "authors": [
  3712. {
  3713. "name": "Nicolas Grekas",
  3714. "email": "p@tchwork.com"
  3715. },
  3716. {
  3717. "name": "Symfony Community",
  3718. "homepage": "https://symfony.com/contributors"
  3719. }
  3720. ],
  3721. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3722. "homepage": "https://symfony.com",
  3723. "keywords": [
  3724. "compatibility",
  3725. "polyfill",
  3726. "portable",
  3727. "shim"
  3728. ],
  3729. "time": "2019-02-06T07:57:58+00:00"
  3730. },
  3731. {
  3732. "name": "symfony/process",
  3733. "version": "v4.3.2",
  3734. "source": {
  3735. "type": "git",
  3736. "url": "https://github.com/symfony/process.git",
  3737. "reference": "856d35814cf287480465bb7a6c413bb7f5f5e69c"
  3738. },
  3739. "dist": {
  3740. "type": "zip",
  3741. "url": "https://api.github.com/repos/symfony/process/zipball/856d35814cf287480465bb7a6c413bb7f5f5e69c",
  3742. "reference": "856d35814cf287480465bb7a6c413bb7f5f5e69c",
  3743. "shasum": "",
  3744. "mirrors": [
  3745. {
  3746. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3747. "preferred": true
  3748. }
  3749. ]
  3750. },
  3751. "require": {
  3752. "php": "^7.1.3"
  3753. },
  3754. "type": "library",
  3755. "extra": {
  3756. "branch-alias": {
  3757. "dev-master": "4.3-dev"
  3758. }
  3759. },
  3760. "autoload": {
  3761. "psr-4": {
  3762. "Symfony\\Component\\Process\\": ""
  3763. },
  3764. "exclude-from-classmap": [
  3765. "/Tests/"
  3766. ]
  3767. },
  3768. "notification-url": "https://packagist.org/downloads/",
  3769. "license": [
  3770. "MIT"
  3771. ],
  3772. "authors": [
  3773. {
  3774. "name": "Fabien Potencier",
  3775. "email": "fabien@symfony.com"
  3776. },
  3777. {
  3778. "name": "Symfony Community",
  3779. "homepage": "https://symfony.com/contributors"
  3780. }
  3781. ],
  3782. "description": "Symfony Process Component",
  3783. "homepage": "https://symfony.com",
  3784. "time": "2019-05-30T16:10:05+00:00"
  3785. },
  3786. {
  3787. "name": "symfony/psr-http-message-bridge",
  3788. "version": "v1.2.0",
  3789. "source": {
  3790. "type": "git",
  3791. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  3792. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad"
  3793. },
  3794. "dist": {
  3795. "type": "zip",
  3796. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  3797. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  3798. "shasum": "",
  3799. "mirrors": [
  3800. {
  3801. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3802. "preferred": true
  3803. }
  3804. ]
  3805. },
  3806. "require": {
  3807. "php": "^7.1",
  3808. "psr/http-message": "^1.0",
  3809. "symfony/http-foundation": "^3.4 || ^4.0"
  3810. },
  3811. "require-dev": {
  3812. "nyholm/psr7": "^1.1",
  3813. "symfony/phpunit-bridge": "^3.4.20 || ^4.0",
  3814. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  3815. },
  3816. "suggest": {
  3817. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  3818. },
  3819. "type": "symfony-bridge",
  3820. "extra": {
  3821. "branch-alias": {
  3822. "dev-master": "1.2-dev"
  3823. }
  3824. },
  3825. "autoload": {
  3826. "psr-4": {
  3827. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  3828. },
  3829. "exclude-from-classmap": [
  3830. "/Tests/"
  3831. ]
  3832. },
  3833. "notification-url": "https://packagist.org/downloads/",
  3834. "license": [
  3835. "MIT"
  3836. ],
  3837. "authors": [
  3838. {
  3839. "name": "Symfony Community",
  3840. "homepage": "http://symfony.com/contributors"
  3841. },
  3842. {
  3843. "name": "Fabien Potencier",
  3844. "email": "fabien@symfony.com"
  3845. }
  3846. ],
  3847. "description": "PSR HTTP message bridge",
  3848. "homepage": "http://symfony.com",
  3849. "keywords": [
  3850. "http",
  3851. "http-message",
  3852. "psr-17",
  3853. "psr-7"
  3854. ],
  3855. "time": "2019-03-11T18:22:33+00:00"
  3856. },
  3857. {
  3858. "name": "symfony/translation",
  3859. "version": "v4.3.2",
  3860. "source": {
  3861. "type": "git",
  3862. "url": "https://github.com/symfony/translation.git",
  3863. "reference": "934ab1d18545149e012aa898cf02e9f23790f7a0"
  3864. },
  3865. "dist": {
  3866. "type": "zip",
  3867. "url": "https://api.github.com/repos/symfony/translation/zipball/934ab1d18545149e012aa898cf02e9f23790f7a0",
  3868. "reference": "934ab1d18545149e012aa898cf02e9f23790f7a0",
  3869. "shasum": "",
  3870. "mirrors": [
  3871. {
  3872. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3873. "preferred": true
  3874. }
  3875. ]
  3876. },
  3877. "require": {
  3878. "php": "^7.1.3",
  3879. "symfony/polyfill-mbstring": "~1.0",
  3880. "symfony/translation-contracts": "^1.1.2"
  3881. },
  3882. "conflict": {
  3883. "symfony/config": "<3.4",
  3884. "symfony/dependency-injection": "<3.4",
  3885. "symfony/yaml": "<3.4"
  3886. },
  3887. "provide": {
  3888. "symfony/translation-implementation": "1.0"
  3889. },
  3890. "require-dev": {
  3891. "psr/log": "~1.0",
  3892. "symfony/config": "~3.4|~4.0",
  3893. "symfony/console": "~3.4|~4.0",
  3894. "symfony/dependency-injection": "~3.4|~4.0",
  3895. "symfony/finder": "~2.8|~3.0|~4.0",
  3896. "symfony/http-kernel": "~3.4|~4.0",
  3897. "symfony/intl": "~3.4|~4.0",
  3898. "symfony/service-contracts": "^1.1.2",
  3899. "symfony/var-dumper": "~3.4|~4.0",
  3900. "symfony/yaml": "~3.4|~4.0"
  3901. },
  3902. "suggest": {
  3903. "psr/log-implementation": "To use logging capability in translator",
  3904. "symfony/config": "",
  3905. "symfony/yaml": ""
  3906. },
  3907. "type": "library",
  3908. "extra": {
  3909. "branch-alias": {
  3910. "dev-master": "4.3-dev"
  3911. }
  3912. },
  3913. "autoload": {
  3914. "psr-4": {
  3915. "Symfony\\Component\\Translation\\": ""
  3916. },
  3917. "exclude-from-classmap": [
  3918. "/Tests/"
  3919. ]
  3920. },
  3921. "notification-url": "https://packagist.org/downloads/",
  3922. "license": [
  3923. "MIT"
  3924. ],
  3925. "authors": [
  3926. {
  3927. "name": "Fabien Potencier",
  3928. "email": "fabien@symfony.com"
  3929. },
  3930. {
  3931. "name": "Symfony Community",
  3932. "homepage": "https://symfony.com/contributors"
  3933. }
  3934. ],
  3935. "description": "Symfony Translation Component",
  3936. "homepage": "https://symfony.com",
  3937. "time": "2019-06-13T11:03:18+00:00"
  3938. },
  3939. {
  3940. "name": "symfony/translation-contracts",
  3941. "version": "v1.1.5",
  3942. "source": {
  3943. "type": "git",
  3944. "url": "https://github.com/symfony/translation-contracts.git",
  3945. "reference": "cb4b18ad7b92a26e83b65dde940fab78339e6f3c"
  3946. },
  3947. "dist": {
  3948. "type": "zip",
  3949. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/cb4b18ad7b92a26e83b65dde940fab78339e6f3c",
  3950. "reference": "cb4b18ad7b92a26e83b65dde940fab78339e6f3c",
  3951. "shasum": "",
  3952. "mirrors": [
  3953. {
  3954. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3955. "preferred": true
  3956. }
  3957. ]
  3958. },
  3959. "require": {
  3960. "php": "^7.1.3"
  3961. },
  3962. "suggest": {
  3963. "symfony/translation-implementation": ""
  3964. },
  3965. "type": "library",
  3966. "extra": {
  3967. "branch-alias": {
  3968. "dev-master": "1.1-dev"
  3969. }
  3970. },
  3971. "autoload": {
  3972. "psr-4": {
  3973. "Symfony\\Contracts\\Translation\\": ""
  3974. }
  3975. },
  3976. "notification-url": "https://packagist.org/downloads/",
  3977. "license": [
  3978. "MIT"
  3979. ],
  3980. "authors": [
  3981. {
  3982. "name": "Nicolas Grekas",
  3983. "email": "p@tchwork.com"
  3984. },
  3985. {
  3986. "name": "Symfony Community",
  3987. "homepage": "https://symfony.com/contributors"
  3988. }
  3989. ],
  3990. "description": "Generic abstractions related to translation",
  3991. "homepage": "https://symfony.com",
  3992. "keywords": [
  3993. "abstractions",
  3994. "contracts",
  3995. "decoupling",
  3996. "interfaces",
  3997. "interoperability",
  3998. "standards"
  3999. ],
  4000. "time": "2019-06-13T11:15:36+00:00"
  4001. },
  4002. {
  4003. "name": "symfony/var-dumper",
  4004. "version": "v4.3.1",
  4005. "source": {
  4006. "type": "git",
  4007. "url": "https://github.com/symfony/var-dumper.git",
  4008. "reference": "f974f448154928d2b5fb7c412bd23b81d063f34b"
  4009. },
  4010. "dist": {
  4011. "type": "zip",
  4012. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f974f448154928d2b5fb7c412bd23b81d063f34b",
  4013. "reference": "f974f448154928d2b5fb7c412bd23b81d063f34b",
  4014. "shasum": "",
  4015. "mirrors": [
  4016. {
  4017. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4018. "preferred": true
  4019. }
  4020. ]
  4021. },
  4022. "require": {
  4023. "php": "^7.1.3",
  4024. "symfony/polyfill-mbstring": "~1.0",
  4025. "symfony/polyfill-php72": "~1.5"
  4026. },
  4027. "conflict": {
  4028. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4029. "symfony/console": "<3.4"
  4030. },
  4031. "require-dev": {
  4032. "ext-iconv": "*",
  4033. "symfony/console": "~3.4|~4.0",
  4034. "symfony/process": "~3.4|~4.0",
  4035. "twig/twig": "~1.34|~2.4"
  4036. },
  4037. "suggest": {
  4038. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4039. "ext-intl": "To show region name in time zone dump",
  4040. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4041. },
  4042. "bin": [
  4043. "Resources/bin/var-dump-server"
  4044. ],
  4045. "type": "library",
  4046. "extra": {
  4047. "branch-alias": {
  4048. "dev-master": "4.3-dev"
  4049. }
  4050. },
  4051. "autoload": {
  4052. "files": [
  4053. "Resources/functions/dump.php"
  4054. ],
  4055. "psr-4": {
  4056. "Symfony\\Component\\VarDumper\\": ""
  4057. },
  4058. "exclude-from-classmap": [
  4059. "/Tests/"
  4060. ]
  4061. },
  4062. "notification-url": "https://packagist.org/downloads/",
  4063. "license": [
  4064. "MIT"
  4065. ],
  4066. "authors": [
  4067. {
  4068. "name": "Nicolas Grekas",
  4069. "email": "p@tchwork.com"
  4070. },
  4071. {
  4072. "name": "Symfony Community",
  4073. "homepage": "https://symfony.com/contributors"
  4074. }
  4075. ],
  4076. "description": "Symfony mechanism for exploring and dumping PHP variables",
  4077. "homepage": "https://symfony.com",
  4078. "keywords": [
  4079. "debug",
  4080. "dump"
  4081. ],
  4082. "time": "2019-06-05T02:08:12+00:00"
  4083. },
  4084. {
  4085. "name": "topthink/framework",
  4086. "version": "v6.0.9",
  4087. "source": {
  4088. "type": "git",
  4089. "url": "https://github.com/top-think/framework.git",
  4090. "reference": "db8fe22520a9660dd5e4c87e304034ac49e39270"
  4091. },
  4092. "dist": {
  4093. "type": "zip",
  4094. "url": "https://api.github.com/repos/top-think/framework/zipball/db8fe22520a9660dd5e4c87e304034ac49e39270",
  4095. "reference": "db8fe22520a9660dd5e4c87e304034ac49e39270",
  4096. "shasum": "",
  4097. "mirrors": [
  4098. {
  4099. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4100. "preferred": true
  4101. }
  4102. ]
  4103. },
  4104. "require": {
  4105. "ext-json": "*",
  4106. "ext-mbstring": "*",
  4107. "league/flysystem": "^1.0",
  4108. "league/flysystem-cached-adapter": "^1.0",
  4109. "php": ">=7.1.0",
  4110. "psr/container": "~1.0",
  4111. "psr/log": "~1.0",
  4112. "psr/simple-cache": "^1.0",
  4113. "topthink/think-helper": "^3.1.1",
  4114. "topthink/think-orm": "^2.0"
  4115. },
  4116. "require-dev": {
  4117. "mikey179/vfsstream": "^1.6",
  4118. "mockery/mockery": "^1.2",
  4119. "phpunit/phpunit": "^7.0"
  4120. },
  4121. "type": "library",
  4122. "autoload": {
  4123. "files": [],
  4124. "psr-4": {
  4125. "think\\": "src/think/"
  4126. }
  4127. },
  4128. "notification-url": "https://packagist.org/downloads/",
  4129. "license": [
  4130. "Apache-2.0"
  4131. ],
  4132. "authors": [
  4133. {
  4134. "name": "liu21st",
  4135. "email": "liu21st@gmail.com"
  4136. },
  4137. {
  4138. "name": "yunwuxin",
  4139. "email": "448901948@qq.com"
  4140. }
  4141. ],
  4142. "description": "The ThinkPHP Framework.",
  4143. "homepage": "http://thinkphp.cn/",
  4144. "keywords": [
  4145. "framework",
  4146. "orm",
  4147. "thinkphp"
  4148. ],
  4149. "time": "2021-01-25T14:48:29+00:00"
  4150. },
  4151. {
  4152. "name": "topthink/think-cache",
  4153. "version": "v2.0.6",
  4154. "source": {
  4155. "type": "git",
  4156. "url": "https://github.com/top-think/think-cache.git",
  4157. "reference": "75a56b24affc65b51688fd89ada48c102757fd74"
  4158. },
  4159. "dist": {
  4160. "type": "zip",
  4161. "url": "https://api.github.com/repos/top-think/think-cache/zipball/75a56b24affc65b51688fd89ada48c102757fd74",
  4162. "reference": "75a56b24affc65b51688fd89ada48c102757fd74",
  4163. "shasum": "",
  4164. "mirrors": [
  4165. {
  4166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4167. "preferred": true
  4168. }
  4169. ]
  4170. },
  4171. "require": {
  4172. "opis/closure": "^3.1",
  4173. "php": ">=7.1.0",
  4174. "psr/cache": "~1.0",
  4175. "psr/simple-cache": "^1.0",
  4176. "topthink/think-container": "~2.0"
  4177. },
  4178. "type": "library",
  4179. "autoload": {
  4180. "psr-4": {
  4181. "think\\": "src"
  4182. },
  4183. "files": []
  4184. },
  4185. "notification-url": "https://packagist.org/downloads/",
  4186. "license": [
  4187. "Apache-2.0"
  4188. ],
  4189. "authors": [
  4190. {
  4191. "name": "liu21st",
  4192. "email": "liu21st@gmail.com"
  4193. }
  4194. ],
  4195. "description": "Cache Manager",
  4196. "time": "2019-07-07T14:34:35+00:00"
  4197. },
  4198. {
  4199. "name": "topthink/think-captcha",
  4200. "version": "v3.0.3",
  4201. "source": {
  4202. "type": "git",
  4203. "url": "https://github.com/top-think/think-captcha.git",
  4204. "reference": "9fc0c627d773f6a54a8dd142ebf358f746557a48"
  4205. },
  4206. "dist": {
  4207. "type": "zip",
  4208. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/9fc0c627d773f6a54a8dd142ebf358f746557a48",
  4209. "reference": "9fc0c627d773f6a54a8dd142ebf358f746557a48",
  4210. "shasum": "",
  4211. "mirrors": [
  4212. {
  4213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4214. "preferred": true
  4215. }
  4216. ]
  4217. },
  4218. "require": {
  4219. "topthink/framework": "^6.0.0"
  4220. },
  4221. "type": "library",
  4222. "extra": {
  4223. "think": {
  4224. "services": [
  4225. "think\\captcha\\CaptchaService"
  4226. ]
  4227. }
  4228. },
  4229. "autoload": {
  4230. "psr-4": {
  4231. "think\\captcha\\": "src/"
  4232. },
  4233. "files": [
  4234. "src/helper.php"
  4235. ]
  4236. },
  4237. "notification-url": "https://packagist.org/downloads/",
  4238. "license": [
  4239. "Apache-2.0"
  4240. ],
  4241. "authors": [
  4242. {
  4243. "name": "yunwuxin",
  4244. "email": "448901948@qq.com"
  4245. }
  4246. ],
  4247. "description": "captcha package for thinkphp",
  4248. "time": "2019-06-06T07:16:01+00:00"
  4249. },
  4250. {
  4251. "name": "topthink/think-container",
  4252. "version": "v2.0.3",
  4253. "source": {
  4254. "type": "git",
  4255. "url": "https://github.com/top-think/think-container.git",
  4256. "reference": "8ae724dccc8f6241229db29ef757a22934b76800"
  4257. },
  4258. "dist": {
  4259. "type": "zip",
  4260. "url": "https://api.github.com/repos/top-think/think-container/zipball/8ae724dccc8f6241229db29ef757a22934b76800",
  4261. "reference": "8ae724dccc8f6241229db29ef757a22934b76800",
  4262. "shasum": "",
  4263. "mirrors": [
  4264. {
  4265. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4266. "preferred": true
  4267. }
  4268. ]
  4269. },
  4270. "require": {
  4271. "php": ">=7.1.0",
  4272. "psr/container": "~1.0",
  4273. "topthink/think-helper": "^3.1"
  4274. },
  4275. "require-dev": {
  4276. "phpunit/phpunit": "^7.0"
  4277. },
  4278. "type": "library",
  4279. "autoload": {
  4280. "psr-4": {
  4281. "think\\": "src"
  4282. },
  4283. "files": []
  4284. },
  4285. "notification-url": "https://packagist.org/downloads/",
  4286. "license": [
  4287. "Apache-2.0"
  4288. ],
  4289. "authors": [
  4290. {
  4291. "name": "liu21st",
  4292. "email": "liu21st@gmail.com"
  4293. }
  4294. ],
  4295. "description": "PHP Container & Facade Manager",
  4296. "time": "2019-07-10T09:09:11+00:00"
  4297. },
  4298. {
  4299. "name": "topthink/think-factory",
  4300. "version": "v1.0.1",
  4301. "source": {
  4302. "type": "git",
  4303. "url": "https://github.com/top-think/think-factory.git",
  4304. "reference": "b8080a6472aae1cff47ceb8c30feec3c2835364b"
  4305. },
  4306. "dist": {
  4307. "type": "zip",
  4308. "url": "https://api.github.com/repos/top-think/think-factory/zipball/b8080a6472aae1cff47ceb8c30feec3c2835364b",
  4309. "reference": "b8080a6472aae1cff47ceb8c30feec3c2835364b",
  4310. "shasum": "",
  4311. "mirrors": [
  4312. {
  4313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4314. "preferred": true
  4315. }
  4316. ]
  4317. },
  4318. "require": {
  4319. "topthink/framework": "^6.0.0",
  4320. "topthink/think-helper": "^3.0.0"
  4321. },
  4322. "type": "library",
  4323. "autoload": {
  4324. "psr-4": {
  4325. "think\\": "src"
  4326. }
  4327. },
  4328. "notification-url": "https://packagist.org/downloads/",
  4329. "license": [
  4330. "Apache-2.0"
  4331. ],
  4332. "authors": [
  4333. {
  4334. "name": "yunwuxin",
  4335. "email": "448901948@qq.com"
  4336. }
  4337. ],
  4338. "abandoned": true,
  4339. "time": "2019-04-15T06:55:28+00:00"
  4340. },
  4341. {
  4342. "name": "topthink/think-helper",
  4343. "version": "v3.1.4",
  4344. "source": {
  4345. "type": "git",
  4346. "url": "https://github.com/top-think/think-helper.git",
  4347. "reference": "c28d37743bda4a0455286ca85b17b5791d626e10"
  4348. },
  4349. "dist": {
  4350. "type": "zip",
  4351. "url": "https://api.github.com/repos/top-think/think-helper/zipball/c28d37743bda4a0455286ca85b17b5791d626e10",
  4352. "reference": "c28d37743bda4a0455286ca85b17b5791d626e10",
  4353. "shasum": "",
  4354. "mirrors": [
  4355. {
  4356. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4357. "preferred": true
  4358. }
  4359. ]
  4360. },
  4361. "require": {
  4362. "php": ">=7.1.0"
  4363. },
  4364. "type": "library",
  4365. "autoload": {
  4366. "psr-4": {
  4367. "think\\": "src"
  4368. },
  4369. "files": [
  4370. "src/helper.php"
  4371. ]
  4372. },
  4373. "notification-url": "https://packagist.org/downloads/",
  4374. "license": [
  4375. "Apache-2.0"
  4376. ],
  4377. "authors": [
  4378. {
  4379. "name": "yunwuxin",
  4380. "email": "448901948@qq.com"
  4381. }
  4382. ],
  4383. "description": "The ThinkPHP6 Helper Package",
  4384. "time": "2019-11-08T08:01:10+00:00"
  4385. },
  4386. {
  4387. "name": "topthink/think-image",
  4388. "version": "v1.0.7",
  4389. "source": {
  4390. "type": "git",
  4391. "url": "https://github.com/top-think/think-image.git",
  4392. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  4393. },
  4394. "dist": {
  4395. "type": "zip",
  4396. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  4397. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  4398. "shasum": "",
  4399. "mirrors": [
  4400. {
  4401. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4402. "preferred": true
  4403. }
  4404. ]
  4405. },
  4406. "require": {
  4407. "ext-gd": "*"
  4408. },
  4409. "require-dev": {
  4410. "phpunit/phpunit": "4.8.*",
  4411. "topthink/framework": "^5.0"
  4412. },
  4413. "type": "library",
  4414. "autoload": {
  4415. "psr-4": {
  4416. "think\\": "src"
  4417. }
  4418. },
  4419. "notification-url": "https://packagist.org/downloads/",
  4420. "license": [
  4421. "Apache-2.0"
  4422. ],
  4423. "authors": [
  4424. {
  4425. "name": "yunwuxin",
  4426. "email": "448901948@qq.com"
  4427. }
  4428. ],
  4429. "description": "The ThinkPHP5 Image Package",
  4430. "time": "2016-09-29T06:05:43+00:00"
  4431. },
  4432. {
  4433. "name": "topthink/think-log",
  4434. "version": "v2.0.1",
  4435. "source": {
  4436. "type": "git",
  4437. "url": "https://github.com/top-think/think-log.git",
  4438. "reference": "de0bf6644228b39f03239cdc03251040d34a7b07"
  4439. },
  4440. "dist": {
  4441. "type": "zip",
  4442. "url": "https://api.github.com/repos/top-think/think-log/zipball/de0bf6644228b39f03239cdc03251040d34a7b07",
  4443. "reference": "de0bf6644228b39f03239cdc03251040d34a7b07",
  4444. "shasum": "",
  4445. "mirrors": [
  4446. {
  4447. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4448. "preferred": true
  4449. }
  4450. ]
  4451. },
  4452. "require": {
  4453. "php": ">=7.1.0",
  4454. "psr/log": "~1.0",
  4455. "topthink/think-container": "^2.0"
  4456. },
  4457. "type": "library",
  4458. "autoload": {
  4459. "psr-4": {
  4460. "think\\": "src"
  4461. }
  4462. },
  4463. "notification-url": "https://packagist.org/downloads/",
  4464. "license": [
  4465. "Apache-2.0"
  4466. ],
  4467. "authors": [
  4468. {
  4469. "name": "liu21st",
  4470. "email": "liu21st@gmail.com"
  4471. }
  4472. ],
  4473. "description": "think log",
  4474. "time": "2019-07-07T14:47:46+00:00"
  4475. },
  4476. {
  4477. "name": "topthink/think-migration",
  4478. "version": "v3.0.3",
  4479. "source": {
  4480. "type": "git",
  4481. "url": "https://github.com/top-think/think-migration.git",
  4482. "reference": "5717d9e5f3ea745f6dbfd1e30b4402aaadff9a79"
  4483. },
  4484. "dist": {
  4485. "type": "zip",
  4486. "url": "https://api.github.com/repos/top-think/think-migration/zipball/5717d9e5f3ea745f6dbfd1e30b4402aaadff9a79",
  4487. "reference": "5717d9e5f3ea745f6dbfd1e30b4402aaadff9a79",
  4488. "shasum": "",
  4489. "mirrors": [
  4490. {
  4491. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4492. "preferred": true
  4493. }
  4494. ]
  4495. },
  4496. "require": {
  4497. "topthink/framework": "^6.0.0",
  4498. "topthink/think-helper": "^3.0.3"
  4499. },
  4500. "require-dev": {
  4501. "fzaninotto/faker": "^1.8"
  4502. },
  4503. "suggest": {
  4504. "fzaninotto/faker": "Required to use the factory builder (^1.8)."
  4505. },
  4506. "type": "library",
  4507. "extra": {
  4508. "think": {
  4509. "services": [
  4510. "think\\migration\\Service"
  4511. ]
  4512. }
  4513. },
  4514. "autoload": {
  4515. "psr-4": {
  4516. "Phinx\\": "phinx/src/Phinx",
  4517. "think\\migration\\": "src"
  4518. }
  4519. },
  4520. "notification-url": "https://packagist.org/downloads/",
  4521. "license": [
  4522. "Apache-2.0"
  4523. ],
  4524. "authors": [
  4525. {
  4526. "name": "yunwuxin",
  4527. "email": "448901948@qq.com"
  4528. }
  4529. ],
  4530. "time": "2020-12-07T05:54:22+00:00"
  4531. },
  4532. {
  4533. "name": "topthink/think-orm",
  4534. "version": "v2.0.36",
  4535. "source": {
  4536. "type": "git",
  4537. "url": "https://github.com/top-think/think-orm.git",
  4538. "reference": "f48dc09050f25029d41a66bfc9c3c403e4f82024"
  4539. },
  4540. "dist": {
  4541. "type": "zip",
  4542. "url": "https://api.github.com/repos/top-think/think-orm/zipball/f48dc09050f25029d41a66bfc9c3c403e4f82024",
  4543. "reference": "f48dc09050f25029d41a66bfc9c3c403e4f82024",
  4544. "shasum": "",
  4545. "mirrors": [
  4546. {
  4547. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4548. "preferred": true
  4549. }
  4550. ]
  4551. },
  4552. "require": {
  4553. "ext-json": "*",
  4554. "php": ">=7.1.0",
  4555. "psr/log": "~1.0",
  4556. "psr/simple-cache": "^1.0",
  4557. "topthink/think-helper": "^3.1"
  4558. },
  4559. "type": "library",
  4560. "autoload": {
  4561. "psr-4": {
  4562. "think\\": "src"
  4563. },
  4564. "files": []
  4565. },
  4566. "notification-url": "https://packagist.org/downloads/",
  4567. "license": [
  4568. "Apache-2.0"
  4569. ],
  4570. "authors": [
  4571. {
  4572. "name": "liu21st",
  4573. "email": "liu21st@gmail.com"
  4574. }
  4575. ],
  4576. "description": "think orm",
  4577. "keywords": [
  4578. "database",
  4579. "orm"
  4580. ],
  4581. "time": "2021-01-12T09:08:52+00:00"
  4582. },
  4583. {
  4584. "name": "topthink/think-queue",
  4585. "version": "v3.0.2",
  4586. "source": {
  4587. "type": "git",
  4588. "url": "https://github.com/top-think/think-queue.git",
  4589. "reference": "c34b983abce9427fca7e30ac983b75041f436ad0"
  4590. },
  4591. "dist": {
  4592. "type": "zip",
  4593. "url": "https://api.github.com/repos/top-think/think-queue/zipball/c34b983abce9427fca7e30ac983b75041f436ad0",
  4594. "reference": "c34b983abce9427fca7e30ac983b75041f436ad0",
  4595. "shasum": "",
  4596. "mirrors": [
  4597. {
  4598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4599. "preferred": true
  4600. }
  4601. ]
  4602. },
  4603. "require": {
  4604. "nesbot/carbon": "^2.16",
  4605. "symfony/process": "^4.2",
  4606. "topthink/framework": "^6.0.0",
  4607. "topthink/think-factory": "^1.0.0",
  4608. "topthink/think-helper": "^3.0.4"
  4609. },
  4610. "require-dev": {
  4611. "mockery/mockery": "^1.2",
  4612. "phpunit/phpunit": "^6.2",
  4613. "topthink/think-migration": "^3.0.0"
  4614. },
  4615. "type": "library",
  4616. "extra": {
  4617. "think": {
  4618. "services": [
  4619. "think\\queue\\Service"
  4620. ],
  4621. "config": {
  4622. "queue": "src/config.php"
  4623. }
  4624. }
  4625. },
  4626. "autoload": {
  4627. "psr-4": {
  4628. "think\\": "src"
  4629. },
  4630. "files": [
  4631. "src/common.php"
  4632. ]
  4633. },
  4634. "notification-url": "https://packagist.org/downloads/",
  4635. "license": [
  4636. "Apache-2.0"
  4637. ],
  4638. "authors": [
  4639. {
  4640. "name": "yunwuxin",
  4641. "email": "448901948@qq.com"
  4642. }
  4643. ],
  4644. "description": "The ThinkPHP5 Queue Package",
  4645. "time": "2019-06-06T10:41:07+00:00"
  4646. },
  4647. {
  4648. "name": "topthink/think-swoole",
  4649. "version": "v4.0.3",
  4650. "source": {
  4651. "type": "git",
  4652. "url": "https://github.com/top-think/think-swoole.git",
  4653. "reference": "5ccbb5a570ea127810e1f857f630d9f1d3631c60"
  4654. },
  4655. "dist": {
  4656. "type": "zip",
  4657. "url": "https://api.github.com/repos/top-think/think-swoole/zipball/5ccbb5a570ea127810e1f857f630d9f1d3631c60",
  4658. "reference": "5ccbb5a570ea127810e1f857f630d9f1d3631c60",
  4659. "shasum": "",
  4660. "mirrors": [
  4661. {
  4662. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4663. "preferred": true
  4664. }
  4665. ]
  4666. },
  4667. "require": {
  4668. "ext-json": "*",
  4669. "ext-swoole": ">=4.4.8",
  4670. "nette/php-generator": "^3.2",
  4671. "open-smf/connection-pool": "~1.0",
  4672. "php": ">7.1",
  4673. "swoole/ide-helper": "^4.3",
  4674. "symfony/finder": "^4.3.2|^5.1",
  4675. "topthink/framework": "^6.0"
  4676. },
  4677. "require-dev": {
  4678. "symfony/var-dumper": "^4.3|^5.1",
  4679. "topthink/think-tracing": "^1.0"
  4680. },
  4681. "type": "library",
  4682. "extra": {
  4683. "think": {
  4684. "services": [
  4685. "think\\swoole\\Service"
  4686. ],
  4687. "config": {
  4688. "swoole": "src/config/swoole.php"
  4689. }
  4690. }
  4691. },
  4692. "autoload": {
  4693. "psr-4": {
  4694. "think\\swoole\\": "src"
  4695. },
  4696. "files": [
  4697. "src/helpers.php"
  4698. ]
  4699. },
  4700. "notification-url": "https://packagist.org/downloads/",
  4701. "license": [
  4702. "Apache-2.0"
  4703. ],
  4704. "authors": [
  4705. {
  4706. "name": "liu21st",
  4707. "email": "liu21st@gmail.com"
  4708. }
  4709. ],
  4710. "description": "Swoole extend for thinkphp",
  4711. "time": "2021-02-01T07:11:08+00:00"
  4712. },
  4713. {
  4714. "name": "topthink/think-template",
  4715. "version": "v2.0.7",
  4716. "source": {
  4717. "type": "git",
  4718. "url": "https://github.com/top-think/think-template.git",
  4719. "reference": "e98bdbb4a4c94b442f17dfceba81e0134d4fbd19"
  4720. },
  4721. "dist": {
  4722. "type": "zip",
  4723. "url": "https://api.github.com/repos/top-think/think-template/zipball/e98bdbb4a4c94b442f17dfceba81e0134d4fbd19",
  4724. "reference": "e98bdbb4a4c94b442f17dfceba81e0134d4fbd19",
  4725. "shasum": "",
  4726. "mirrors": [
  4727. {
  4728. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4729. "preferred": true
  4730. }
  4731. ]
  4732. },
  4733. "require": {
  4734. "php": ">=7.1.0",
  4735. "psr/simple-cache": "^1.0"
  4736. },
  4737. "type": "library",
  4738. "autoload": {
  4739. "psr-4": {
  4740. "think\\": "src"
  4741. }
  4742. },
  4743. "notification-url": "https://packagist.org/downloads/",
  4744. "license": [
  4745. "Apache-2.0"
  4746. ],
  4747. "authors": [
  4748. {
  4749. "name": "liu21st",
  4750. "email": "liu21st@gmail.com"
  4751. }
  4752. ],
  4753. "description": "the php template engine",
  4754. "time": "2019-09-20T15:31:04+00:00"
  4755. },
  4756. {
  4757. "name": "topthink/think-view",
  4758. "version": "v1.0.13",
  4759. "source": {
  4760. "type": "git",
  4761. "url": "https://github.com/top-think/think-view.git",
  4762. "reference": "90803b73f781db5d42619082c4597afc58b2d4c5"
  4763. },
  4764. "dist": {
  4765. "type": "zip",
  4766. "url": "https://api.github.com/repos/top-think/think-view/zipball/90803b73f781db5d42619082c4597afc58b2d4c5",
  4767. "reference": "90803b73f781db5d42619082c4597afc58b2d4c5",
  4768. "shasum": "",
  4769. "mirrors": [
  4770. {
  4771. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4772. "preferred": true
  4773. }
  4774. ]
  4775. },
  4776. "require": {
  4777. "php": ">=7.1.0",
  4778. "topthink/think-template": "^2.0"
  4779. },
  4780. "type": "library",
  4781. "autoload": {
  4782. "psr-4": {
  4783. "think\\view\\driver\\": "src"
  4784. }
  4785. },
  4786. "notification-url": "https://packagist.org/downloads/",
  4787. "license": [
  4788. "Apache-2.0"
  4789. ],
  4790. "authors": [
  4791. {
  4792. "name": "liu21st",
  4793. "email": "liu21st@gmail.com"
  4794. }
  4795. ],
  4796. "description": "thinkphp template driver",
  4797. "time": "2019-10-07T12:23:10+00:00"
  4798. },
  4799. {
  4800. "name": "workerman/channel",
  4801. "version": "v1.0.5",
  4802. "source": {
  4803. "type": "git",
  4804. "url": "https://github.com/walkor/Channel.git",
  4805. "reference": "0836a9a413c6e8425ee36307d95e2e49cc380f50"
  4806. },
  4807. "dist": {
  4808. "type": "zip",
  4809. "url": "https://api.github.com/repos/walkor/Channel/zipball/0836a9a413c6e8425ee36307d95e2e49cc380f50",
  4810. "reference": "0836a9a413c6e8425ee36307d95e2e49cc380f50",
  4811. "shasum": "",
  4812. "mirrors": [
  4813. {
  4814. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4815. "preferred": true
  4816. }
  4817. ]
  4818. },
  4819. "require": {
  4820. "workerman/workerman": ">=3.3.0"
  4821. },
  4822. "type": "library",
  4823. "autoload": {
  4824. "psr-4": {
  4825. "Channel\\": "./src"
  4826. }
  4827. },
  4828. "notification-url": "https://packagist.org/downloads/",
  4829. "license": [
  4830. "MIT"
  4831. ],
  4832. "homepage": "http://www.workerman.net",
  4833. "time": "2018-07-02T02:42:37+00:00"
  4834. },
  4835. {
  4836. "name": "workerman/workerman",
  4837. "version": "v3.5.19",
  4838. "source": {
  4839. "type": "git",
  4840. "url": "https://github.com/walkor/Workerman.git",
  4841. "reference": "4e5c24073b431fd950287efbfb5cc9b4c0fc7367"
  4842. },
  4843. "dist": {
  4844. "type": "zip",
  4845. "url": "https://api.github.com/repos/walkor/Workerman/zipball/4e5c24073b431fd950287efbfb5cc9b4c0fc7367",
  4846. "reference": "4e5c24073b431fd950287efbfb5cc9b4c0fc7367",
  4847. "shasum": "",
  4848. "mirrors": [
  4849. {
  4850. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4851. "preferred": true
  4852. }
  4853. ]
  4854. },
  4855. "require": {
  4856. "php": ">=5.3"
  4857. },
  4858. "suggest": {
  4859. "ext-event": "For better performance. "
  4860. },
  4861. "type": "library",
  4862. "autoload": {
  4863. "psr-4": {
  4864. "Workerman\\": "./"
  4865. }
  4866. },
  4867. "notification-url": "https://packagist.org/downloads/",
  4868. "license": [
  4869. "MIT"
  4870. ],
  4871. "authors": [
  4872. {
  4873. "name": "walkor",
  4874. "email": "walkor@workerman.net",
  4875. "homepage": "http://www.workerman.net",
  4876. "role": "Developer"
  4877. }
  4878. ],
  4879. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  4880. "homepage": "http://www.workerman.net",
  4881. "keywords": [
  4882. "asynchronous",
  4883. "event-loop"
  4884. ],
  4885. "time": "2019-04-05T10:35:31+00:00"
  4886. },
  4887. {
  4888. "name": "xaboy/form-builder",
  4889. "version": "2.0.17",
  4890. "source": {
  4891. "type": "git",
  4892. "url": "https://github.com/xaboy/form-builder.git",
  4893. "reference": "fc211560f2483ad61f1735293f62dc3202ce096a"
  4894. },
  4895. "dist": {
  4896. "type": "zip",
  4897. "url": "https://api.github.com/repos/xaboy/form-builder/zipball/fc211560f2483ad61f1735293f62dc3202ce096a",
  4898. "reference": "fc211560f2483ad61f1735293f62dc3202ce096a",
  4899. "shasum": "",
  4900. "mirrors": [
  4901. {
  4902. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4903. "preferred": true
  4904. }
  4905. ]
  4906. },
  4907. "require": {
  4908. "doctrine/annotations": "1.2.7",
  4909. "ext-json": "*",
  4910. "php": ">=5.4.0",
  4911. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0|~4.0"
  4912. },
  4913. "type": "library",
  4914. "autoload": {
  4915. "psr-4": {
  4916. "FormBuilder\\": "./src/"
  4917. }
  4918. },
  4919. "notification-url": "https://packagist.org/downloads/",
  4920. "license": [
  4921. "MIT"
  4922. ],
  4923. "authors": [
  4924. {
  4925. "name": "xaboy",
  4926. "email": "xaboy2005@qq.com"
  4927. }
  4928. ],
  4929. "description": "PHP表单生成器,快速生成现代化的form表单。包含复选框、单选框、输入框、下拉选择框等元素以及,省市区三级联动,时间选择,日期选择,颜色选择,文件/图片上传等功能。",
  4930. "homepage": "https://github.com/xaboy/form-builder",
  4931. "keywords": [
  4932. "dynamic-form",
  4933. "element-ui",
  4934. "form",
  4935. "form-create",
  4936. "form-generator",
  4937. "iview"
  4938. ],
  4939. "time": "2020-05-31T05:00:08+00:00"
  4940. },
  4941. {
  4942. "name": "xin/container",
  4943. "version": "2.0.1",
  4944. "source": {
  4945. "type": "git",
  4946. "url": "https://gitee.com/liuxiaojinla/php-container",
  4947. "reference": "97bb67f87dd851545938a1f2fe0ffbd379e3ff81"
  4948. },
  4949. "require": {
  4950. "ext-ctype": "*",
  4951. "ext-iconv": "*",
  4952. "ext-json": "*",
  4953. "ext-libxml": "*",
  4954. "ext-mbstring": "*",
  4955. "ext-openssl": "*",
  4956. "ext-simplexml": "*",
  4957. "psr/container": "^1.0",
  4958. "xin/helper": "^1.0"
  4959. },
  4960. "type": "library",
  4961. "autoload": {
  4962. "psr-4": {
  4963. "xin\\container\\": "src/"
  4964. }
  4965. },
  4966. "notification-url": "https://packagist.org/downloads/",
  4967. "license": [
  4968. "Apache-2.0"
  4969. ],
  4970. "authors": [
  4971. {
  4972. "name": "晋",
  4973. "email": "657306123@qq.com"
  4974. }
  4975. ],
  4976. "description": "严格基于PSR11规范实现基础的容器和依赖注入",
  4977. "time": "2019-10-21T03:51:25+00:00"
  4978. },
  4979. {
  4980. "name": "xin/helper",
  4981. "version": "1.0.0",
  4982. "source": {
  4983. "type": "git",
  4984. "url": "https://gitee.com/liuxiaojinla/php-helper",
  4985. "reference": "02a58132dae2aea2d1c0b8e66f55125969224747"
  4986. },
  4987. "require": {
  4988. "ext-ctype": "*",
  4989. "ext-iconv": "*",
  4990. "ext-json": "*",
  4991. "ext-libxml": "*",
  4992. "ext-mbstring": "*",
  4993. "ext-openssl": "*",
  4994. "ext-simplexml": "*"
  4995. },
  4996. "type": "library",
  4997. "autoload": {
  4998. "psr-4": {
  4999. "xin\\helper\\": "src/"
  5000. }
  5001. },
  5002. "notification-url": "https://packagist.org/downloads/",
  5003. "license": [
  5004. "Apache-2.0"
  5005. ],
  5006. "authors": [
  5007. {
  5008. "name": "晋",
  5009. "email": "1540175452@qq.com"
  5010. }
  5011. ],
  5012. "description": "PHP项目日常开发必备基础库,数组工具类、字符串工具类、数字工具类、函数工具类、服务器工具类、加密工具类",
  5013. "time": "2019-06-22T08:28:23+00:00"
  5014. }
  5015. ],
  5016. "packages-dev": [],
  5017. "aliases": [],
  5018. "minimum-stability": "stable",
  5019. "stability-flags": [],
  5020. "prefer-stable": false,
  5021. "prefer-lowest": false,
  5022. "platform": {
  5023. "php": ">=7.1.0",
  5024. "ext-json": "*",
  5025. "ext-curl": "*",
  5026. "ext-bcmath": "*",
  5027. "ext-mbstring": "*"
  5028. },
  5029. "platform-dev": [],
  5030. "plugin-api-version": "1.1.0"
  5031. }