installed.json 169 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722
  1. {
  2. "packages": [
  3. {
  4. "name": "adbario/php-dot-notation",
  5. "version": "2.2.0",
  6. "version_normalized": "2.2.0.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/adbario/php-dot-notation.git",
  10. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  15. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  16. "shasum": "",
  17. "mirrors": [
  18. {
  19. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  20. "preferred": true
  21. }
  22. ]
  23. },
  24. "require": {
  25. "ext-json": "*",
  26. "php": ">=5.5"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^4.0|^5.0|^6.0",
  30. "squizlabs/php_codesniffer": "^3.0"
  31. },
  32. "time": "2019-01-01T23:59:15+00:00",
  33. "type": "library",
  34. "installation-source": "dist",
  35. "autoload": {
  36. "files": [
  37. "src/helpers.php"
  38. ],
  39. "psr-4": {
  40. "Adbar\\": "src"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Riku Särkinen",
  50. "email": "riku@adbar.io"
  51. }
  52. ],
  53. "description": "PHP dot notation access to arrays",
  54. "homepage": "https://github.com/adbario/php-dot-notation",
  55. "keywords": [
  56. "ArrayAccess",
  57. "dotnotation"
  58. ],
  59. "install-path": "../adbario/php-dot-notation"
  60. },
  61. {
  62. "name": "alibabacloud/client",
  63. "version": "1.5.31",
  64. "version_normalized": "1.5.31.0",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  68. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/19224d92fe27ab8ef501d77d4891e7660bc023c1",
  73. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1",
  74. "shasum": "",
  75. "mirrors": [
  76. {
  77. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  78. "preferred": true
  79. }
  80. ]
  81. },
  82. "require": {
  83. "adbario/php-dot-notation": "^2.2",
  84. "clagiordano/weblibs-configmanager": "^1.0",
  85. "danielstjules/stringy": "^3.1",
  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. "mtdowling/jmespath.php": "^2.5",
  95. "php": ">=5.5"
  96. },
  97. "require-dev": {
  98. "composer/composer": "^1.8",
  99. "drupal/coder": "^8.3",
  100. "ext-dom": "*",
  101. "ext-pcre": "*",
  102. "ext-sockets": "*",
  103. "ext-spl": "*",
  104. "league/climate": "^3.2.4",
  105. "mikey179/vfsstream": "^1.6",
  106. "monolog/monolog": "^1.24",
  107. "phpunit/phpunit": "^5.7.27|^6.1",
  108. "psr/cache": "^1.0",
  109. "symfony/dotenv": "^3.4",
  110. "symfony/var-dumper": "^3.4"
  111. },
  112. "suggest": {
  113. "ext-sockets": "To use client-side monitoring"
  114. },
  115. "time": "2021-05-13T06:26:38+00:00",
  116. "type": "library",
  117. "installation-source": "dist",
  118. "autoload": {
  119. "psr-4": {
  120. "AlibabaCloud\\Client\\": "src"
  121. },
  122. "files": [
  123. "src/Functions.php"
  124. ]
  125. },
  126. "notification-url": "https://packagist.org/downloads/",
  127. "license": [
  128. "Apache-2.0"
  129. ],
  130. "authors": [
  131. {
  132. "name": "Alibaba Cloud SDK",
  133. "email": "sdk-team@alibabacloud.com",
  134. "homepage": "http://www.alibabacloud.com"
  135. }
  136. ],
  137. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  138. "homepage": "https://www.alibabacloud.com/",
  139. "keywords": [
  140. "alibaba",
  141. "alibabacloud",
  142. "aliyun",
  143. "client",
  144. "cloud",
  145. "library",
  146. "sdk",
  147. "tool"
  148. ],
  149. "install-path": "../alibabacloud/client"
  150. },
  151. {
  152. "name": "alibabacloud/tea",
  153. "version": "3.1.23",
  154. "version_normalized": "3.1.23.0",
  155. "source": {
  156. "type": "git",
  157. "url": "https://github.com/aliyun/tea-php.git",
  158. "reference": "61fce993274edf6e7131af07256ed7723d97a85f"
  159. },
  160. "dist": {
  161. "type": "zip",
  162. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/61fce993274edf6e7131af07256ed7723d97a85f",
  163. "reference": "61fce993274edf6e7131af07256ed7723d97a85f",
  164. "shasum": "",
  165. "mirrors": [
  166. {
  167. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  168. "preferred": true
  169. }
  170. ]
  171. },
  172. "require": {
  173. "adbario/php-dot-notation": "^2.2",
  174. "ext-curl": "*",
  175. "ext-json": "*",
  176. "ext-libxml": "*",
  177. "ext-mbstring": "*",
  178. "ext-openssl": "*",
  179. "ext-simplexml": "*",
  180. "ext-xmlwriter": "*",
  181. "guzzlehttp/guzzle": "^6.3|^7.0",
  182. "php": ">=5.5"
  183. },
  184. "require-dev": {
  185. "phpunit/phpunit": "*",
  186. "symfony/dotenv": "^3.4",
  187. "symfony/var-dumper": "^3.4"
  188. },
  189. "suggest": {
  190. "ext-sockets": "To use client-side monitoring"
  191. },
  192. "time": "2021-12-20T02:32:43+00:00",
  193. "type": "library",
  194. "installation-source": "dist",
  195. "autoload": {
  196. "psr-4": {
  197. "AlibabaCloud\\Tea\\": "src"
  198. }
  199. },
  200. "notification-url": "https://packagist.org/downloads/",
  201. "license": [
  202. "Apache-2.0"
  203. ],
  204. "authors": [
  205. {
  206. "name": "Alibaba Cloud SDK",
  207. "email": "sdk-team@alibabacloud.com",
  208. "homepage": "http://www.alibabacloud.com"
  209. }
  210. ],
  211. "description": "Client of Tea for PHP",
  212. "homepage": "https://www.alibabacloud.com/",
  213. "keywords": [
  214. "alibabacloud",
  215. "client",
  216. "cloud",
  217. "tea"
  218. ],
  219. "support": {
  220. "issues": "https://github.com/aliyun/tea-php/issues",
  221. "source": "https://github.com/aliyun/tea-php"
  222. },
  223. "install-path": "../alibabacloud/tea"
  224. },
  225. {
  226. "name": "alibabacloud/tea-fileform",
  227. "version": "0.3.4",
  228. "version_normalized": "0.3.4.0",
  229. "source": {
  230. "type": "git",
  231. "url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git",
  232. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181"
  233. },
  234. "dist": {
  235. "type": "zip",
  236. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  237. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  238. "shasum": "",
  239. "mirrors": [
  240. {
  241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  242. "preferred": true
  243. }
  244. ]
  245. },
  246. "require": {
  247. "alibabacloud/tea": "^3.0",
  248. "php": ">5.5"
  249. },
  250. "require-dev": {
  251. "phpunit/phpunit": "^4.8.35|^5.4.3"
  252. },
  253. "time": "2020-12-01T07:24:35+00:00",
  254. "type": "library",
  255. "installation-source": "dist",
  256. "autoload": {
  257. "psr-4": {
  258. "AlibabaCloud\\Tea\\FileForm\\": "src"
  259. }
  260. },
  261. "notification-url": "https://packagist.org/downloads/",
  262. "license": [
  263. "Apache-2.0"
  264. ],
  265. "authors": [
  266. {
  267. "name": "Alibaba Cloud SDK",
  268. "email": "sdk-team@alibabacloud.com"
  269. }
  270. ],
  271. "description": "Alibaba Cloud Tea File Library for PHP",
  272. "support": {
  273. "issues": "https://github.com/alibabacloud-sdk-php/tea-fileform/issues",
  274. "source": "https://github.com/alibabacloud-sdk-php/tea-fileform/tree/0.3.4"
  275. },
  276. "install-path": "../alibabacloud/tea-fileform"
  277. },
  278. {
  279. "name": "alipaysdk/easysdk",
  280. "version": "2.2.1",
  281. "version_normalized": "2.2.1.0",
  282. "source": {
  283. "type": "git",
  284. "url": "https://github.com/alipay/alipay-easysdk.git",
  285. "reference": "066388d02c6f55fe0919d75b386456d80801fec2"
  286. },
  287. "dist": {
  288. "type": "zip",
  289. "url": "https://api.github.com/repos/alipay/alipay-easysdk/zipball/066388d02c6f55fe0919d75b386456d80801fec2",
  290. "reference": "066388d02c6f55fe0919d75b386456d80801fec2",
  291. "shasum": "",
  292. "mirrors": [
  293. {
  294. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  295. "preferred": true
  296. }
  297. ]
  298. },
  299. "require": {
  300. "adbario/php-dot-notation": "^2.2",
  301. "alibabacloud/tea": "^3.1",
  302. "alibabacloud/tea-fileform": "^0.3.2",
  303. "danielstjules/stringy": "^3.1",
  304. "ext-ctype": "*",
  305. "ext-curl": "*",
  306. "ext-dom": "*",
  307. "ext-fileinfo": "*",
  308. "ext-json": "*",
  309. "ext-libxml": "*",
  310. "ext-mbstring": "*",
  311. "ext-openssl": "*",
  312. "ext-simplexml": "*",
  313. "ext-xmlwriter": "*",
  314. "guzzlehttp/guzzle": ">=6.3",
  315. "mtdowling/jmespath.php": "^2.4",
  316. "php": ">=7.0",
  317. "pimple/pimple": "^3.0",
  318. "psr/log": "^1.1",
  319. "songshenzong/support": "^2.0",
  320. "xin/container": "^2.0.1"
  321. },
  322. "require-dev": {
  323. "phpunit/phpunit": "^7.5"
  324. },
  325. "time": "2021-09-24T06:54:12+00:00",
  326. "type": "library",
  327. "installation-source": "dist",
  328. "autoload": {
  329. "psr-4": {
  330. "Alipay\\EasySDK\\": "php/src/"
  331. }
  332. },
  333. "notification-url": "https://packagist.org/downloads/",
  334. "license": [
  335. "Apache-2.0"
  336. ],
  337. "authors": [
  338. {
  339. "name": "junying.wjy",
  340. "email": "junying.wjy@antfin.com"
  341. }
  342. ],
  343. "description": "支付宝官方 Alipay Easy SDK",
  344. "support": {
  345. "source": "https://github.com/alipay/alipay-easysdk/tree/v2.2.1"
  346. },
  347. "install-path": "../alipaysdk/easysdk"
  348. },
  349. {
  350. "name": "aliyuncs/oss-sdk-php",
  351. "version": "v2.4.3",
  352. "version_normalized": "2.4.3.0",
  353. "source": {
  354. "type": "git",
  355. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  356. "reference": "4ccead614915ee6685bf30016afb01aabd347e46"
  357. },
  358. "dist": {
  359. "type": "zip",
  360. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/4ccead614915ee6685bf30016afb01aabd347e46",
  361. "reference": "4ccead614915ee6685bf30016afb01aabd347e46",
  362. "shasum": "",
  363. "mirrors": [
  364. {
  365. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  366. "preferred": true
  367. }
  368. ]
  369. },
  370. "require": {
  371. "php": ">=5.3"
  372. },
  373. "require-dev": {
  374. "phpunit/phpunit": "*",
  375. "satooshi/php-coveralls": "*"
  376. },
  377. "time": "2021-08-25T13:03:58+00:00",
  378. "type": "library",
  379. "installation-source": "dist",
  380. "autoload": {
  381. "psr-4": {
  382. "OSS\\": "src/OSS"
  383. }
  384. },
  385. "notification-url": "https://packagist.org/downloads/",
  386. "license": [
  387. "MIT"
  388. ],
  389. "authors": [
  390. {
  391. "name": "Aliyuncs",
  392. "homepage": "http://www.aliyun.com"
  393. }
  394. ],
  395. "description": "Aliyun OSS SDK for PHP",
  396. "homepage": "http://www.aliyun.com/product/oss/",
  397. "support": {
  398. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  399. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.4.3"
  400. },
  401. "install-path": "../aliyuncs/oss-sdk-php"
  402. },
  403. {
  404. "name": "bacon/bacon-qr-code",
  405. "version": "2.0.6",
  406. "version_normalized": "2.0.6.0",
  407. "source": {
  408. "type": "git",
  409. "url": "https://github.com/Bacon/BaconQrCode.git",
  410. "reference": "0069435e2a01a57193b25790f105a5d3168653c1"
  411. },
  412. "dist": {
  413. "type": "zip",
  414. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/0069435e2a01a57193b25790f105a5d3168653c1",
  415. "reference": "0069435e2a01a57193b25790f105a5d3168653c1",
  416. "shasum": "",
  417. "mirrors": [
  418. {
  419. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  420. "preferred": true
  421. }
  422. ]
  423. },
  424. "require": {
  425. "dasprid/enum": "^1.0.3",
  426. "ext-iconv": "*",
  427. "php": "^7.1 || ^8.0"
  428. },
  429. "require-dev": {
  430. "phly/keep-a-changelog": "^2.1",
  431. "phpunit/phpunit": "^7 | ^8 | ^9",
  432. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  433. "squizlabs/php_codesniffer": "^3.4"
  434. },
  435. "suggest": {
  436. "ext-imagick": "to generate QR code images"
  437. },
  438. "time": "2022-02-04T20:16:05+00:00",
  439. "type": "library",
  440. "installation-source": "dist",
  441. "autoload": {
  442. "psr-4": {
  443. "BaconQrCode\\": "src/"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "BSD-2-Clause"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Ben Scholzen 'DASPRiD'",
  453. "email": "mail@dasprids.de",
  454. "homepage": "https://dasprids.de/",
  455. "role": "Developer"
  456. }
  457. ],
  458. "description": "BaconQrCode is a QR code generator for PHP.",
  459. "homepage": "https://github.com/Bacon/BaconQrCode",
  460. "support": {
  461. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  462. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.6"
  463. },
  464. "install-path": "../bacon/bacon-qr-code"
  465. },
  466. {
  467. "name": "clagiordano/weblibs-configmanager",
  468. "version": "v1.5.0",
  469. "version_normalized": "1.5.0.0",
  470. "source": {
  471. "type": "git",
  472. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  473. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273"
  474. },
  475. "dist": {
  476. "type": "zip",
  477. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/8802c7396d61a923c9a73e37ead062b24bb1b273",
  478. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273",
  479. "shasum": "",
  480. "mirrors": [
  481. {
  482. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  483. "preferred": true
  484. }
  485. ]
  486. },
  487. "require": {
  488. "ext-json": "*",
  489. "php": ">=5.4",
  490. "symfony/yaml": "^2.8"
  491. },
  492. "require-dev": {
  493. "clagiordano/phpunit-result-printer": "^1",
  494. "php-coveralls/php-coveralls": "^1.1",
  495. "phpunit/phpunit": "^4.8"
  496. },
  497. "time": "2021-07-12T15:27:21+00:00",
  498. "type": "library",
  499. "installation-source": "dist",
  500. "autoload": {
  501. "psr-4": {
  502. "clagiordano\\weblibs\\configmanager\\": "src/"
  503. }
  504. },
  505. "notification-url": "https://packagist.org/downloads/",
  506. "license": [
  507. "LGPL-3.0-or-later"
  508. ],
  509. "authors": [
  510. {
  511. "name": "Claudio Giordano",
  512. "email": "claudio.giordano@autistici.org",
  513. "role": "Developer"
  514. }
  515. ],
  516. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  517. "keywords": [
  518. "clagiordano",
  519. "configuration",
  520. "manager",
  521. "tool",
  522. "weblibs"
  523. ],
  524. "install-path": "../clagiordano/weblibs-configmanager"
  525. },
  526. {
  527. "name": "danielstjules/stringy",
  528. "version": "3.1.0",
  529. "version_normalized": "3.1.0.0",
  530. "source": {
  531. "type": "git",
  532. "url": "https://github.com/danielstjules/Stringy.git",
  533. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  534. },
  535. "dist": {
  536. "type": "zip",
  537. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  538. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  539. "shasum": "",
  540. "mirrors": [
  541. {
  542. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  543. "preferred": true
  544. }
  545. ]
  546. },
  547. "require": {
  548. "php": ">=5.4.0",
  549. "symfony/polyfill-mbstring": "~1.1"
  550. },
  551. "require-dev": {
  552. "phpunit/phpunit": "~4.0"
  553. },
  554. "time": "2017-06-12T01:10:27+00:00",
  555. "type": "library",
  556. "installation-source": "dist",
  557. "autoload": {
  558. "psr-4": {
  559. "Stringy\\": "src/"
  560. },
  561. "files": [
  562. "src/Create.php"
  563. ]
  564. },
  565. "notification-url": "https://packagist.org/downloads/",
  566. "license": [
  567. "MIT"
  568. ],
  569. "authors": [
  570. {
  571. "name": "Daniel St. Jules",
  572. "email": "danielst.jules@gmail.com",
  573. "homepage": "http://www.danielstjules.com"
  574. }
  575. ],
  576. "description": "A string manipulation library with multibyte support",
  577. "homepage": "https://github.com/danielstjules/Stringy",
  578. "keywords": [
  579. "UTF",
  580. "helpers",
  581. "manipulation",
  582. "methods",
  583. "multibyte",
  584. "string",
  585. "utf-8",
  586. "utility",
  587. "utils"
  588. ],
  589. "install-path": "../danielstjules/stringy"
  590. },
  591. {
  592. "name": "dasprid/enum",
  593. "version": "1.0.3",
  594. "version_normalized": "1.0.3.0",
  595. "source": {
  596. "type": "git",
  597. "url": "https://github.com/DASPRiD/Enum.git",
  598. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  599. },
  600. "dist": {
  601. "type": "zip",
  602. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  603. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  604. "shasum": "",
  605. "mirrors": [
  606. {
  607. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  608. "preferred": true
  609. }
  610. ]
  611. },
  612. "require-dev": {
  613. "phpunit/phpunit": "^7 | ^8 | ^9",
  614. "squizlabs/php_codesniffer": "^3.4"
  615. },
  616. "time": "2020-10-02T16:03:48+00:00",
  617. "type": "library",
  618. "installation-source": "dist",
  619. "autoload": {
  620. "psr-4": {
  621. "DASPRiD\\Enum\\": "src/"
  622. }
  623. },
  624. "notification-url": "https://packagist.org/downloads/",
  625. "license": [
  626. "BSD-2-Clause"
  627. ],
  628. "authors": [
  629. {
  630. "name": "Ben Scholzen 'DASPRiD'",
  631. "email": "mail@dasprids.de",
  632. "homepage": "https://dasprids.de/",
  633. "role": "Developer"
  634. }
  635. ],
  636. "description": "PHP 7.1 enum implementation",
  637. "keywords": [
  638. "enum",
  639. "map"
  640. ],
  641. "install-path": "../dasprid/enum"
  642. },
  643. {
  644. "name": "easywechat-composer/easywechat-composer",
  645. "version": "1.4.1",
  646. "version_normalized": "1.4.1.0",
  647. "source": {
  648. "type": "git",
  649. "url": "https://github.com/mingyoung/easywechat-composer.git",
  650. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  651. },
  652. "dist": {
  653. "type": "zip",
  654. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  655. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  656. "shasum": "",
  657. "mirrors": [
  658. {
  659. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  660. "preferred": true
  661. }
  662. ]
  663. },
  664. "require": {
  665. "composer-plugin-api": "^1.0 || ^2.0",
  666. "php": ">=7.0"
  667. },
  668. "require-dev": {
  669. "composer/composer": "^1.0 || ^2.0",
  670. "phpunit/phpunit": "^6.5 || ^7.0"
  671. },
  672. "time": "2021-07-05T04:03:22+00:00",
  673. "type": "composer-plugin",
  674. "extra": {
  675. "class": "EasyWeChatComposer\\Plugin"
  676. },
  677. "installation-source": "dist",
  678. "autoload": {
  679. "psr-4": {
  680. "EasyWeChatComposer\\": "src/"
  681. }
  682. },
  683. "notification-url": "https://packagist.org/downloads/",
  684. "license": [
  685. "MIT"
  686. ],
  687. "authors": [
  688. {
  689. "name": "张铭阳",
  690. "email": "mingyoungcheung@gmail.com"
  691. }
  692. ],
  693. "description": "The composer plugin for EasyWeChat",
  694. "support": {
  695. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  696. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  697. },
  698. "install-path": "../easywechat-composer/easywechat-composer"
  699. },
  700. {
  701. "name": "endroid/qr-code",
  702. "version": "3.9.7",
  703. "version_normalized": "3.9.7.0",
  704. "source": {
  705. "type": "git",
  706. "url": "https://github.com/endroid/qr-code.git",
  707. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  708. },
  709. "dist": {
  710. "type": "zip",
  711. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  712. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  713. "shasum": "",
  714. "mirrors": [
  715. {
  716. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  717. "preferred": true
  718. }
  719. ]
  720. },
  721. "require": {
  722. "bacon/bacon-qr-code": "^2.0",
  723. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  724. "myclabs/php-enum": "^1.5",
  725. "php": "^7.3||^8.0",
  726. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  727. "symfony/property-access": "^3.4||^4.4||^5.0"
  728. },
  729. "require-dev": {
  730. "endroid/quality": "^1.5.2",
  731. "setasign/fpdf": "^1.8"
  732. },
  733. "suggest": {
  734. "ext-gd": "Required for generating PNG images",
  735. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  736. "setasign/fpdf": "Required to use the FPDF writer.",
  737. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  738. },
  739. "time": "2021-04-20T19:10:54+00:00",
  740. "type": "library",
  741. "extra": {
  742. "branch-alias": {
  743. "dev-master": "3.x-dev"
  744. }
  745. },
  746. "installation-source": "dist",
  747. "autoload": {
  748. "psr-4": {
  749. "Endroid\\QrCode\\": "src/"
  750. }
  751. },
  752. "notification-url": "https://packagist.org/downloads/",
  753. "license": [
  754. "MIT"
  755. ],
  756. "authors": [
  757. {
  758. "name": "Jeroen van den Enden",
  759. "email": "info@endroid.nl"
  760. }
  761. ],
  762. "description": "Endroid QR Code",
  763. "homepage": "https://github.com/endroid/qr-code",
  764. "keywords": [
  765. "bundle",
  766. "code",
  767. "endroid",
  768. "php",
  769. "qr",
  770. "qrcode"
  771. ],
  772. "support": {
  773. "issues": "https://github.com/endroid/qr-code/issues",
  774. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  775. },
  776. "funding": [
  777. {
  778. "url": "https://github.com/endroid",
  779. "type": "github"
  780. }
  781. ],
  782. "install-path": "../endroid/qr-code"
  783. },
  784. {
  785. "name": "firebase/php-jwt",
  786. "version": "v5.5.1",
  787. "version_normalized": "5.5.1.0",
  788. "source": {
  789. "type": "git",
  790. "url": "https://github.com/firebase/php-jwt.git",
  791. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6"
  792. },
  793. "dist": {
  794. "type": "zip",
  795. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6",
  796. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6",
  797. "shasum": "",
  798. "mirrors": [
  799. {
  800. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  801. "preferred": true
  802. }
  803. ]
  804. },
  805. "require": {
  806. "php": ">=5.3.0"
  807. },
  808. "require-dev": {
  809. "phpunit/phpunit": ">=4.8 <=9"
  810. },
  811. "suggest": {
  812. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  813. },
  814. "time": "2021-11-08T20:18:51+00:00",
  815. "type": "library",
  816. "installation-source": "dist",
  817. "autoload": {
  818. "psr-4": {
  819. "Firebase\\JWT\\": "src"
  820. }
  821. },
  822. "notification-url": "https://packagist.org/downloads/",
  823. "license": [
  824. "BSD-3-Clause"
  825. ],
  826. "authors": [
  827. {
  828. "name": "Neuman Vong",
  829. "email": "neuman+pear@twilio.com",
  830. "role": "Developer"
  831. },
  832. {
  833. "name": "Anant Narayanan",
  834. "email": "anant@php.net",
  835. "role": "Developer"
  836. }
  837. ],
  838. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  839. "homepage": "https://github.com/firebase/php-jwt",
  840. "keywords": [
  841. "jwt",
  842. "php"
  843. ],
  844. "support": {
  845. "issues": "https://github.com/firebase/php-jwt/issues",
  846. "source": "https://github.com/firebase/php-jwt/tree/v5.5.1"
  847. },
  848. "install-path": "../firebase/php-jwt"
  849. },
  850. {
  851. "name": "guzzlehttp/guzzle",
  852. "version": "7.4.1",
  853. "version_normalized": "7.4.1.0",
  854. "source": {
  855. "type": "git",
  856. "url": "https://github.com/guzzle/guzzle.git",
  857. "reference": "ee0a041b1760e6a53d2a39c8c34115adc2af2c79"
  858. },
  859. "dist": {
  860. "type": "zip",
  861. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/ee0a041b1760e6a53d2a39c8c34115adc2af2c79",
  862. "reference": "ee0a041b1760e6a53d2a39c8c34115adc2af2c79",
  863. "shasum": "",
  864. "mirrors": [
  865. {
  866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  867. "preferred": true
  868. }
  869. ]
  870. },
  871. "require": {
  872. "ext-json": "*",
  873. "guzzlehttp/promises": "^1.5",
  874. "guzzlehttp/psr7": "^1.8.3 || ^2.1",
  875. "php": "^7.2.5 || ^8.0",
  876. "psr/http-client": "^1.0",
  877. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  878. },
  879. "provide": {
  880. "psr/http-client-implementation": "1.0"
  881. },
  882. "require-dev": {
  883. "bamarni/composer-bin-plugin": "^1.4.1",
  884. "ext-curl": "*",
  885. "php-http/client-integration-tests": "^3.0",
  886. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  887. "psr/log": "^1.1 || ^2.0 || ^3.0"
  888. },
  889. "suggest": {
  890. "ext-curl": "Required for CURL handler support",
  891. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  892. "psr/log": "Required for using the Log middleware"
  893. },
  894. "time": "2021-12-06T18:43:05+00:00",
  895. "type": "library",
  896. "extra": {
  897. "branch-alias": {
  898. "dev-master": "7.4-dev"
  899. }
  900. },
  901. "installation-source": "dist",
  902. "autoload": {
  903. "files": [
  904. "src/functions_include.php"
  905. ],
  906. "psr-4": {
  907. "GuzzleHttp\\": "src/"
  908. }
  909. },
  910. "notification-url": "https://packagist.org/downloads/",
  911. "license": [
  912. "MIT"
  913. ],
  914. "authors": [
  915. {
  916. "name": "Graham Campbell",
  917. "email": "hello@gjcampbell.co.uk",
  918. "homepage": "https://github.com/GrahamCampbell"
  919. },
  920. {
  921. "name": "Michael Dowling",
  922. "email": "mtdowling@gmail.com",
  923. "homepage": "https://github.com/mtdowling"
  924. },
  925. {
  926. "name": "Jeremy Lindblom",
  927. "email": "jeremeamia@gmail.com",
  928. "homepage": "https://github.com/jeremeamia"
  929. },
  930. {
  931. "name": "George Mponos",
  932. "email": "gmponos@gmail.com",
  933. "homepage": "https://github.com/gmponos"
  934. },
  935. {
  936. "name": "Tobias Nyholm",
  937. "email": "tobias.nyholm@gmail.com",
  938. "homepage": "https://github.com/Nyholm"
  939. },
  940. {
  941. "name": "Márk Sági-Kazár",
  942. "email": "mark.sagikazar@gmail.com",
  943. "homepage": "https://github.com/sagikazarmark"
  944. },
  945. {
  946. "name": "Tobias Schultze",
  947. "email": "webmaster@tubo-world.de",
  948. "homepage": "https://github.com/Tobion"
  949. }
  950. ],
  951. "description": "Guzzle is a PHP HTTP client library",
  952. "keywords": [
  953. "client",
  954. "curl",
  955. "framework",
  956. "http",
  957. "http client",
  958. "psr-18",
  959. "psr-7",
  960. "rest",
  961. "web service"
  962. ],
  963. "support": {
  964. "issues": "https://github.com/guzzle/guzzle/issues",
  965. "source": "https://github.com/guzzle/guzzle/tree/7.4.1"
  966. },
  967. "funding": [
  968. {
  969. "url": "https://github.com/GrahamCampbell",
  970. "type": "github"
  971. },
  972. {
  973. "url": "https://github.com/Nyholm",
  974. "type": "github"
  975. },
  976. {
  977. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  978. "type": "tidelift"
  979. }
  980. ],
  981. "install-path": "../guzzlehttp/guzzle"
  982. },
  983. {
  984. "name": "guzzlehttp/promises",
  985. "version": "1.5.1",
  986. "version_normalized": "1.5.1.0",
  987. "source": {
  988. "type": "git",
  989. "url": "https://github.com/guzzle/promises.git",
  990. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  991. },
  992. "dist": {
  993. "type": "zip",
  994. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  995. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  996. "shasum": "",
  997. "mirrors": [
  998. {
  999. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1000. "preferred": true
  1001. }
  1002. ]
  1003. },
  1004. "require": {
  1005. "php": ">=5.5"
  1006. },
  1007. "require-dev": {
  1008. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1009. },
  1010. "time": "2021-10-22T20:56:57+00:00",
  1011. "type": "library",
  1012. "extra": {
  1013. "branch-alias": {
  1014. "dev-master": "1.5-dev"
  1015. }
  1016. },
  1017. "installation-source": "dist",
  1018. "autoload": {
  1019. "files": [
  1020. "src/functions_include.php"
  1021. ],
  1022. "psr-4": {
  1023. "GuzzleHttp\\Promise\\": "src/"
  1024. }
  1025. },
  1026. "notification-url": "https://packagist.org/downloads/",
  1027. "license": [
  1028. "MIT"
  1029. ],
  1030. "authors": [
  1031. {
  1032. "name": "Graham Campbell",
  1033. "email": "hello@gjcampbell.co.uk",
  1034. "homepage": "https://github.com/GrahamCampbell"
  1035. },
  1036. {
  1037. "name": "Michael Dowling",
  1038. "email": "mtdowling@gmail.com",
  1039. "homepage": "https://github.com/mtdowling"
  1040. },
  1041. {
  1042. "name": "Tobias Nyholm",
  1043. "email": "tobias.nyholm@gmail.com",
  1044. "homepage": "https://github.com/Nyholm"
  1045. },
  1046. {
  1047. "name": "Tobias Schultze",
  1048. "email": "webmaster@tubo-world.de",
  1049. "homepage": "https://github.com/Tobion"
  1050. }
  1051. ],
  1052. "description": "Guzzle promises library",
  1053. "keywords": [
  1054. "promise"
  1055. ],
  1056. "support": {
  1057. "issues": "https://github.com/guzzle/promises/issues",
  1058. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  1059. },
  1060. "funding": [
  1061. {
  1062. "url": "https://github.com/GrahamCampbell",
  1063. "type": "github"
  1064. },
  1065. {
  1066. "url": "https://github.com/Nyholm",
  1067. "type": "github"
  1068. },
  1069. {
  1070. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1071. "type": "tidelift"
  1072. }
  1073. ],
  1074. "install-path": "../guzzlehttp/promises"
  1075. },
  1076. {
  1077. "name": "guzzlehttp/psr7",
  1078. "version": "2.1.0",
  1079. "version_normalized": "2.1.0.0",
  1080. "source": {
  1081. "type": "git",
  1082. "url": "https://github.com/guzzle/psr7.git",
  1083. "reference": "089edd38f5b8abba6cb01567c2a8aaa47cec4c72"
  1084. },
  1085. "dist": {
  1086. "type": "zip",
  1087. "url": "https://api.github.com/repos/guzzle/psr7/zipball/089edd38f5b8abba6cb01567c2a8aaa47cec4c72",
  1088. "reference": "089edd38f5b8abba6cb01567c2a8aaa47cec4c72",
  1089. "shasum": "",
  1090. "mirrors": [
  1091. {
  1092. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1093. "preferred": true
  1094. }
  1095. ]
  1096. },
  1097. "require": {
  1098. "php": "^7.2.5 || ^8.0",
  1099. "psr/http-factory": "^1.0",
  1100. "psr/http-message": "^1.0",
  1101. "ralouphie/getallheaders": "^3.0"
  1102. },
  1103. "provide": {
  1104. "psr/http-factory-implementation": "1.0",
  1105. "psr/http-message-implementation": "1.0"
  1106. },
  1107. "require-dev": {
  1108. "bamarni/composer-bin-plugin": "^1.4.1",
  1109. "http-interop/http-factory-tests": "^0.9",
  1110. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  1111. },
  1112. "suggest": {
  1113. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1114. },
  1115. "time": "2021-10-06T17:43:30+00:00",
  1116. "type": "library",
  1117. "extra": {
  1118. "branch-alias": {
  1119. "dev-master": "2.1-dev"
  1120. }
  1121. },
  1122. "installation-source": "dist",
  1123. "autoload": {
  1124. "psr-4": {
  1125. "GuzzleHttp\\Psr7\\": "src/"
  1126. }
  1127. },
  1128. "notification-url": "https://packagist.org/downloads/",
  1129. "license": [
  1130. "MIT"
  1131. ],
  1132. "authors": [
  1133. {
  1134. "name": "Graham Campbell",
  1135. "email": "hello@gjcampbell.co.uk",
  1136. "homepage": "https://github.com/GrahamCampbell"
  1137. },
  1138. {
  1139. "name": "Michael Dowling",
  1140. "email": "mtdowling@gmail.com",
  1141. "homepage": "https://github.com/mtdowling"
  1142. },
  1143. {
  1144. "name": "George Mponos",
  1145. "email": "gmponos@gmail.com",
  1146. "homepage": "https://github.com/gmponos"
  1147. },
  1148. {
  1149. "name": "Tobias Nyholm",
  1150. "email": "tobias.nyholm@gmail.com",
  1151. "homepage": "https://github.com/Nyholm"
  1152. },
  1153. {
  1154. "name": "Márk Sági-Kazár",
  1155. "email": "mark.sagikazar@gmail.com",
  1156. "homepage": "https://github.com/sagikazarmark"
  1157. },
  1158. {
  1159. "name": "Tobias Schultze",
  1160. "email": "webmaster@tubo-world.de",
  1161. "homepage": "https://github.com/Tobion"
  1162. },
  1163. {
  1164. "name": "Márk Sági-Kazár",
  1165. "email": "mark.sagikazar@gmail.com",
  1166. "homepage": "https://sagikazarmark.hu"
  1167. }
  1168. ],
  1169. "description": "PSR-7 message implementation that also provides common utility methods",
  1170. "keywords": [
  1171. "http",
  1172. "message",
  1173. "psr-7",
  1174. "request",
  1175. "response",
  1176. "stream",
  1177. "uri",
  1178. "url"
  1179. ],
  1180. "support": {
  1181. "issues": "https://github.com/guzzle/psr7/issues",
  1182. "source": "https://github.com/guzzle/psr7/tree/2.1.0"
  1183. },
  1184. "funding": [
  1185. {
  1186. "url": "https://github.com/GrahamCampbell",
  1187. "type": "github"
  1188. },
  1189. {
  1190. "url": "https://github.com/Nyholm",
  1191. "type": "github"
  1192. },
  1193. {
  1194. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1195. "type": "tidelift"
  1196. }
  1197. ],
  1198. "install-path": "../guzzlehttp/psr7"
  1199. },
  1200. {
  1201. "name": "hg/apidoc",
  1202. "version": "v1.1.2",
  1203. "version_normalized": "1.1.2.0",
  1204. "source": {
  1205. "type": "git",
  1206. "url": "https://github.com/HGthecode/thinkphp-apidoc.git",
  1207. "reference": "4925ddf39c22f48acca702843d53bbb70a4687a4"
  1208. },
  1209. "dist": {
  1210. "type": "zip",
  1211. "url": "https://api.github.com/repos/HGthecode/thinkphp-apidoc/zipball/4925ddf39c22f48acca702843d53bbb70a4687a4",
  1212. "reference": "4925ddf39c22f48acca702843d53bbb70a4687a4",
  1213. "shasum": "",
  1214. "mirrors": [
  1215. {
  1216. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1217. "preferred": true
  1218. }
  1219. ]
  1220. },
  1221. "require": {
  1222. "php": ">=5.6"
  1223. },
  1224. "time": "2021-02-20T02:40:45+00:00",
  1225. "type": "think-extend",
  1226. "extra": {
  1227. "think": {
  1228. "services": [
  1229. "hg\\apidoc\\Service"
  1230. ],
  1231. "config": {
  1232. "apidoc": "src/config.php"
  1233. }
  1234. }
  1235. },
  1236. "installation-source": "dist",
  1237. "autoload": {
  1238. "psr-4": {
  1239. "hg\\apidoc\\": "src/"
  1240. }
  1241. },
  1242. "notification-url": "https://packagist.org/downloads/",
  1243. "license": [
  1244. "MIT"
  1245. ],
  1246. "authors": [
  1247. {
  1248. "name": "hg-code",
  1249. "email": "376401263@qq.com"
  1250. }
  1251. ],
  1252. "description": "thinkphp API文档自动生成",
  1253. "keywords": [
  1254. "apidoc",
  1255. "api文档",
  1256. "php接口文档",
  1257. "thinkphp",
  1258. "thinkphp6",
  1259. "接口文档",
  1260. "注释生成",
  1261. "自动生成"
  1262. ],
  1263. "install-path": "../hg/apidoc"
  1264. },
  1265. {
  1266. "name": "khanamiryan/qrcode-detector-decoder",
  1267. "version": "1.0.5.2",
  1268. "version_normalized": "1.0.5.2",
  1269. "source": {
  1270. "type": "git",
  1271. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1272. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1"
  1273. },
  1274. "dist": {
  1275. "type": "zip",
  1276. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/04fdd58d86a387065f707dc6d3cc304c719910c1",
  1277. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1",
  1278. "shasum": "",
  1279. "mirrors": [
  1280. {
  1281. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1282. "preferred": true
  1283. }
  1284. ]
  1285. },
  1286. "require": {
  1287. "php": ">=5.6"
  1288. },
  1289. "require-dev": {
  1290. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  1291. },
  1292. "time": "2021-07-13T18:46:38+00:00",
  1293. "type": "library",
  1294. "installation-source": "dist",
  1295. "autoload": {
  1296. "psr-4": {
  1297. "Zxing\\": "lib/"
  1298. },
  1299. "files": [
  1300. "lib/Common/customFunctions.php"
  1301. ]
  1302. },
  1303. "notification-url": "https://packagist.org/downloads/",
  1304. "license": [
  1305. "MIT",
  1306. "Apache-2.0"
  1307. ],
  1308. "authors": [
  1309. {
  1310. "name": "Ashot Khanamiryan",
  1311. "email": "a.khanamiryan@gmail.com",
  1312. "homepage": "https://github.com/khanamiryan",
  1313. "role": "Developer"
  1314. }
  1315. ],
  1316. "description": "QR code decoder / reader",
  1317. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1318. "keywords": [
  1319. "barcode",
  1320. "qr",
  1321. "zxing"
  1322. ],
  1323. "install-path": "../khanamiryan/qrcode-detector-decoder"
  1324. },
  1325. {
  1326. "name": "monolog/monolog",
  1327. "version": "2.6.0",
  1328. "version_normalized": "2.6.0.0",
  1329. "source": {
  1330. "type": "git",
  1331. "url": "https://github.com/Seldaek/monolog.git",
  1332. "reference": "247918972acd74356b0a91dfaa5adcaec069b6c0"
  1333. },
  1334. "dist": {
  1335. "type": "zip",
  1336. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/247918972acd74356b0a91dfaa5adcaec069b6c0",
  1337. "reference": "247918972acd74356b0a91dfaa5adcaec069b6c0",
  1338. "shasum": "",
  1339. "mirrors": [
  1340. {
  1341. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1342. "preferred": true
  1343. }
  1344. ]
  1345. },
  1346. "require": {
  1347. "php": ">=7.2",
  1348. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1349. },
  1350. "provide": {
  1351. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1352. },
  1353. "require-dev": {
  1354. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1355. "doctrine/couchdb": "~1.0@dev",
  1356. "elasticsearch/elasticsearch": "^7 || ^8",
  1357. "ext-json": "*",
  1358. "graylog2/gelf-php": "^1.4.2",
  1359. "guzzlehttp/guzzle": "^7.4",
  1360. "guzzlehttp/psr7": "^2.2",
  1361. "mongodb/mongodb": "^1.8",
  1362. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1363. "php-console/php-console": "^3.1.3",
  1364. "phpspec/prophecy": "^1.15",
  1365. "phpstan/phpstan": "^0.12.91",
  1366. "phpunit/phpunit": "^8.5.14",
  1367. "predis/predis": "^1.1",
  1368. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1369. "ruflin/elastica": "^7",
  1370. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1371. "symfony/mailer": "^5.4 || ^6",
  1372. "symfony/mime": "^5.4 || ^6"
  1373. },
  1374. "suggest": {
  1375. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1376. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1377. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1378. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1379. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1380. "ext-mbstring": "Allow to work properly with unicode symbols",
  1381. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1382. "ext-openssl": "Required to send log messages using SSL",
  1383. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1384. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1385. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1386. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1387. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1388. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1389. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1390. },
  1391. "time": "2022-05-10T09:36:00+00:00",
  1392. "type": "library",
  1393. "extra": {
  1394. "branch-alias": {
  1395. "dev-main": "2.x-dev"
  1396. }
  1397. },
  1398. "installation-source": "dist",
  1399. "autoload": {
  1400. "psr-4": {
  1401. "Monolog\\": "src/Monolog"
  1402. }
  1403. },
  1404. "notification-url": "https://packagist.org/downloads/",
  1405. "license": [
  1406. "MIT"
  1407. ],
  1408. "authors": [
  1409. {
  1410. "name": "Jordi Boggiano",
  1411. "email": "j.boggiano@seld.be",
  1412. "homepage": "https://seld.be"
  1413. }
  1414. ],
  1415. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1416. "homepage": "https://github.com/Seldaek/monolog",
  1417. "keywords": [
  1418. "log",
  1419. "logging",
  1420. "psr-3"
  1421. ],
  1422. "support": {
  1423. "issues": "https://github.com/Seldaek/monolog/issues",
  1424. "source": "https://github.com/Seldaek/monolog/tree/2.6.0"
  1425. },
  1426. "funding": [
  1427. {
  1428. "url": "https://github.com/Seldaek",
  1429. "type": "github"
  1430. },
  1431. {
  1432. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1433. "type": "tidelift"
  1434. }
  1435. ],
  1436. "install-path": "../monolog/monolog"
  1437. },
  1438. {
  1439. "name": "mtdowling/jmespath.php",
  1440. "version": "2.6.1",
  1441. "version_normalized": "2.6.1.0",
  1442. "source": {
  1443. "type": "git",
  1444. "url": "https://github.com/jmespath/jmespath.php.git",
  1445. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  1446. },
  1447. "dist": {
  1448. "type": "zip",
  1449. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1450. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1451. "shasum": "",
  1452. "mirrors": [
  1453. {
  1454. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1455. "preferred": true
  1456. }
  1457. ]
  1458. },
  1459. "require": {
  1460. "php": "^5.4 || ^7.0 || ^8.0",
  1461. "symfony/polyfill-mbstring": "^1.17"
  1462. },
  1463. "require-dev": {
  1464. "composer/xdebug-handler": "^1.4 || ^2.0",
  1465. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  1466. },
  1467. "time": "2021-06-14T00:11:39+00:00",
  1468. "bin": [
  1469. "bin/jp.php"
  1470. ],
  1471. "type": "library",
  1472. "extra": {
  1473. "branch-alias": {
  1474. "dev-master": "2.6-dev"
  1475. }
  1476. },
  1477. "installation-source": "dist",
  1478. "autoload": {
  1479. "psr-4": {
  1480. "JmesPath\\": "src/"
  1481. },
  1482. "files": [
  1483. "src/JmesPath.php"
  1484. ]
  1485. },
  1486. "notification-url": "https://packagist.org/downloads/",
  1487. "license": [
  1488. "MIT"
  1489. ],
  1490. "authors": [
  1491. {
  1492. "name": "Michael Dowling",
  1493. "email": "mtdowling@gmail.com",
  1494. "homepage": "https://github.com/mtdowling"
  1495. }
  1496. ],
  1497. "description": "Declaratively specify how to extract elements from a JSON document",
  1498. "keywords": [
  1499. "json",
  1500. "jsonpath"
  1501. ],
  1502. "install-path": "../mtdowling/jmespath.php"
  1503. },
  1504. {
  1505. "name": "myclabs/php-enum",
  1506. "version": "1.6.6",
  1507. "version_normalized": "1.6.6.0",
  1508. "source": {
  1509. "type": "git",
  1510. "url": "https://github.com/myclabs/php-enum.git",
  1511. "reference": "32c4202886c51fbe5cc3a7c34ec5c9a4a790345e"
  1512. },
  1513. "dist": {
  1514. "type": "zip",
  1515. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/32c4202886c51fbe5cc3a7c34ec5c9a4a790345e",
  1516. "reference": "32c4202886c51fbe5cc3a7c34ec5c9a4a790345e",
  1517. "shasum": "",
  1518. "mirrors": [
  1519. {
  1520. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1521. "preferred": true
  1522. }
  1523. ]
  1524. },
  1525. "require": {
  1526. "ext-json": "*",
  1527. "php": ">=5.4"
  1528. },
  1529. "require-dev": {
  1530. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  1531. "squizlabs/php_codesniffer": "1.*"
  1532. },
  1533. "time": "2019-02-04T21:18:49+00:00",
  1534. "type": "library",
  1535. "installation-source": "dist",
  1536. "autoload": {
  1537. "psr-4": {
  1538. "MyCLabs\\Enum\\": "src/"
  1539. }
  1540. },
  1541. "notification-url": "https://packagist.org/downloads/",
  1542. "license": [
  1543. "MIT"
  1544. ],
  1545. "authors": [
  1546. {
  1547. "name": "PHP Enum contributors",
  1548. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  1549. }
  1550. ],
  1551. "description": "PHP Enum implementation",
  1552. "homepage": "http://github.com/myclabs/php-enum",
  1553. "keywords": [
  1554. "enum"
  1555. ],
  1556. "support": {
  1557. "issues": "https://github.com/myclabs/php-enum/issues",
  1558. "source": "https://github.com/myclabs/php-enum/tree/master"
  1559. },
  1560. "install-path": "../myclabs/php-enum"
  1561. },
  1562. {
  1563. "name": "overtrue/socialite",
  1564. "version": "2.0.24",
  1565. "version_normalized": "2.0.24.0",
  1566. "source": {
  1567. "type": "git",
  1568. "url": "https://github.com/overtrue/socialite.git",
  1569. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  1570. },
  1571. "dist": {
  1572. "type": "zip",
  1573. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  1574. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  1575. "shasum": "",
  1576. "mirrors": [
  1577. {
  1578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1579. "preferred": true
  1580. }
  1581. ]
  1582. },
  1583. "require": {
  1584. "ext-json": "*",
  1585. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  1586. "php": ">=5.6",
  1587. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  1588. },
  1589. "require-dev": {
  1590. "mockery/mockery": "~1.2",
  1591. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  1592. },
  1593. "time": "2021-05-13T16:04:48+00:00",
  1594. "type": "library",
  1595. "installation-source": "dist",
  1596. "autoload": {
  1597. "psr-4": {
  1598. "Overtrue\\Socialite\\": "src/"
  1599. }
  1600. },
  1601. "notification-url": "https://packagist.org/downloads/",
  1602. "license": [
  1603. "MIT"
  1604. ],
  1605. "authors": [
  1606. {
  1607. "name": "overtrue",
  1608. "email": "anzhengchao@gmail.com"
  1609. }
  1610. ],
  1611. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  1612. "keywords": [
  1613. "login",
  1614. "oauth",
  1615. "qq",
  1616. "social",
  1617. "wechat",
  1618. "weibo"
  1619. ],
  1620. "support": {
  1621. "issues": "https://github.com/overtrue/socialite/issues",
  1622. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  1623. },
  1624. "funding": [
  1625. {
  1626. "url": "https://www.patreon.com/overtrue",
  1627. "type": "patreon"
  1628. }
  1629. ],
  1630. "install-path": "../overtrue/socialite"
  1631. },
  1632. {
  1633. "name": "overtrue/wechat",
  1634. "version": "4.5.0",
  1635. "version_normalized": "4.5.0.0",
  1636. "source": {
  1637. "type": "git",
  1638. "url": "https://github.com/w7corp/easywechat.git",
  1639. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776"
  1640. },
  1641. "dist": {
  1642. "type": "zip",
  1643. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  1644. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  1645. "shasum": "",
  1646. "mirrors": [
  1647. {
  1648. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1649. "preferred": true
  1650. }
  1651. ]
  1652. },
  1653. "require": {
  1654. "easywechat-composer/easywechat-composer": "^1.1",
  1655. "ext-fileinfo": "*",
  1656. "ext-openssl": "*",
  1657. "ext-simplexml": "*",
  1658. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  1659. "monolog/monolog": "^1.22 || ^2.0",
  1660. "overtrue/socialite": "~2.0",
  1661. "php": ">=7.2",
  1662. "pimple/pimple": "^3.0",
  1663. "psr/simple-cache": "^1.0",
  1664. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  1665. "symfony/event-dispatcher": "^4.3 || ^5.0",
  1666. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  1667. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  1668. },
  1669. "require-dev": {
  1670. "friendsofphp/php-cs-fixer": "^2.15",
  1671. "mikey179/vfsstream": "^1.6",
  1672. "mockery/mockery": "^1.2.3",
  1673. "phpstan/phpstan": "^0.12.0",
  1674. "phpunit/phpunit": "^7.5"
  1675. },
  1676. "time": "2021-12-27T13:56:47+00:00",
  1677. "type": "library",
  1678. "installation-source": "dist",
  1679. "autoload": {
  1680. "files": [
  1681. "src/Kernel/Support/Helpers.php",
  1682. "src/Kernel/Helpers.php"
  1683. ],
  1684. "psr-4": {
  1685. "EasyWeChat\\": "src/"
  1686. }
  1687. },
  1688. "notification-url": "https://packagist.org/downloads/",
  1689. "license": [
  1690. "MIT"
  1691. ],
  1692. "authors": [
  1693. {
  1694. "name": "overtrue",
  1695. "email": "anzhengchao@gmail.com"
  1696. }
  1697. ],
  1698. "description": "微信SDK",
  1699. "keywords": [
  1700. "easywechat",
  1701. "sdk",
  1702. "wechat",
  1703. "weixin",
  1704. "weixin-sdk"
  1705. ],
  1706. "support": {
  1707. "issues": "https://github.com/w7corp/easywechat/issues",
  1708. "source": "https://github.com/w7corp/easywechat/tree/4.5.0"
  1709. },
  1710. "funding": [
  1711. {
  1712. "url": "https://github.com/overtrue",
  1713. "type": "github"
  1714. }
  1715. ],
  1716. "install-path": "../overtrue/wechat"
  1717. },
  1718. {
  1719. "name": "phpoffice/phpexcel",
  1720. "version": "1.8.1",
  1721. "version_normalized": "1.8.1.0",
  1722. "source": {
  1723. "type": "git",
  1724. "url": "https://github.com/PHPOffice/PHPExcel.git",
  1725. "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32"
  1726. },
  1727. "dist": {
  1728. "type": "zip",
  1729. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/372c7cbb695a6f6f1e62649381aeaa37e7e70b32",
  1730. "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32",
  1731. "shasum": "",
  1732. "mirrors": [
  1733. {
  1734. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1735. "preferred": true
  1736. }
  1737. ]
  1738. },
  1739. "require": {
  1740. "ext-xml": "*",
  1741. "ext-xmlwriter": "*",
  1742. "php": ">=5.2.0"
  1743. },
  1744. "time": "2015-05-01T07:00:55+00:00",
  1745. "type": "library",
  1746. "installation-source": "dist",
  1747. "autoload": {
  1748. "psr-0": {
  1749. "PHPExcel": "Classes/"
  1750. }
  1751. },
  1752. "notification-url": "https://packagist.org/downloads/",
  1753. "license": [
  1754. "LGPL"
  1755. ],
  1756. "authors": [
  1757. {
  1758. "name": "Maarten Balliauw",
  1759. "homepage": "http://blog.maartenballiauw.be"
  1760. },
  1761. {
  1762. "name": "Mark Baker"
  1763. },
  1764. {
  1765. "name": "Franck Lefevre",
  1766. "homepage": "http://blog.rootslabs.net"
  1767. },
  1768. {
  1769. "name": "Erik Tilt"
  1770. }
  1771. ],
  1772. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1773. "homepage": "http://phpexcel.codeplex.com",
  1774. "keywords": [
  1775. "OpenXML",
  1776. "excel",
  1777. "php",
  1778. "spreadsheet",
  1779. "xls",
  1780. "xlsx"
  1781. ],
  1782. "support": {
  1783. "issues": "https://github.com/PHPOffice/PHPExcel/issues",
  1784. "source": "https://github.com/PHPOffice/PHPExcel/tree/master"
  1785. },
  1786. "abandoned": "phpoffice/phpspreadsheet",
  1787. "install-path": "../phpoffice/phpexcel"
  1788. },
  1789. {
  1790. "name": "pimple/pimple",
  1791. "version": "v3.5.0",
  1792. "version_normalized": "3.5.0.0",
  1793. "source": {
  1794. "type": "git",
  1795. "url": "https://github.com/silexphp/Pimple.git",
  1796. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  1797. },
  1798. "dist": {
  1799. "type": "zip",
  1800. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1801. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1802. "shasum": "",
  1803. "mirrors": [
  1804. {
  1805. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1806. "preferred": true
  1807. }
  1808. ]
  1809. },
  1810. "require": {
  1811. "php": ">=7.2.5",
  1812. "psr/container": "^1.1 || ^2.0"
  1813. },
  1814. "require-dev": {
  1815. "symfony/phpunit-bridge": "^5.4@dev"
  1816. },
  1817. "time": "2021-10-28T11:13:42+00:00",
  1818. "type": "library",
  1819. "extra": {
  1820. "branch-alias": {
  1821. "dev-master": "3.4.x-dev"
  1822. }
  1823. },
  1824. "installation-source": "dist",
  1825. "autoload": {
  1826. "psr-0": {
  1827. "Pimple": "src/"
  1828. }
  1829. },
  1830. "notification-url": "https://packagist.org/downloads/",
  1831. "license": [
  1832. "MIT"
  1833. ],
  1834. "authors": [
  1835. {
  1836. "name": "Fabien Potencier",
  1837. "email": "fabien@symfony.com"
  1838. }
  1839. ],
  1840. "description": "Pimple, a simple Dependency Injection Container",
  1841. "homepage": "https://pimple.symfony.com",
  1842. "keywords": [
  1843. "container",
  1844. "dependency injection"
  1845. ],
  1846. "support": {
  1847. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  1848. },
  1849. "install-path": "../pimple/pimple"
  1850. },
  1851. {
  1852. "name": "psr/cache",
  1853. "version": "2.0.0",
  1854. "version_normalized": "2.0.0.0",
  1855. "source": {
  1856. "type": "git",
  1857. "url": "https://github.com/php-fig/cache.git",
  1858. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b"
  1859. },
  1860. "dist": {
  1861. "type": "zip",
  1862. "url": "https://api.github.com/repos/php-fig/cache/zipball/213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  1863. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  1864. "shasum": "",
  1865. "mirrors": [
  1866. {
  1867. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1868. "preferred": true
  1869. }
  1870. ]
  1871. },
  1872. "require": {
  1873. "php": ">=8.0.0"
  1874. },
  1875. "time": "2021-02-03T23:23:37+00:00",
  1876. "type": "library",
  1877. "extra": {
  1878. "branch-alias": {
  1879. "dev-master": "1.0.x-dev"
  1880. }
  1881. },
  1882. "installation-source": "dist",
  1883. "autoload": {
  1884. "psr-4": {
  1885. "Psr\\Cache\\": "src/"
  1886. }
  1887. },
  1888. "notification-url": "https://packagist.org/downloads/",
  1889. "license": [
  1890. "MIT"
  1891. ],
  1892. "authors": [
  1893. {
  1894. "name": "PHP-FIG",
  1895. "homepage": "https://www.php-fig.org/"
  1896. }
  1897. ],
  1898. "description": "Common interface for caching libraries",
  1899. "keywords": [
  1900. "cache",
  1901. "psr",
  1902. "psr-6"
  1903. ],
  1904. "support": {
  1905. "source": "https://github.com/php-fig/cache/tree/2.0.0"
  1906. },
  1907. "install-path": "../psr/cache"
  1908. },
  1909. {
  1910. "name": "psr/container",
  1911. "version": "1.1.2",
  1912. "version_normalized": "1.1.2.0",
  1913. "source": {
  1914. "type": "git",
  1915. "url": "https://github.com/php-fig/container.git",
  1916. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  1917. },
  1918. "dist": {
  1919. "type": "zip",
  1920. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  1921. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  1922. "shasum": "",
  1923. "mirrors": [
  1924. {
  1925. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1926. "preferred": true
  1927. }
  1928. ]
  1929. },
  1930. "require": {
  1931. "php": ">=7.4.0"
  1932. },
  1933. "time": "2021-11-05T16:50:12+00:00",
  1934. "type": "library",
  1935. "installation-source": "dist",
  1936. "autoload": {
  1937. "psr-4": {
  1938. "Psr\\Container\\": "src/"
  1939. }
  1940. },
  1941. "notification-url": "https://packagist.org/downloads/",
  1942. "license": [
  1943. "MIT"
  1944. ],
  1945. "authors": [
  1946. {
  1947. "name": "PHP-FIG",
  1948. "homepage": "https://www.php-fig.org/"
  1949. }
  1950. ],
  1951. "description": "Common Container Interface (PHP FIG PSR-11)",
  1952. "homepage": "https://github.com/php-fig/container",
  1953. "keywords": [
  1954. "PSR-11",
  1955. "container",
  1956. "container-interface",
  1957. "container-interop",
  1958. "psr"
  1959. ],
  1960. "support": {
  1961. "issues": "https://github.com/php-fig/container/issues",
  1962. "source": "https://github.com/php-fig/container/tree/1.1.2"
  1963. },
  1964. "install-path": "../psr/container"
  1965. },
  1966. {
  1967. "name": "psr/event-dispatcher",
  1968. "version": "1.0.0",
  1969. "version_normalized": "1.0.0.0",
  1970. "source": {
  1971. "type": "git",
  1972. "url": "https://github.com/php-fig/event-dispatcher.git",
  1973. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1974. },
  1975. "dist": {
  1976. "type": "zip",
  1977. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1978. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1979. "shasum": "",
  1980. "mirrors": [
  1981. {
  1982. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1983. "preferred": true
  1984. }
  1985. ]
  1986. },
  1987. "require": {
  1988. "php": ">=7.2.0"
  1989. },
  1990. "time": "2019-01-08T18:20:26+00:00",
  1991. "type": "library",
  1992. "extra": {
  1993. "branch-alias": {
  1994. "dev-master": "1.0.x-dev"
  1995. }
  1996. },
  1997. "installation-source": "dist",
  1998. "autoload": {
  1999. "psr-4": {
  2000. "Psr\\EventDispatcher\\": "src/"
  2001. }
  2002. },
  2003. "notification-url": "https://packagist.org/downloads/",
  2004. "license": [
  2005. "MIT"
  2006. ],
  2007. "authors": [
  2008. {
  2009. "name": "PHP-FIG",
  2010. "homepage": "http://www.php-fig.org/"
  2011. }
  2012. ],
  2013. "description": "Standard interfaces for event handling.",
  2014. "keywords": [
  2015. "events",
  2016. "psr",
  2017. "psr-14"
  2018. ],
  2019. "install-path": "../psr/event-dispatcher"
  2020. },
  2021. {
  2022. "name": "psr/http-client",
  2023. "version": "1.0.1",
  2024. "version_normalized": "1.0.1.0",
  2025. "source": {
  2026. "type": "git",
  2027. "url": "https://github.com/php-fig/http-client.git",
  2028. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2029. },
  2030. "dist": {
  2031. "type": "zip",
  2032. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2033. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2034. "shasum": "",
  2035. "mirrors": [
  2036. {
  2037. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2038. "preferred": true
  2039. }
  2040. ]
  2041. },
  2042. "require": {
  2043. "php": "^7.0 || ^8.0",
  2044. "psr/http-message": "^1.0"
  2045. },
  2046. "time": "2020-06-29T06:28:15+00:00",
  2047. "type": "library",
  2048. "extra": {
  2049. "branch-alias": {
  2050. "dev-master": "1.0.x-dev"
  2051. }
  2052. },
  2053. "installation-source": "dist",
  2054. "autoload": {
  2055. "psr-4": {
  2056. "Psr\\Http\\Client\\": "src/"
  2057. }
  2058. },
  2059. "notification-url": "https://packagist.org/downloads/",
  2060. "license": [
  2061. "MIT"
  2062. ],
  2063. "authors": [
  2064. {
  2065. "name": "PHP-FIG",
  2066. "homepage": "http://www.php-fig.org/"
  2067. }
  2068. ],
  2069. "description": "Common interface for HTTP clients",
  2070. "homepage": "https://github.com/php-fig/http-client",
  2071. "keywords": [
  2072. "http",
  2073. "http-client",
  2074. "psr",
  2075. "psr-18"
  2076. ],
  2077. "install-path": "../psr/http-client"
  2078. },
  2079. {
  2080. "name": "psr/http-factory",
  2081. "version": "1.0.1",
  2082. "version_normalized": "1.0.1.0",
  2083. "source": {
  2084. "type": "git",
  2085. "url": "https://github.com/php-fig/http-factory.git",
  2086. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2087. },
  2088. "dist": {
  2089. "type": "zip",
  2090. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2091. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2092. "shasum": "",
  2093. "mirrors": [
  2094. {
  2095. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2096. "preferred": true
  2097. }
  2098. ]
  2099. },
  2100. "require": {
  2101. "php": ">=7.0.0",
  2102. "psr/http-message": "^1.0"
  2103. },
  2104. "time": "2019-04-30T12:38:16+00:00",
  2105. "type": "library",
  2106. "extra": {
  2107. "branch-alias": {
  2108. "dev-master": "1.0.x-dev"
  2109. }
  2110. },
  2111. "installation-source": "dist",
  2112. "autoload": {
  2113. "psr-4": {
  2114. "Psr\\Http\\Message\\": "src/"
  2115. }
  2116. },
  2117. "notification-url": "https://packagist.org/downloads/",
  2118. "license": [
  2119. "MIT"
  2120. ],
  2121. "authors": [
  2122. {
  2123. "name": "PHP-FIG",
  2124. "homepage": "http://www.php-fig.org/"
  2125. }
  2126. ],
  2127. "description": "Common interfaces for PSR-7 HTTP message factories",
  2128. "keywords": [
  2129. "factory",
  2130. "http",
  2131. "message",
  2132. "psr",
  2133. "psr-17",
  2134. "psr-7",
  2135. "request",
  2136. "response"
  2137. ],
  2138. "support": {
  2139. "source": "https://github.com/php-fig/http-factory/tree/master"
  2140. },
  2141. "install-path": "../psr/http-factory"
  2142. },
  2143. {
  2144. "name": "psr/http-message",
  2145. "version": "1.0.1",
  2146. "version_normalized": "1.0.1.0",
  2147. "source": {
  2148. "type": "git",
  2149. "url": "https://github.com/php-fig/http-message.git",
  2150. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2151. },
  2152. "dist": {
  2153. "type": "zip",
  2154. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2155. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2156. "shasum": "",
  2157. "mirrors": [
  2158. {
  2159. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2160. "preferred": true
  2161. }
  2162. ]
  2163. },
  2164. "require": {
  2165. "php": ">=5.3.0"
  2166. },
  2167. "time": "2016-08-06T14:39:51+00:00",
  2168. "type": "library",
  2169. "extra": {
  2170. "branch-alias": {
  2171. "dev-master": "1.0.x-dev"
  2172. }
  2173. },
  2174. "installation-source": "dist",
  2175. "autoload": {
  2176. "psr-4": {
  2177. "Psr\\Http\\Message\\": "src/"
  2178. }
  2179. },
  2180. "notification-url": "https://packagist.org/downloads/",
  2181. "license": [
  2182. "MIT"
  2183. ],
  2184. "authors": [
  2185. {
  2186. "name": "PHP-FIG",
  2187. "homepage": "http://www.php-fig.org/"
  2188. }
  2189. ],
  2190. "description": "Common interface for HTTP messages",
  2191. "homepage": "https://github.com/php-fig/http-message",
  2192. "keywords": [
  2193. "http",
  2194. "http-message",
  2195. "psr",
  2196. "psr-7",
  2197. "request",
  2198. "response"
  2199. ],
  2200. "install-path": "../psr/http-message"
  2201. },
  2202. {
  2203. "name": "psr/log",
  2204. "version": "1.1.4",
  2205. "version_normalized": "1.1.4.0",
  2206. "source": {
  2207. "type": "git",
  2208. "url": "https://github.com/php-fig/log.git",
  2209. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2210. },
  2211. "dist": {
  2212. "type": "zip",
  2213. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2214. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2215. "shasum": "",
  2216. "mirrors": [
  2217. {
  2218. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2219. "preferred": true
  2220. }
  2221. ]
  2222. },
  2223. "require": {
  2224. "php": ">=5.3.0"
  2225. },
  2226. "time": "2021-05-03T11:20:27+00:00",
  2227. "type": "library",
  2228. "extra": {
  2229. "branch-alias": {
  2230. "dev-master": "1.1.x-dev"
  2231. }
  2232. },
  2233. "installation-source": "dist",
  2234. "autoload": {
  2235. "psr-4": {
  2236. "Psr\\Log\\": "Psr/Log/"
  2237. }
  2238. },
  2239. "notification-url": "https://packagist.org/downloads/",
  2240. "license": [
  2241. "MIT"
  2242. ],
  2243. "authors": [
  2244. {
  2245. "name": "PHP-FIG",
  2246. "homepage": "https://www.php-fig.org/"
  2247. }
  2248. ],
  2249. "description": "Common interface for logging libraries",
  2250. "homepage": "https://github.com/php-fig/log",
  2251. "keywords": [
  2252. "log",
  2253. "psr",
  2254. "psr-3"
  2255. ],
  2256. "support": {
  2257. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2258. },
  2259. "install-path": "../psr/log"
  2260. },
  2261. {
  2262. "name": "psr/simple-cache",
  2263. "version": "1.0.1",
  2264. "version_normalized": "1.0.1.0",
  2265. "source": {
  2266. "type": "git",
  2267. "url": "https://github.com/php-fig/simple-cache.git",
  2268. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2269. },
  2270. "dist": {
  2271. "type": "zip",
  2272. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2273. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2274. "shasum": "",
  2275. "mirrors": [
  2276. {
  2277. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2278. "preferred": true
  2279. }
  2280. ]
  2281. },
  2282. "require": {
  2283. "php": ">=5.3.0"
  2284. },
  2285. "time": "2017-10-23T01:57:42+00:00",
  2286. "type": "library",
  2287. "extra": {
  2288. "branch-alias": {
  2289. "dev-master": "1.0.x-dev"
  2290. }
  2291. },
  2292. "installation-source": "dist",
  2293. "autoload": {
  2294. "psr-4": {
  2295. "Psr\\SimpleCache\\": "src/"
  2296. }
  2297. },
  2298. "notification-url": "https://packagist.org/downloads/",
  2299. "license": [
  2300. "MIT"
  2301. ],
  2302. "authors": [
  2303. {
  2304. "name": "PHP-FIG",
  2305. "homepage": "http://www.php-fig.org/"
  2306. }
  2307. ],
  2308. "description": "Common interfaces for simple caching",
  2309. "keywords": [
  2310. "cache",
  2311. "caching",
  2312. "psr",
  2313. "psr-16",
  2314. "simple-cache"
  2315. ],
  2316. "install-path": "../psr/simple-cache"
  2317. },
  2318. {
  2319. "name": "qiniu/php-sdk",
  2320. "version": "v7.5.0",
  2321. "version_normalized": "7.5.0.0",
  2322. "source": {
  2323. "type": "git",
  2324. "url": "https://github.com/qiniu/php-sdk.git",
  2325. "reference": "0cc46e4206002d1a736dbb4abb1424b0b7fc3f22"
  2326. },
  2327. "dist": {
  2328. "type": "zip",
  2329. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/0cc46e4206002d1a736dbb4abb1424b0b7fc3f22",
  2330. "reference": "0cc46e4206002d1a736dbb4abb1424b0b7fc3f22",
  2331. "shasum": "",
  2332. "mirrors": [
  2333. {
  2334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2335. "preferred": true
  2336. }
  2337. ]
  2338. },
  2339. "require": {
  2340. "myclabs/php-enum": "1.6.6",
  2341. "php": ">=5.3.3"
  2342. },
  2343. "require-dev": {
  2344. "paragonie/random_compat": ">=2",
  2345. "phpunit/phpunit": "~4.0",
  2346. "squizlabs/php_codesniffer": "~3.6"
  2347. },
  2348. "time": "2022-04-18T10:49:54+00:00",
  2349. "type": "library",
  2350. "installation-source": "dist",
  2351. "autoload": {
  2352. "files": [
  2353. "src/Qiniu/functions.php"
  2354. ],
  2355. "psr-4": {
  2356. "Qiniu\\": "src/Qiniu"
  2357. }
  2358. },
  2359. "notification-url": "https://packagist.org/downloads/",
  2360. "license": [
  2361. "MIT"
  2362. ],
  2363. "authors": [
  2364. {
  2365. "name": "Qiniu",
  2366. "email": "sdk@qiniu.com",
  2367. "homepage": "http://www.qiniu.com"
  2368. }
  2369. ],
  2370. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  2371. "homepage": "http://developer.qiniu.com/",
  2372. "keywords": [
  2373. "cloud",
  2374. "qiniu",
  2375. "sdk",
  2376. "storage"
  2377. ],
  2378. "support": {
  2379. "issues": "https://github.com/qiniu/php-sdk/issues",
  2380. "source": "https://github.com/qiniu/php-sdk/tree/v7.5.0"
  2381. },
  2382. "install-path": "../qiniu/php-sdk"
  2383. },
  2384. {
  2385. "name": "ralouphie/getallheaders",
  2386. "version": "3.0.3",
  2387. "version_normalized": "3.0.3.0",
  2388. "source": {
  2389. "type": "git",
  2390. "url": "https://github.com/ralouphie/getallheaders.git",
  2391. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2392. },
  2393. "dist": {
  2394. "type": "zip",
  2395. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2396. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2397. "shasum": "",
  2398. "mirrors": [
  2399. {
  2400. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2401. "preferred": true
  2402. }
  2403. ]
  2404. },
  2405. "require": {
  2406. "php": ">=5.6"
  2407. },
  2408. "require-dev": {
  2409. "php-coveralls/php-coveralls": "^2.1",
  2410. "phpunit/phpunit": "^5 || ^6.5"
  2411. },
  2412. "time": "2019-03-08T08:55:37+00:00",
  2413. "type": "library",
  2414. "installation-source": "dist",
  2415. "autoload": {
  2416. "files": [
  2417. "src/getallheaders.php"
  2418. ]
  2419. },
  2420. "notification-url": "https://packagist.org/downloads/",
  2421. "license": [
  2422. "MIT"
  2423. ],
  2424. "authors": [
  2425. {
  2426. "name": "Ralph Khattar",
  2427. "email": "ralph.khattar@gmail.com"
  2428. }
  2429. ],
  2430. "description": "A polyfill for getallheaders.",
  2431. "install-path": "../ralouphie/getallheaders"
  2432. },
  2433. {
  2434. "name": "songshenzong/support",
  2435. "version": "2.0.6",
  2436. "version_normalized": "2.0.6.0",
  2437. "source": {
  2438. "type": "git",
  2439. "url": "https://github.com/aliguyong/support.git",
  2440. "reference": "b334d8abc99e8a85538a556e10c670c18b71c230"
  2441. },
  2442. "dist": {
  2443. "type": "zip",
  2444. "url": "https://api.github.com/repos/aliguyong/support/zipball/b334d8abc99e8a85538a556e10c670c18b71c230",
  2445. "reference": "b334d8abc99e8a85538a556e10c670c18b71c230",
  2446. "shasum": "",
  2447. "mirrors": [
  2448. {
  2449. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2450. "preferred": true
  2451. }
  2452. ]
  2453. },
  2454. "require": {
  2455. "danielstjules/stringy": "^3.1",
  2456. "ext-json": "*",
  2457. "ext-simplexml": "*",
  2458. "ext-xml": "*",
  2459. "php": ">=5.5"
  2460. },
  2461. "require-dev": {
  2462. "laravel/framework": "^5.8",
  2463. "phpunit/phpunit": "^4.8.35|^5.4.3"
  2464. },
  2465. "time": "2021-12-29T06:36:20+00:00",
  2466. "type": "library",
  2467. "extra": {
  2468. "laravel": {
  2469. "providers": [
  2470. "Songshenzong\\Support\\StringsServiceProvider"
  2471. ],
  2472. "aliases": {
  2473. "Strings": "Songshenzong\\Support\\StringsFacade"
  2474. }
  2475. }
  2476. },
  2477. "installation-source": "dist",
  2478. "autoload": {
  2479. "files": [
  2480. "src/StringsHelpers.php",
  2481. "src/BashEchoHelpers.php"
  2482. ],
  2483. "psr-4": {
  2484. "Songshenzong\\Support\\": "src/"
  2485. }
  2486. },
  2487. "notification-url": "https://packagist.org/downloads/",
  2488. "license": [
  2489. "MIT"
  2490. ],
  2491. "authors": [
  2492. {
  2493. "name": "Songshenzong",
  2494. "email": "i@songshenzong.com"
  2495. }
  2496. ],
  2497. "description": "The Songshenzong Support package.",
  2498. "homepage": "http://songshenzong.com",
  2499. "keywords": [
  2500. "laravel",
  2501. "support",
  2502. "tools",
  2503. "web"
  2504. ],
  2505. "support": {
  2506. "issues": "https://github.com/songshenzong/support/issues",
  2507. "source": "https://github.com/songshenzong/support"
  2508. },
  2509. "install-path": "../songshenzong/support"
  2510. },
  2511. {
  2512. "name": "symfony/cache",
  2513. "version": "v5.4.8",
  2514. "version_normalized": "5.4.8.0",
  2515. "source": {
  2516. "type": "git",
  2517. "url": "https://github.com/symfony/cache.git",
  2518. "reference": "4c6747cf7e56c6b8e3094dd24852bd3e364375b1"
  2519. },
  2520. "dist": {
  2521. "type": "zip",
  2522. "url": "https://api.github.com/repos/symfony/cache/zipball/4c6747cf7e56c6b8e3094dd24852bd3e364375b1",
  2523. "reference": "4c6747cf7e56c6b8e3094dd24852bd3e364375b1",
  2524. "shasum": "",
  2525. "mirrors": [
  2526. {
  2527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2528. "preferred": true
  2529. }
  2530. ]
  2531. },
  2532. "require": {
  2533. "php": ">=7.2.5",
  2534. "psr/cache": "^1.0|^2.0",
  2535. "psr/log": "^1.1|^2|^3",
  2536. "symfony/cache-contracts": "^1.1.7|^2",
  2537. "symfony/deprecation-contracts": "^2.1|^3",
  2538. "symfony/polyfill-php73": "^1.9",
  2539. "symfony/polyfill-php80": "^1.16",
  2540. "symfony/service-contracts": "^1.1|^2|^3",
  2541. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  2542. },
  2543. "conflict": {
  2544. "doctrine/dbal": "<2.13.1",
  2545. "symfony/dependency-injection": "<4.4",
  2546. "symfony/http-kernel": "<4.4",
  2547. "symfony/var-dumper": "<4.4"
  2548. },
  2549. "provide": {
  2550. "psr/cache-implementation": "1.0|2.0",
  2551. "psr/simple-cache-implementation": "1.0|2.0",
  2552. "symfony/cache-implementation": "1.0|2.0"
  2553. },
  2554. "require-dev": {
  2555. "cache/integration-tests": "dev-master",
  2556. "doctrine/cache": "^1.6|^2.0",
  2557. "doctrine/dbal": "^2.13.1|^3.0",
  2558. "predis/predis": "^1.1",
  2559. "psr/simple-cache": "^1.0|^2.0",
  2560. "symfony/config": "^4.4|^5.0|^6.0",
  2561. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2562. "symfony/filesystem": "^4.4|^5.0|^6.0",
  2563. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  2564. "symfony/messenger": "^4.4|^5.0|^6.0",
  2565. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2566. },
  2567. "time": "2022-04-26T13:19:20+00:00",
  2568. "type": "library",
  2569. "installation-source": "dist",
  2570. "autoload": {
  2571. "psr-4": {
  2572. "Symfony\\Component\\Cache\\": ""
  2573. },
  2574. "exclude-from-classmap": [
  2575. "/Tests/"
  2576. ]
  2577. },
  2578. "notification-url": "https://packagist.org/downloads/",
  2579. "license": [
  2580. "MIT"
  2581. ],
  2582. "authors": [
  2583. {
  2584. "name": "Nicolas Grekas",
  2585. "email": "p@tchwork.com"
  2586. },
  2587. {
  2588. "name": "Symfony Community",
  2589. "homepage": "https://symfony.com/contributors"
  2590. }
  2591. ],
  2592. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  2593. "homepage": "https://symfony.com",
  2594. "keywords": [
  2595. "caching",
  2596. "psr6"
  2597. ],
  2598. "support": {
  2599. "source": "https://github.com/symfony/cache/tree/v5.4.8"
  2600. },
  2601. "funding": [
  2602. {
  2603. "url": "https://symfony.com/sponsor",
  2604. "type": "custom"
  2605. },
  2606. {
  2607. "url": "https://github.com/fabpot",
  2608. "type": "github"
  2609. },
  2610. {
  2611. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2612. "type": "tidelift"
  2613. }
  2614. ],
  2615. "install-path": "../symfony/cache"
  2616. },
  2617. {
  2618. "name": "symfony/cache-contracts",
  2619. "version": "v2.5.1",
  2620. "version_normalized": "2.5.1.0",
  2621. "source": {
  2622. "type": "git",
  2623. "url": "https://github.com/symfony/cache-contracts.git",
  2624. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  2625. },
  2626. "dist": {
  2627. "type": "zip",
  2628. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  2629. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  2630. "shasum": "",
  2631. "mirrors": [
  2632. {
  2633. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2634. "preferred": true
  2635. }
  2636. ]
  2637. },
  2638. "require": {
  2639. "php": ">=7.2.5",
  2640. "psr/cache": "^1.0|^2.0|^3.0"
  2641. },
  2642. "suggest": {
  2643. "symfony/cache-implementation": ""
  2644. },
  2645. "time": "2022-01-02T09:53:40+00:00",
  2646. "type": "library",
  2647. "extra": {
  2648. "branch-alias": {
  2649. "dev-main": "2.5-dev"
  2650. },
  2651. "thanks": {
  2652. "name": "symfony/contracts",
  2653. "url": "https://github.com/symfony/contracts"
  2654. }
  2655. },
  2656. "installation-source": "dist",
  2657. "autoload": {
  2658. "psr-4": {
  2659. "Symfony\\Contracts\\Cache\\": ""
  2660. }
  2661. },
  2662. "notification-url": "https://packagist.org/downloads/",
  2663. "license": [
  2664. "MIT"
  2665. ],
  2666. "authors": [
  2667. {
  2668. "name": "Nicolas Grekas",
  2669. "email": "p@tchwork.com"
  2670. },
  2671. {
  2672. "name": "Symfony Community",
  2673. "homepage": "https://symfony.com/contributors"
  2674. }
  2675. ],
  2676. "description": "Generic abstractions related to caching",
  2677. "homepage": "https://symfony.com",
  2678. "keywords": [
  2679. "abstractions",
  2680. "contracts",
  2681. "decoupling",
  2682. "interfaces",
  2683. "interoperability",
  2684. "standards"
  2685. ],
  2686. "support": {
  2687. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.1"
  2688. },
  2689. "funding": [
  2690. {
  2691. "url": "https://symfony.com/sponsor",
  2692. "type": "custom"
  2693. },
  2694. {
  2695. "url": "https://github.com/fabpot",
  2696. "type": "github"
  2697. },
  2698. {
  2699. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2700. "type": "tidelift"
  2701. }
  2702. ],
  2703. "install-path": "../symfony/cache-contracts"
  2704. },
  2705. {
  2706. "name": "symfony/deprecation-contracts",
  2707. "version": "v3.0.0",
  2708. "version_normalized": "3.0.0.0",
  2709. "source": {
  2710. "type": "git",
  2711. "url": "https://github.com/symfony/deprecation-contracts.git",
  2712. "reference": "c726b64c1ccfe2896cb7df2e1331c357ad1c8ced"
  2713. },
  2714. "dist": {
  2715. "type": "zip",
  2716. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/c726b64c1ccfe2896cb7df2e1331c357ad1c8ced",
  2717. "reference": "c726b64c1ccfe2896cb7df2e1331c357ad1c8ced",
  2718. "shasum": "",
  2719. "mirrors": [
  2720. {
  2721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2722. "preferred": true
  2723. }
  2724. ]
  2725. },
  2726. "require": {
  2727. "php": ">=8.0.2"
  2728. },
  2729. "time": "2021-11-01T23:48:49+00:00",
  2730. "type": "library",
  2731. "extra": {
  2732. "branch-alias": {
  2733. "dev-main": "3.0-dev"
  2734. },
  2735. "thanks": {
  2736. "name": "symfony/contracts",
  2737. "url": "https://github.com/symfony/contracts"
  2738. }
  2739. },
  2740. "installation-source": "dist",
  2741. "autoload": {
  2742. "files": [
  2743. "function.php"
  2744. ]
  2745. },
  2746. "notification-url": "https://packagist.org/downloads/",
  2747. "license": [
  2748. "MIT"
  2749. ],
  2750. "authors": [
  2751. {
  2752. "name": "Nicolas Grekas",
  2753. "email": "p@tchwork.com"
  2754. },
  2755. {
  2756. "name": "Symfony Community",
  2757. "homepage": "https://symfony.com/contributors"
  2758. }
  2759. ],
  2760. "description": "A generic function and convention to trigger deprecation notices",
  2761. "homepage": "https://symfony.com",
  2762. "support": {
  2763. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.0"
  2764. },
  2765. "funding": [
  2766. {
  2767. "url": "https://symfony.com/sponsor",
  2768. "type": "custom"
  2769. },
  2770. {
  2771. "url": "https://github.com/fabpot",
  2772. "type": "github"
  2773. },
  2774. {
  2775. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2776. "type": "tidelift"
  2777. }
  2778. ],
  2779. "install-path": "../symfony/deprecation-contracts"
  2780. },
  2781. {
  2782. "name": "symfony/event-dispatcher",
  2783. "version": "v5.4.3",
  2784. "version_normalized": "5.4.3.0",
  2785. "source": {
  2786. "type": "git",
  2787. "url": "https://github.com/symfony/event-dispatcher.git",
  2788. "reference": "dec8a9f58d20df252b9cd89f1c6c1530f747685d"
  2789. },
  2790. "dist": {
  2791. "type": "zip",
  2792. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/dec8a9f58d20df252b9cd89f1c6c1530f747685d",
  2793. "reference": "dec8a9f58d20df252b9cd89f1c6c1530f747685d",
  2794. "shasum": "",
  2795. "mirrors": [
  2796. {
  2797. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2798. "preferred": true
  2799. }
  2800. ]
  2801. },
  2802. "require": {
  2803. "php": ">=7.2.5",
  2804. "symfony/deprecation-contracts": "^2.1|^3",
  2805. "symfony/event-dispatcher-contracts": "^2|^3",
  2806. "symfony/polyfill-php80": "^1.16"
  2807. },
  2808. "conflict": {
  2809. "symfony/dependency-injection": "<4.4"
  2810. },
  2811. "provide": {
  2812. "psr/event-dispatcher-implementation": "1.0",
  2813. "symfony/event-dispatcher-implementation": "2.0"
  2814. },
  2815. "require-dev": {
  2816. "psr/log": "^1|^2|^3",
  2817. "symfony/config": "^4.4|^5.0|^6.0",
  2818. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2819. "symfony/error-handler": "^4.4|^5.0|^6.0",
  2820. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2821. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  2822. "symfony/service-contracts": "^1.1|^2|^3",
  2823. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  2824. },
  2825. "suggest": {
  2826. "symfony/dependency-injection": "",
  2827. "symfony/http-kernel": ""
  2828. },
  2829. "time": "2022-01-02T09:53:40+00:00",
  2830. "type": "library",
  2831. "installation-source": "dist",
  2832. "autoload": {
  2833. "psr-4": {
  2834. "Symfony\\Component\\EventDispatcher\\": ""
  2835. },
  2836. "exclude-from-classmap": [
  2837. "/Tests/"
  2838. ]
  2839. },
  2840. "notification-url": "https://packagist.org/downloads/",
  2841. "license": [
  2842. "MIT"
  2843. ],
  2844. "authors": [
  2845. {
  2846. "name": "Fabien Potencier",
  2847. "email": "fabien@symfony.com"
  2848. },
  2849. {
  2850. "name": "Symfony Community",
  2851. "homepage": "https://symfony.com/contributors"
  2852. }
  2853. ],
  2854. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2855. "homepage": "https://symfony.com",
  2856. "support": {
  2857. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.3"
  2858. },
  2859. "funding": [
  2860. {
  2861. "url": "https://symfony.com/sponsor",
  2862. "type": "custom"
  2863. },
  2864. {
  2865. "url": "https://github.com/fabpot",
  2866. "type": "github"
  2867. },
  2868. {
  2869. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2870. "type": "tidelift"
  2871. }
  2872. ],
  2873. "install-path": "../symfony/event-dispatcher"
  2874. },
  2875. {
  2876. "name": "symfony/event-dispatcher-contracts",
  2877. "version": "v3.0.1",
  2878. "version_normalized": "3.0.1.0",
  2879. "source": {
  2880. "type": "git",
  2881. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2882. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  2883. },
  2884. "dist": {
  2885. "type": "zip",
  2886. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  2887. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  2888. "shasum": "",
  2889. "mirrors": [
  2890. {
  2891. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2892. "preferred": true
  2893. }
  2894. ]
  2895. },
  2896. "require": {
  2897. "php": ">=8.0.2",
  2898. "psr/event-dispatcher": "^1"
  2899. },
  2900. "suggest": {
  2901. "symfony/event-dispatcher-implementation": ""
  2902. },
  2903. "time": "2022-01-02T09:55:41+00:00",
  2904. "type": "library",
  2905. "extra": {
  2906. "branch-alias": {
  2907. "dev-main": "3.0-dev"
  2908. },
  2909. "thanks": {
  2910. "name": "symfony/contracts",
  2911. "url": "https://github.com/symfony/contracts"
  2912. }
  2913. },
  2914. "installation-source": "dist",
  2915. "autoload": {
  2916. "psr-4": {
  2917. "Symfony\\Contracts\\EventDispatcher\\": ""
  2918. }
  2919. },
  2920. "notification-url": "https://packagist.org/downloads/",
  2921. "license": [
  2922. "MIT"
  2923. ],
  2924. "authors": [
  2925. {
  2926. "name": "Nicolas Grekas",
  2927. "email": "p@tchwork.com"
  2928. },
  2929. {
  2930. "name": "Symfony Community",
  2931. "homepage": "https://symfony.com/contributors"
  2932. }
  2933. ],
  2934. "description": "Generic abstractions related to dispatching event",
  2935. "homepage": "https://symfony.com",
  2936. "keywords": [
  2937. "abstractions",
  2938. "contracts",
  2939. "decoupling",
  2940. "interfaces",
  2941. "interoperability",
  2942. "standards"
  2943. ],
  2944. "support": {
  2945. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.1"
  2946. },
  2947. "funding": [
  2948. {
  2949. "url": "https://symfony.com/sponsor",
  2950. "type": "custom"
  2951. },
  2952. {
  2953. "url": "https://github.com/fabpot",
  2954. "type": "github"
  2955. },
  2956. {
  2957. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2958. "type": "tidelift"
  2959. }
  2960. ],
  2961. "install-path": "../symfony/event-dispatcher-contracts"
  2962. },
  2963. {
  2964. "name": "symfony/http-foundation",
  2965. "version": "v5.4.8",
  2966. "version_normalized": "5.4.8.0",
  2967. "source": {
  2968. "type": "git",
  2969. "url": "https://github.com/symfony/http-foundation.git",
  2970. "reference": "ff2818d1c3d49860bcae1f2cbb5eb00fcd3bf9e2"
  2971. },
  2972. "dist": {
  2973. "type": "zip",
  2974. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ff2818d1c3d49860bcae1f2cbb5eb00fcd3bf9e2",
  2975. "reference": "ff2818d1c3d49860bcae1f2cbb5eb00fcd3bf9e2",
  2976. "shasum": "",
  2977. "mirrors": [
  2978. {
  2979. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2980. "preferred": true
  2981. }
  2982. ]
  2983. },
  2984. "require": {
  2985. "php": ">=7.2.5",
  2986. "symfony/deprecation-contracts": "^2.1|^3",
  2987. "symfony/polyfill-mbstring": "~1.1",
  2988. "symfony/polyfill-php80": "^1.16"
  2989. },
  2990. "require-dev": {
  2991. "predis/predis": "~1.0",
  2992. "symfony/cache": "^4.4|^5.0|^6.0",
  2993. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2994. "symfony/mime": "^4.4|^5.0|^6.0"
  2995. },
  2996. "suggest": {
  2997. "symfony/mime": "To use the file extension guesser"
  2998. },
  2999. "time": "2022-04-22T08:14:12+00:00",
  3000. "type": "library",
  3001. "installation-source": "dist",
  3002. "autoload": {
  3003. "psr-4": {
  3004. "Symfony\\Component\\HttpFoundation\\": ""
  3005. },
  3006. "exclude-from-classmap": [
  3007. "/Tests/"
  3008. ]
  3009. },
  3010. "notification-url": "https://packagist.org/downloads/",
  3011. "license": [
  3012. "MIT"
  3013. ],
  3014. "authors": [
  3015. {
  3016. "name": "Fabien Potencier",
  3017. "email": "fabien@symfony.com"
  3018. },
  3019. {
  3020. "name": "Symfony Community",
  3021. "homepage": "https://symfony.com/contributors"
  3022. }
  3023. ],
  3024. "description": "Defines an object-oriented layer for the HTTP specification",
  3025. "homepage": "https://symfony.com",
  3026. "support": {
  3027. "source": "https://github.com/symfony/http-foundation/tree/v5.4.8"
  3028. },
  3029. "funding": [
  3030. {
  3031. "url": "https://symfony.com/sponsor",
  3032. "type": "custom"
  3033. },
  3034. {
  3035. "url": "https://github.com/fabpot",
  3036. "type": "github"
  3037. },
  3038. {
  3039. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3040. "type": "tidelift"
  3041. }
  3042. ],
  3043. "install-path": "../symfony/http-foundation"
  3044. },
  3045. {
  3046. "name": "symfony/options-resolver",
  3047. "version": "v5.4.3",
  3048. "version_normalized": "5.4.3.0",
  3049. "source": {
  3050. "type": "git",
  3051. "url": "https://github.com/symfony/options-resolver.git",
  3052. "reference": "cc1147cb11af1b43f503ac18f31aa3bec213aba8"
  3053. },
  3054. "dist": {
  3055. "type": "zip",
  3056. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/cc1147cb11af1b43f503ac18f31aa3bec213aba8",
  3057. "reference": "cc1147cb11af1b43f503ac18f31aa3bec213aba8",
  3058. "shasum": "",
  3059. "mirrors": [
  3060. {
  3061. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3062. "preferred": true
  3063. }
  3064. ]
  3065. },
  3066. "require": {
  3067. "php": ">=7.2.5",
  3068. "symfony/deprecation-contracts": "^2.1|^3",
  3069. "symfony/polyfill-php73": "~1.0",
  3070. "symfony/polyfill-php80": "^1.16"
  3071. },
  3072. "time": "2022-01-02T09:53:40+00:00",
  3073. "type": "library",
  3074. "installation-source": "dist",
  3075. "autoload": {
  3076. "psr-4": {
  3077. "Symfony\\Component\\OptionsResolver\\": ""
  3078. },
  3079. "exclude-from-classmap": [
  3080. "/Tests/"
  3081. ]
  3082. },
  3083. "notification-url": "https://packagist.org/downloads/",
  3084. "license": [
  3085. "MIT"
  3086. ],
  3087. "authors": [
  3088. {
  3089. "name": "Fabien Potencier",
  3090. "email": "fabien@symfony.com"
  3091. },
  3092. {
  3093. "name": "Symfony Community",
  3094. "homepage": "https://symfony.com/contributors"
  3095. }
  3096. ],
  3097. "description": "Provides an improved replacement for the array_replace PHP function",
  3098. "homepage": "https://symfony.com",
  3099. "keywords": [
  3100. "config",
  3101. "configuration",
  3102. "options"
  3103. ],
  3104. "support": {
  3105. "source": "https://github.com/symfony/options-resolver/tree/v5.4.3"
  3106. },
  3107. "funding": [
  3108. {
  3109. "url": "https://symfony.com/sponsor",
  3110. "type": "custom"
  3111. },
  3112. {
  3113. "url": "https://github.com/fabpot",
  3114. "type": "github"
  3115. },
  3116. {
  3117. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3118. "type": "tidelift"
  3119. }
  3120. ],
  3121. "install-path": "../symfony/options-resolver"
  3122. },
  3123. {
  3124. "name": "symfony/polyfill-ctype",
  3125. "version": "v1.25.0",
  3126. "version_normalized": "1.25.0.0",
  3127. "source": {
  3128. "type": "git",
  3129. "url": "https://github.com/symfony/polyfill-ctype.git",
  3130. "reference": "30885182c981ab175d4d034db0f6f469898070ab"
  3131. },
  3132. "dist": {
  3133. "type": "zip",
  3134. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
  3135. "reference": "30885182c981ab175d4d034db0f6f469898070ab",
  3136. "shasum": "",
  3137. "mirrors": [
  3138. {
  3139. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3140. "preferred": true
  3141. }
  3142. ]
  3143. },
  3144. "require": {
  3145. "php": ">=7.1"
  3146. },
  3147. "provide": {
  3148. "ext-ctype": "*"
  3149. },
  3150. "suggest": {
  3151. "ext-ctype": "For best performance"
  3152. },
  3153. "time": "2021-10-20T20:35:02+00:00",
  3154. "type": "library",
  3155. "extra": {
  3156. "branch-alias": {
  3157. "dev-main": "1.23-dev"
  3158. },
  3159. "thanks": {
  3160. "name": "symfony/polyfill",
  3161. "url": "https://github.com/symfony/polyfill"
  3162. }
  3163. },
  3164. "installation-source": "dist",
  3165. "autoload": {
  3166. "files": [
  3167. "bootstrap.php"
  3168. ],
  3169. "psr-4": {
  3170. "Symfony\\Polyfill\\Ctype\\": ""
  3171. }
  3172. },
  3173. "notification-url": "https://packagist.org/downloads/",
  3174. "license": [
  3175. "MIT"
  3176. ],
  3177. "authors": [
  3178. {
  3179. "name": "Gert de Pagter",
  3180. "email": "BackEndTea@gmail.com"
  3181. },
  3182. {
  3183. "name": "Symfony Community",
  3184. "homepage": "https://symfony.com/contributors"
  3185. }
  3186. ],
  3187. "description": "Symfony polyfill for ctype functions",
  3188. "homepage": "https://symfony.com",
  3189. "keywords": [
  3190. "compatibility",
  3191. "ctype",
  3192. "polyfill",
  3193. "portable"
  3194. ],
  3195. "support": {
  3196. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.25.0"
  3197. },
  3198. "funding": [
  3199. {
  3200. "url": "https://symfony.com/sponsor",
  3201. "type": "custom"
  3202. },
  3203. {
  3204. "url": "https://github.com/fabpot",
  3205. "type": "github"
  3206. },
  3207. {
  3208. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3209. "type": "tidelift"
  3210. }
  3211. ],
  3212. "install-path": "../symfony/polyfill-ctype"
  3213. },
  3214. {
  3215. "name": "symfony/polyfill-intl-grapheme",
  3216. "version": "v1.25.0",
  3217. "version_normalized": "1.25.0.0",
  3218. "source": {
  3219. "type": "git",
  3220. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3221. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783"
  3222. },
  3223. "dist": {
  3224. "type": "zip",
  3225. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/81b86b50cf841a64252b439e738e97f4a34e2783",
  3226. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783",
  3227. "shasum": "",
  3228. "mirrors": [
  3229. {
  3230. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3231. "preferred": true
  3232. }
  3233. ]
  3234. },
  3235. "require": {
  3236. "php": ">=7.1"
  3237. },
  3238. "suggest": {
  3239. "ext-intl": "For best performance"
  3240. },
  3241. "time": "2021-11-23T21:10:46+00:00",
  3242. "type": "library",
  3243. "extra": {
  3244. "branch-alias": {
  3245. "dev-main": "1.23-dev"
  3246. },
  3247. "thanks": {
  3248. "name": "symfony/polyfill",
  3249. "url": "https://github.com/symfony/polyfill"
  3250. }
  3251. },
  3252. "installation-source": "dist",
  3253. "autoload": {
  3254. "files": [
  3255. "bootstrap.php"
  3256. ],
  3257. "psr-4": {
  3258. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3259. }
  3260. },
  3261. "notification-url": "https://packagist.org/downloads/",
  3262. "license": [
  3263. "MIT"
  3264. ],
  3265. "authors": [
  3266. {
  3267. "name": "Nicolas Grekas",
  3268. "email": "p@tchwork.com"
  3269. },
  3270. {
  3271. "name": "Symfony Community",
  3272. "homepage": "https://symfony.com/contributors"
  3273. }
  3274. ],
  3275. "description": "Symfony polyfill for intl's grapheme_* functions",
  3276. "homepage": "https://symfony.com",
  3277. "keywords": [
  3278. "compatibility",
  3279. "grapheme",
  3280. "intl",
  3281. "polyfill",
  3282. "portable",
  3283. "shim"
  3284. ],
  3285. "support": {
  3286. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.25.0"
  3287. },
  3288. "funding": [
  3289. {
  3290. "url": "https://symfony.com/sponsor",
  3291. "type": "custom"
  3292. },
  3293. {
  3294. "url": "https://github.com/fabpot",
  3295. "type": "github"
  3296. },
  3297. {
  3298. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3299. "type": "tidelift"
  3300. }
  3301. ],
  3302. "install-path": "../symfony/polyfill-intl-grapheme"
  3303. },
  3304. {
  3305. "name": "symfony/polyfill-intl-normalizer",
  3306. "version": "v1.25.0",
  3307. "version_normalized": "1.25.0.0",
  3308. "source": {
  3309. "type": "git",
  3310. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3311. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  3312. },
  3313. "dist": {
  3314. "type": "zip",
  3315. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  3316. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  3317. "shasum": "",
  3318. "mirrors": [
  3319. {
  3320. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3321. "preferred": true
  3322. }
  3323. ]
  3324. },
  3325. "require": {
  3326. "php": ">=7.1"
  3327. },
  3328. "suggest": {
  3329. "ext-intl": "For best performance"
  3330. },
  3331. "time": "2021-02-19T12:13:01+00:00",
  3332. "type": "library",
  3333. "extra": {
  3334. "branch-alias": {
  3335. "dev-main": "1.23-dev"
  3336. },
  3337. "thanks": {
  3338. "name": "symfony/polyfill",
  3339. "url": "https://github.com/symfony/polyfill"
  3340. }
  3341. },
  3342. "installation-source": "dist",
  3343. "autoload": {
  3344. "files": [
  3345. "bootstrap.php"
  3346. ],
  3347. "psr-4": {
  3348. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3349. },
  3350. "classmap": [
  3351. "Resources/stubs"
  3352. ]
  3353. },
  3354. "notification-url": "https://packagist.org/downloads/",
  3355. "license": [
  3356. "MIT"
  3357. ],
  3358. "authors": [
  3359. {
  3360. "name": "Nicolas Grekas",
  3361. "email": "p@tchwork.com"
  3362. },
  3363. {
  3364. "name": "Symfony Community",
  3365. "homepage": "https://symfony.com/contributors"
  3366. }
  3367. ],
  3368. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3369. "homepage": "https://symfony.com",
  3370. "keywords": [
  3371. "compatibility",
  3372. "intl",
  3373. "normalizer",
  3374. "polyfill",
  3375. "portable",
  3376. "shim"
  3377. ],
  3378. "support": {
  3379. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.25.0"
  3380. },
  3381. "funding": [
  3382. {
  3383. "url": "https://symfony.com/sponsor",
  3384. "type": "custom"
  3385. },
  3386. {
  3387. "url": "https://github.com/fabpot",
  3388. "type": "github"
  3389. },
  3390. {
  3391. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3392. "type": "tidelift"
  3393. }
  3394. ],
  3395. "install-path": "../symfony/polyfill-intl-normalizer"
  3396. },
  3397. {
  3398. "name": "symfony/polyfill-mbstring",
  3399. "version": "v1.25.0",
  3400. "version_normalized": "1.25.0.0",
  3401. "source": {
  3402. "type": "git",
  3403. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3404. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
  3405. },
  3406. "dist": {
  3407. "type": "zip",
  3408. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
  3409. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
  3410. "shasum": "",
  3411. "mirrors": [
  3412. {
  3413. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3414. "preferred": true
  3415. }
  3416. ]
  3417. },
  3418. "require": {
  3419. "php": ">=7.1"
  3420. },
  3421. "provide": {
  3422. "ext-mbstring": "*"
  3423. },
  3424. "suggest": {
  3425. "ext-mbstring": "For best performance"
  3426. },
  3427. "time": "2021-11-30T18:21:41+00:00",
  3428. "type": "library",
  3429. "extra": {
  3430. "branch-alias": {
  3431. "dev-main": "1.23-dev"
  3432. },
  3433. "thanks": {
  3434. "name": "symfony/polyfill",
  3435. "url": "https://github.com/symfony/polyfill"
  3436. }
  3437. },
  3438. "installation-source": "dist",
  3439. "autoload": {
  3440. "files": [
  3441. "bootstrap.php"
  3442. ],
  3443. "psr-4": {
  3444. "Symfony\\Polyfill\\Mbstring\\": ""
  3445. }
  3446. },
  3447. "notification-url": "https://packagist.org/downloads/",
  3448. "license": [
  3449. "MIT"
  3450. ],
  3451. "authors": [
  3452. {
  3453. "name": "Nicolas Grekas",
  3454. "email": "p@tchwork.com"
  3455. },
  3456. {
  3457. "name": "Symfony Community",
  3458. "homepage": "https://symfony.com/contributors"
  3459. }
  3460. ],
  3461. "description": "Symfony polyfill for the Mbstring extension",
  3462. "homepage": "https://symfony.com",
  3463. "keywords": [
  3464. "compatibility",
  3465. "mbstring",
  3466. "polyfill",
  3467. "portable",
  3468. "shim"
  3469. ],
  3470. "support": {
  3471. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0"
  3472. },
  3473. "funding": [
  3474. {
  3475. "url": "https://symfony.com/sponsor",
  3476. "type": "custom"
  3477. },
  3478. {
  3479. "url": "https://github.com/fabpot",
  3480. "type": "github"
  3481. },
  3482. {
  3483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3484. "type": "tidelift"
  3485. }
  3486. ],
  3487. "install-path": "../symfony/polyfill-mbstring"
  3488. },
  3489. {
  3490. "name": "symfony/polyfill-php73",
  3491. "version": "v1.25.0",
  3492. "version_normalized": "1.25.0.0",
  3493. "source": {
  3494. "type": "git",
  3495. "url": "https://github.com/symfony/polyfill-php73.git",
  3496. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5"
  3497. },
  3498. "dist": {
  3499. "type": "zip",
  3500. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5",
  3501. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5",
  3502. "shasum": "",
  3503. "mirrors": [
  3504. {
  3505. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3506. "preferred": true
  3507. }
  3508. ]
  3509. },
  3510. "require": {
  3511. "php": ">=7.1"
  3512. },
  3513. "time": "2021-06-05T21:20:04+00:00",
  3514. "type": "library",
  3515. "extra": {
  3516. "branch-alias": {
  3517. "dev-main": "1.23-dev"
  3518. },
  3519. "thanks": {
  3520. "name": "symfony/polyfill",
  3521. "url": "https://github.com/symfony/polyfill"
  3522. }
  3523. },
  3524. "installation-source": "dist",
  3525. "autoload": {
  3526. "files": [
  3527. "bootstrap.php"
  3528. ],
  3529. "psr-4": {
  3530. "Symfony\\Polyfill\\Php73\\": ""
  3531. },
  3532. "classmap": [
  3533. "Resources/stubs"
  3534. ]
  3535. },
  3536. "notification-url": "https://packagist.org/downloads/",
  3537. "license": [
  3538. "MIT"
  3539. ],
  3540. "authors": [
  3541. {
  3542. "name": "Nicolas Grekas",
  3543. "email": "p@tchwork.com"
  3544. },
  3545. {
  3546. "name": "Symfony Community",
  3547. "homepage": "https://symfony.com/contributors"
  3548. }
  3549. ],
  3550. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  3551. "homepage": "https://symfony.com",
  3552. "keywords": [
  3553. "compatibility",
  3554. "polyfill",
  3555. "portable",
  3556. "shim"
  3557. ],
  3558. "support": {
  3559. "source": "https://github.com/symfony/polyfill-php73/tree/v1.25.0"
  3560. },
  3561. "funding": [
  3562. {
  3563. "url": "https://symfony.com/sponsor",
  3564. "type": "custom"
  3565. },
  3566. {
  3567. "url": "https://github.com/fabpot",
  3568. "type": "github"
  3569. },
  3570. {
  3571. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3572. "type": "tidelift"
  3573. }
  3574. ],
  3575. "install-path": "../symfony/polyfill-php73"
  3576. },
  3577. {
  3578. "name": "symfony/polyfill-php80",
  3579. "version": "v1.25.0",
  3580. "version_normalized": "1.25.0.0",
  3581. "source": {
  3582. "type": "git",
  3583. "url": "https://github.com/symfony/polyfill-php80.git",
  3584. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c"
  3585. },
  3586. "dist": {
  3587. "type": "zip",
  3588. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  3589. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  3590. "shasum": "",
  3591. "mirrors": [
  3592. {
  3593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3594. "preferred": true
  3595. }
  3596. ]
  3597. },
  3598. "require": {
  3599. "php": ">=7.1"
  3600. },
  3601. "time": "2022-03-04T08:16:47+00:00",
  3602. "type": "library",
  3603. "extra": {
  3604. "branch-alias": {
  3605. "dev-main": "1.23-dev"
  3606. },
  3607. "thanks": {
  3608. "name": "symfony/polyfill",
  3609. "url": "https://github.com/symfony/polyfill"
  3610. }
  3611. },
  3612. "installation-source": "dist",
  3613. "autoload": {
  3614. "files": [
  3615. "bootstrap.php"
  3616. ],
  3617. "psr-4": {
  3618. "Symfony\\Polyfill\\Php80\\": ""
  3619. },
  3620. "classmap": [
  3621. "Resources/stubs"
  3622. ]
  3623. },
  3624. "notification-url": "https://packagist.org/downloads/",
  3625. "license": [
  3626. "MIT"
  3627. ],
  3628. "authors": [
  3629. {
  3630. "name": "Ion Bazan",
  3631. "email": "ion.bazan@gmail.com"
  3632. },
  3633. {
  3634. "name": "Nicolas Grekas",
  3635. "email": "p@tchwork.com"
  3636. },
  3637. {
  3638. "name": "Symfony Community",
  3639. "homepage": "https://symfony.com/contributors"
  3640. }
  3641. ],
  3642. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3643. "homepage": "https://symfony.com",
  3644. "keywords": [
  3645. "compatibility",
  3646. "polyfill",
  3647. "portable",
  3648. "shim"
  3649. ],
  3650. "support": {
  3651. "source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0"
  3652. },
  3653. "funding": [
  3654. {
  3655. "url": "https://symfony.com/sponsor",
  3656. "type": "custom"
  3657. },
  3658. {
  3659. "url": "https://github.com/fabpot",
  3660. "type": "github"
  3661. },
  3662. {
  3663. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3664. "type": "tidelift"
  3665. }
  3666. ],
  3667. "install-path": "../symfony/polyfill-php80"
  3668. },
  3669. {
  3670. "name": "symfony/property-access",
  3671. "version": "v5.4.8",
  3672. "version_normalized": "5.4.8.0",
  3673. "source": {
  3674. "type": "git",
  3675. "url": "https://github.com/symfony/property-access.git",
  3676. "reference": "fe501d498d6ec7e9efe928c90fabedf629116495"
  3677. },
  3678. "dist": {
  3679. "type": "zip",
  3680. "url": "https://api.github.com/repos/symfony/property-access/zipball/fe501d498d6ec7e9efe928c90fabedf629116495",
  3681. "reference": "fe501d498d6ec7e9efe928c90fabedf629116495",
  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": ">=7.2.5",
  3692. "symfony/deprecation-contracts": "^2.1|^3",
  3693. "symfony/polyfill-php80": "^1.16",
  3694. "symfony/property-info": "^5.2|^6.0"
  3695. },
  3696. "require-dev": {
  3697. "symfony/cache": "^4.4|^5.0|^6.0"
  3698. },
  3699. "suggest": {
  3700. "psr/cache-implementation": "To cache access methods."
  3701. },
  3702. "time": "2022-04-12T15:48:08+00:00",
  3703. "type": "library",
  3704. "installation-source": "dist",
  3705. "autoload": {
  3706. "psr-4": {
  3707. "Symfony\\Component\\PropertyAccess\\": ""
  3708. },
  3709. "exclude-from-classmap": [
  3710. "/Tests/"
  3711. ]
  3712. },
  3713. "notification-url": "https://packagist.org/downloads/",
  3714. "license": [
  3715. "MIT"
  3716. ],
  3717. "authors": [
  3718. {
  3719. "name": "Fabien Potencier",
  3720. "email": "fabien@symfony.com"
  3721. },
  3722. {
  3723. "name": "Symfony Community",
  3724. "homepage": "https://symfony.com/contributors"
  3725. }
  3726. ],
  3727. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  3728. "homepage": "https://symfony.com",
  3729. "keywords": [
  3730. "access",
  3731. "array",
  3732. "extraction",
  3733. "index",
  3734. "injection",
  3735. "object",
  3736. "property",
  3737. "property path",
  3738. "reflection"
  3739. ],
  3740. "support": {
  3741. "source": "https://github.com/symfony/property-access/tree/v5.4.8"
  3742. },
  3743. "funding": [
  3744. {
  3745. "url": "https://symfony.com/sponsor",
  3746. "type": "custom"
  3747. },
  3748. {
  3749. "url": "https://github.com/fabpot",
  3750. "type": "github"
  3751. },
  3752. {
  3753. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3754. "type": "tidelift"
  3755. }
  3756. ],
  3757. "install-path": "../symfony/property-access"
  3758. },
  3759. {
  3760. "name": "symfony/property-info",
  3761. "version": "v6.0.7",
  3762. "version_normalized": "6.0.7.0",
  3763. "source": {
  3764. "type": "git",
  3765. "url": "https://github.com/symfony/property-info.git",
  3766. "reference": "0f26f0870f05d65d5c06681ecbf36e546204f4b5"
  3767. },
  3768. "dist": {
  3769. "type": "zip",
  3770. "url": "https://api.github.com/repos/symfony/property-info/zipball/0f26f0870f05d65d5c06681ecbf36e546204f4b5",
  3771. "reference": "0f26f0870f05d65d5c06681ecbf36e546204f4b5",
  3772. "shasum": "",
  3773. "mirrors": [
  3774. {
  3775. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3776. "preferred": true
  3777. }
  3778. ]
  3779. },
  3780. "require": {
  3781. "php": ">=8.0.2",
  3782. "symfony/string": "^5.4|^6.0"
  3783. },
  3784. "conflict": {
  3785. "phpdocumentor/reflection-docblock": "<5.2",
  3786. "phpdocumentor/type-resolver": "<1.4.0",
  3787. "symfony/dependency-injection": "<5.4"
  3788. },
  3789. "require-dev": {
  3790. "doctrine/annotations": "^1.10.4",
  3791. "phpdocumentor/reflection-docblock": "^5.2",
  3792. "phpstan/phpdoc-parser": "^1.0",
  3793. "symfony/cache": "^5.4|^6.0",
  3794. "symfony/dependency-injection": "^5.4|^6.0",
  3795. "symfony/serializer": "^5.4|^6.0"
  3796. },
  3797. "suggest": {
  3798. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  3799. "psr/cache-implementation": "To cache results",
  3800. "symfony/doctrine-bridge": "To use Doctrine metadata",
  3801. "symfony/serializer": "To use Serializer metadata"
  3802. },
  3803. "time": "2022-03-31T17:18:25+00:00",
  3804. "type": "library",
  3805. "installation-source": "dist",
  3806. "autoload": {
  3807. "psr-4": {
  3808. "Symfony\\Component\\PropertyInfo\\": ""
  3809. },
  3810. "exclude-from-classmap": [
  3811. "/Tests/"
  3812. ]
  3813. },
  3814. "notification-url": "https://packagist.org/downloads/",
  3815. "license": [
  3816. "MIT"
  3817. ],
  3818. "authors": [
  3819. {
  3820. "name": "Kévin Dunglas",
  3821. "email": "dunglas@gmail.com"
  3822. },
  3823. {
  3824. "name": "Symfony Community",
  3825. "homepage": "https://symfony.com/contributors"
  3826. }
  3827. ],
  3828. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  3829. "homepage": "https://symfony.com",
  3830. "keywords": [
  3831. "doctrine",
  3832. "phpdoc",
  3833. "property",
  3834. "symfony",
  3835. "type",
  3836. "validator"
  3837. ],
  3838. "support": {
  3839. "source": "https://github.com/symfony/property-info/tree/v6.0.7"
  3840. },
  3841. "funding": [
  3842. {
  3843. "url": "https://symfony.com/sponsor",
  3844. "type": "custom"
  3845. },
  3846. {
  3847. "url": "https://github.com/fabpot",
  3848. "type": "github"
  3849. },
  3850. {
  3851. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3852. "type": "tidelift"
  3853. }
  3854. ],
  3855. "install-path": "../symfony/property-info"
  3856. },
  3857. {
  3858. "name": "symfony/psr-http-message-bridge",
  3859. "version": "v2.1.2",
  3860. "version_normalized": "2.1.2.0",
  3861. "source": {
  3862. "type": "git",
  3863. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  3864. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34"
  3865. },
  3866. "dist": {
  3867. "type": "zip",
  3868. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  3869. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  3870. "shasum": "",
  3871. "mirrors": [
  3872. {
  3873. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3874. "preferred": true
  3875. }
  3876. ]
  3877. },
  3878. "require": {
  3879. "php": ">=7.1",
  3880. "psr/http-message": "^1.0",
  3881. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  3882. },
  3883. "require-dev": {
  3884. "nyholm/psr7": "^1.1",
  3885. "psr/log": "^1.1 || ^2 || ^3",
  3886. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  3887. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  3888. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  3889. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  3890. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  3891. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  3892. },
  3893. "suggest": {
  3894. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  3895. },
  3896. "time": "2021-11-05T13:13:39+00:00",
  3897. "type": "symfony-bridge",
  3898. "extra": {
  3899. "branch-alias": {
  3900. "dev-main": "2.1-dev"
  3901. }
  3902. },
  3903. "installation-source": "dist",
  3904. "autoload": {
  3905. "psr-4": {
  3906. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  3907. },
  3908. "exclude-from-classmap": [
  3909. "/Tests/"
  3910. ]
  3911. },
  3912. "notification-url": "https://packagist.org/downloads/",
  3913. "license": [
  3914. "MIT"
  3915. ],
  3916. "authors": [
  3917. {
  3918. "name": "Fabien Potencier",
  3919. "email": "fabien@symfony.com"
  3920. },
  3921. {
  3922. "name": "Symfony Community",
  3923. "homepage": "http://symfony.com/contributors"
  3924. }
  3925. ],
  3926. "description": "PSR HTTP message bridge",
  3927. "homepage": "http://symfony.com",
  3928. "keywords": [
  3929. "http",
  3930. "http-message",
  3931. "psr-17",
  3932. "psr-7"
  3933. ],
  3934. "support": {
  3935. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  3936. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2"
  3937. },
  3938. "funding": [
  3939. {
  3940. "url": "https://symfony.com/sponsor",
  3941. "type": "custom"
  3942. },
  3943. {
  3944. "url": "https://github.com/fabpot",
  3945. "type": "github"
  3946. },
  3947. {
  3948. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3949. "type": "tidelift"
  3950. }
  3951. ],
  3952. "install-path": "../symfony/psr-http-message-bridge"
  3953. },
  3954. {
  3955. "name": "symfony/service-contracts",
  3956. "version": "v2.5.1",
  3957. "version_normalized": "2.5.1.0",
  3958. "source": {
  3959. "type": "git",
  3960. "url": "https://github.com/symfony/service-contracts.git",
  3961. "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c"
  3962. },
  3963. "dist": {
  3964. "type": "zip",
  3965. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
  3966. "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
  3967. "shasum": "",
  3968. "mirrors": [
  3969. {
  3970. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3971. "preferred": true
  3972. }
  3973. ]
  3974. },
  3975. "require": {
  3976. "php": ">=7.2.5",
  3977. "psr/container": "^1.1",
  3978. "symfony/deprecation-contracts": "^2.1|^3"
  3979. },
  3980. "conflict": {
  3981. "ext-psr": "<1.1|>=2"
  3982. },
  3983. "suggest": {
  3984. "symfony/service-implementation": ""
  3985. },
  3986. "time": "2022-03-13T20:07:29+00:00",
  3987. "type": "library",
  3988. "extra": {
  3989. "branch-alias": {
  3990. "dev-main": "2.5-dev"
  3991. },
  3992. "thanks": {
  3993. "name": "symfony/contracts",
  3994. "url": "https://github.com/symfony/contracts"
  3995. }
  3996. },
  3997. "installation-source": "dist",
  3998. "autoload": {
  3999. "psr-4": {
  4000. "Symfony\\Contracts\\Service\\": ""
  4001. }
  4002. },
  4003. "notification-url": "https://packagist.org/downloads/",
  4004. "license": [
  4005. "MIT"
  4006. ],
  4007. "authors": [
  4008. {
  4009. "name": "Nicolas Grekas",
  4010. "email": "p@tchwork.com"
  4011. },
  4012. {
  4013. "name": "Symfony Community",
  4014. "homepage": "https://symfony.com/contributors"
  4015. }
  4016. ],
  4017. "description": "Generic abstractions related to writing services",
  4018. "homepage": "https://symfony.com",
  4019. "keywords": [
  4020. "abstractions",
  4021. "contracts",
  4022. "decoupling",
  4023. "interfaces",
  4024. "interoperability",
  4025. "standards"
  4026. ],
  4027. "support": {
  4028. "source": "https://github.com/symfony/service-contracts/tree/v2.5.1"
  4029. },
  4030. "funding": [
  4031. {
  4032. "url": "https://symfony.com/sponsor",
  4033. "type": "custom"
  4034. },
  4035. {
  4036. "url": "https://github.com/fabpot",
  4037. "type": "github"
  4038. },
  4039. {
  4040. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4041. "type": "tidelift"
  4042. }
  4043. ],
  4044. "install-path": "../symfony/service-contracts"
  4045. },
  4046. {
  4047. "name": "symfony/string",
  4048. "version": "v6.0.8",
  4049. "version_normalized": "6.0.8.0",
  4050. "source": {
  4051. "type": "git",
  4052. "url": "https://github.com/symfony/string.git",
  4053. "reference": "ac0aa5c2282e0de624c175b68d13f2c8f2e2649d"
  4054. },
  4055. "dist": {
  4056. "type": "zip",
  4057. "url": "https://api.github.com/repos/symfony/string/zipball/ac0aa5c2282e0de624c175b68d13f2c8f2e2649d",
  4058. "reference": "ac0aa5c2282e0de624c175b68d13f2c8f2e2649d",
  4059. "shasum": "",
  4060. "mirrors": [
  4061. {
  4062. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4063. "preferred": true
  4064. }
  4065. ]
  4066. },
  4067. "require": {
  4068. "php": ">=8.0.2",
  4069. "symfony/polyfill-ctype": "~1.8",
  4070. "symfony/polyfill-intl-grapheme": "~1.0",
  4071. "symfony/polyfill-intl-normalizer": "~1.0",
  4072. "symfony/polyfill-mbstring": "~1.0"
  4073. },
  4074. "conflict": {
  4075. "symfony/translation-contracts": "<2.0"
  4076. },
  4077. "require-dev": {
  4078. "symfony/error-handler": "^5.4|^6.0",
  4079. "symfony/http-client": "^5.4|^6.0",
  4080. "symfony/translation-contracts": "^2.0|^3.0",
  4081. "symfony/var-exporter": "^5.4|^6.0"
  4082. },
  4083. "time": "2022-04-22T08:18:02+00:00",
  4084. "type": "library",
  4085. "installation-source": "dist",
  4086. "autoload": {
  4087. "files": [
  4088. "Resources/functions.php"
  4089. ],
  4090. "psr-4": {
  4091. "Symfony\\Component\\String\\": ""
  4092. },
  4093. "exclude-from-classmap": [
  4094. "/Tests/"
  4095. ]
  4096. },
  4097. "notification-url": "https://packagist.org/downloads/",
  4098. "license": [
  4099. "MIT"
  4100. ],
  4101. "authors": [
  4102. {
  4103. "name": "Nicolas Grekas",
  4104. "email": "p@tchwork.com"
  4105. },
  4106. {
  4107. "name": "Symfony Community",
  4108. "homepage": "https://symfony.com/contributors"
  4109. }
  4110. ],
  4111. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4112. "homepage": "https://symfony.com",
  4113. "keywords": [
  4114. "grapheme",
  4115. "i18n",
  4116. "string",
  4117. "unicode",
  4118. "utf-8",
  4119. "utf8"
  4120. ],
  4121. "support": {
  4122. "source": "https://github.com/symfony/string/tree/v6.0.8"
  4123. },
  4124. "funding": [
  4125. {
  4126. "url": "https://symfony.com/sponsor",
  4127. "type": "custom"
  4128. },
  4129. {
  4130. "url": "https://github.com/fabpot",
  4131. "type": "github"
  4132. },
  4133. {
  4134. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4135. "type": "tidelift"
  4136. }
  4137. ],
  4138. "install-path": "../symfony/string"
  4139. },
  4140. {
  4141. "name": "symfony/var-exporter",
  4142. "version": "v6.0.8",
  4143. "version_normalized": "6.0.8.0",
  4144. "source": {
  4145. "type": "git",
  4146. "url": "https://github.com/symfony/var-exporter.git",
  4147. "reference": "74b272979a490747c6775b0228d06cf246306a99"
  4148. },
  4149. "dist": {
  4150. "type": "zip",
  4151. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/74b272979a490747c6775b0228d06cf246306a99",
  4152. "reference": "74b272979a490747c6775b0228d06cf246306a99",
  4153. "shasum": "",
  4154. "mirrors": [
  4155. {
  4156. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4157. "preferred": true
  4158. }
  4159. ]
  4160. },
  4161. "require": {
  4162. "php": ">=8.0.2"
  4163. },
  4164. "require-dev": {
  4165. "symfony/var-dumper": "^5.4|^6.0"
  4166. },
  4167. "time": "2022-04-26T13:22:23+00:00",
  4168. "type": "library",
  4169. "installation-source": "dist",
  4170. "autoload": {
  4171. "psr-4": {
  4172. "Symfony\\Component\\VarExporter\\": ""
  4173. },
  4174. "exclude-from-classmap": [
  4175. "/Tests/"
  4176. ]
  4177. },
  4178. "notification-url": "https://packagist.org/downloads/",
  4179. "license": [
  4180. "MIT"
  4181. ],
  4182. "authors": [
  4183. {
  4184. "name": "Nicolas Grekas",
  4185. "email": "p@tchwork.com"
  4186. },
  4187. {
  4188. "name": "Symfony Community",
  4189. "homepage": "https://symfony.com/contributors"
  4190. }
  4191. ],
  4192. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  4193. "homepage": "https://symfony.com",
  4194. "keywords": [
  4195. "clone",
  4196. "construct",
  4197. "export",
  4198. "hydrate",
  4199. "instantiate",
  4200. "serialize"
  4201. ],
  4202. "support": {
  4203. "source": "https://github.com/symfony/var-exporter/tree/v6.0.8"
  4204. },
  4205. "funding": [
  4206. {
  4207. "url": "https://symfony.com/sponsor",
  4208. "type": "custom"
  4209. },
  4210. {
  4211. "url": "https://github.com/fabpot",
  4212. "type": "github"
  4213. },
  4214. {
  4215. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4216. "type": "tidelift"
  4217. }
  4218. ],
  4219. "install-path": "../symfony/var-exporter"
  4220. },
  4221. {
  4222. "name": "symfony/yaml",
  4223. "version": "v2.8.52",
  4224. "version_normalized": "2.8.52.0",
  4225. "source": {
  4226. "type": "git",
  4227. "url": "https://github.com/symfony/yaml.git",
  4228. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b"
  4229. },
  4230. "dist": {
  4231. "type": "zip",
  4232. "url": "https://api.github.com/repos/symfony/yaml/zipball/02c1859112aa779d9ab394ae4f3381911d84052b",
  4233. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b",
  4234. "shasum": "",
  4235. "mirrors": [
  4236. {
  4237. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4238. "preferred": true
  4239. }
  4240. ]
  4241. },
  4242. "require": {
  4243. "php": ">=5.3.9",
  4244. "symfony/polyfill-ctype": "~1.8"
  4245. },
  4246. "time": "2018-11-11T11:18:13+00:00",
  4247. "type": "library",
  4248. "extra": {
  4249. "branch-alias": {
  4250. "dev-master": "2.8-dev"
  4251. }
  4252. },
  4253. "installation-source": "dist",
  4254. "autoload": {
  4255. "psr-4": {
  4256. "Symfony\\Component\\Yaml\\": ""
  4257. },
  4258. "exclude-from-classmap": [
  4259. "/Tests/"
  4260. ]
  4261. },
  4262. "notification-url": "https://packagist.org/downloads/",
  4263. "license": [
  4264. "MIT"
  4265. ],
  4266. "authors": [
  4267. {
  4268. "name": "Fabien Potencier",
  4269. "email": "fabien@symfony.com"
  4270. },
  4271. {
  4272. "name": "Symfony Community",
  4273. "homepage": "https://symfony.com/contributors"
  4274. }
  4275. ],
  4276. "description": "Symfony Yaml Component",
  4277. "homepage": "https://symfony.com",
  4278. "install-path": "../symfony/yaml"
  4279. },
  4280. {
  4281. "name": "topthink/framework",
  4282. "version": "v5.1.41",
  4283. "version_normalized": "5.1.41.0",
  4284. "source": {
  4285. "type": "git",
  4286. "url": "https://github.com/top-think/framework.git",
  4287. "reference": "7137741a323a4a60cfca334507cd1812fac91bb2"
  4288. },
  4289. "dist": {
  4290. "type": "zip",
  4291. "url": "https://api.github.com/repos/top-think/framework/zipball/7137741a323a4a60cfca334507cd1812fac91bb2",
  4292. "reference": "7137741a323a4a60cfca334507cd1812fac91bb2",
  4293. "shasum": "",
  4294. "mirrors": [
  4295. {
  4296. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4297. "preferred": true
  4298. }
  4299. ]
  4300. },
  4301. "require": {
  4302. "php": ">=5.6.0",
  4303. "topthink/think-installer": "2.*"
  4304. },
  4305. "require-dev": {
  4306. "johnkary/phpunit-speedtrap": "^1.0",
  4307. "mikey179/vfsstream": "~1.6",
  4308. "phpdocumentor/reflection-docblock": "^2.0",
  4309. "phploc/phploc": "2.*",
  4310. "phpunit/phpunit": "^5.0|^6.0",
  4311. "sebastian/phpcpd": "2.*",
  4312. "squizlabs/php_codesniffer": "2.*"
  4313. },
  4314. "time": "2021-01-11T02:51:29+00:00",
  4315. "type": "think-framework",
  4316. "installation-source": "dist",
  4317. "notification-url": "https://packagist.org/downloads/",
  4318. "license": [
  4319. "Apache-2.0"
  4320. ],
  4321. "authors": [
  4322. {
  4323. "name": "liu21st",
  4324. "email": "liu21st@gmail.com"
  4325. },
  4326. {
  4327. "name": "yunwuxin",
  4328. "email": "448901948@qq.com"
  4329. }
  4330. ],
  4331. "description": "the new thinkphp framework",
  4332. "homepage": "http://thinkphp.cn/",
  4333. "keywords": [
  4334. "framework",
  4335. "orm",
  4336. "thinkphp"
  4337. ],
  4338. "support": {
  4339. "issues": "https://github.com/top-think/framework/issues",
  4340. "source": "https://github.com/top-think/framework/tree/v5.1.41"
  4341. },
  4342. "install-path": "../../thinkphp"
  4343. },
  4344. {
  4345. "name": "topthink/think-installer",
  4346. "version": "v2.0.5",
  4347. "version_normalized": "2.0.5.0",
  4348. "source": {
  4349. "type": "git",
  4350. "url": "https://github.com/top-think/think-installer.git",
  4351. "reference": "38ba647706e35d6704b5d370c06f8a160b635f88"
  4352. },
  4353. "dist": {
  4354. "type": "zip",
  4355. "url": "https://api.github.com/repos/top-think/think-installer/zipball/38ba647706e35d6704b5d370c06f8a160b635f88",
  4356. "reference": "38ba647706e35d6704b5d370c06f8a160b635f88",
  4357. "shasum": "",
  4358. "mirrors": [
  4359. {
  4360. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4361. "preferred": true
  4362. }
  4363. ]
  4364. },
  4365. "require": {
  4366. "composer-plugin-api": "^1.0||^2.0"
  4367. },
  4368. "require-dev": {
  4369. "composer/composer": "^1.0||^2.0"
  4370. },
  4371. "time": "2021-01-14T12:12:14+00:00",
  4372. "type": "composer-plugin",
  4373. "extra": {
  4374. "class": "think\\composer\\Plugin"
  4375. },
  4376. "installation-source": "dist",
  4377. "autoload": {
  4378. "psr-4": {
  4379. "think\\composer\\": "src"
  4380. }
  4381. },
  4382. "notification-url": "https://packagist.org/downloads/",
  4383. "license": [
  4384. "Apache-2.0"
  4385. ],
  4386. "authors": [
  4387. {
  4388. "name": "yunwuxin",
  4389. "email": "448901948@qq.com"
  4390. }
  4391. ],
  4392. "support": {
  4393. "issues": "https://github.com/top-think/think-installer/issues",
  4394. "source": "https://github.com/top-think/think-installer/tree/v2.0.5"
  4395. },
  4396. "install-path": "../topthink/think-installer"
  4397. },
  4398. {
  4399. "name": "xin/container",
  4400. "version": "2.0.1",
  4401. "version_normalized": "2.0.1.0",
  4402. "source": {
  4403. "type": "git",
  4404. "url": "https://gitee.com/liuxiaojinla/php-container",
  4405. "reference": "97bb67f87dd851545938a1f2fe0ffbd379e3ff81"
  4406. },
  4407. "require": {
  4408. "ext-ctype": "*",
  4409. "ext-iconv": "*",
  4410. "ext-json": "*",
  4411. "ext-libxml": "*",
  4412. "ext-mbstring": "*",
  4413. "ext-openssl": "*",
  4414. "ext-simplexml": "*",
  4415. "psr/container": "^1.0",
  4416. "xin/helper": "^1.0"
  4417. },
  4418. "time": "2019-10-21T03:51:25+00:00",
  4419. "type": "library",
  4420. "installation-source": "source",
  4421. "autoload": {
  4422. "psr-4": {
  4423. "xin\\container\\": "src/"
  4424. }
  4425. },
  4426. "notification-url": "https://packagist.org/downloads/",
  4427. "license": [
  4428. "Apache-2.0"
  4429. ],
  4430. "authors": [
  4431. {
  4432. "name": "晋",
  4433. "email": "657306123@qq.com"
  4434. }
  4435. ],
  4436. "description": "严格基于PSR11规范实现基础的容器和依赖注入",
  4437. "install-path": "../xin/container"
  4438. },
  4439. {
  4440. "name": "xin/helper",
  4441. "version": "1.0.0",
  4442. "version_normalized": "1.0.0.0",
  4443. "source": {
  4444. "type": "git",
  4445. "url": "https://gitee.com/liuxiaojinla/php-helper",
  4446. "reference": "02a58132dae2aea2d1c0b8e66f55125969224747"
  4447. },
  4448. "require": {
  4449. "ext-ctype": "*",
  4450. "ext-iconv": "*",
  4451. "ext-json": "*",
  4452. "ext-libxml": "*",
  4453. "ext-mbstring": "*",
  4454. "ext-openssl": "*",
  4455. "ext-simplexml": "*"
  4456. },
  4457. "time": "2019-06-22T08:28:23+00:00",
  4458. "type": "library",
  4459. "installation-source": "source",
  4460. "autoload": {
  4461. "psr-4": {
  4462. "xin\\helper\\": "src/"
  4463. }
  4464. },
  4465. "notification-url": "https://packagist.org/downloads/",
  4466. "license": [
  4467. "Apache-2.0"
  4468. ],
  4469. "authors": [
  4470. {
  4471. "name": "晋",
  4472. "email": "1540175452@qq.com"
  4473. }
  4474. ],
  4475. "description": "PHP项目日常开发必备基础库,数组工具类、字符串工具类、数字工具类、函数工具类、服务器工具类、加密工具类",
  4476. "install-path": "../xin/helper"
  4477. },
  4478. {
  4479. "name": "zoujingli/ip2region",
  4480. "version": "v1.0.12",
  4481. "version_normalized": "1.0.12.0",
  4482. "source": {
  4483. "type": "git",
  4484. "url": "https://github.com/zoujingli/ip2region.git",
  4485. "reference": "82cebc7a6be46524797454e98d3b165521065c26"
  4486. },
  4487. "dist": {
  4488. "type": "zip",
  4489. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/82cebc7a6be46524797454e98d3b165521065c26",
  4490. "reference": "82cebc7a6be46524797454e98d3b165521065c26",
  4491. "shasum": "",
  4492. "mirrors": [
  4493. {
  4494. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4495. "preferred": true
  4496. }
  4497. ]
  4498. },
  4499. "require": {
  4500. "php": ">=5.3"
  4501. },
  4502. "time": "2022-03-03T10:24:30+00:00",
  4503. "type": "library",
  4504. "installation-source": "dist",
  4505. "autoload": {
  4506. "classmap": [
  4507. "Ip2Region.php"
  4508. ]
  4509. },
  4510. "notification-url": "https://packagist.org/downloads/",
  4511. "license": [
  4512. "Apache-2.0"
  4513. ],
  4514. "authors": [
  4515. {
  4516. "name": "Anyon",
  4517. "email": "zoujingli@qq.com",
  4518. "homepage": "http://ctolog.com"
  4519. }
  4520. ],
  4521. "description": "Ip2Region for PHP",
  4522. "homepage": "https://github.com/zoujingli/Ip2Region",
  4523. "keywords": [
  4524. "Ip2Region"
  4525. ],
  4526. "support": {
  4527. "issues": "https://github.com/zoujingli/ip2region/issues",
  4528. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.12"
  4529. },
  4530. "install-path": "../zoujingli/ip2region"
  4531. },
  4532. {
  4533. "name": "zoujingli/think-library",
  4534. "version": "v5.1.x-dev",
  4535. "version_normalized": "5.1.9999999.9999999-dev",
  4536. "source": {
  4537. "type": "git",
  4538. "url": "https://github.com/zoujingli/ThinkLibrary.git",
  4539. "reference": "6a5c8b7ad40d19664494522dcf9388a48df43447"
  4540. },
  4541. "dist": {
  4542. "type": "zip",
  4543. "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/6a5c8b7ad40d19664494522dcf9388a48df43447",
  4544. "reference": "6a5c8b7ad40d19664494522dcf9388a48df43447",
  4545. "shasum": "",
  4546. "mirrors": [
  4547. {
  4548. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4549. "preferred": true
  4550. }
  4551. ]
  4552. },
  4553. "require": {
  4554. "aliyuncs/oss-sdk-php": "^2.3",
  4555. "ext-curl": "*",
  4556. "ext-gd": "*",
  4557. "ext-iconv": "*",
  4558. "ext-json": "*",
  4559. "ext-openssl": "*",
  4560. "php": ">=5.5",
  4561. "qiniu/php-sdk": "^7.2",
  4562. "topthink/framework": "5.1.*"
  4563. },
  4564. "time": "2022-04-15T04:04:37+00:00",
  4565. "type": "library",
  4566. "installation-source": "dist",
  4567. "autoload": {
  4568. "files": [
  4569. "src/common.php"
  4570. ],
  4571. "psr-4": {
  4572. "library\\": "src"
  4573. }
  4574. },
  4575. "notification-url": "https://packagist.org/downloads/",
  4576. "license": [
  4577. "MIT"
  4578. ],
  4579. "description": "ThinkPHP Basic Development Library",
  4580. "homepage": "http://framework.thinkadmin.top",
  4581. "support": {
  4582. "issues": "https://github.com/zoujingli/ThinkLibrary/issues",
  4583. "source": "https://github.com/zoujingli/ThinkLibrary/tree/v5.1"
  4584. },
  4585. "install-path": "../zoujingli/think-library"
  4586. },
  4587. {
  4588. "name": "zoujingli/wechat-developer",
  4589. "version": "v1.2.35",
  4590. "version_normalized": "1.2.35.0",
  4591. "source": {
  4592. "type": "git",
  4593. "url": "https://github.com/zoujingli/WeChatDeveloper.git",
  4594. "reference": "cfe3e83798d3c7b78855ae214acb6b14321de45d"
  4595. },
  4596. "dist": {
  4597. "type": "zip",
  4598. "url": "https://api.github.com/repos/zoujingli/WeChatDeveloper/zipball/cfe3e83798d3c7b78855ae214acb6b14321de45d",
  4599. "reference": "cfe3e83798d3c7b78855ae214acb6b14321de45d",
  4600. "shasum": "",
  4601. "mirrors": [
  4602. {
  4603. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4604. "preferred": true
  4605. }
  4606. ]
  4607. },
  4608. "require": {
  4609. "ext-bcmath": "*",
  4610. "ext-curl": "*",
  4611. "ext-json": "*",
  4612. "ext-libxml": "*",
  4613. "ext-mbstring": "*",
  4614. "ext-openssl": "*",
  4615. "ext-simplexml": "*",
  4616. "ext-xml": "*",
  4617. "php": ">=5.4"
  4618. },
  4619. "time": "2022-04-26T03:02:29+00:00",
  4620. "type": "library",
  4621. "installation-source": "dist",
  4622. "autoload": {
  4623. "psr-4": {
  4624. "WePay\\": "WePay",
  4625. "AliPay\\": "AliPay",
  4626. "WeChat\\": "WeChat",
  4627. "WeMini\\": "WeMini",
  4628. "WePayV3\\": "WePayV3"
  4629. },
  4630. "classmap": [
  4631. "We.php"
  4632. ]
  4633. },
  4634. "notification-url": "https://packagist.org/downloads/",
  4635. "license": [
  4636. "MIT"
  4637. ],
  4638. "authors": [
  4639. {
  4640. "name": "Anyon",
  4641. "email": "zoujingli@qq.com",
  4642. "homepage": "https://thinkadmin.top"
  4643. }
  4644. ],
  4645. "description": "WeChat platform and WeChat payment development tools",
  4646. "homepage": "https://github.com/kentwangit/WeChatDeveloper",
  4647. "keywords": [
  4648. "WeChatDeveloper",
  4649. "WeMini",
  4650. "alipay",
  4651. "wechat",
  4652. "wechatpay",
  4653. "wepay"
  4654. ],
  4655. "support": {
  4656. "issues": "https://github.com/zoujingli/WeChatDeveloper/issues",
  4657. "source": "https://github.com/zoujingli/WeChatDeveloper/tree/v1.2.35"
  4658. },
  4659. "install-path": "../zoujingli/wechat-developer"
  4660. },
  4661. {
  4662. "name": "zoujingli/weopen-developer",
  4663. "version": "dev-master",
  4664. "version_normalized": "dev-master",
  4665. "source": {
  4666. "type": "git",
  4667. "url": "https://github.com/zoujingli/WeOpenDeveloper.git",
  4668. "reference": "4d0d3c064e54556621453845fc65ba52de58a880"
  4669. },
  4670. "dist": {
  4671. "type": "zip",
  4672. "url": "https://api.github.com/repos/zoujingli/WeOpenDeveloper/zipball/4d0d3c064e54556621453845fc65ba52de58a880",
  4673. "reference": "4d0d3c064e54556621453845fc65ba52de58a880",
  4674. "shasum": "",
  4675. "mirrors": [
  4676. {
  4677. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4678. "preferred": true
  4679. }
  4680. ]
  4681. },
  4682. "require": {
  4683. "ext-curl": "*",
  4684. "ext-json": "*",
  4685. "ext-openssl": "*",
  4686. "php": ">=5.4",
  4687. "zoujingli/wechat-developer": "^1.0"
  4688. },
  4689. "time": "2019-10-10T10:18:05+00:00",
  4690. "type": "library",
  4691. "installation-source": "dist",
  4692. "autoload": {
  4693. "psr-4": {
  4694. "WeOpen\\": "WeOpen",
  4695. "WeChat\\": "WeChat",
  4696. "WeMini\\": "WeMini"
  4697. }
  4698. },
  4699. "notification-url": "https://packagist.org/downloads/",
  4700. "license": [
  4701. "MIT"
  4702. ],
  4703. "authors": [
  4704. {
  4705. "name": "Anyon",
  4706. "email": "zoujingli@qq.com",
  4707. "homepage": "http://ctolog.com"
  4708. }
  4709. ],
  4710. "description": "WeChat Open development of SDK",
  4711. "homepage": "https://github.com/zoujingli/WeOpenDeveloper",
  4712. "keywords": [
  4713. "WeChatOpen",
  4714. "WeChatOpenDeveloper",
  4715. "wechat"
  4716. ],
  4717. "install-path": "../zoujingli/weopen-developer"
  4718. }
  4719. ],
  4720. "dev": true,
  4721. "dev-package-names": []
  4722. }