composer.lock 179 KB

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