composer.lock 181 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118
  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": "62870cd0f75fd632bf533ffc7821a2fe",
  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": "paypal/rest-api-sdk-php",
  1988. "version": "1.14.0",
  1989. "source": {
  1990. "type": "git",
  1991. "url": "https://github.com/paypal/PayPal-PHP-SDK.git",
  1992. "reference": "72e2f2466975bf128a31e02b15110180f059fc04"
  1993. },
  1994. "dist": {
  1995. "type": "zip",
  1996. "url": "https://api.github.com/repos/paypal/PayPal-PHP-SDK/zipball/72e2f2466975bf128a31e02b15110180f059fc04",
  1997. "reference": "72e2f2466975bf128a31e02b15110180f059fc04",
  1998. "shasum": ""
  1999. },
  2000. "require": {
  2001. "ext-curl": "*",
  2002. "ext-json": "*",
  2003. "php": ">=5.3.0",
  2004. "psr/log": "^1.0.0"
  2005. },
  2006. "require-dev": {
  2007. "phpunit/phpunit": "^4.8.35"
  2008. },
  2009. "type": "library",
  2010. "autoload": {
  2011. "psr-0": {
  2012. "PayPal": "lib/"
  2013. }
  2014. },
  2015. "notification-url": "https://packagist.org/downloads/",
  2016. "license": [
  2017. "Apache-2.0"
  2018. ],
  2019. "authors": [
  2020. {
  2021. "name": "PayPal",
  2022. "homepage": "https://github.com/paypal/rest-api-sdk-php/contributors"
  2023. }
  2024. ],
  2025. "description": "PayPal's PHP SDK for REST APIs",
  2026. "homepage": "http://paypal.github.io/PayPal-PHP-SDK/",
  2027. "keywords": [
  2028. "payments",
  2029. "paypal",
  2030. "rest",
  2031. "sdk"
  2032. ],
  2033. "support": {
  2034. "issues": "https://github.com/paypal/PayPal-PHP-SDK/issues",
  2035. "source": "https://github.com/paypal/PayPal-PHP-SDK/tree/master"
  2036. },
  2037. "abandoned": true,
  2038. "time": "2019-01-04T20:04:25+00:00"
  2039. },
  2040. {
  2041. "name": "phpmailer/phpmailer",
  2042. "version": "v6.9.1",
  2043. "source": {
  2044. "type": "git",
  2045. "url": "https://github.com/PHPMailer/PHPMailer.git",
  2046. "reference": "039de174cd9c17a8389754d3b877a2ed22743e18"
  2047. },
  2048. "dist": {
  2049. "type": "zip",
  2050. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/039de174cd9c17a8389754d3b877a2ed22743e18",
  2051. "reference": "039de174cd9c17a8389754d3b877a2ed22743e18",
  2052. "shasum": ""
  2053. },
  2054. "require": {
  2055. "ext-ctype": "*",
  2056. "ext-filter": "*",
  2057. "ext-hash": "*",
  2058. "php": ">=5.5.0"
  2059. },
  2060. "require-dev": {
  2061. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  2062. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  2063. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  2064. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  2065. "phpcompatibility/php-compatibility": "^9.3.5",
  2066. "roave/security-advisories": "dev-latest",
  2067. "squizlabs/php_codesniffer": "^3.7.2",
  2068. "yoast/phpunit-polyfills": "^1.0.4"
  2069. },
  2070. "suggest": {
  2071. "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
  2072. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  2073. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  2074. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  2075. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  2076. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  2077. "psr/log": "For optional PSR-3 debug logging",
  2078. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  2079. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  2080. },
  2081. "type": "library",
  2082. "autoload": {
  2083. "psr-4": {
  2084. "PHPMailer\\PHPMailer\\": "src/"
  2085. }
  2086. },
  2087. "notification-url": "https://packagist.org/downloads/",
  2088. "license": [
  2089. "LGPL-2.1-only"
  2090. ],
  2091. "authors": [
  2092. {
  2093. "name": "Marcus Bointon",
  2094. "email": "phpmailer@synchromedia.co.uk"
  2095. },
  2096. {
  2097. "name": "Jim Jagielski",
  2098. "email": "jimjag@gmail.com"
  2099. },
  2100. {
  2101. "name": "Andy Prevost",
  2102. "email": "codeworxtech@users.sourceforge.net"
  2103. },
  2104. {
  2105. "name": "Brent R. Matzelle"
  2106. }
  2107. ],
  2108. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  2109. "support": {
  2110. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  2111. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.9.1"
  2112. },
  2113. "funding": [
  2114. {
  2115. "url": "https://github.com/Synchro",
  2116. "type": "github"
  2117. }
  2118. ],
  2119. "time": "2023-11-25T22:23:28+00:00"
  2120. },
  2121. {
  2122. "name": "phpoffice/phpspreadsheet",
  2123. "version": "1.22.0",
  2124. "source": {
  2125. "type": "git",
  2126. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2127. "reference": "3a9e29b4f386a08a151a33578e80ef1747037a48"
  2128. },
  2129. "dist": {
  2130. "type": "zip",
  2131. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/3a9e29b4f386a08a151a33578e80ef1747037a48",
  2132. "reference": "3a9e29b4f386a08a151a33578e80ef1747037a48",
  2133. "shasum": ""
  2134. },
  2135. "require": {
  2136. "ext-ctype": "*",
  2137. "ext-dom": "*",
  2138. "ext-fileinfo": "*",
  2139. "ext-gd": "*",
  2140. "ext-iconv": "*",
  2141. "ext-libxml": "*",
  2142. "ext-mbstring": "*",
  2143. "ext-simplexml": "*",
  2144. "ext-xml": "*",
  2145. "ext-xmlreader": "*",
  2146. "ext-xmlwriter": "*",
  2147. "ext-zip": "*",
  2148. "ext-zlib": "*",
  2149. "ezyang/htmlpurifier": "^4.13",
  2150. "maennchen/zipstream-php": "^2.1",
  2151. "markbaker/complex": "^3.0",
  2152. "markbaker/matrix": "^3.0",
  2153. "php": "^7.3 || ^8.0",
  2154. "psr/http-client": "^1.0",
  2155. "psr/http-factory": "^1.0",
  2156. "psr/simple-cache": "^1.0"
  2157. },
  2158. "require-dev": {
  2159. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2160. "dompdf/dompdf": "^1.0",
  2161. "friendsofphp/php-cs-fixer": "^3.2",
  2162. "jpgraph/jpgraph": "^4.0",
  2163. "mpdf/mpdf": "8.0.17",
  2164. "phpcompatibility/php-compatibility": "^9.3",
  2165. "phpstan/phpstan": "^1.1",
  2166. "phpstan/phpstan-phpunit": "^1.0",
  2167. "phpunit/phpunit": "^8.5 || ^9.0",
  2168. "squizlabs/php_codesniffer": "^3.6",
  2169. "tecnickcom/tcpdf": "^6.4"
  2170. },
  2171. "suggest": {
  2172. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  2173. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2174. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2175. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  2176. },
  2177. "type": "library",
  2178. "autoload": {
  2179. "psr-4": {
  2180. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2181. }
  2182. },
  2183. "notification-url": "https://packagist.org/downloads/",
  2184. "license": [
  2185. "MIT"
  2186. ],
  2187. "authors": [
  2188. {
  2189. "name": "Maarten Balliauw",
  2190. "homepage": "https://blog.maartenballiauw.be"
  2191. },
  2192. {
  2193. "name": "Mark Baker",
  2194. "homepage": "https://markbakeruk.net"
  2195. },
  2196. {
  2197. "name": "Franck Lefevre",
  2198. "homepage": "https://rootslabs.net"
  2199. },
  2200. {
  2201. "name": "Erik Tilt"
  2202. },
  2203. {
  2204. "name": "Adrien Crivelli"
  2205. }
  2206. ],
  2207. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2208. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2209. "keywords": [
  2210. "OpenXML",
  2211. "excel",
  2212. "gnumeric",
  2213. "ods",
  2214. "php",
  2215. "spreadsheet",
  2216. "xls",
  2217. "xlsx"
  2218. ],
  2219. "support": {
  2220. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  2221. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.22.0"
  2222. },
  2223. "time": "2022-02-18T12:57:07+00:00"
  2224. },
  2225. {
  2226. "name": "pimple/pimple",
  2227. "version": "v3.5.0",
  2228. "source": {
  2229. "type": "git",
  2230. "url": "https://github.com/silexphp/Pimple.git",
  2231. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  2232. },
  2233. "dist": {
  2234. "type": "zip",
  2235. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  2236. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  2237. "shasum": ""
  2238. },
  2239. "require": {
  2240. "php": ">=7.2.5",
  2241. "psr/container": "^1.1 || ^2.0"
  2242. },
  2243. "require-dev": {
  2244. "symfony/phpunit-bridge": "^5.4@dev"
  2245. },
  2246. "type": "library",
  2247. "extra": {
  2248. "branch-alias": {
  2249. "dev-master": "3.4.x-dev"
  2250. }
  2251. },
  2252. "autoload": {
  2253. "psr-0": {
  2254. "Pimple": "src/"
  2255. }
  2256. },
  2257. "notification-url": "https://packagist.org/downloads/",
  2258. "license": [
  2259. "MIT"
  2260. ],
  2261. "authors": [
  2262. {
  2263. "name": "Fabien Potencier",
  2264. "email": "fabien@symfony.com"
  2265. }
  2266. ],
  2267. "description": "Pimple, a simple Dependency Injection Container",
  2268. "homepage": "https://pimple.symfony.com",
  2269. "keywords": [
  2270. "container",
  2271. "dependency injection"
  2272. ],
  2273. "support": {
  2274. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  2275. },
  2276. "time": "2021-10-28T11:13:42+00:00"
  2277. },
  2278. {
  2279. "name": "psr/cache",
  2280. "version": "1.0.1",
  2281. "source": {
  2282. "type": "git",
  2283. "url": "https://github.com/php-fig/cache.git",
  2284. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2285. },
  2286. "dist": {
  2287. "type": "zip",
  2288. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2289. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2290. "shasum": ""
  2291. },
  2292. "require": {
  2293. "php": ">=5.3.0"
  2294. },
  2295. "type": "library",
  2296. "extra": {
  2297. "branch-alias": {
  2298. "dev-master": "1.0.x-dev"
  2299. }
  2300. },
  2301. "autoload": {
  2302. "psr-4": {
  2303. "Psr\\Cache\\": "src/"
  2304. }
  2305. },
  2306. "notification-url": "https://packagist.org/downloads/",
  2307. "license": [
  2308. "MIT"
  2309. ],
  2310. "authors": [
  2311. {
  2312. "name": "PHP-FIG",
  2313. "homepage": "http://www.php-fig.org/"
  2314. }
  2315. ],
  2316. "description": "Common interface for caching libraries",
  2317. "keywords": [
  2318. "cache",
  2319. "psr",
  2320. "psr-6"
  2321. ],
  2322. "support": {
  2323. "source": "https://github.com/php-fig/cache/tree/master"
  2324. },
  2325. "time": "2016-08-06T20:24:11+00:00"
  2326. },
  2327. {
  2328. "name": "psr/container",
  2329. "version": "1.1.2",
  2330. "source": {
  2331. "type": "git",
  2332. "url": "https://github.com/php-fig/container.git",
  2333. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  2334. },
  2335. "dist": {
  2336. "type": "zip",
  2337. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  2338. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  2339. "shasum": ""
  2340. },
  2341. "require": {
  2342. "php": ">=7.4.0"
  2343. },
  2344. "type": "library",
  2345. "autoload": {
  2346. "psr-4": {
  2347. "Psr\\Container\\": "src/"
  2348. }
  2349. },
  2350. "notification-url": "https://packagist.org/downloads/",
  2351. "license": [
  2352. "MIT"
  2353. ],
  2354. "authors": [
  2355. {
  2356. "name": "PHP-FIG",
  2357. "homepage": "https://www.php-fig.org/"
  2358. }
  2359. ],
  2360. "description": "Common Container Interface (PHP FIG PSR-11)",
  2361. "homepage": "https://github.com/php-fig/container",
  2362. "keywords": [
  2363. "PSR-11",
  2364. "container",
  2365. "container-interface",
  2366. "container-interop",
  2367. "psr"
  2368. ],
  2369. "support": {
  2370. "issues": "https://github.com/php-fig/container/issues",
  2371. "source": "https://github.com/php-fig/container/tree/1.1.2"
  2372. },
  2373. "time": "2021-11-05T16:50:12+00:00"
  2374. },
  2375. {
  2376. "name": "psr/event-dispatcher",
  2377. "version": "1.0.0",
  2378. "source": {
  2379. "type": "git",
  2380. "url": "https://github.com/php-fig/event-dispatcher.git",
  2381. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2382. },
  2383. "dist": {
  2384. "type": "zip",
  2385. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2386. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2387. "shasum": ""
  2388. },
  2389. "require": {
  2390. "php": ">=7.2.0"
  2391. },
  2392. "type": "library",
  2393. "extra": {
  2394. "branch-alias": {
  2395. "dev-master": "1.0.x-dev"
  2396. }
  2397. },
  2398. "autoload": {
  2399. "psr-4": {
  2400. "Psr\\EventDispatcher\\": "src/"
  2401. }
  2402. },
  2403. "notification-url": "https://packagist.org/downloads/",
  2404. "license": [
  2405. "MIT"
  2406. ],
  2407. "authors": [
  2408. {
  2409. "name": "PHP-FIG",
  2410. "homepage": "http://www.php-fig.org/"
  2411. }
  2412. ],
  2413. "description": "Standard interfaces for event handling.",
  2414. "keywords": [
  2415. "events",
  2416. "psr",
  2417. "psr-14"
  2418. ],
  2419. "support": {
  2420. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2421. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2422. },
  2423. "time": "2019-01-08T18:20:26+00:00"
  2424. },
  2425. {
  2426. "name": "psr/http-client",
  2427. "version": "1.0.1",
  2428. "source": {
  2429. "type": "git",
  2430. "url": "https://github.com/php-fig/http-client.git",
  2431. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2432. },
  2433. "dist": {
  2434. "type": "zip",
  2435. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2436. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2437. "shasum": ""
  2438. },
  2439. "require": {
  2440. "php": "^7.0 || ^8.0",
  2441. "psr/http-message": "^1.0"
  2442. },
  2443. "type": "library",
  2444. "extra": {
  2445. "branch-alias": {
  2446. "dev-master": "1.0.x-dev"
  2447. }
  2448. },
  2449. "autoload": {
  2450. "psr-4": {
  2451. "Psr\\Http\\Client\\": "src/"
  2452. }
  2453. },
  2454. "notification-url": "https://packagist.org/downloads/",
  2455. "license": [
  2456. "MIT"
  2457. ],
  2458. "authors": [
  2459. {
  2460. "name": "PHP-FIG",
  2461. "homepage": "http://www.php-fig.org/"
  2462. }
  2463. ],
  2464. "description": "Common interface for HTTP clients",
  2465. "homepage": "https://github.com/php-fig/http-client",
  2466. "keywords": [
  2467. "http",
  2468. "http-client",
  2469. "psr",
  2470. "psr-18"
  2471. ],
  2472. "support": {
  2473. "source": "https://github.com/php-fig/http-client/tree/master"
  2474. },
  2475. "time": "2020-06-29T06:28:15+00:00"
  2476. },
  2477. {
  2478. "name": "psr/http-factory",
  2479. "version": "1.0.1",
  2480. "source": {
  2481. "type": "git",
  2482. "url": "https://github.com/php-fig/http-factory.git",
  2483. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2484. },
  2485. "dist": {
  2486. "type": "zip",
  2487. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2488. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2489. "shasum": ""
  2490. },
  2491. "require": {
  2492. "php": ">=7.0.0",
  2493. "psr/http-message": "^1.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 interfaces for PSR-7 HTTP message factories",
  2517. "keywords": [
  2518. "factory",
  2519. "http",
  2520. "message",
  2521. "psr",
  2522. "psr-17",
  2523. "psr-7",
  2524. "request",
  2525. "response"
  2526. ],
  2527. "support": {
  2528. "source": "https://github.com/php-fig/http-factory/tree/master"
  2529. },
  2530. "time": "2019-04-30T12:38:16+00:00"
  2531. },
  2532. {
  2533. "name": "psr/http-message",
  2534. "version": "1.0.1",
  2535. "source": {
  2536. "type": "git",
  2537. "url": "https://github.com/php-fig/http-message.git",
  2538. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2539. },
  2540. "dist": {
  2541. "type": "zip",
  2542. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2543. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2544. "shasum": ""
  2545. },
  2546. "require": {
  2547. "php": ">=5.3.0"
  2548. },
  2549. "type": "library",
  2550. "extra": {
  2551. "branch-alias": {
  2552. "dev-master": "1.0.x-dev"
  2553. }
  2554. },
  2555. "autoload": {
  2556. "psr-4": {
  2557. "Psr\\Http\\Message\\": "src/"
  2558. }
  2559. },
  2560. "notification-url": "https://packagist.org/downloads/",
  2561. "license": [
  2562. "MIT"
  2563. ],
  2564. "authors": [
  2565. {
  2566. "name": "PHP-FIG",
  2567. "homepage": "http://www.php-fig.org/"
  2568. }
  2569. ],
  2570. "description": "Common interface for HTTP messages",
  2571. "homepage": "https://github.com/php-fig/http-message",
  2572. "keywords": [
  2573. "http",
  2574. "http-message",
  2575. "psr",
  2576. "psr-7",
  2577. "request",
  2578. "response"
  2579. ],
  2580. "support": {
  2581. "source": "https://github.com/php-fig/http-message/tree/master"
  2582. },
  2583. "time": "2016-08-06T14:39:51+00:00"
  2584. },
  2585. {
  2586. "name": "psr/log",
  2587. "version": "1.1.4",
  2588. "source": {
  2589. "type": "git",
  2590. "url": "https://github.com/php-fig/log.git",
  2591. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2592. },
  2593. "dist": {
  2594. "type": "zip",
  2595. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2596. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2597. "shasum": ""
  2598. },
  2599. "require": {
  2600. "php": ">=5.3.0"
  2601. },
  2602. "type": "library",
  2603. "extra": {
  2604. "branch-alias": {
  2605. "dev-master": "1.1.x-dev"
  2606. }
  2607. },
  2608. "autoload": {
  2609. "psr-4": {
  2610. "Psr\\Log\\": "Psr/Log/"
  2611. }
  2612. },
  2613. "notification-url": "https://packagist.org/downloads/",
  2614. "license": [
  2615. "MIT"
  2616. ],
  2617. "authors": [
  2618. {
  2619. "name": "PHP-FIG",
  2620. "homepage": "https://www.php-fig.org/"
  2621. }
  2622. ],
  2623. "description": "Common interface for logging libraries",
  2624. "homepage": "https://github.com/php-fig/log",
  2625. "keywords": [
  2626. "log",
  2627. "psr",
  2628. "psr-3"
  2629. ],
  2630. "support": {
  2631. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2632. },
  2633. "time": "2021-05-03T11:20:27+00:00"
  2634. },
  2635. {
  2636. "name": "psr/simple-cache",
  2637. "version": "1.0.1",
  2638. "source": {
  2639. "type": "git",
  2640. "url": "https://github.com/php-fig/simple-cache.git",
  2641. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2642. },
  2643. "dist": {
  2644. "type": "zip",
  2645. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2646. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2647. "shasum": ""
  2648. },
  2649. "require": {
  2650. "php": ">=5.3.0"
  2651. },
  2652. "type": "library",
  2653. "extra": {
  2654. "branch-alias": {
  2655. "dev-master": "1.0.x-dev"
  2656. }
  2657. },
  2658. "autoload": {
  2659. "psr-4": {
  2660. "Psr\\SimpleCache\\": "src/"
  2661. }
  2662. },
  2663. "notification-url": "https://packagist.org/downloads/",
  2664. "license": [
  2665. "MIT"
  2666. ],
  2667. "authors": [
  2668. {
  2669. "name": "PHP-FIG",
  2670. "homepage": "http://www.php-fig.org/"
  2671. }
  2672. ],
  2673. "description": "Common interfaces for simple caching",
  2674. "keywords": [
  2675. "cache",
  2676. "caching",
  2677. "psr",
  2678. "psr-16",
  2679. "simple-cache"
  2680. ],
  2681. "support": {
  2682. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2683. },
  2684. "time": "2017-10-23T01:57:42+00:00"
  2685. },
  2686. {
  2687. "name": "qcloud/cos-sdk-v5",
  2688. "version": "v2.5.2",
  2689. "source": {
  2690. "type": "git",
  2691. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  2692. "reference": "3b2f32efd6c7bba7b982b118c5af18db74658fc5"
  2693. },
  2694. "dist": {
  2695. "type": "zip",
  2696. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/3b2f32efd6c7bba7b982b118c5af18db74658fc5",
  2697. "reference": "3b2f32efd6c7bba7b982b118c5af18db74658fc5",
  2698. "shasum": ""
  2699. },
  2700. "require": {
  2701. "ext-curl": "*",
  2702. "ext-json": "*",
  2703. "ext-simplexml": "*",
  2704. "guzzlehttp/guzzle": "^6.2.1 || ^7.0",
  2705. "guzzlehttp/guzzle-services": "^1.1",
  2706. "guzzlehttp/psr7": "^1.3.1 || ^2.0",
  2707. "php": ">=5.6"
  2708. },
  2709. "type": "library",
  2710. "extra": {
  2711. "branch-alias": {
  2712. "dev-master": "2.4-dev"
  2713. }
  2714. },
  2715. "autoload": {
  2716. "files": [
  2717. "src/Common.php"
  2718. ],
  2719. "psr-4": {
  2720. "Qcloud\\Cos\\": "src/"
  2721. }
  2722. },
  2723. "notification-url": "https://packagist.org/downloads/",
  2724. "license": [
  2725. "MIT"
  2726. ],
  2727. "authors": [
  2728. {
  2729. "name": "yaozongyou",
  2730. "email": "yaozongyou@vip.qq.com"
  2731. },
  2732. {
  2733. "name": "lewzylu",
  2734. "email": "327874225@qq.com"
  2735. },
  2736. {
  2737. "name": "tuunalai",
  2738. "email": "550566181@qq.com"
  2739. }
  2740. ],
  2741. "description": "PHP SDK for QCloud COS",
  2742. "keywords": [
  2743. "cos",
  2744. "php",
  2745. "qcloud"
  2746. ],
  2747. "support": {
  2748. "issues": "https://github.com/tencentyun/cos-php-sdk-v5/issues",
  2749. "source": "https://github.com/tencentyun/cos-php-sdk-v5/tree/v2.5.2"
  2750. },
  2751. "time": "2022-04-07T03:22:53+00:00"
  2752. },
  2753. {
  2754. "name": "qiniu/php-sdk",
  2755. "version": "v7.4.3",
  2756. "source": {
  2757. "type": "git",
  2758. "url": "https://github.com/qiniu/php-sdk.git",
  2759. "reference": "ee5344f319dd7babd86c9a38e6bd05aa58dc90ea"
  2760. },
  2761. "dist": {
  2762. "type": "zip",
  2763. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/ee5344f319dd7babd86c9a38e6bd05aa58dc90ea",
  2764. "reference": "ee5344f319dd7babd86c9a38e6bd05aa58dc90ea",
  2765. "shasum": ""
  2766. },
  2767. "require": {
  2768. "myclabs/php-enum": "1.6.6",
  2769. "php": ">=5.3.3"
  2770. },
  2771. "require-dev": {
  2772. "paragonie/random_compat": ">=2",
  2773. "phpunit/phpunit": "~4.0",
  2774. "squizlabs/php_codesniffer": "~3.6"
  2775. },
  2776. "type": "library",
  2777. "autoload": {
  2778. "files": [
  2779. "src/Qiniu/functions.php"
  2780. ],
  2781. "psr-4": {
  2782. "Qiniu\\": "src/Qiniu"
  2783. }
  2784. },
  2785. "notification-url": "https://packagist.org/downloads/",
  2786. "license": [
  2787. "MIT"
  2788. ],
  2789. "authors": [
  2790. {
  2791. "name": "Qiniu",
  2792. "email": "sdk@qiniu.com",
  2793. "homepage": "http://www.qiniu.com"
  2794. }
  2795. ],
  2796. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  2797. "homepage": "http://developer.qiniu.com/",
  2798. "keywords": [
  2799. "cloud",
  2800. "qiniu",
  2801. "sdk",
  2802. "storage"
  2803. ],
  2804. "support": {
  2805. "issues": "https://github.com/qiniu/php-sdk/issues",
  2806. "source": "https://github.com/qiniu/php-sdk/tree/v7.4.3"
  2807. },
  2808. "time": "2022-04-01T08:49:57+00:00"
  2809. },
  2810. {
  2811. "name": "ralouphie/getallheaders",
  2812. "version": "3.0.3",
  2813. "source": {
  2814. "type": "git",
  2815. "url": "https://github.com/ralouphie/getallheaders.git",
  2816. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2817. },
  2818. "dist": {
  2819. "type": "zip",
  2820. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2821. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2822. "shasum": ""
  2823. },
  2824. "require": {
  2825. "php": ">=5.6"
  2826. },
  2827. "require-dev": {
  2828. "php-coveralls/php-coveralls": "^2.1",
  2829. "phpunit/phpunit": "^5 || ^6.5"
  2830. },
  2831. "type": "library",
  2832. "autoload": {
  2833. "files": [
  2834. "src/getallheaders.php"
  2835. ]
  2836. },
  2837. "notification-url": "https://packagist.org/downloads/",
  2838. "license": [
  2839. "MIT"
  2840. ],
  2841. "authors": [
  2842. {
  2843. "name": "Ralph Khattar",
  2844. "email": "ralph.khattar@gmail.com"
  2845. }
  2846. ],
  2847. "description": "A polyfill for getallheaders.",
  2848. "support": {
  2849. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2850. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2851. },
  2852. "time": "2019-03-08T08:55:37+00:00"
  2853. },
  2854. {
  2855. "name": "songshenzong/support",
  2856. "version": "2.0.6",
  2857. "source": {
  2858. "type": "git",
  2859. "url": "https://github.com/aliguyong/support.git",
  2860. "reference": "b334d8abc99e8a85538a556e10c670c18b71c230"
  2861. },
  2862. "dist": {
  2863. "type": "zip",
  2864. "url": "https://api.github.com/repos/aliguyong/support/zipball/b334d8abc99e8a85538a556e10c670c18b71c230",
  2865. "reference": "b334d8abc99e8a85538a556e10c670c18b71c230",
  2866. "shasum": ""
  2867. },
  2868. "require": {
  2869. "danielstjules/stringy": "^3.1",
  2870. "ext-json": "*",
  2871. "ext-simplexml": "*",
  2872. "ext-xml": "*",
  2873. "php": ">=5.5"
  2874. },
  2875. "require-dev": {
  2876. "laravel/framework": "^5.8",
  2877. "phpunit/phpunit": "^4.8.35|^5.4.3"
  2878. },
  2879. "type": "library",
  2880. "extra": {
  2881. "laravel": {
  2882. "providers": [
  2883. "Songshenzong\\Support\\StringsServiceProvider"
  2884. ],
  2885. "aliases": {
  2886. "Strings": "Songshenzong\\Support\\StringsFacade"
  2887. }
  2888. }
  2889. },
  2890. "autoload": {
  2891. "files": [
  2892. "src/StringsHelpers.php",
  2893. "src/BashEchoHelpers.php"
  2894. ],
  2895. "psr-4": {
  2896. "Songshenzong\\Support\\": "src/"
  2897. }
  2898. },
  2899. "notification-url": "https://packagist.org/downloads/",
  2900. "license": [
  2901. "MIT"
  2902. ],
  2903. "authors": [
  2904. {
  2905. "name": "Songshenzong",
  2906. "email": "i@songshenzong.com"
  2907. }
  2908. ],
  2909. "description": "The Songshenzong Support package.",
  2910. "homepage": "http://songshenzong.com",
  2911. "keywords": [
  2912. "laravel",
  2913. "support",
  2914. "tools",
  2915. "web"
  2916. ],
  2917. "support": {
  2918. "issues": "https://github.com/songshenzong/support/issues",
  2919. "source": "https://github.com/songshenzong/support"
  2920. },
  2921. "time": "2021-12-29T06:36:20+00:00"
  2922. },
  2923. {
  2924. "name": "symfony/cache",
  2925. "version": "v5.4.7",
  2926. "source": {
  2927. "type": "git",
  2928. "url": "https://github.com/symfony/cache.git",
  2929. "reference": "ba06841ed293fcaf79a592f59fdaba471f7c756c"
  2930. },
  2931. "dist": {
  2932. "type": "zip",
  2933. "url": "https://api.github.com/repos/symfony/cache/zipball/ba06841ed293fcaf79a592f59fdaba471f7c756c",
  2934. "reference": "ba06841ed293fcaf79a592f59fdaba471f7c756c",
  2935. "shasum": ""
  2936. },
  2937. "require": {
  2938. "php": ">=7.2.5",
  2939. "psr/cache": "^1.0|^2.0",
  2940. "psr/log": "^1.1|^2|^3",
  2941. "symfony/cache-contracts": "^1.1.7|^2",
  2942. "symfony/deprecation-contracts": "^2.1|^3",
  2943. "symfony/polyfill-php73": "^1.9",
  2944. "symfony/polyfill-php80": "^1.16",
  2945. "symfony/service-contracts": "^1.1|^2|^3",
  2946. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  2947. },
  2948. "conflict": {
  2949. "doctrine/dbal": "<2.13.1",
  2950. "symfony/dependency-injection": "<4.4",
  2951. "symfony/http-kernel": "<4.4",
  2952. "symfony/var-dumper": "<4.4"
  2953. },
  2954. "provide": {
  2955. "psr/cache-implementation": "1.0|2.0",
  2956. "psr/simple-cache-implementation": "1.0|2.0",
  2957. "symfony/cache-implementation": "1.0|2.0"
  2958. },
  2959. "require-dev": {
  2960. "cache/integration-tests": "dev-master",
  2961. "doctrine/cache": "^1.6|^2.0",
  2962. "doctrine/dbal": "^2.13.1|^3.0",
  2963. "predis/predis": "^1.1",
  2964. "psr/simple-cache": "^1.0|^2.0",
  2965. "symfony/config": "^4.4|^5.0|^6.0",
  2966. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2967. "symfony/filesystem": "^4.4|^5.0|^6.0",
  2968. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  2969. "symfony/messenger": "^4.4|^5.0|^6.0",
  2970. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2971. },
  2972. "type": "library",
  2973. "autoload": {
  2974. "psr-4": {
  2975. "Symfony\\Component\\Cache\\": ""
  2976. },
  2977. "exclude-from-classmap": [
  2978. "/Tests/"
  2979. ]
  2980. },
  2981. "notification-url": "https://packagist.org/downloads/",
  2982. "license": [
  2983. "MIT"
  2984. ],
  2985. "authors": [
  2986. {
  2987. "name": "Nicolas Grekas",
  2988. "email": "p@tchwork.com"
  2989. },
  2990. {
  2991. "name": "Symfony Community",
  2992. "homepage": "https://symfony.com/contributors"
  2993. }
  2994. ],
  2995. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  2996. "homepage": "https://symfony.com",
  2997. "keywords": [
  2998. "caching",
  2999. "psr6"
  3000. ],
  3001. "support": {
  3002. "source": "https://github.com/symfony/cache/tree/v5.4.7"
  3003. },
  3004. "funding": [
  3005. {
  3006. "url": "https://symfony.com/sponsor",
  3007. "type": "custom"
  3008. },
  3009. {
  3010. "url": "https://github.com/fabpot",
  3011. "type": "github"
  3012. },
  3013. {
  3014. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3015. "type": "tidelift"
  3016. }
  3017. ],
  3018. "time": "2022-03-22T15:31:03+00:00"
  3019. },
  3020. {
  3021. "name": "symfony/cache-contracts",
  3022. "version": "v2.5.1",
  3023. "source": {
  3024. "type": "git",
  3025. "url": "https://github.com/symfony/cache-contracts.git",
  3026. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  3027. },
  3028. "dist": {
  3029. "type": "zip",
  3030. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  3031. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  3032. "shasum": ""
  3033. },
  3034. "require": {
  3035. "php": ">=7.2.5",
  3036. "psr/cache": "^1.0|^2.0|^3.0"
  3037. },
  3038. "suggest": {
  3039. "symfony/cache-implementation": ""
  3040. },
  3041. "type": "library",
  3042. "extra": {
  3043. "branch-alias": {
  3044. "dev-main": "2.5-dev"
  3045. },
  3046. "thanks": {
  3047. "name": "symfony/contracts",
  3048. "url": "https://github.com/symfony/contracts"
  3049. }
  3050. },
  3051. "autoload": {
  3052. "psr-4": {
  3053. "Symfony\\Contracts\\Cache\\": ""
  3054. }
  3055. },
  3056. "notification-url": "https://packagist.org/downloads/",
  3057. "license": [
  3058. "MIT"
  3059. ],
  3060. "authors": [
  3061. {
  3062. "name": "Nicolas Grekas",
  3063. "email": "p@tchwork.com"
  3064. },
  3065. {
  3066. "name": "Symfony Community",
  3067. "homepage": "https://symfony.com/contributors"
  3068. }
  3069. ],
  3070. "description": "Generic abstractions related to caching",
  3071. "homepage": "https://symfony.com",
  3072. "keywords": [
  3073. "abstractions",
  3074. "contracts",
  3075. "decoupling",
  3076. "interfaces",
  3077. "interoperability",
  3078. "standards"
  3079. ],
  3080. "support": {
  3081. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.1"
  3082. },
  3083. "funding": [
  3084. {
  3085. "url": "https://symfony.com/sponsor",
  3086. "type": "custom"
  3087. },
  3088. {
  3089. "url": "https://github.com/fabpot",
  3090. "type": "github"
  3091. },
  3092. {
  3093. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3094. "type": "tidelift"
  3095. }
  3096. ],
  3097. "time": "2022-01-02T09:53:40+00:00"
  3098. },
  3099. {
  3100. "name": "symfony/deprecation-contracts",
  3101. "version": "v3.0.1",
  3102. "source": {
  3103. "type": "git",
  3104. "url": "https://github.com/symfony/deprecation-contracts.git",
  3105. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  3106. },
  3107. "dist": {
  3108. "type": "zip",
  3109. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  3110. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  3111. "shasum": ""
  3112. },
  3113. "require": {
  3114. "php": ">=8.0.2"
  3115. },
  3116. "type": "library",
  3117. "extra": {
  3118. "branch-alias": {
  3119. "dev-main": "3.0-dev"
  3120. },
  3121. "thanks": {
  3122. "name": "symfony/contracts",
  3123. "url": "https://github.com/symfony/contracts"
  3124. }
  3125. },
  3126. "autoload": {
  3127. "files": [
  3128. "function.php"
  3129. ]
  3130. },
  3131. "notification-url": "https://packagist.org/downloads/",
  3132. "license": [
  3133. "MIT"
  3134. ],
  3135. "authors": [
  3136. {
  3137. "name": "Nicolas Grekas",
  3138. "email": "p@tchwork.com"
  3139. },
  3140. {
  3141. "name": "Symfony Community",
  3142. "homepage": "https://symfony.com/contributors"
  3143. }
  3144. ],
  3145. "description": "A generic function and convention to trigger deprecation notices",
  3146. "homepage": "https://symfony.com",
  3147. "support": {
  3148. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.1"
  3149. },
  3150. "funding": [
  3151. {
  3152. "url": "https://symfony.com/sponsor",
  3153. "type": "custom"
  3154. },
  3155. {
  3156. "url": "https://github.com/fabpot",
  3157. "type": "github"
  3158. },
  3159. {
  3160. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3161. "type": "tidelift"
  3162. }
  3163. ],
  3164. "time": "2022-01-02T09:55:41+00:00"
  3165. },
  3166. {
  3167. "name": "symfony/event-dispatcher",
  3168. "version": "v5.4.3",
  3169. "source": {
  3170. "type": "git",
  3171. "url": "https://github.com/symfony/event-dispatcher.git",
  3172. "reference": "dec8a9f58d20df252b9cd89f1c6c1530f747685d"
  3173. },
  3174. "dist": {
  3175. "type": "zip",
  3176. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/dec8a9f58d20df252b9cd89f1c6c1530f747685d",
  3177. "reference": "dec8a9f58d20df252b9cd89f1c6c1530f747685d",
  3178. "shasum": ""
  3179. },
  3180. "require": {
  3181. "php": ">=7.2.5",
  3182. "symfony/deprecation-contracts": "^2.1|^3",
  3183. "symfony/event-dispatcher-contracts": "^2|^3",
  3184. "symfony/polyfill-php80": "^1.16"
  3185. },
  3186. "conflict": {
  3187. "symfony/dependency-injection": "<4.4"
  3188. },
  3189. "provide": {
  3190. "psr/event-dispatcher-implementation": "1.0",
  3191. "symfony/event-dispatcher-implementation": "2.0"
  3192. },
  3193. "require-dev": {
  3194. "psr/log": "^1|^2|^3",
  3195. "symfony/config": "^4.4|^5.0|^6.0",
  3196. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3197. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3198. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3199. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3200. "symfony/service-contracts": "^1.1|^2|^3",
  3201. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  3202. },
  3203. "suggest": {
  3204. "symfony/dependency-injection": "",
  3205. "symfony/http-kernel": ""
  3206. },
  3207. "type": "library",
  3208. "autoload": {
  3209. "psr-4": {
  3210. "Symfony\\Component\\EventDispatcher\\": ""
  3211. },
  3212. "exclude-from-classmap": [
  3213. "/Tests/"
  3214. ]
  3215. },
  3216. "notification-url": "https://packagist.org/downloads/",
  3217. "license": [
  3218. "MIT"
  3219. ],
  3220. "authors": [
  3221. {
  3222. "name": "Fabien Potencier",
  3223. "email": "fabien@symfony.com"
  3224. },
  3225. {
  3226. "name": "Symfony Community",
  3227. "homepage": "https://symfony.com/contributors"
  3228. }
  3229. ],
  3230. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3231. "homepage": "https://symfony.com",
  3232. "support": {
  3233. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.3"
  3234. },
  3235. "funding": [
  3236. {
  3237. "url": "https://symfony.com/sponsor",
  3238. "type": "custom"
  3239. },
  3240. {
  3241. "url": "https://github.com/fabpot",
  3242. "type": "github"
  3243. },
  3244. {
  3245. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3246. "type": "tidelift"
  3247. }
  3248. ],
  3249. "time": "2022-01-02T09:53:40+00:00"
  3250. },
  3251. {
  3252. "name": "symfony/event-dispatcher-contracts",
  3253. "version": "v3.0.1",
  3254. "source": {
  3255. "type": "git",
  3256. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3257. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  3258. },
  3259. "dist": {
  3260. "type": "zip",
  3261. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  3262. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  3263. "shasum": ""
  3264. },
  3265. "require": {
  3266. "php": ">=8.0.2",
  3267. "psr/event-dispatcher": "^1"
  3268. },
  3269. "suggest": {
  3270. "symfony/event-dispatcher-implementation": ""
  3271. },
  3272. "type": "library",
  3273. "extra": {
  3274. "branch-alias": {
  3275. "dev-main": "3.0-dev"
  3276. },
  3277. "thanks": {
  3278. "name": "symfony/contracts",
  3279. "url": "https://github.com/symfony/contracts"
  3280. }
  3281. },
  3282. "autoload": {
  3283. "psr-4": {
  3284. "Symfony\\Contracts\\EventDispatcher\\": ""
  3285. }
  3286. },
  3287. "notification-url": "https://packagist.org/downloads/",
  3288. "license": [
  3289. "MIT"
  3290. ],
  3291. "authors": [
  3292. {
  3293. "name": "Nicolas Grekas",
  3294. "email": "p@tchwork.com"
  3295. },
  3296. {
  3297. "name": "Symfony Community",
  3298. "homepage": "https://symfony.com/contributors"
  3299. }
  3300. ],
  3301. "description": "Generic abstractions related to dispatching event",
  3302. "homepage": "https://symfony.com",
  3303. "keywords": [
  3304. "abstractions",
  3305. "contracts",
  3306. "decoupling",
  3307. "interfaces",
  3308. "interoperability",
  3309. "standards"
  3310. ],
  3311. "support": {
  3312. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.1"
  3313. },
  3314. "funding": [
  3315. {
  3316. "url": "https://symfony.com/sponsor",
  3317. "type": "custom"
  3318. },
  3319. {
  3320. "url": "https://github.com/fabpot",
  3321. "type": "github"
  3322. },
  3323. {
  3324. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3325. "type": "tidelift"
  3326. }
  3327. ],
  3328. "time": "2022-01-02T09:55:41+00:00"
  3329. },
  3330. {
  3331. "name": "symfony/http-foundation",
  3332. "version": "v5.4.6",
  3333. "source": {
  3334. "type": "git",
  3335. "url": "https://github.com/symfony/http-foundation.git",
  3336. "reference": "34e89bc147633c0f9dd6caaaf56da3b806a21465"
  3337. },
  3338. "dist": {
  3339. "type": "zip",
  3340. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/34e89bc147633c0f9dd6caaaf56da3b806a21465",
  3341. "reference": "34e89bc147633c0f9dd6caaaf56da3b806a21465",
  3342. "shasum": ""
  3343. },
  3344. "require": {
  3345. "php": ">=7.2.5",
  3346. "symfony/deprecation-contracts": "^2.1|^3",
  3347. "symfony/polyfill-mbstring": "~1.1",
  3348. "symfony/polyfill-php80": "^1.16"
  3349. },
  3350. "require-dev": {
  3351. "predis/predis": "~1.0",
  3352. "symfony/cache": "^4.4|^5.0|^6.0",
  3353. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3354. "symfony/mime": "^4.4|^5.0|^6.0"
  3355. },
  3356. "suggest": {
  3357. "symfony/mime": "To use the file extension guesser"
  3358. },
  3359. "type": "library",
  3360. "autoload": {
  3361. "psr-4": {
  3362. "Symfony\\Component\\HttpFoundation\\": ""
  3363. },
  3364. "exclude-from-classmap": [
  3365. "/Tests/"
  3366. ]
  3367. },
  3368. "notification-url": "https://packagist.org/downloads/",
  3369. "license": [
  3370. "MIT"
  3371. ],
  3372. "authors": [
  3373. {
  3374. "name": "Fabien Potencier",
  3375. "email": "fabien@symfony.com"
  3376. },
  3377. {
  3378. "name": "Symfony Community",
  3379. "homepage": "https://symfony.com/contributors"
  3380. }
  3381. ],
  3382. "description": "Defines an object-oriented layer for the HTTP specification",
  3383. "homepage": "https://symfony.com",
  3384. "support": {
  3385. "source": "https://github.com/symfony/http-foundation/tree/v5.4.6"
  3386. },
  3387. "funding": [
  3388. {
  3389. "url": "https://symfony.com/sponsor",
  3390. "type": "custom"
  3391. },
  3392. {
  3393. "url": "https://github.com/fabpot",
  3394. "type": "github"
  3395. },
  3396. {
  3397. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3398. "type": "tidelift"
  3399. }
  3400. ],
  3401. "time": "2022-03-05T21:03:43+00:00"
  3402. },
  3403. {
  3404. "name": "symfony/polyfill-mbstring",
  3405. "version": "v1.25.0",
  3406. "source": {
  3407. "type": "git",
  3408. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3409. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
  3410. },
  3411. "dist": {
  3412. "type": "zip",
  3413. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
  3414. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
  3415. "shasum": ""
  3416. },
  3417. "require": {
  3418. "php": ">=7.1"
  3419. },
  3420. "provide": {
  3421. "ext-mbstring": "*"
  3422. },
  3423. "suggest": {
  3424. "ext-mbstring": "For best performance"
  3425. },
  3426. "type": "library",
  3427. "extra": {
  3428. "branch-alias": {
  3429. "dev-main": "1.23-dev"
  3430. },
  3431. "thanks": {
  3432. "name": "symfony/polyfill",
  3433. "url": "https://github.com/symfony/polyfill"
  3434. }
  3435. },
  3436. "autoload": {
  3437. "files": [
  3438. "bootstrap.php"
  3439. ],
  3440. "psr-4": {
  3441. "Symfony\\Polyfill\\Mbstring\\": ""
  3442. }
  3443. },
  3444. "notification-url": "https://packagist.org/downloads/",
  3445. "license": [
  3446. "MIT"
  3447. ],
  3448. "authors": [
  3449. {
  3450. "name": "Nicolas Grekas",
  3451. "email": "p@tchwork.com"
  3452. },
  3453. {
  3454. "name": "Symfony Community",
  3455. "homepage": "https://symfony.com/contributors"
  3456. }
  3457. ],
  3458. "description": "Symfony polyfill for the Mbstring extension",
  3459. "homepage": "https://symfony.com",
  3460. "keywords": [
  3461. "compatibility",
  3462. "mbstring",
  3463. "polyfill",
  3464. "portable",
  3465. "shim"
  3466. ],
  3467. "support": {
  3468. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0"
  3469. },
  3470. "funding": [
  3471. {
  3472. "url": "https://symfony.com/sponsor",
  3473. "type": "custom"
  3474. },
  3475. {
  3476. "url": "https://github.com/fabpot",
  3477. "type": "github"
  3478. },
  3479. {
  3480. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3481. "type": "tidelift"
  3482. }
  3483. ],
  3484. "time": "2021-11-30T18:21:41+00:00"
  3485. },
  3486. {
  3487. "name": "symfony/polyfill-php73",
  3488. "version": "v1.25.0",
  3489. "source": {
  3490. "type": "git",
  3491. "url": "https://github.com/symfony/polyfill-php73.git",
  3492. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5"
  3493. },
  3494. "dist": {
  3495. "type": "zip",
  3496. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5",
  3497. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5",
  3498. "shasum": ""
  3499. },
  3500. "require": {
  3501. "php": ">=7.1"
  3502. },
  3503. "type": "library",
  3504. "extra": {
  3505. "branch-alias": {
  3506. "dev-main": "1.23-dev"
  3507. },
  3508. "thanks": {
  3509. "name": "symfony/polyfill",
  3510. "url": "https://github.com/symfony/polyfill"
  3511. }
  3512. },
  3513. "autoload": {
  3514. "files": [
  3515. "bootstrap.php"
  3516. ],
  3517. "psr-4": {
  3518. "Symfony\\Polyfill\\Php73\\": ""
  3519. },
  3520. "classmap": [
  3521. "Resources/stubs"
  3522. ]
  3523. },
  3524. "notification-url": "https://packagist.org/downloads/",
  3525. "license": [
  3526. "MIT"
  3527. ],
  3528. "authors": [
  3529. {
  3530. "name": "Nicolas Grekas",
  3531. "email": "p@tchwork.com"
  3532. },
  3533. {
  3534. "name": "Symfony Community",
  3535. "homepage": "https://symfony.com/contributors"
  3536. }
  3537. ],
  3538. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  3539. "homepage": "https://symfony.com",
  3540. "keywords": [
  3541. "compatibility",
  3542. "polyfill",
  3543. "portable",
  3544. "shim"
  3545. ],
  3546. "support": {
  3547. "source": "https://github.com/symfony/polyfill-php73/tree/v1.25.0"
  3548. },
  3549. "funding": [
  3550. {
  3551. "url": "https://symfony.com/sponsor",
  3552. "type": "custom"
  3553. },
  3554. {
  3555. "url": "https://github.com/fabpot",
  3556. "type": "github"
  3557. },
  3558. {
  3559. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3560. "type": "tidelift"
  3561. }
  3562. ],
  3563. "time": "2021-06-05T21:20:04+00:00"
  3564. },
  3565. {
  3566. "name": "symfony/polyfill-php80",
  3567. "version": "v1.25.0",
  3568. "source": {
  3569. "type": "git",
  3570. "url": "https://github.com/symfony/polyfill-php80.git",
  3571. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c"
  3572. },
  3573. "dist": {
  3574. "type": "zip",
  3575. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  3576. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  3577. "shasum": ""
  3578. },
  3579. "require": {
  3580. "php": ">=7.1"
  3581. },
  3582. "type": "library",
  3583. "extra": {
  3584. "branch-alias": {
  3585. "dev-main": "1.23-dev"
  3586. },
  3587. "thanks": {
  3588. "name": "symfony/polyfill",
  3589. "url": "https://github.com/symfony/polyfill"
  3590. }
  3591. },
  3592. "autoload": {
  3593. "files": [
  3594. "bootstrap.php"
  3595. ],
  3596. "psr-4": {
  3597. "Symfony\\Polyfill\\Php80\\": ""
  3598. },
  3599. "classmap": [
  3600. "Resources/stubs"
  3601. ]
  3602. },
  3603. "notification-url": "https://packagist.org/downloads/",
  3604. "license": [
  3605. "MIT"
  3606. ],
  3607. "authors": [
  3608. {
  3609. "name": "Ion Bazan",
  3610. "email": "ion.bazan@gmail.com"
  3611. },
  3612. {
  3613. "name": "Nicolas Grekas",
  3614. "email": "p@tchwork.com"
  3615. },
  3616. {
  3617. "name": "Symfony Community",
  3618. "homepage": "https://symfony.com/contributors"
  3619. }
  3620. ],
  3621. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3622. "homepage": "https://symfony.com",
  3623. "keywords": [
  3624. "compatibility",
  3625. "polyfill",
  3626. "portable",
  3627. "shim"
  3628. ],
  3629. "support": {
  3630. "source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0"
  3631. },
  3632. "funding": [
  3633. {
  3634. "url": "https://symfony.com/sponsor",
  3635. "type": "custom"
  3636. },
  3637. {
  3638. "url": "https://github.com/fabpot",
  3639. "type": "github"
  3640. },
  3641. {
  3642. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3643. "type": "tidelift"
  3644. }
  3645. ],
  3646. "time": "2022-03-04T08:16:47+00:00"
  3647. },
  3648. {
  3649. "name": "symfony/process",
  3650. "version": "v4.4.44",
  3651. "source": {
  3652. "type": "git",
  3653. "url": "https://github.com/symfony/process.git",
  3654. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2"
  3655. },
  3656. "dist": {
  3657. "type": "zip",
  3658. "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  3659. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  3660. "shasum": ""
  3661. },
  3662. "require": {
  3663. "php": ">=7.1.3",
  3664. "symfony/polyfill-php80": "^1.16"
  3665. },
  3666. "type": "library",
  3667. "autoload": {
  3668. "psr-4": {
  3669. "Symfony\\Component\\Process\\": ""
  3670. },
  3671. "exclude-from-classmap": [
  3672. "/Tests/"
  3673. ]
  3674. },
  3675. "notification-url": "https://packagist.org/downloads/",
  3676. "license": [
  3677. "MIT"
  3678. ],
  3679. "authors": [
  3680. {
  3681. "name": "Fabien Potencier",
  3682. "email": "fabien@symfony.com"
  3683. },
  3684. {
  3685. "name": "Symfony Community",
  3686. "homepage": "https://symfony.com/contributors"
  3687. }
  3688. ],
  3689. "description": "Executes commands in sub-processes",
  3690. "homepage": "https://symfony.com",
  3691. "support": {
  3692. "source": "https://github.com/symfony/process/tree/v4.4.44"
  3693. },
  3694. "funding": [
  3695. {
  3696. "url": "https://symfony.com/sponsor",
  3697. "type": "custom"
  3698. },
  3699. {
  3700. "url": "https://github.com/fabpot",
  3701. "type": "github"
  3702. },
  3703. {
  3704. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3705. "type": "tidelift"
  3706. }
  3707. ],
  3708. "time": "2022-06-27T13:16:42+00:00"
  3709. },
  3710. {
  3711. "name": "symfony/psr-http-message-bridge",
  3712. "version": "v2.1.2",
  3713. "source": {
  3714. "type": "git",
  3715. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  3716. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34"
  3717. },
  3718. "dist": {
  3719. "type": "zip",
  3720. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  3721. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  3722. "shasum": ""
  3723. },
  3724. "require": {
  3725. "php": ">=7.1",
  3726. "psr/http-message": "^1.0",
  3727. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  3728. },
  3729. "require-dev": {
  3730. "nyholm/psr7": "^1.1",
  3731. "psr/log": "^1.1 || ^2 || ^3",
  3732. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  3733. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  3734. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  3735. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  3736. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  3737. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  3738. },
  3739. "suggest": {
  3740. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  3741. },
  3742. "type": "symfony-bridge",
  3743. "extra": {
  3744. "branch-alias": {
  3745. "dev-main": "2.1-dev"
  3746. }
  3747. },
  3748. "autoload": {
  3749. "psr-4": {
  3750. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  3751. },
  3752. "exclude-from-classmap": [
  3753. "/Tests/"
  3754. ]
  3755. },
  3756. "notification-url": "https://packagist.org/downloads/",
  3757. "license": [
  3758. "MIT"
  3759. ],
  3760. "authors": [
  3761. {
  3762. "name": "Fabien Potencier",
  3763. "email": "fabien@symfony.com"
  3764. },
  3765. {
  3766. "name": "Symfony Community",
  3767. "homepage": "http://symfony.com/contributors"
  3768. }
  3769. ],
  3770. "description": "PSR HTTP message bridge",
  3771. "homepage": "http://symfony.com",
  3772. "keywords": [
  3773. "http",
  3774. "http-message",
  3775. "psr-17",
  3776. "psr-7"
  3777. ],
  3778. "support": {
  3779. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  3780. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2"
  3781. },
  3782. "funding": [
  3783. {
  3784. "url": "https://symfony.com/sponsor",
  3785. "type": "custom"
  3786. },
  3787. {
  3788. "url": "https://github.com/fabpot",
  3789. "type": "github"
  3790. },
  3791. {
  3792. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3793. "type": "tidelift"
  3794. }
  3795. ],
  3796. "time": "2021-11-05T13:13:39+00:00"
  3797. },
  3798. {
  3799. "name": "symfony/service-contracts",
  3800. "version": "v2.5.1",
  3801. "source": {
  3802. "type": "git",
  3803. "url": "https://github.com/symfony/service-contracts.git",
  3804. "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c"
  3805. },
  3806. "dist": {
  3807. "type": "zip",
  3808. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
  3809. "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
  3810. "shasum": ""
  3811. },
  3812. "require": {
  3813. "php": ">=7.2.5",
  3814. "psr/container": "^1.1",
  3815. "symfony/deprecation-contracts": "^2.1|^3"
  3816. },
  3817. "conflict": {
  3818. "ext-psr": "<1.1|>=2"
  3819. },
  3820. "suggest": {
  3821. "symfony/service-implementation": ""
  3822. },
  3823. "type": "library",
  3824. "extra": {
  3825. "branch-alias": {
  3826. "dev-main": "2.5-dev"
  3827. },
  3828. "thanks": {
  3829. "name": "symfony/contracts",
  3830. "url": "https://github.com/symfony/contracts"
  3831. }
  3832. },
  3833. "autoload": {
  3834. "psr-4": {
  3835. "Symfony\\Contracts\\Service\\": ""
  3836. }
  3837. },
  3838. "notification-url": "https://packagist.org/downloads/",
  3839. "license": [
  3840. "MIT"
  3841. ],
  3842. "authors": [
  3843. {
  3844. "name": "Nicolas Grekas",
  3845. "email": "p@tchwork.com"
  3846. },
  3847. {
  3848. "name": "Symfony Community",
  3849. "homepage": "https://symfony.com/contributors"
  3850. }
  3851. ],
  3852. "description": "Generic abstractions related to writing services",
  3853. "homepage": "https://symfony.com",
  3854. "keywords": [
  3855. "abstractions",
  3856. "contracts",
  3857. "decoupling",
  3858. "interfaces",
  3859. "interoperability",
  3860. "standards"
  3861. ],
  3862. "support": {
  3863. "source": "https://github.com/symfony/service-contracts/tree/v2.5.1"
  3864. },
  3865. "funding": [
  3866. {
  3867. "url": "https://symfony.com/sponsor",
  3868. "type": "custom"
  3869. },
  3870. {
  3871. "url": "https://github.com/fabpot",
  3872. "type": "github"
  3873. },
  3874. {
  3875. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3876. "type": "tidelift"
  3877. }
  3878. ],
  3879. "time": "2022-03-13T20:07:29+00:00"
  3880. },
  3881. {
  3882. "name": "symfony/translation",
  3883. "version": "v6.2.5",
  3884. "source": {
  3885. "type": "git",
  3886. "url": "https://github.com/symfony/translation.git",
  3887. "reference": "60556925a703cfbc1581cde3b3f35b0bb0ea904c"
  3888. },
  3889. "dist": {
  3890. "type": "zip",
  3891. "url": "https://api.github.com/repos/symfony/translation/zipball/60556925a703cfbc1581cde3b3f35b0bb0ea904c",
  3892. "reference": "60556925a703cfbc1581cde3b3f35b0bb0ea904c",
  3893. "shasum": ""
  3894. },
  3895. "require": {
  3896. "php": ">=8.1",
  3897. "symfony/polyfill-mbstring": "~1.0",
  3898. "symfony/translation-contracts": "^2.3|^3.0"
  3899. },
  3900. "conflict": {
  3901. "symfony/config": "<5.4",
  3902. "symfony/console": "<5.4",
  3903. "symfony/dependency-injection": "<5.4",
  3904. "symfony/http-kernel": "<5.4",
  3905. "symfony/twig-bundle": "<5.4",
  3906. "symfony/yaml": "<5.4"
  3907. },
  3908. "provide": {
  3909. "symfony/translation-implementation": "2.3|3.0"
  3910. },
  3911. "require-dev": {
  3912. "nikic/php-parser": "^4.13",
  3913. "psr/log": "^1|^2|^3",
  3914. "symfony/config": "^5.4|^6.0",
  3915. "symfony/console": "^5.4|^6.0",
  3916. "symfony/dependency-injection": "^5.4|^6.0",
  3917. "symfony/finder": "^5.4|^6.0",
  3918. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  3919. "symfony/http-kernel": "^5.4|^6.0",
  3920. "symfony/intl": "^5.4|^6.0",
  3921. "symfony/polyfill-intl-icu": "^1.21",
  3922. "symfony/routing": "^5.4|^6.0",
  3923. "symfony/service-contracts": "^1.1.2|^2|^3",
  3924. "symfony/yaml": "^5.4|^6.0"
  3925. },
  3926. "suggest": {
  3927. "nikic/php-parser": "To use PhpAstExtractor",
  3928. "psr/log-implementation": "To use logging capability in translator",
  3929. "symfony/config": "",
  3930. "symfony/yaml": ""
  3931. },
  3932. "type": "library",
  3933. "autoload": {
  3934. "files": [
  3935. "Resources/functions.php"
  3936. ],
  3937. "psr-4": {
  3938. "Symfony\\Component\\Translation\\": ""
  3939. },
  3940. "exclude-from-classmap": [
  3941. "/Tests/"
  3942. ]
  3943. },
  3944. "notification-url": "https://packagist.org/downloads/",
  3945. "license": [
  3946. "MIT"
  3947. ],
  3948. "authors": [
  3949. {
  3950. "name": "Fabien Potencier",
  3951. "email": "fabien@symfony.com"
  3952. },
  3953. {
  3954. "name": "Symfony Community",
  3955. "homepage": "https://symfony.com/contributors"
  3956. }
  3957. ],
  3958. "description": "Provides tools to internationalize your application",
  3959. "homepage": "https://symfony.com",
  3960. "support": {
  3961. "source": "https://github.com/symfony/translation/tree/v6.2.5"
  3962. },
  3963. "funding": [
  3964. {
  3965. "url": "https://symfony.com/sponsor",
  3966. "type": "custom"
  3967. },
  3968. {
  3969. "url": "https://github.com/fabpot",
  3970. "type": "github"
  3971. },
  3972. {
  3973. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3974. "type": "tidelift"
  3975. }
  3976. ],
  3977. "time": "2023-01-05T07:00:27+00:00"
  3978. },
  3979. {
  3980. "name": "symfony/translation-contracts",
  3981. "version": "v3.2.0",
  3982. "source": {
  3983. "type": "git",
  3984. "url": "https://github.com/symfony/translation-contracts.git",
  3985. "reference": "68cce71402305a015f8c1589bfada1280dc64fe7"
  3986. },
  3987. "dist": {
  3988. "type": "zip",
  3989. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/68cce71402305a015f8c1589bfada1280dc64fe7",
  3990. "reference": "68cce71402305a015f8c1589bfada1280dc64fe7",
  3991. "shasum": ""
  3992. },
  3993. "require": {
  3994. "php": ">=8.1"
  3995. },
  3996. "suggest": {
  3997. "symfony/translation-implementation": ""
  3998. },
  3999. "type": "library",
  4000. "extra": {
  4001. "branch-alias": {
  4002. "dev-main": "3.3-dev"
  4003. },
  4004. "thanks": {
  4005. "name": "symfony/contracts",
  4006. "url": "https://github.com/symfony/contracts"
  4007. }
  4008. },
  4009. "autoload": {
  4010. "psr-4": {
  4011. "Symfony\\Contracts\\Translation\\": ""
  4012. },
  4013. "exclude-from-classmap": [
  4014. "/Test/"
  4015. ]
  4016. },
  4017. "notification-url": "https://packagist.org/downloads/",
  4018. "license": [
  4019. "MIT"
  4020. ],
  4021. "authors": [
  4022. {
  4023. "name": "Nicolas Grekas",
  4024. "email": "p@tchwork.com"
  4025. },
  4026. {
  4027. "name": "Symfony Community",
  4028. "homepage": "https://symfony.com/contributors"
  4029. }
  4030. ],
  4031. "description": "Generic abstractions related to translation",
  4032. "homepage": "https://symfony.com",
  4033. "keywords": [
  4034. "abstractions",
  4035. "contracts",
  4036. "decoupling",
  4037. "interfaces",
  4038. "interoperability",
  4039. "standards"
  4040. ],
  4041. "support": {
  4042. "source": "https://github.com/symfony/translation-contracts/tree/v3.2.0"
  4043. },
  4044. "funding": [
  4045. {
  4046. "url": "https://symfony.com/sponsor",
  4047. "type": "custom"
  4048. },
  4049. {
  4050. "url": "https://github.com/fabpot",
  4051. "type": "github"
  4052. },
  4053. {
  4054. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4055. "type": "tidelift"
  4056. }
  4057. ],
  4058. "time": "2022-11-25T10:21:52+00:00"
  4059. },
  4060. {
  4061. "name": "symfony/var-exporter",
  4062. "version": "v6.0.7",
  4063. "source": {
  4064. "type": "git",
  4065. "url": "https://github.com/symfony/var-exporter.git",
  4066. "reference": "5f1fddb1b3a8394dbfb234044e3ad620a26e1735"
  4067. },
  4068. "dist": {
  4069. "type": "zip",
  4070. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/5f1fddb1b3a8394dbfb234044e3ad620a26e1735",
  4071. "reference": "5f1fddb1b3a8394dbfb234044e3ad620a26e1735",
  4072. "shasum": ""
  4073. },
  4074. "require": {
  4075. "php": ">=8.0.2"
  4076. },
  4077. "require-dev": {
  4078. "symfony/var-dumper": "^5.4|^6.0"
  4079. },
  4080. "type": "library",
  4081. "autoload": {
  4082. "psr-4": {
  4083. "Symfony\\Component\\VarExporter\\": ""
  4084. },
  4085. "exclude-from-classmap": [
  4086. "/Tests/"
  4087. ]
  4088. },
  4089. "notification-url": "https://packagist.org/downloads/",
  4090. "license": [
  4091. "MIT"
  4092. ],
  4093. "authors": [
  4094. {
  4095. "name": "Nicolas Grekas",
  4096. "email": "p@tchwork.com"
  4097. },
  4098. {
  4099. "name": "Symfony Community",
  4100. "homepage": "https://symfony.com/contributors"
  4101. }
  4102. ],
  4103. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  4104. "homepage": "https://symfony.com",
  4105. "keywords": [
  4106. "clone",
  4107. "construct",
  4108. "export",
  4109. "hydrate",
  4110. "instantiate",
  4111. "serialize"
  4112. ],
  4113. "support": {
  4114. "source": "https://github.com/symfony/var-exporter/tree/v6.0.7"
  4115. },
  4116. "funding": [
  4117. {
  4118. "url": "https://symfony.com/sponsor",
  4119. "type": "custom"
  4120. },
  4121. {
  4122. "url": "https://github.com/fabpot",
  4123. "type": "github"
  4124. },
  4125. {
  4126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4127. "type": "tidelift"
  4128. }
  4129. ],
  4130. "time": "2022-03-31T17:18:25+00:00"
  4131. },
  4132. {
  4133. "name": "topthink/framework",
  4134. "version": "v6.1.2",
  4135. "source": {
  4136. "type": "git",
  4137. "url": "https://github.com/top-think/framework.git",
  4138. "reference": "67235be5b919aaaf1de5aed9839f65d8e766aca3"
  4139. },
  4140. "dist": {
  4141. "type": "zip",
  4142. "url": "https://api.github.com/repos/top-think/framework/zipball/67235be5b919aaaf1de5aed9839f65d8e766aca3",
  4143. "reference": "67235be5b919aaaf1de5aed9839f65d8e766aca3",
  4144. "shasum": ""
  4145. },
  4146. "require": {
  4147. "ext-json": "*",
  4148. "ext-mbstring": "*",
  4149. "php": ">=7.2.5",
  4150. "psr/container": "~1.0",
  4151. "psr/http-message": "^1.0",
  4152. "psr/log": "~1.0",
  4153. "psr/simple-cache": "^1.0",
  4154. "topthink/think-helper": "^3.1.1",
  4155. "topthink/think-orm": "^2.0|^3.0"
  4156. },
  4157. "require-dev": {
  4158. "guzzlehttp/psr7": "^2.1.0",
  4159. "mikey179/vfsstream": "^1.6",
  4160. "mockery/mockery": "^1.2",
  4161. "phpunit/phpunit": "^7.0"
  4162. },
  4163. "type": "library",
  4164. "autoload": {
  4165. "files": [],
  4166. "psr-4": {
  4167. "think\\": "src/think/"
  4168. }
  4169. },
  4170. "notification-url": "https://packagist.org/downloads/",
  4171. "license": [
  4172. "Apache-2.0"
  4173. ],
  4174. "authors": [
  4175. {
  4176. "name": "liu21st",
  4177. "email": "liu21st@gmail.com"
  4178. },
  4179. {
  4180. "name": "yunwuxin",
  4181. "email": "448901948@qq.com"
  4182. }
  4183. ],
  4184. "description": "The ThinkPHP Framework.",
  4185. "homepage": "http://thinkphp.cn/",
  4186. "keywords": [
  4187. "framework",
  4188. "orm",
  4189. "thinkphp"
  4190. ],
  4191. "support": {
  4192. "issues": "https://github.com/top-think/framework/issues",
  4193. "source": "https://github.com/top-think/framework/tree/v6.1.2"
  4194. },
  4195. "time": "2023-02-08T02:24:01+00:00"
  4196. },
  4197. {
  4198. "name": "topthink/think-filesystem",
  4199. "version": "v2.0.1",
  4200. "source": {
  4201. "type": "git",
  4202. "url": "https://github.com/top-think/think-filesystem.git",
  4203. "reference": "50af34c4cfc9a5cbe8a5e3ac9f4e2aa0fd90693f"
  4204. },
  4205. "dist": {
  4206. "type": "zip",
  4207. "url": "https://api.github.com/repos/top-think/think-filesystem/zipball/50af34c4cfc9a5cbe8a5e3ac9f4e2aa0fd90693f",
  4208. "reference": "50af34c4cfc9a5cbe8a5e3ac9f4e2aa0fd90693f",
  4209. "shasum": ""
  4210. },
  4211. "require": {
  4212. "league/flysystem": "^2.0",
  4213. "topthink/framework": "^6.1"
  4214. },
  4215. "require-dev": {
  4216. "mikey179/vfsstream": "^1.6",
  4217. "mockery/mockery": "^1.2",
  4218. "phpunit/phpunit": "^8.0"
  4219. },
  4220. "type": "library",
  4221. "autoload": {
  4222. "psr-4": {
  4223. "think\\": "src"
  4224. }
  4225. },
  4226. "notification-url": "https://packagist.org/downloads/",
  4227. "license": [
  4228. "Apache-2.0"
  4229. ],
  4230. "authors": [
  4231. {
  4232. "name": "yunwuxin",
  4233. "email": "448901948@qq.com"
  4234. }
  4235. ],
  4236. "description": "The ThinkPHP6.1 Filesystem Package",
  4237. "support": {
  4238. "issues": "https://github.com/top-think/think-filesystem/issues",
  4239. "source": "https://github.com/top-think/think-filesystem/tree/v2.0.1"
  4240. },
  4241. "time": "2023-01-06T14:29:27+00:00"
  4242. },
  4243. {
  4244. "name": "topthink/think-helper",
  4245. "version": "v3.1.6",
  4246. "source": {
  4247. "type": "git",
  4248. "url": "https://github.com/top-think/think-helper.git",
  4249. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff"
  4250. },
  4251. "dist": {
  4252. "type": "zip",
  4253. "url": "https://api.github.com/repos/top-think/think-helper/zipball/769acbe50a4274327162f9c68ec2e89a38eb2aff",
  4254. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff",
  4255. "shasum": ""
  4256. },
  4257. "require": {
  4258. "php": ">=7.1.0"
  4259. },
  4260. "require-dev": {
  4261. "phpunit/phpunit": "^9.5"
  4262. },
  4263. "type": "library",
  4264. "autoload": {
  4265. "files": [
  4266. "src/helper.php"
  4267. ],
  4268. "psr-4": {
  4269. "think\\": "src"
  4270. }
  4271. },
  4272. "notification-url": "https://packagist.org/downloads/",
  4273. "license": [
  4274. "Apache-2.0"
  4275. ],
  4276. "authors": [
  4277. {
  4278. "name": "yunwuxin",
  4279. "email": "448901948@qq.com"
  4280. }
  4281. ],
  4282. "description": "The ThinkPHP6 Helper Package",
  4283. "support": {
  4284. "issues": "https://github.com/top-think/think-helper/issues",
  4285. "source": "https://github.com/top-think/think-helper/tree/v3.1.6"
  4286. },
  4287. "time": "2021-12-15T04:27:55+00:00"
  4288. },
  4289. {
  4290. "name": "topthink/think-multi-app",
  4291. "version": "v1.0.14",
  4292. "source": {
  4293. "type": "git",
  4294. "url": "https://github.com/top-think/think-multi-app.git",
  4295. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3"
  4296. },
  4297. "dist": {
  4298. "type": "zip",
  4299. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  4300. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  4301. "shasum": ""
  4302. },
  4303. "require": {
  4304. "php": ">=7.1.0",
  4305. "topthink/framework": "^6.0.0"
  4306. },
  4307. "type": "library",
  4308. "extra": {
  4309. "think": {
  4310. "services": [
  4311. "think\\app\\Service"
  4312. ]
  4313. }
  4314. },
  4315. "autoload": {
  4316. "psr-4": {
  4317. "think\\app\\": "src"
  4318. }
  4319. },
  4320. "notification-url": "https://packagist.org/downloads/",
  4321. "license": [
  4322. "Apache-2.0"
  4323. ],
  4324. "authors": [
  4325. {
  4326. "name": "liu21st",
  4327. "email": "liu21st@gmail.com"
  4328. }
  4329. ],
  4330. "description": "thinkphp6 multi app support",
  4331. "support": {
  4332. "issues": "https://github.com/top-think/think-multi-app/issues",
  4333. "source": "https://github.com/top-think/think-multi-app/tree/master"
  4334. },
  4335. "time": "2020-07-12T13:50:37+00:00"
  4336. },
  4337. {
  4338. "name": "topthink/think-orm",
  4339. "version": "v2.0.53",
  4340. "source": {
  4341. "type": "git",
  4342. "url": "https://github.com/top-think/think-orm.git",
  4343. "reference": "06783eda65547a70ea686360a897759e1f873fff"
  4344. },
  4345. "dist": {
  4346. "type": "zip",
  4347. "url": "https://api.github.com/repos/top-think/think-orm/zipball/06783eda65547a70ea686360a897759e1f873fff",
  4348. "reference": "06783eda65547a70ea686360a897759e1f873fff",
  4349. "shasum": ""
  4350. },
  4351. "require": {
  4352. "ext-json": "*",
  4353. "ext-pdo": "*",
  4354. "php": ">=7.1.0",
  4355. "psr/log": "~1.0",
  4356. "psr/simple-cache": "^1.0",
  4357. "topthink/think-helper": "^3.1"
  4358. },
  4359. "require-dev": {
  4360. "phpunit/phpunit": "^7|^8|^9.5"
  4361. },
  4362. "type": "library",
  4363. "autoload": {
  4364. "files": [
  4365. "stubs/load_stubs.php"
  4366. ],
  4367. "psr-4": {
  4368. "think\\": "src"
  4369. }
  4370. },
  4371. "notification-url": "https://packagist.org/downloads/",
  4372. "license": [
  4373. "Apache-2.0"
  4374. ],
  4375. "authors": [
  4376. {
  4377. "name": "liu21st",
  4378. "email": "liu21st@gmail.com"
  4379. }
  4380. ],
  4381. "description": "think orm",
  4382. "keywords": [
  4383. "database",
  4384. "orm"
  4385. ],
  4386. "support": {
  4387. "issues": "https://github.com/top-think/think-orm/issues",
  4388. "source": "https://github.com/top-think/think-orm/tree/v2.0.53"
  4389. },
  4390. "time": "2022-02-28T14:54:22+00:00"
  4391. },
  4392. {
  4393. "name": "topthink/think-queue",
  4394. "version": "v3.0.7",
  4395. "source": {
  4396. "type": "git",
  4397. "url": "https://github.com/top-think/think-queue.git",
  4398. "reference": "cded7616e313f9daa55c0ad0de5791f0d1fb3066"
  4399. },
  4400. "dist": {
  4401. "type": "zip",
  4402. "url": "https://api.github.com/repos/top-think/think-queue/zipball/cded7616e313f9daa55c0ad0de5791f0d1fb3066",
  4403. "reference": "cded7616e313f9daa55c0ad0de5791f0d1fb3066",
  4404. "shasum": ""
  4405. },
  4406. "require": {
  4407. "ext-json": "*",
  4408. "nesbot/carbon": "^2.16",
  4409. "symfony/process": "^4.2",
  4410. "topthink/framework": "^6.0"
  4411. },
  4412. "require-dev": {
  4413. "mockery/mockery": "^1.2",
  4414. "phpunit/phpunit": "^6.2",
  4415. "topthink/think-migration": "^3.0.0"
  4416. },
  4417. "type": "library",
  4418. "extra": {
  4419. "think": {
  4420. "services": [
  4421. "think\\queue\\Service"
  4422. ],
  4423. "config": {
  4424. "queue": "src/config.php"
  4425. }
  4426. }
  4427. },
  4428. "autoload": {
  4429. "files": [
  4430. "src/common.php"
  4431. ],
  4432. "psr-4": {
  4433. "think\\": "src"
  4434. }
  4435. },
  4436. "notification-url": "https://packagist.org/downloads/",
  4437. "license": [
  4438. "Apache-2.0"
  4439. ],
  4440. "authors": [
  4441. {
  4442. "name": "yunwuxin",
  4443. "email": "448901948@qq.com"
  4444. }
  4445. ],
  4446. "description": "The ThinkPHP6 Queue Package",
  4447. "support": {
  4448. "issues": "https://github.com/top-think/think-queue/issues",
  4449. "source": "https://github.com/top-think/think-queue/tree/v3.0.7"
  4450. },
  4451. "time": "2021-12-20T08:04:36+00:00"
  4452. },
  4453. {
  4454. "name": "topthink/think-template",
  4455. "version": "v3.0.0",
  4456. "source": {
  4457. "type": "git",
  4458. "url": "https://github.com/top-think/think-template.git",
  4459. "reference": "4352d2cf627abfb8b49f830686c25c02f59c23f2"
  4460. },
  4461. "dist": {
  4462. "type": "zip",
  4463. "url": "https://api.github.com/repos/top-think/think-template/zipball/4352d2cf627abfb8b49f830686c25c02f59c23f2",
  4464. "reference": "4352d2cf627abfb8b49f830686c25c02f59c23f2",
  4465. "shasum": ""
  4466. },
  4467. "require": {
  4468. "php": ">=8.0.0",
  4469. "psr/simple-cache": ">=1.0"
  4470. },
  4471. "type": "library",
  4472. "autoload": {
  4473. "psr-4": {
  4474. "think\\": "src"
  4475. }
  4476. },
  4477. "notification-url": "https://packagist.org/downloads/",
  4478. "license": [
  4479. "Apache-2.0"
  4480. ],
  4481. "authors": [
  4482. {
  4483. "name": "liu21st",
  4484. "email": "liu21st@gmail.com"
  4485. }
  4486. ],
  4487. "description": "the php template engine",
  4488. "support": {
  4489. "issues": "https://github.com/top-think/think-template/issues",
  4490. "source": "https://github.com/top-think/think-template/tree/v3.0.0"
  4491. },
  4492. "time": "2023-02-25T12:11:14+00:00"
  4493. },
  4494. {
  4495. "name": "topthink/think-view",
  4496. "version": "v2.0.0",
  4497. "source": {
  4498. "type": "git",
  4499. "url": "https://github.com/top-think/think-view.git",
  4500. "reference": "d2a076011c96d2edd8016703a827fb54b2683c62"
  4501. },
  4502. "dist": {
  4503. "type": "zip",
  4504. "url": "https://api.github.com/repos/top-think/think-view/zipball/d2a076011c96d2edd8016703a827fb54b2683c62",
  4505. "reference": "d2a076011c96d2edd8016703a827fb54b2683c62",
  4506. "shasum": ""
  4507. },
  4508. "require": {
  4509. "php": ">=8.0.0",
  4510. "topthink/think-template": "^3.0"
  4511. },
  4512. "type": "library",
  4513. "autoload": {
  4514. "psr-4": {
  4515. "think\\view\\driver\\": "src"
  4516. }
  4517. },
  4518. "notification-url": "https://packagist.org/downloads/",
  4519. "license": [
  4520. "Apache-2.0"
  4521. ],
  4522. "authors": [
  4523. {
  4524. "name": "liu21st",
  4525. "email": "liu21st@gmail.com"
  4526. }
  4527. ],
  4528. "description": "thinkphp template driver",
  4529. "support": {
  4530. "issues": "https://github.com/top-think/think-view/issues",
  4531. "source": "https://github.com/top-think/think-view/tree/v2.0.0"
  4532. },
  4533. "time": "2023-02-25T12:18:09+00:00"
  4534. },
  4535. {
  4536. "name": "topthink/think-worker",
  4537. "version": "v3.0.6",
  4538. "source": {
  4539. "type": "git",
  4540. "url": "https://github.com/top-think/think-worker.git",
  4541. "reference": "21dc442aaa50594466ed3ed767af0a68b8b75364"
  4542. },
  4543. "dist": {
  4544. "type": "zip",
  4545. "url": "https://api.github.com/repos/top-think/think-worker/zipball/21dc442aaa50594466ed3ed767af0a68b8b75364",
  4546. "reference": "21dc442aaa50594466ed3ed767af0a68b8b75364",
  4547. "shasum": ""
  4548. },
  4549. "require": {
  4550. "ext-fileinfo": "*",
  4551. "topthink/framework": "^6.0.0",
  4552. "workerman/gateway-worker": "^3.0.0",
  4553. "workerman/workerman": "^3.5.23"
  4554. },
  4555. "type": "library",
  4556. "extra": {
  4557. "think": {
  4558. "services": [
  4559. "think\\worker\\Service"
  4560. ],
  4561. "config": {
  4562. "worker": "src/config/worker.php",
  4563. "worker_server": "src/config/server.php",
  4564. "gateway_worker": "src/config/gateway.php"
  4565. }
  4566. }
  4567. },
  4568. "autoload": {
  4569. "psr-4": {
  4570. "think\\worker\\": "src"
  4571. }
  4572. },
  4573. "notification-url": "https://packagist.org/downloads/",
  4574. "license": [
  4575. "Apache-2.0"
  4576. ],
  4577. "authors": [
  4578. {
  4579. "name": "liu21st",
  4580. "email": "liu21st@gmail.com"
  4581. }
  4582. ],
  4583. "description": "workerman extend for thinkphp6.0",
  4584. "support": {
  4585. "issues": "https://github.com/top-think/think-worker/issues",
  4586. "source": "https://github.com/top-think/think-worker/tree/v3.0.6"
  4587. },
  4588. "time": "2021-04-26T15:09:47+00:00"
  4589. },
  4590. {
  4591. "name": "wechatpay/wechatpay",
  4592. "version": "1.4.6",
  4593. "source": {
  4594. "type": "git",
  4595. "url": "https://github.com/wechatpay-apiv3/wechatpay-php.git",
  4596. "reference": "edbdb6bb19e0818b0576043b265ff1b1e188d668"
  4597. },
  4598. "dist": {
  4599. "type": "zip",
  4600. "url": "https://api.github.com/repos/wechatpay-apiv3/wechatpay-php/zipball/edbdb6bb19e0818b0576043b265ff1b1e188d668",
  4601. "reference": "edbdb6bb19e0818b0576043b265ff1b1e188d668",
  4602. "shasum": ""
  4603. },
  4604. "require": {
  4605. "ext-curl": "*",
  4606. "ext-libxml": "*",
  4607. "ext-openssl": "*",
  4608. "ext-simplexml": "*",
  4609. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  4610. "guzzlehttp/uri-template": "^0.2 || ^1.0",
  4611. "php": ">=7.1.2"
  4612. },
  4613. "require-dev": {
  4614. "phpstan/phpstan": "^0.12.89 || ^1.0",
  4615. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  4616. },
  4617. "bin": [
  4618. "bin/CertificateDownloader.php"
  4619. ],
  4620. "type": "library",
  4621. "autoload": {
  4622. "psr-4": {
  4623. "WeChatPay\\": "src/"
  4624. }
  4625. },
  4626. "notification-url": "https://packagist.org/downloads/",
  4627. "license": [
  4628. "Apache-2.0"
  4629. ],
  4630. "authors": [
  4631. {
  4632. "name": "James ZHANG",
  4633. "homepage": "https://github.com/TheNorthMemory"
  4634. },
  4635. {
  4636. "name": "WeChatPay Community",
  4637. "homepage": "https://developers.weixin.qq.com/community/pay"
  4638. }
  4639. ],
  4640. "description": "[A]Sync Chainable WeChatPay v2&v3's OpenAPI SDK for PHP",
  4641. "homepage": "https://pay.weixin.qq.com/",
  4642. "keywords": [
  4643. "AES-GCM",
  4644. "aes-ecb",
  4645. "openapi-chainable",
  4646. "rsa-oaep",
  4647. "wechatpay",
  4648. "xml-builder",
  4649. "xml-parser"
  4650. ],
  4651. "support": {
  4652. "issues": "https://github.com/wechatpay-apiv3/wechatpay-php/issues",
  4653. "source": "https://github.com/wechatpay-apiv3/wechatpay-php/tree/v1.4.6"
  4654. },
  4655. "time": "2022-08-19T09:14:39+00:00"
  4656. },
  4657. {
  4658. "name": "workerman/gateway-worker",
  4659. "version": "v3.0.22",
  4660. "source": {
  4661. "type": "git",
  4662. "url": "https://github.com/walkor/GatewayWorker.git",
  4663. "reference": "a615036c482d11f68b693998575e804752ef9068"
  4664. },
  4665. "dist": {
  4666. "type": "zip",
  4667. "url": "https://api.github.com/repos/walkor/GatewayWorker/zipball/a615036c482d11f68b693998575e804752ef9068",
  4668. "reference": "a615036c482d11f68b693998575e804752ef9068",
  4669. "shasum": ""
  4670. },
  4671. "require": {
  4672. "workerman/workerman": ">=3.5.0"
  4673. },
  4674. "type": "library",
  4675. "autoload": {
  4676. "psr-4": {
  4677. "GatewayWorker\\": "./src"
  4678. }
  4679. },
  4680. "notification-url": "https://packagist.org/downloads/",
  4681. "license": [
  4682. "MIT"
  4683. ],
  4684. "homepage": "http://www.workerman.net",
  4685. "keywords": [
  4686. "communication",
  4687. "distributed"
  4688. ],
  4689. "support": {
  4690. "issues": "https://github.com/walkor/GatewayWorker/issues",
  4691. "source": "https://github.com/walkor/GatewayWorker/tree/v3.0.22"
  4692. },
  4693. "funding": [
  4694. {
  4695. "url": "https://opencollective.com/walkor",
  4696. "type": "open_collective"
  4697. },
  4698. {
  4699. "url": "https://www.patreon.com/walkor",
  4700. "type": "patreon"
  4701. }
  4702. ],
  4703. "time": "2021-12-23T13:13:09+00:00"
  4704. },
  4705. {
  4706. "name": "workerman/workerman",
  4707. "version": "v3.5.31",
  4708. "source": {
  4709. "type": "git",
  4710. "url": "https://github.com/walkor/Workerman.git",
  4711. "reference": "b73ddc45b3c7299f330923a2bde23ca6e974fd96"
  4712. },
  4713. "dist": {
  4714. "type": "zip",
  4715. "url": "https://api.github.com/repos/walkor/Workerman/zipball/b73ddc45b3c7299f330923a2bde23ca6e974fd96",
  4716. "reference": "b73ddc45b3c7299f330923a2bde23ca6e974fd96",
  4717. "shasum": ""
  4718. },
  4719. "require": {
  4720. "php": ">=5.3"
  4721. },
  4722. "suggest": {
  4723. "ext-event": "For better performance. "
  4724. },
  4725. "type": "library",
  4726. "autoload": {
  4727. "psr-4": {
  4728. "Workerman\\": "./"
  4729. }
  4730. },
  4731. "notification-url": "https://packagist.org/downloads/",
  4732. "license": [
  4733. "MIT"
  4734. ],
  4735. "authors": [
  4736. {
  4737. "name": "walkor",
  4738. "email": "walkor@workerman.net",
  4739. "homepage": "http://www.workerman.net",
  4740. "role": "Developer"
  4741. }
  4742. ],
  4743. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  4744. "homepage": "http://www.workerman.net",
  4745. "keywords": [
  4746. "asynchronous",
  4747. "event-loop"
  4748. ],
  4749. "support": {
  4750. "email": "walkor@workerman.net",
  4751. "forum": "http://wenda.workerman.net/",
  4752. "issues": "https://github.com/walkor/workerman/issues",
  4753. "source": "https://github.com/walkor/workerman",
  4754. "wiki": "http://doc.workerman.net/"
  4755. },
  4756. "time": "2020-08-24T03:49:23+00:00"
  4757. },
  4758. {
  4759. "name": "xin/container",
  4760. "version": "2.0.1",
  4761. "source": {
  4762. "type": "git",
  4763. "url": "https://gitee.com/liuxiaojinla/php-container",
  4764. "reference": "97bb67f87dd851545938a1f2fe0ffbd379e3ff81"
  4765. },
  4766. "require": {
  4767. "ext-ctype": "*",
  4768. "ext-iconv": "*",
  4769. "ext-json": "*",
  4770. "ext-libxml": "*",
  4771. "ext-mbstring": "*",
  4772. "ext-openssl": "*",
  4773. "ext-simplexml": "*",
  4774. "psr/container": "^1.0",
  4775. "xin/helper": "^1.0"
  4776. },
  4777. "type": "library",
  4778. "autoload": {
  4779. "psr-4": {
  4780. "xin\\container\\": "src/"
  4781. }
  4782. },
  4783. "notification-url": "https://packagist.org/downloads/",
  4784. "license": [
  4785. "Apache-2.0"
  4786. ],
  4787. "authors": [
  4788. {
  4789. "name": "晋",
  4790. "email": "657306123@qq.com"
  4791. }
  4792. ],
  4793. "description": "严格基于PSR11规范实现基础的容器和依赖注入",
  4794. "time": "2019-10-21T03:51:25+00:00"
  4795. },
  4796. {
  4797. "name": "xin/helper",
  4798. "version": "1.0.0",
  4799. "source": {
  4800. "type": "git",
  4801. "url": "https://gitee.com/liuxiaojinla/php-helper",
  4802. "reference": "02a58132dae2aea2d1c0b8e66f55125969224747"
  4803. },
  4804. "require": {
  4805. "ext-ctype": "*",
  4806. "ext-iconv": "*",
  4807. "ext-json": "*",
  4808. "ext-libxml": "*",
  4809. "ext-mbstring": "*",
  4810. "ext-openssl": "*",
  4811. "ext-simplexml": "*"
  4812. },
  4813. "type": "library",
  4814. "autoload": {
  4815. "psr-4": {
  4816. "xin\\helper\\": "src/"
  4817. }
  4818. },
  4819. "notification-url": "https://packagist.org/downloads/",
  4820. "license": [
  4821. "Apache-2.0"
  4822. ],
  4823. "authors": [
  4824. {
  4825. "name": "晋",
  4826. "email": "1540175452@qq.com"
  4827. }
  4828. ],
  4829. "description": "PHP项目日常开发必备基础库,数组工具类、字符串工具类、数字工具类、函数工具类、服务器工具类、加密工具类",
  4830. "time": "2019-06-22T08:28:23+00:00"
  4831. },
  4832. {
  4833. "name": "yiovo/tp6-cache",
  4834. "version": "v1.0.1",
  4835. "source": {
  4836. "type": "git",
  4837. "url": "https://github.com/yiovo/tp6-cache.git",
  4838. "reference": "31e0b5aaa1315ef85d7e68ed189bdb68406becfe"
  4839. },
  4840. "dist": {
  4841. "type": "zip",
  4842. "url": "https://api.github.com/repos/yiovo/tp6-cache/zipball/31e0b5aaa1315ef85d7e68ed189bdb68406becfe",
  4843. "reference": "31e0b5aaa1315ef85d7e68ed189bdb68406becfe",
  4844. "shasum": ""
  4845. },
  4846. "require": {
  4847. "php": ">=7.1.0",
  4848. "topthink/framework": "^6.0.0"
  4849. },
  4850. "type": "library",
  4851. "autoload": {
  4852. "psr-4": {
  4853. "yiovo\\cache\\": "src"
  4854. }
  4855. },
  4856. "notification-url": "https://packagist.org/downloads/",
  4857. "license": [
  4858. "Apache-2.0"
  4859. ],
  4860. "authors": [
  4861. {
  4862. "name": "yiovo",
  4863. "email": "developer@yiovo.com"
  4864. }
  4865. ],
  4866. "description": "tp6-cache",
  4867. "homepage": "https://github.com/yiovo/tp6-captcha",
  4868. "support": {
  4869. "issues": "https://github.com/yiovo/tp6-cache/issues",
  4870. "source": "https://github.com/yiovo/tp6-cache/tree/v1.0.1"
  4871. },
  4872. "time": "2021-11-27T18:53:07+00:00"
  4873. },
  4874. {
  4875. "name": "yiovo/tp6-captcha",
  4876. "version": "v1.1.4",
  4877. "source": {
  4878. "type": "git",
  4879. "url": "https://github.com/yiovo/tp6-captcha.git",
  4880. "reference": "ad04954c2c3de274f5bd7549788094ee96e4160e"
  4881. },
  4882. "dist": {
  4883. "type": "zip",
  4884. "url": "https://api.github.com/repos/yiovo/tp6-captcha/zipball/ad04954c2c3de274f5bd7549788094ee96e4160e",
  4885. "reference": "ad04954c2c3de274f5bd7549788094ee96e4160e",
  4886. "shasum": ""
  4887. },
  4888. "require": {
  4889. "ext-gd": "*",
  4890. "ext-mbstring": "*",
  4891. "php": ">=7.1.0",
  4892. "topthink/framework": "^6.0.0",
  4893. "yiovo/tp6-cache": "^1.0"
  4894. },
  4895. "type": "library",
  4896. "extra": {
  4897. "think": {
  4898. "config": {
  4899. "captcha": "src/config.php"
  4900. }
  4901. }
  4902. },
  4903. "autoload": {
  4904. "psr-4": {
  4905. "yiovo\\captcha\\": "src/"
  4906. }
  4907. },
  4908. "notification-url": "https://packagist.org/downloads/",
  4909. "license": [
  4910. "Apache-2.0"
  4911. ],
  4912. "authors": [
  4913. {
  4914. "name": "yiovo",
  4915. "email": "developer@yiovo.com"
  4916. }
  4917. ],
  4918. "description": "tp6-captcha",
  4919. "homepage": "https://github.com/yiovo/tp6-captcha",
  4920. "support": {
  4921. "source": "https://github.com/yiovo/tp6-captcha/tree/v1.1.4"
  4922. },
  4923. "time": "2022-04-12T14:26:54+00:00"
  4924. }
  4925. ],
  4926. "packages-dev": [
  4927. {
  4928. "name": "symfony/polyfill-php72",
  4929. "version": "v1.25.0",
  4930. "source": {
  4931. "type": "git",
  4932. "url": "https://github.com/symfony/polyfill-php72.git",
  4933. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  4934. },
  4935. "dist": {
  4936. "type": "zip",
  4937. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  4938. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  4939. "shasum": ""
  4940. },
  4941. "require": {
  4942. "php": ">=7.1"
  4943. },
  4944. "type": "library",
  4945. "extra": {
  4946. "branch-alias": {
  4947. "dev-main": "1.23-dev"
  4948. },
  4949. "thanks": {
  4950. "name": "symfony/polyfill",
  4951. "url": "https://github.com/symfony/polyfill"
  4952. }
  4953. },
  4954. "autoload": {
  4955. "files": [
  4956. "bootstrap.php"
  4957. ],
  4958. "psr-4": {
  4959. "Symfony\\Polyfill\\Php72\\": ""
  4960. }
  4961. },
  4962. "notification-url": "https://packagist.org/downloads/",
  4963. "license": [
  4964. "MIT"
  4965. ],
  4966. "authors": [
  4967. {
  4968. "name": "Nicolas Grekas",
  4969. "email": "p@tchwork.com"
  4970. },
  4971. {
  4972. "name": "Symfony Community",
  4973. "homepage": "https://symfony.com/contributors"
  4974. }
  4975. ],
  4976. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4977. "homepage": "https://symfony.com",
  4978. "keywords": [
  4979. "compatibility",
  4980. "polyfill",
  4981. "portable",
  4982. "shim"
  4983. ],
  4984. "support": {
  4985. "source": "https://github.com/symfony/polyfill-php72/tree/v1.25.0"
  4986. },
  4987. "funding": [
  4988. {
  4989. "url": "https://symfony.com/sponsor",
  4990. "type": "custom"
  4991. },
  4992. {
  4993. "url": "https://github.com/fabpot",
  4994. "type": "github"
  4995. },
  4996. {
  4997. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4998. "type": "tidelift"
  4999. }
  5000. ],
  5001. "time": "2021-05-27T09:17:38+00:00"
  5002. },
  5003. {
  5004. "name": "symfony/var-dumper",
  5005. "version": "v4.4.39",
  5006. "source": {
  5007. "type": "git",
  5008. "url": "https://github.com/symfony/var-dumper.git",
  5009. "reference": "35237c5e5dcb6593a46a860ba5b29c1d4683d80e"
  5010. },
  5011. "dist": {
  5012. "type": "zip",
  5013. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/35237c5e5dcb6593a46a860ba5b29c1d4683d80e",
  5014. "reference": "35237c5e5dcb6593a46a860ba5b29c1d4683d80e",
  5015. "shasum": ""
  5016. },
  5017. "require": {
  5018. "php": ">=7.1.3",
  5019. "symfony/polyfill-mbstring": "~1.0",
  5020. "symfony/polyfill-php72": "~1.5",
  5021. "symfony/polyfill-php80": "^1.16"
  5022. },
  5023. "conflict": {
  5024. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  5025. "symfony/console": "<3.4"
  5026. },
  5027. "require-dev": {
  5028. "ext-iconv": "*",
  5029. "symfony/console": "^3.4|^4.0|^5.0",
  5030. "symfony/process": "^4.4|^5.0",
  5031. "twig/twig": "^1.43|^2.13|^3.0.4"
  5032. },
  5033. "suggest": {
  5034. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5035. "ext-intl": "To show region name in time zone dump",
  5036. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5037. },
  5038. "bin": [
  5039. "Resources/bin/var-dump-server"
  5040. ],
  5041. "type": "library",
  5042. "autoload": {
  5043. "files": [
  5044. "Resources/functions/dump.php"
  5045. ],
  5046. "psr-4": {
  5047. "Symfony\\Component\\VarDumper\\": ""
  5048. },
  5049. "exclude-from-classmap": [
  5050. "/Tests/"
  5051. ]
  5052. },
  5053. "notification-url": "https://packagist.org/downloads/",
  5054. "license": [
  5055. "MIT"
  5056. ],
  5057. "authors": [
  5058. {
  5059. "name": "Nicolas Grekas",
  5060. "email": "p@tchwork.com"
  5061. },
  5062. {
  5063. "name": "Symfony Community",
  5064. "homepage": "https://symfony.com/contributors"
  5065. }
  5066. ],
  5067. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5068. "homepage": "https://symfony.com",
  5069. "keywords": [
  5070. "debug",
  5071. "dump"
  5072. ],
  5073. "support": {
  5074. "source": "https://github.com/symfony/var-dumper/tree/v4.4.39"
  5075. },
  5076. "funding": [
  5077. {
  5078. "url": "https://symfony.com/sponsor",
  5079. "type": "custom"
  5080. },
  5081. {
  5082. "url": "https://github.com/fabpot",
  5083. "type": "github"
  5084. },
  5085. {
  5086. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5087. "type": "tidelift"
  5088. }
  5089. ],
  5090. "time": "2022-02-25T10:38:15+00:00"
  5091. }
  5092. ],
  5093. "aliases": [],
  5094. "minimum-stability": "stable",
  5095. "stability-flags": {
  5096. "kosinix/grafika": 20
  5097. },
  5098. "prefer-stable": false,
  5099. "prefer-lowest": false,
  5100. "platform": {
  5101. "php": ">=7.4.0",
  5102. "ext-gd": "*",
  5103. "ext-curl": "*",
  5104. "ext-bcmath": "*",
  5105. "ext-json": "*",
  5106. "ext-pdo": "*",
  5107. "ext-openssl": "*",
  5108. "ext-mbstring": "*",
  5109. "ext-libxml": "*",
  5110. "ext-simplexml": "*",
  5111. "ext-zlib": "*",
  5112. "ext-zip": "*",
  5113. "ext-redis": "*",
  5114. "ext-fileinfo": "*"
  5115. },
  5116. "platform-dev": [],
  5117. "plugin-api-version": "2.6.0"
  5118. }